html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}
.header {
    height: 60px;
}
.header__fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    width: 100%;
    background: #556dae;
}
.header__wrap {
    display: flex;
    align-items: center;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    flex: 1 1 auto;
}
.header__logo {
    flex: 0 0 auto;
    position: relative;
    z-index: 500;
    margin: 0 auto 0 0;
}
.header__logo-img {
    display: block;
    height: 32px;
    width: auto;
}
.header__city {
    align-items: center;
}
.header__city--pc {
    display: none;
}
.header__city--tel {
    display: inline-flex;
    margin: 28px 0;
    color: #666;
}
.header__city .plane {
    flex: 0 0 auto;
    width: 1.1em;
    height: 1.1em;
    margin: 0 0.5em 0 0;
    color: #999;
}
.header__city .arrow {
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
    margin: 0.1em 0 0 0.2em;
    color: #999;
    transform: rotate(90deg);
}
.header__contacts {
    flex: 0 0 auto;
    order: 2;
}
.header__contacts-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 5px;
    color: #fff;
}
.header__contacts-phone svg {
    width: 18px;
    height: 18px;
}
.header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.header__actions-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0 5px;
    color: #fff;
}
.header__actions-item svg {
    width: 20px;
    height: 20px;
}
.header__actions-count {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #c30101;
    border-radius: 10px;
    transform: translate(50%, -50%);
}
.header__hamburger {
    flex: 0 0 auto;
    order: 3;
    position: relative;
    z-index: 500;
    display: flex;
    justify-content: flex-end;
    width: 28px;
    height: 28px;
    padding: 13px 8px 0 0;
    margin: 0 -8px 0 5px;
    background: none;
    border: 0;
}
.header__hamburger.show span {
    transform: scaleX(0);
}
.header__hamburger.show:before {
    width: 20px;
    transform: translateY(-7px) rotate(-45deg);
}
.header__hamburger.show:after {
    width: 20px;
    transform: translate(1px, 7px) rotate(45deg);
}
.header__hamburger span {
    width: 11px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transform-origin: right;
    transition: transform 0.3s;
}
.header__hamburger:before, .header__hamburger:after {
    content: '';
    position: absolute;
    top: 13px;
    right: 8px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transform-origin: right top;
    transition: transform 0.3s;
}
.header__hamburger:before {
    width: 16px;
    transform: translateY(-6px);
}
.header__hamburger:after {
    width: 7px;
    transform: translateY(6px);
}
.header__phone {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.header__phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    margin: 0 0 8px;
    color: #556dae;
    font-weight: 500;
    border: 1px solid #556dae;
    border-radius: 4px;
}
.header__phone-number svg {
    width: 1.1em;
    height: 1.1em;
    margin: 0 0.5em 0 0;
}
.header__phone-telegram, .header__phone-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 4px);
    height: 48px;
    color: #fff;
    border-radius: 4px;
}
.header__phone-telegram svg, .header__phone-whatsapp svg {
    width: 22px;
    height: 22px;
}
.header__phone-telegram {
    background: #27a6e6;
}
.header__phone-whatsapp {
    background: #25d366;
}
.header__phone-callback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
    margin: 8px 0 0;
    color: #fff;
    font-weight: 600;
    background: #556dae;
    border-radius: 4px;
}
.header__nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 400;
    width: 100%;
    height: 100%;
    padding: 60px 5vw 28px;
    background: #fff;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}
.header__nav.show {
    opacity: 1;
    visibility: visible;
}
.header__nav:before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    background: #556dae;
}
.header__decorations {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    overflow: hidden;
    z-index: 99;
    background: url("../img/decorations-1.cfe9f4892dc7.gif") repeat-x 100%;
    pointer-events: none;
}
@media all and (min-width: 375px) {
    .header__contacts-phone {
        width: 32px;
        height: 32px;
    }
    .header__contacts-phone svg {
        width: 20px;
        height: 20px;
    }
    .header__actions-item {
        width: 32px;
        height: 32px;
    }
    .header__actions-item svg {
        width: 22px;
        height: 22px;
    }
    .header__hamburger {
        width: 32px;
        height: 32px;
        padding: 15px 9px 0 0;
        margin: 0 -9px 0 5px;
    }
    .header__hamburger.show:before {
        width: 21px;
        transform: translateY(-7.5px) rotate(-45deg);
    }
    .header__hamburger.show:after {
        width: 21px;
        transform: translate(1px, 7.5px) rotate(45deg);
    }
    .header__hamburger span {
        width: 14px;
        height: 1.5px;
    }
    .header__hamburger:before, .header__hamburger:after {
        top: 15px;
        right: 9px;
    }
    .header__hamburger:before {
        width: 20px;
        transform: translateY(-6.5px);
    }
    .header__hamburger:after {
        width: 10px;
        transform: translateY(6.5px);
    }
}
@media all and (min-width: 768px) {
    .header__logo-img {
        height: 36px;
    }
    .header__contacts-phone {
        margin: 0 8px;
    }
    .header__actions-item {
        margin: 0 8px;
    }
    .header__hamburger {
        margin: 0 -9px 0 8px;
    }
    .header__nav {
        padding: 60px 4vw 32px;
    }
}
@media all and (min-width: 1024px) {
    .header {
        position: relative;
        z-index: 500;
        height: auto;
        background: #556dae;
    }
    .header__fixed {
        position: relative;
    }
    .header__inner {
        position: relative;
        height: 105px;
        padding: 48px 0 0;
    }
    .header__inner:before {
        content: '';
        position: absolute;
        top: 48px;
        left: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, 0.2);
    }
    .header__logo {
        flex: 0 1 auto;
        align-self: center;
        z-index: 1;
        margin: 0 20px 0 0;
    }
    .header__logo-img {
        min-width: 120px;
        width: 160px;
        height: auto;
    }
    .header__contacts {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        height: 48px;
        width: 100%;
    }
    .header__contacts-phone {
        display: none;
    }
    .header__city--pc {
        display: flex;
        align-items: center;
        margin: 0 auto 0 0;
        font-size: 13px;
        color: #fff;
        transition: color 0.3s;
    }
    .header__city--pc:hover {
        color: rgba(255, 255, 255, 0.7);
    }
    .header__city--pc .plane, .header__city--pc .arrow {
        color: inherit;
    }
    .header__city--tel {
        display: none;
    }
    .header__phone {
        align-items: center;
        flex-wrap: nowrap;
    }
    .header__phone-number {
        width: auto;
        height: auto;
        margin: 0;
        color: #fff;
        white-space: nowrap;
        border: 0;
        transition: color 0.3s;
    }
    .header__phone-number:hover {
        color: rgba(255, 255, 255, 0.7);
    }
    .header__phone-number svg {
        width: 1em;
        height: 1em;
        margin: 0 0.4em 0 0;
    }
    .header__phone-telegram, .header__phone-whatsapp {
        flex: 0 0 auto;
        width: 20px;
        height: 20px;
        margin: 0 0 0 8px;
        color: #fff;
        background: none;
    }
    .header__phone-telegram svg, .header__phone-whatsapp svg {
        width: 0.9em;
        height: 0.9em;
    }
    .header__phone-callback {
        height: 28px;
        padding: 0 16px;
        margin: 0 0 0 24px;
        font-size: 13px;
        font-weight: 500;
        background: rgba(85, 163, 235, 0.5);
        transition: background-color 0.3s;
    }
    .header__phone-callback:hover {
        background: rgba(85, 163, 235, 0.75);
    }
    .header__actions-item {
        margin: 0 0 0 16px;
        width: auto;
        height: auto;
        transition: color 0.3s;
    }
    .header__actions-item:hover {
        color: rgba(255, 255, 255, 0.5);
    }
    .header__actions-item svg {
        width: 24px;
        height: 24px;
    }
    .header__hamburger {
        display: none;
    }
    .header__nav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0 auto 0 0;
        visibility: visible;
        overflow: visible;
        opacity: 1;
        transition: none;
        transform: none;
        background: none;
    }
    .header__nav:before, .header__nav-consultation {
        display: none;
    }
}
@media all and (min-width: 1280px) {
    .header__logo {
        margin: 0 28px 0 0;
    }
    .header__contacts {
        width: auto;
    }
    .header__city--pc {
        margin: 0 16px 0 0;
    }
}
@media all and (min-width: 1360px) {
    .header__logo {
        margin: 0 32px 0 0;
    }
    .header__city--pc {
        font-size: 14px;
    }
    .header__phone-callback {
        height: 32px;
        font-size: 14px;
    }
}
@media all and (min-width: 1400px) {
    .header__logo {
        margin: 0 36px 0 0;
    }
    .header__inner {
        height: 109px;
        padding: 52px 0 0;
    }
    .header__inner:before {
        top: 52px;
    }
    .header__contacts {
        height: 52px;
    }
    .header__actions-item {
        margin: 0 0 0 24px;
    }
}
@media all and (min-width: 1920px) {
    .header__logo {
        margin: 0 44px 0 0;
    }
    .header__logo-img {
        width: 210px;
    }
    .header__phone-callback {
        margin: 0 0 0 28px;
        padding: 0 20px;
    }
    .header__city--pc {
        margin: 0 28px 0 0;
    }
}
.nav {
    margin: 0 -5vw;
    padding: 20px 5vw;
    line-height: 1.3;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    list-style: none;
}
.nav--secondary {
    font-size: 15px;
}
.nav__item--has-children {
    position: relative;
}
.nav__item--has-children > a.show:after {
    transform: translateY(-2px) rotate(135deg);
}
.nav__item--has-children > a:after {
    flex-shrink: 0;
    content: '';
    width: 0.45em;
    height: 0.45em;
    margin: 0 2px 0 8px;
    opacity: 0.5;
    border-top: 1.5px solid;
    border-right: 1.5px solid;
    transform-origin: center;
    transform: translateY(-1px) rotate(45deg);
    transition: transform 0.15s;
}
.nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    transition: color 0.3s;
}
.nav__link:hover {
    color: #556dae;
}
.nav__link--secondary {
    padding: 6px 0;
}
.nav__link--primary {
    padding: 8px 0;
    font-weight: 500;
    text-transform: uppercase;
}
.nav__submenu {
    display: none;
    margin: 0;
    padding: 4px 0 12px;
    font-size: 15px;
    list-style: none;
}
.nav__submenu.show {
    display: block;
}
.nav__submenu-item {
    padding: 0 0 0 16px;
}
.nav__submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    color: #666;
    transition: color 0.3s;
}
.nav__submenu-link:hover {
    color: #556dae;
}
@media all and (min-width: 768px) {
    .nav {
        margin: 0 -4vw;
        padding: 20px 4vw;
    }
}
@media all and (min-width: 1024px) {
    .nav {
        margin: 0;
        padding: 0;
        font-size: 14px;
        border: 0;
    }
    .nav--secondary {
        display: none;
    }
    .nav--primary {
        display: flex;
    }
    .nav__item {
        display: flex;
        align-items: center;
    }
    .nav__item--has-children:hover > ul {
        opacity: 1;
        visibility: visible;
        transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
        transform: scaleY(1);
    }
    .nav__item--has-children > a:after {
        width: 0.5em;
        height: 0.5em;
        transform: translateY(-3px) rotate(135deg);
    }
    .nav__item--primary {
        height: 57px;
        margin: 0 28px 0 0;
    }
    .nav__link {
        padding: 0;
        color: #fff;
        white-space: nowrap;
        transition: color 0.3s;
    }
    .nav__link--primary {
        height: 100%;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 0.01em;
    }
    .nav__link:hover {
        color: rgba(255, 255, 255, 0.5);
    }
    .nav__submenu {
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 10;
        display: block;
        width: 220px;
        padding: 20px 0;
        margin: 0 0 0 -110px;
        font-size: 14px;
        background: #fff;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: visibility 0.3s 0.15s, opacity 0.3s 0.15s;
    }
    .nav__submenu ul {
        top: 0;
        left: 100%;
        margin: 0;
        border-radius: 0 5px 5px 0;
    }
    .nav__submenu .nav__item--has-children > a:after {
        width: 0.4em;
        height: 0.4em;
        transform: translateY(-1px) rotate(45deg);
    }
    .nav__submenu-item {
        padding: 0 20px;
        margin: 8px 0 0;
    }
    .nav__submenu-item:first-child {
        margin: 0;
    }
    .nav__submenu-link {
        padding: 4px 0;
    }
}
@media all and (min-width: 1280px) {
    .nav--secondary {
        position: absolute;
        display: flex;
        align-items: center;
        top: 0;
        left: 0;
        height: 48px;
        font-size: 13px;
    }
    .nav--primary {
        display: flex;
    }
    .nav__item--secondary {
        margin: 0 12px 0 0;
    }
    .nav__item--primary {
        margin: 0 40px 0 0;
    }
    .nav__submenu {
        width: 240px;
        margin: 0 0 0 -120px;
        font-size: 15px;
    }
    .nav__submenu-item {
        padding: 0 24px;
    }
}
@media all and (min-width: 1360px) {
    .nav--secondary {
        font-size: 14px;
    }
    .nav--primary {
        display: flex;
    }
    .nav__item--secondary {
        margin: 0 16px 0 0;
    }
    .nav__item--primary {
        margin: 0 40px 0 0;
    }
}
@media all and (min-width: 1400px) {
    .nav--secondary {
        height: 52px;
    }
    .nav--primary {
        font-size: 15px;
    }
    .nav__item--secondary {
        margin: 0 20px 0 0;
    }
    .nav__item--primary {
        margin: 0 44px 0 0;
    }
}
@media all and (min-width: 1920px) {
    .nav__item--secondary {
        margin: 0 24px 0 0;
    }
    .nav__item--primary {
        margin: 0 52px 0 0;
    }
    .nav__submenu {
        width: 260px;
        margin: 0 0 0 -130px;
    }
}
.container {
    width: 90vw;
    margin-right: auto;
    margin-left: auto;
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.grid--gap-default {
    row-gap: 24px;
}
@media all and (min-width: 768px) {
    .container {
        width: 92vw;
    }
    .grid {
        gap: 20px;
    }
    .grid--gap-default {
        row-gap: 20px;
    }
}
@media all and (min-width: 1024px) {
    .container {
        width: 94vw;
    }
    .grid {
        gap: 28px;
    }
    .grid--gap-default {
        row-gap: 28px;
    }
}
@media all and (min-width: 1400px) {
    .container {
        width: 92vw;
    }
    .grid {
        gap: 30px;
    }
    .grid--gap-default {
        row-gap: 30px;
    }
}
@media all and (min-width: 1920px) {
    .container {
        width: 1504px;
    }
    .grid {
        gap: 32px;
    }
    .grid--gap-default {
        row-gap: 32px;
    }
}
