.header {
    position: relative;
    z-index: 5
}

.header__hamburger {
    display: none;
    background: #2e5b6c;
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 100%
}

.header__bg {
    padding: 18px 0;
    background: #34677b;
    z-index: 4;
    position: relative
}

.header__wrap {
    display: grid;
    grid-template-columns:minmax(250px, 337px) minmax(200px, 1fr) auto;
}

.header__logo img {
    max-width: 100%;
    max-height: 88px;
}

.header__info-list {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
    flex-wrap: wrap
}

.header__info-item__wrap {
    gap: 10px;
    display: flex;
    align-items: center
}

.header__info-item__content {
    display: flex;
    flex-direction: column;
    gap: 8px
}
.header .header__info-item__badge {
    width: 25px;
    height: 25px;
    display: flex;
    flex-direction: column;

    img {
        max-width: 100%;
        max-height: 100%;
    }
}

.header__info-item__content a {
    color: #fff;
    font-family: Proxima Nova Rg, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

@media (max-width: 767px) {
    .header__info-item__content a {
        font-size: calc(13.73333px + .70833vw)
    }
}

@media (min-width: 767px) {
    .header__info-item__content a {
        font-size: calc(16px + .41667vw)
    }
    .header__info-item__address a{
        font-size: calc(9px + .41667vw)
    }
}

.header__command {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header__nav {
    display: grid;
    grid-template-columns:1fr /*280px*/;
    background: #fff
}

.header .nav__list {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.header .nav__list li {
    flex: 1;
    padding: 10px 0
}

.header .nav__list li, .header .nav__list li a {
    display: flex;
    justify-content: center;
    align-items: center
}
.header .nav__list li a {
    color: #34677b;
    font-family: Muller, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-left: 1px solid #dbdbdb;
    width: 100%;
    height: 35px
}

@media (max-width: 767px) {
    .header .nav__item__link {
        font-size: calc(14.86667px + .35417vw)
    }
}

@media (min-width: 767px) {
    .header .nav__item__link {
        font-size: calc(16px + .20833vw)
    }
}

.header .current-menu-item {
    background: #469fb5
}

.header .current-menu-item .nav__item__link {
    color: #fff;
    border: none
}

.header .current-menu-item + .nav__item .nav__item__link {
    border: none
}
.header .nav__list .current-menu-item a {
    color: white;
}

.header .nav__search {
    border: none;
    outline: none;
    padding: 10px 40px 10px 0;
    display: flex;
    justify-content: flex-end
}

.header .nav__search .button-search {
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    width: 100px
}

@media (max-width: 1360px) {
    .header__info-list {
        gap: 10px;
        justify-content: center;
        flex-direction: column-reverse
    }
}

@media (max-width: 1050px) {
    .header__wrap {
        grid-template-columns:1fr auto;
        gap: 35px
    }

    .header__command {
        grid-column-start: 1;
        grid-column-end: 3;
        border-top: 1px solid #fff;
        justify-content: center;
        align-items: center;
        padding-top: 35px
    }

    .header {
        position: relative
    }
    .header .nav__list li {
        border-bottom: 1px solid #dbdbdb;
    }
    .header .nav__list li a {
        color: white;
        border-left: none;
    }

    .header__info-list {
        display: none
    }

    .header__hamburger {
        display: flex
    }

    .header__nav {
        width: 100%;
        background: #34677b;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        transition: .2s
    }

    .header .nav {
        grid-template-columns:1fr;
        border-top: 1px solid #fff;
        height: 100%;
        overflow: auto;
        padding-top: 20px
    }

    .header .nav__list {
        flex-direction: column
    }

    .header .nav__item__link {
        color: #fff
    }

    .header .nav__search {
        height: 55px;
        display: none
    }

    .header__nav--active {
        top: 100%;
        transition: .2s;
    }
}

.custom-menu-sub-items {
    display: flex;

    .custom-menu-sub-items__item {
        display: flex;
        flex-direction: column;
    }
}