/*================================= site-header =============================*/
.site-header {
    flex: 0 0 auto;
}

.site-header-top {
    position: relative;
    font-size: 16px;
    background: #005b88;
    color: #ffffff;
    --link-color: currentColor;
    --link-color-hover: currentColor;
}
.site-header-top__inner {
    min-height: 41px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-header-top__menu {
    min-width: 1px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex: 1 1 auto;
}
.site-header-top__menu.is-activated {
    padding-top: 1px;
    padding-right: 15px;
}
.site-header-top__menu-item {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
    text-align: center;
}
.site-header-top__menu-button {
    font-weight: normal;
}
.site-header-top__menu-head {
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
}
.is-activated .site-header-top__menu-head {
    display: block;
}
.site-header-top .header-search {}

.site-header-middle {
    padding: 14px 0 0px 0;
}
.site-header-middle__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'office office' 'logo logo';
    justify-content: space-between;
    align-items: center;
    gap: 16px 20px;
}
.site-header-middle__logo {
    width: 146px;
    margin: 0 auto;
    grid-area: logo;
}
.site-header-middle__contacts {
    min-width: 1px;
    display: flex;
    display: none;
    flex-direction: column;
    gap: 20px;
    grid-area: contact;
}
.site-header-middle__office {
    justify-self: flex-end;
    grid-area: office;
}
.site-header-middle__callback {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-self: flex-end;
    grid-area: callback;
}
.site-header-middle__callback .header-lk {
    display: none;
}
.site-header-middle__right {
    display: contents;
    grid-area: right;
}
.site-header-middle__catalog {
    position: relative;
    margin-top: 36px;
    grid-area: catalog;
    --wc-side-width: 550px;
    --link-color: #fff;
    --link-color-hover: var(--link-color);
}
.site-header-middle__catalog-button {
    justify-content: flex-start;
    text-transform: uppercase;
    display: none;

    --button-font-size: 16px;
    --button-font-weight: 700;
    --button-width: 100%;
    --button-height: 52px;
    --button-padding-x: 43px;
    --button-radius: 6px;
    --button-border-width: 0px;
    --button-bg: #f3f3f3 url('/layout/images/gamburger.svg') 17px center no-repeat;
    --button-bg-hover: var(--button-bg);
    --button-shadow: none;
    --button-color: currentColor;
    --button-color-hover: var(--button-color);
}
.site-header-middle__catalog-head {
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
}
.is-activated .site-header-middle__catalog-head {
    display: block;
}

.site-header__lk-menu {
    padding-top: 18px;
    --button-font-size: 14px;
    --button-font-weight: 700;
    --button-width: 100%;
    --button-height: 52px;
    --button-padding-x: 50px;
    --button-radius: 4px;
    --button-border-width: 0px;
    --button-bg: #F3F3F3 url('/layout/images/gamburger.svg') 17px center no-repeat;
    --button-bg-hover: var(--button-bg);
    --button-shadow: none;
    --button-color: #215B84;
    --button-color-hover: var(--button-color);
}
.site-header__lk-menu.is-activated {
    display: inline-grid;
}
.site-header__lk-menu-toggle {
    justify-content: flex-start;
    --_button-border-color: #fff;
    --_button-border-color-hover: #EFF6FB;
    --_button-bg: transparent;
    --_button-color: #fff;
    --_button-color-hover: #EFF6FB;
}

@media (min-width: 576px) {
    .site-header-middle__inner {
        grid-template-areas: 'logo callback office';
        grid-template-columns: auto 1fr auto;
        gap: 13px 28px;
    }
    .site-header-middle__logo {
        width: 146px;
    }
    .site-header-middle__contacts {
        padding-top: 12px;
    }
    .site-header-middle__office {}
    .site-header-middle__catalog {
        margin-top: 0;
    }
}
@media (min-width: 768px) {
    .site-header-top__menu-item--contact {
        display: none;
    }
    .site-header-middle {
        padding: 29px 0 0px 0;
    }
    .site-header-middle__inner {
        grid-template-areas: 'logo callback office';
        grid-template-columns: auto 1fr auto;
        gap: 13px 28px;
    }
    .site-header-middle__logo {
        width: 195px;
    }
    .site-header-middle__contacts {
        padding-top: 0;
    }
    .site-header-middle__office {}
    .site-header-middle__catalog {}
}
@media (min-width: 992px) {
    .site-header-top__inner {
        min-height: 56px;
        gap: 20px;
    }
    .site-header-top__menu {}
    .site-header-top__menu-item {
        display: none;
    }

    .site-header-middle__inner {
        grid-template-areas: 'logo contact right';
        gap: 13px 30px;
    }
    .site-header-middle__callback .header-lk {
        display: flex;
    }
    .site-header-middle__contacts {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .site-header-middle__right {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }
    .site-header-middle__catalog {
        padding: 5px;
        border-radius: 6px;
        background-color: #f3f3f3;
    }

    .site-header__lk-menu {
        display: none;
    }
}
@media (min-width: 1200px) {
    .site-header-middle__inner {
        gap: 13px 20px;
    }
    .site-header-middle__contacts {
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }
}
@media (min-width: 1440px) {
    .site-header-middle__inner {}
    .site-header-middle__logo {
        width: 265px;
    }
}
/*--------------------------------- header-logo -----------------------------*/
.header-logo {
    font-size: 11px;
    font-weight: 600;
    min-width: 1px;
    padding: 0 0 11px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
    text-decoration: none;
    color: #005c88;
}
.header-logo__img {
    max-width: 100%;
    margin: auto;
}

@media (min-width: 576px) {}
@media (min-width: 768px) {
    .header-logo {
        font-size: 14px;
    }
}
@media (min-width: 992px) {
    .header-logo {
        width: 187px;
        margin: 0 auto;
    }
}
@media (min-width: 1440px) {
    .header-logo {
        font-size: 17px;
        gap: 27px;
    }
}
/*--------------------------------- top-menu --------------------------------*/
.top-menu {
    display: none;
}
.is-activated .top-menu {
    display: block;
}
.top-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px 20px;
}
.top-menu__item {
    position: relative;
    padding: 0;
    margin: 0;
}
.top-menu__item-head {}
.top-menu__link {
    padding: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}
.is-activated .top-menu__link {
    padding: 0;
}
.top-menu__link:hover {
    text-decoration: underline;
}
.top-menu__sub {}
.is-activated .top-menu__sub {
    padding-left: 20px;
}
.top-menu__sub .top-menu__link {
    padding: 0;
    flex-direction: column;
    display: inline;
}
.top-menu a[href="/rates/help/"] {
    color: #fdb404;
}

@media (min-width: 992px) {
    .top-menu {
        font-size: 13px;
        display: block;
    }
    .top-menu__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 15px;
    }
    .top-menu__item-head {
        padding: 14px 0;
    }
    .top-menu__sub {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        padding: 20px;
        background: #175B87;
        display: none;
    }
    .top-menu__item:hover .top-menu__sub {
        display: block;
    }
}
@media (min-width: 1200px) {
    .top-menu {
        font-size: 14px;
    }
}
@media (min-width: 1440px) {
    .top-menu {
        font-size: 16px;
    }
    .top-menu__list {
        gap: 25px;
    }
}
/*--------------------------------- header-search ---------------------------*/
.header-search {
    flex: 0 0 auto;
}
.header-search__button {
    font: inherit;
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    border: none;
    background: url('/design/svg/search.svg') center center no-repeat;
    background-size: 100%;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.header-search__popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #005b88;
    z-index: 500;

    --input-font-size: 17px;
    --input-height: 34px;
    --input-border-radius: 0px;
    --input-plaseholder-color: #006492;
}
.header-search__popup.opened {
    display: block;
}
.header-search__popup-inner {
    padding-top: 4px;
    padding-bottom: 4px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}
.search-form__input {
    padding-right: 35px;
    grid-area: 1 / 1 / 2 / 3;
}
.search-form__button {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0 10px 0 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: url('/design/svg/search-button.svg') no-repeat;
    background-size: 100%;
    grid-area: 1 / 2 / 2 / 3;
}

@media (min-width: 992px) {
    .header-search__popup-inner {
        padding-top: 11px;
        padding-bottom: 11px;
    }
}
/*--------------------------------- header-contacts -------------------------*/
.header-contact {
    font-size: 14px;
}
.header-contact__city {
    line-height: 1;
    display: none;
}
.header-contact__email {
    line-height: 1;
    --link-line: none;
    --link-line-hover: underline;
}
.header-contact__email-item {}
.header-contact__email-descr {
    display: none;
    white-space: nowrap;
}
.header-contact__link {
    display: none;
}

.header-phone {
    font-size: 14px;
    font-weight: 700;
}
.header-email {
    font-weight: bold;
    color: #f5ae04;
}
.header-callme {
    --button-min-width: 54px;
    --button-height: 54px;
    --button-gap: 12px;
}
.header-callme .pvs-button__inner {
    display: none;
}

.header-lk {
    font-size: 14px;
    font-weight: 600;
    line-height: calc(18 / 14);
    display: flex;
    align-items: center;
    gap: 20px;

    --link-line-style: dotted;
    --link-line-style-hover: var(--_link-line-style);
    --link-line: underline;
    --link-line-hover: none;
    --link-line-thickness: 2px;
    --link-color: #215B84;
}
.header-lk__link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    fill: #005B88;
    stroke: #005B88;
}
.header-lk__link-inner {}
.header-lk__link-icon {
    flex: 0 0 auto;
    fill: inherit;
    stroke: inherit;
}
.header-lk__link--login {
    gap: 10px;
    --link-color: #E28903;
}
.header-lk__link--logout {
    fill: #4DA3CD;
    stroke: #4DA3CD;
    --link-color: #4DA3CD;
}

@media (min-width: 576px) {
    .header-contact {
        font-size: 16px;
    }
    .header-contact__email-descr {
        display: inline;
    }

    .header-callme {
        --button-height: var(--_button-height);
        --button-padding-y: 14px;
        --button-padding-x: 20px;
    }
    .header-callme .pvs-button__icon {
        display: none;
    }
    .header-callme .pvs-button__inner {
        display: block;
    }

    .header-lk__link {
        --button-height: auto;
        --button-padding-y: 10px;
        --button-padding-x: 0px;
        --button-radius: 0;
        --button-bg: none;
        --button-shadow: none;
        --button-color: #3194c3;
    }
    .header-lk__link .pvs-button__icon {

    }
    .header-lk__link .pvs-button__inner {
        display: inline;
    }
}
@media (min-width: 768px) {
    .header-contact__city {
        display: block;
    }
    .header-contact__link {
        display: inline;
    }

    .header-phone {
        font-size: 16px;
    }

    .header-callme {
        --button-min-width: 54px;
        --button-height: 54px;
        --button-gap: 12px;
    }
    .header-callme .pvs-button__icon {
        display: block;
    }
    .header-callme .pvs-button__inner {
        display: none;
    }
}
@media (min-width: 992px) {
    .header-callme {
        --button-height: var(--_button-height);
        --button-min-width: 200px;
        --button-padding-y: 14px;
        --button-padding-x: 20px;
    }
    .header-callme .pvs-button__icon {
        display: none;
    }
    .header-callme .pvs-button__inner {
        display: block;
    }
}
@media (min-width: 1200px) {
    .header-contact__city {
        line-height: 1.75;
    }
    .header-contact__email {
        font-weight: 700;
        line-height: 1.75;
    }
}
@media (min-width: 1440px) {
    .header-contact--phone {
        width: 22%;
    }
}
/*--------------------------------- catalog-menu ----------------------------*/
.catalog-menu {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    min-width: 1px;
    --link-line: none;
}
.catalog-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.catalog-menu__item {
    position: relative;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.23);
}
.catalog-menu__item:first-child {
    border-top: none;
}

.catalog-menu__sublist {
    padding: 5px 0;
    margin: 0;
    list-style: none;
    color: #d7dfe6;
}
.catalog-menu__subitem {
    padding: 0;
    margin: 0;
}
.catalog-menu__sublink {
    padding: 5px 0;
    display: block;
}

.catalog-menu-item {}
.catalog-menu-item__head {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    min-width: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    fill: currentColor;
}
.catalog-menu-item__head-image {
    width: 50px;
    min-height: 34px;
    display: flex;
    align-self: flex-start;
    flex: 0 0 auto;
}
.catalog-menu-item__head-image svg {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    transform: scale(0.7);
    fill: inherit;
}
.catalog-menu-item__head-title {
    min-width: 1px;
    padding: 6px 0;
    flex: 1 1 auto;
}
.catalog-menu-item__toggle {
    font: inherit;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    border: none;
    background: url('/layout/images/catalog-arrow.svg') center center no-repeat;
    transform: rotate(180deg);
    transition: 0.3s;
    display: none;
    align-self: center;
    flex: 0 0 auto;
    cursor: pointer;
}
.catalog-menu-item__toggle.is-overflow {
    display: block;
}
.catalog-menu-item__toggle.is-open {
    transform: rotate(0);
}

@media (hover: hover) {
    .catalog-menu__sublink:hover {
        background-color: #d97906;
    }
}
@media (min-width: 576px) {
    .catalog-menu-item__head {
        gap: 15px;
    }
    .catalog-menu-item__head-image {
        width: 105px;
        padding: 5px 0;
    }
    .catalog-menu-item__head-image svg {
        transform: none;
    }

    .catalog-menu__sublist {
        /*padding-left: 120px;*/
    }
    .catalog-menu__sublink {
        padding: 5px 0 5px 120px;
    }
}
@media (min-width: 992px) {
    .catalog-menu {}
    .catalog-menu__list {
        display: flex;
        justify-content: center;
    }
    .catalog-menu__item {
        max-width: 160px;
        border: none;
        display: flex;
        flex: 1 1 1%;
    }

    .catalog-menu__sublist {
        position: absolute;
        left: 0;
        top: 100%;
        width: 400px;
        margin-top: 15px;
        border-radius: 6px;
        background-color: #005b88;
        display: none;
        color: #fff;
        z-index: 500;
    }
    .catalog-menu__sublist:before {
        position: absolute;
        content: '';
        bottom: 100%;
        left: 0;
        right: 0;
        height: 15px;
    }
    .catalog-menu__item:last-child .catalog-menu__sublist {
        left: auto;
        right: 0;
    }
    .catalog-menu__item:hover .catalog-menu__sublist {
        display: block;
    }
    .catalog-menu__subitem {

    }
    .catalog-menu__sublink {
        padding: 5px 20px;
    }
    .catalog-menu__sublink {
        padding: 5px 20px;
    }

    .catalog-menu-item {
        min-width: 1px;
        display: flex;
        flex: 1 1 auto;
        --wc-collapse-close-max-height: none;
    }
    .catalog-menu-item__head {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.6;
        min-height: 109px;
        padding: 0 15px;
        border-radius: 6px;
        flex-direction: column;
        text-align: center;
        gap: 0;
        color: #04324a;
        fill: #005b88;
    }
    .catalog-menu-item__head:hover, .catalog-menu__item:hover .catalog-menu-item__head {
        background-color: #005b88;
        color: #fff;
        fill: #fff;
    }
    .catalog-menu-item__head-image {
        width: auto;
        height: 55px;
        padding: 0;
        align-self: center;
    }
    .catalog-menu-item__head-title {
        padding: 0;
    }
}
@media (min-width: 1440px) {

}
/*--------------------------------- top-menu --------------------------------*/