.promo-banner {
    color: #fff;
    background: radial-gradient(circle at bottom, #fa9d24 600px, #9ca11f) 50% 50%/100% 100%
}

.promo-banner__inner {
    position: relative;
    display: block;
    padding: 8px 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: center
}

@media screen and (max-width:767px) {
    .promo-banner__inner {
        font-size: 13px;
        line-height: 16px
    }
}

.promo-banner__inner a {
    white-space: nowrap;
    text-decoration: underline
}

.promo-banner__close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 0
}

.promo-banner__close::before {
    content: "";
    cursor: pointer;
    background: linear-gradient(45deg, transparent calc(50% - 1px), #1677FF calc(50% - 1px), #1677FF calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(-45deg, transparent calc(50% - 1px), #1677FF calc(50% - 1px), #1677FF calc(50% + 1px), transparent calc(50% + 1px));
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 100%
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.logo img {
    display: block;
    max-width: 100%
}

.header {
    border-bottom: 1px solid #ebebeb
}

.header__inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 0
}

@media screen and (max-width:1199px) {
    .header__inner {
        padding: 10px 0
    }
}

.header__logo {
    flex: 0 0 160px;
    padding-right: 24px
}

.header__menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between
}

@media screen and (max-width:1199px) {
    .header__menu {
        justify-content: flex-end
    }
}

.header__right {
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

@media screen and (max-width:1199px) {
    .header__right {
        display: none
    }
}

.header-dropdown {
    position: relative
}

@media screen and (max-width:1300px) {
    .header-dropdown {
        margin-left: 0
    }
}

.header-dropdown__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #656c76;
    width: 36px;
    height: 40px;
    transition: color .3s ease;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -ms-transition: color .3s ease;
    -o-transition: color .3s ease;
}

.header-dropdown__toggle svg {
    display: block;
    width: 24px;
    height: 24px
}

.header-dropdown__dropdown {
    position: absolute;
    top: 100%;
    right: 50%;
    z-index: 99;
    min-width: 200px;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translate(50%, -5px);
    transition: all .3s ease-in-out
}

.header-dropdown__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.header-dropdown__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
    transition: color .3s ease
}

.header-dropdown__link-icon {
    margin: 0 10px;
}

.header-dropdown__link-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.header-dropdown__link:hover {
    color: #fa9d24
}

.header-dropdown:hover .header-dropdown__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0)
}

.header-actions {
    display: flex;
    gap: 0 10px;
    margin-left: 16px
}

@media screen and (max-width:1300px) {
    .header-actions {
        margin-left: 10px
    }
}

.header-actions .btn {
    height: 40px;
    border-radius: 24px
}

.header-menu {
    position: relative
}

.header-menu__toggle {
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    padding-right: 16px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: color .3s ease
}

@media screen and (max-width:1300px) {
    .header-menu__toggle {
        padding-right: 10px
    }
}

.header-menu__toggle svg {
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    transition: transform .4s ease-in-out
}

.header-menu__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    min-width: 260px;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all .3s ease-in-out
}

.header-menu__list {
    margin: 0;
    padding: 10px 0;
    list-style: none
}

.header-menu__item {
    padding: 10px 20px
}

.header-menu__link {
    position: relative;
    display: inline-flex;
    font-size: 13px;
    font-weight: 500
}

.header-menu__link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #0c1724;
    transition: width .3s ease
}

.header-menu__link:hover::after {
    width: 100%
}

.header-menu__sub-text {
    color: #363c44;
    font-size: 12px
}

.header-menu:hover .header-menu__toggle {
    color: #fa9d24
}

.header-menu:hover .header-menu__toggle svg {
    transform: rotate(180deg)
}

.header-menu:hover .header-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header-search__toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #656c76;
    width: 40px;
    height: 40px;
    transition: color .3s ease
}

.header-search__toggle svg {
    display: block;
    width: 24px;
    height: 24px
}

.header-search__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 18px 18px rgba(0, 0, 0, .08), 0 0 24px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out
}

.header-search__group {
    display: flex;
    align-items: center;
    padding: 15px
}

.header-search__input {
    width: 100%;
    padding: 9px 15px;
    color: #0c1724;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    transition: border .3s ease
}

.header-search__input:hover, .header-search__input:focus {
    outline: 0;
    border-color: #0c1724
}

.header-search__btn {
    margin-left: 15px;
    white-space: nowrap
}

.header-search:hover .header-search__toggle {
    color: #fa9d24
}

.header-search:hover .header-search__dropdown {
    opacity: 1;
    visibility: visible
}

.main-menu {
    display: flex;
    flex-flow: row wrap
}

@media screen and (max-width:1199px) {
    .main-menu {
        padding-top: 30px
    }
}

@media screen and (max-width:1199px) {
    .main-menu__item {
        position: relative;
        width: 100%
    }
}

.main-menu__item--dropdown {
    position: relative
}

.main-menu__item--mega .main-menu__dropdown {
    left: 0;
    width: 100%;
    max-width: 100%
}

.main-menu__item:hover>.main-menu__dropdown {
    opacity: 1;
    visibility: visible
}

@media screen and (min-width:1200px) {
    .main-menu__item:hover>.main-menu__link svg {
        transform: rotate(180deg)
    }
}

.main-menu__link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: color .3s ease
}

@media screen and (max-width:1199px) {
    .main-menu__link {
        justify-content: space-between
    }
}

@media screen and (max-width:1250px) {
    .main-menu__link {
        padding: 10px 12px
    }
}

.main-menu__link>svg {
    display: block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: all .3s ease
}

@media screen and (min-width:1200px) {
    .main-menu__link>svg {
        position: absolute;
        top: 13px;
        right: 0
    }
}

.main-menu__link:hover {
    color: #fa9d24
}

@media screen and (max-width:1199px) {
    .main-menu__link:hover {
        color: #0c1724
    }
}

.main-menu__title {
    margin: 0 0 8px;
    padding: 6px 0 10px;
    font-size: 12px;
    font-weight: bold;
}

@media screen and (max-width:1199px) {
    .main-menu__title {
        margin: 0 10px 5px;
        padding: 0 0 5px
    }
}

@media screen and (min-width:1200px) {
    .main-menu__dropdown {
        position: absolute;
        top: 100%;
        left: -10px;
        z-index: 100;
        min-width: 300px;
        padding: 20px 30px;
        background-color: #fff;
        box-shadow: 0 0 50px 0 rgba(0, 0, 0, .2);
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all .1s ease
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown {
        display: none;
        width: 100% !important;
        padding: 10px 20px
    }

    .main-menu__dropdown .grid {
        display: block
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown-column {
        margin-bottom: 15px
    }
}

@media screen and (max-width:1199px) {
    .main-menu__dropdown-list {
        padding: 0 10px
    }
}

.main-menu__dropdown-item {
    display: flex;
    padding: 6px 0
}

.main-menu__dropdown-link {
    position: relative;
    display: block;
    padding: 0;
    color: #0c1724;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    transition: color .3s ease
}

.main-menu__dropdown-link::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fa9d24;
    transition: width .3s ease
}

.main-menu__dropdown-link:hover {
    color: #fa9d24
}

.main-menu__dropdown-link:hover::after {
    width: 100%
}

.mm-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.mm-toggle svg {
    display: block;
    width: 30px;
    height: 30px
}

@media screen and (min-width:1200px) {
    .mm-toggle {
        display: none
    }
}

.mm-toggle:hover, .mm-toggle:focus {
    color: #0c1724;
    background-color: rgba(0, 0, 0, 0)
}

@media screen and (max-width:1199px) {
    .menu-primary {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .menu-primary__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, .8);
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease
    }

    .menu-primary__content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
        width: 320px;
        padding-bottom: 220px;
        background-color: #fff;
        transform: translateX(-320px);
        transition: all .3s ease
    }
}

@media screen and (max-width:1199px)and (max-width:380px) {
    .menu-primary__content {
        width: 260px
    }
}

@media screen and (max-width:1199px) {
    .menu-primary--open {
        pointer-events: auto;
        opacity: 1;
        visibility: visible
    }

    .menu-primary--open .menu-primary__overlay {
        opacity: 1;
        visibility: visible
    }

    .menu-primary--open .menu-primary__content, .menu-primary--open .menu-primary__footer {
        transform: translateX(0)
    }
}

.menu-primary__footer {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 320px;
    padding: 15px;
    background-color: #f1f5f9;
    transform: translateX(-320px);
    transition: all .3s ease
}

@media screen and (min-width:1200px) {
    .menu-primary__footer {
        display: none
    }
}

@media screen and (max-width:380px) {
    .menu-primary__footer {
        width: 260px
    }
}

.menu-languages {
    display: flex;
    flex-flow: row wrap;
    grid-gap: 10px;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.menu-languages__link {
    display: flex;
    justify-content: center;
    min-width: 38px;
    padding: 3px;
    border: 1px solid #ebebeb;
    border-radius: 3px
}

.menu-languages__link.active {
    border-color: #fa9d24
}

.menu-account {
    margin: 0;
    padding: 5px 0 0;
    list-style: none
}

.menu-account__item {
    margin: 10px 0 0
}

.menu-account .btn {
    width: 100%;
    padding: 6px 20px;
    justify-content: center;
    font-size: 13px;
    text-transform: uppercase
}

.menu-search {
    margin: 20px 0 0
}

.menu-search .header-search__input {
    border-radius: 40px
}

.menu-search__group {
    position: relative
}

.menu-search__btn {
    position: absolute;
    top: 5px;
    right: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px
}