.rs-header {
    position: relative;
    z-index: 1000;
    /* margin-bottom: -100%; */
}

.rs-header._menu-fixed .rs-header__bottom {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.rs-header__top {
    height: 42px;
    background-color: #ffffff;
    border-bottom: 1px solid #e7e3d3;
    z-index: 50;
    position: relative;
}

@media (max-width: 1176px) and (min-width: 993px) {
    .rs-header__top {
        height: calc(30px + (44 - 30) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header__top {
        display: none;
    }
}

.rs-header__container {
    height: 100%;
    position: relative;
}

.rs-header__top-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rs-header .menu {
    height: 100%;
}

@media (min-width: 993px) {
    .rs-header .menu {
        margin-left: -12px;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header .menu {
        margin-left: calc(-5px + ((-12) - -5) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0px 15px 0px auto;
    }
}

.rs-header .menu__icon {
    position: relative;
    width: 20px;
    height: 14px;
    cursor: pointer;
    z-index: 5;
    display: block;
    margin: 0;
}

@media (min-width: 993px) {
    .rs-header .menu__icon {
        display: none;
    }
}

.rs-header .menu__icon span {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
}


/* 
.rs-header .menu__icon span,
.rs-header .menu__icon::before,
.rs-header .menu__icon::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
} */

.rs-header .menu__icon span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rs-header .menu__icon span:first-child {
    top: 0px;
}

.rs-header .menu__icon span:last-child {
    top: 100%;
    bottom: 0px;
}


/* .rs-header .menu__icon._icon-open span,
.rs-header .menu__icon._icon-open::before,
.rs-header .menu__icon._icon-open::after {
    background-color: #000;
} */

.rs-header .menu__icon._icon-open span {
    background-color: #000;
}

.rs-header .menu__icon._icon-open span {
    -webkit-transform: scale(0) translateY(-50%);
    -ms-transform: scale(0) translateY(-50%);
    transform: scale(0) translateY(-50%);
}

.rs-header .menu__icon._icon-open span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
}

.rs-header .menu__icon._icon-open span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: auto;
    bottom: calc(50% - 1px);
}


/* 
.rs-header .menu__icon._icon-open::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
}

.rs-header .menu__icon._icon-open::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
} */

@media (min-width: 993px) {
    .rs-header .menu__body {
        height: 100%;
    }
}

@media (max-width: 992px) {
    .rs-header .menu__body {
        width: 100%;
        max-width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        max-height: calc(100vh - 80px);
        z-index: 99;
        overflow-y: auto;
        background: #fff;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        padding: 10px 5px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }
    .rs-header .menu__body._menu-active {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.rs-header .menu__list {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .rs-header .menu__list {
        display: block;
        margin-top: 10px;
    }
}

@media (min-width: 993px) {
    .rs-header .menu__list>li {
        padding: 0 12px;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header .menu__list>li {
        padding: 0px calc(5px + (12 - 5) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (min-width: 993px) {
    .rs-header .menu__list>li>a {
        position: relative;
    }
    .rs-header .menu__list>li>a::after {
        content: "";
        position: absolute;
        bottom: 12px;
        right: 0;
        width: 0%;
        height: 1px;
        background-color: #000000;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
}

@media (min-width: 993px) and (any-hover: hover) {
    .rs-header .menu__list>li:hover>a::after {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 992px) {
    .rs-header .menu__list>li a {
        padding: 7.5px 0px;
    }
}

.rs-header .menu__list>li>a {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #000000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header .menu__list li {
    position: relative;
    height: 100%;
}

.rs-header .menu__list li a i {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-left: 10px;
}

@media (min-width: 993px) {
    .rs-header .menu__list li a i {
        display: none;
    }
}

.rs-header .menu__list li a i::before {
    font-weight: 500;
    font-size: 15px;
}

@media (min-width: 993px) {
    .rs-header .menu__list li.dropdown._open>ul {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .rs-header .menu__list li.dropdown._open>a>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        color: #682611;
    }
    .rs-header .menu__list li.dropdown._open>a {
        color: #682611;
    }
}

@media (min-width: 993px) and (any-hover: hover) {
    .rs-header .menu__list li.dropdown:hover>ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        pointer-events: all;
    }
    .rs-header .menu__list li.dropdown:hover>a>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        color: #682611;
    }
    .rs-header .menu__list li.dropdown:hover>a {
        color: #682611;
    }
}

@media (max-width: 992px) {
    .rs-header .menu__list li.dropdown>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .rs-header .menu__list li.dropdown._open>ul {
        display: block;
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .rs-header .menu__list li.dropdown._open>a>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
}

.rs-header .menu__list li.dropdown>ul {
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    display: block;
}

@media (min-width: 993px) {
    .rs-header .menu__list li.dropdown>ul {
        min-width: 305px;
        max-width: 305px;
        background-color: #ffffff;
        border: 1px solid #e9e9e9;
        top: 100%;
        left: 0px;
        padding: 7px 42px;
        pointer-events: none;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header .menu__list li.dropdown>ul {
        min-width: calc(200px + (305 - 200) * ((100vw - 992px) / (1176 - 992)));
        max-width: calc(200px + (305 - 200) * ((100vw - 992px) / (1176 - 992)));
        padding: 7px calc(10px + (42 - 10) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header .menu__list li.dropdown>ul {
        display: none;
        width: 100%;
        top: 0px;
        left: 0px;
        -webkit-animation: show-up 0.2s both;
        animation: show-up 0.2s both;
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
    @-webkit-keyframes show-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes show-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
}

.rs-header .menu__list li.dropdown>ul li {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

@media (min-width: 993px) {
    .rs-header .menu__list li.dropdown>ul li:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #e7e3d3;
    }
}

@media (any-hover: hover) {
    .rs-header .menu__list li.dropdown>ul li:hover a {
        color: #682611;
    }
}

@media (min-width: 993px) {
    .rs-header .menu__list li.dropdown>ul li>a {
        padding: 19px 0px 19px 0px;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header .menu__list li.dropdown>ul li>a {
        padding: calc(10px + (19 - 10) * ((100vw - 992px) / (1176 - 992))) 0;
    }
}

@media (max-width: 992px) {
    .rs-header .menu__list li.dropdown>ul li {
        padding-left: 10px;
    }
}

.rs-header .menu__list li.dropdown>ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #617798;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #000000;
}

.rs-header .menu__list li.dropdown>ul li.dropdown>ul {
    left: 0;
    top: 0;
}

@media (min-width: 993px) {
    .rs-header .menu__list li.dropdown>ul li.dropdown>ul {
        left: 100%;
        top: 0;
    }
}

.rs-header .menu__list li.current_menu_item>a {
    color: #682611 !important;
}

.rs-header .contact {
    height: 100%;
}

.rs-header .contact__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

@media (min-width: 993px) {
    .rs-header .contact__tabs {
        display: none;
    }
}

.rs-header .contact__tabs li {
    border: 1px solid #682611;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin: 0 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

@media (max-width: 992px) and (min-width: 320px) {
    .rs-header .contact__tabs li {
        height: calc(35px + (40 - 35) * ((100vw - 320px) / (992 - 320)));
        width: calc(35px + (40 - 35) * ((100vw - 320px) / (992 - 320)));
    }
}

.rs-header .contact__tabs li._tab-active {
    background-color: #682611;
}

.rs-header .contact__tabs li._tab-active::before {
    color: #fff;
}

.rs-header .contact__tabs li::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #682611;
}

@media (max-width: 992px) and (min-width: 320px) {
    .rs-header .contact__tabs li::before {
        font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (992 - 320)));
    }
}

.rs-header .contact__tabs li a {
    color: #682611;
}

.rs-header .contact__list {
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 992px) {
    .rs-header .contact__list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.rs-header .contact__list li {
    height: 100%;
    position: relative;
}

@media (min-width: 993px) {
    .rs-header .contact__list li:not(:last-child) {
        margin-right: 24px;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header .contact__list li:not(:last-child) {
        margin-right: calc(10px + (24 - 10) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header .contact__list li {
        display: none;
        max-width: 250px;
        margin: 0 auto;
    }
    .rs-header .contact__list li._content-active {
        display: block;
    }
}

.rs-header .contact__list li a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #4a4a4a;
}

@media (any-hover: hover) {
    .rs-header .contact__list li a:hover {
        color: #682611;
    }
}

.rs-header__bottom {
    height: 77px;
    z-index: 10;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
}

@media (max-width: 1176px) and (min-width: 993px) {
    .rs-header__bottom {
        height: calc(65px + (77 - 65) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header__bottom {
        height: 65px;
    }
}

.rs-header__bottom-wrapper {
    height: 100%;
    width: 100%;
}

@media (min-width: 993px) {
    .rs-header__bottom-wrapper {
        grid-template-columns: repeat(4, 1fr);
        display: -ms-grid;
        display: grid;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .rs-header__bottom-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.rs-header__catalog {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 992px) {
    .rs-header__catalog {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (any-hover: hover) {
    .rs-header__catalog:hover .rs-header__catalog-list>ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        pointer-events: all;
    }
    .rs-header__catalog:hover .rs-header__catalog-icon::before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 50%;
    }
    .rs-header__catalog:hover .rs-header__catalog-icon::after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: 50%;
    }
}

.rs-header__catalog._active .rs-header__catalog-list>ul {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: all;
}

.rs-header__catalog._active .rs-header__catalog-icon::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 50%;
}

.rs-header__catalog._active .rs-header__catalog-icon::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 50%;
}

.rs-header__catalog-btn {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rs-header__catalog-icon {
    display: block;
    margin-right: 16px;
    width: 50px;
    height: 10px;
    position: relative;
}

@media (max-width: 1176px) and (min-width: 993px) {
    .rs-header__catalog-icon {
        width: calc(30px + (50 - 30) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header__catalog-icon {
        width: 30px;
    }
}

.rs-header__catalog-icon::before,
.rs-header__catalog-icon::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header__catalog-icon::before {
    top: 0;
}

.rs-header__catalog-icon::after {
    bottom: 0;
}

@media (max-width: 992px) {
    .rs-header__catalog-list {
        width: 100%;
        margin-top: 20px;
    }
}

.rs-header__catalog-list ul {
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    display: block;
    z-index: 99;
}

@media (min-width: 993px) {
    .rs-header__catalog-list ul {
        min-width: 305px;
        max-width: 305px;
        background-color: #ffffff;
        border: 1px solid #e9e9e9;
        top: 100%;
        left: 0px;
        padding: 7px 0px;
        pointer-events: none;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header__catalog-list ul {
        min-width: calc(200px + (305 - 200) * ((100vw - 992px) / (1176 - 992)));
        max-width: calc(200px + (305 - 200) * ((100vw - 992px) / (1176 - 992)));
        padding: 7px calc(10px + (42 - 10) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (max-width: 992px) {
    .rs-header__catalog-list ul {
        display: none;
        position: relative;
        width: 100%;
        top: 0px;
        left: 0px;
        -webkit-animation: show-up 0.2s both;
        animation: show-up 0.2s both;
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
    @-webkit-keyframes show-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes show-up {
        0% {
            opacity: 0;
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
}

.rs-header__catalog-list ul li {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
}

@media (min-width: 993px) {
    .rs-header__catalog-list ul li {
        padding: 0px 42px;
    }
}

@media (min-width: 993px) and (max-width: 1176px) {
    .rs-header__catalog-list ul li {
        padding: 0px calc(10px + (42 - 10) * ((100vw - 992px) / (1176 - 992)));
    }
}

@media (any-hover: hover) {
    .rs-header__catalog-list ul li:hover>a {
        color: #682611;
        background-color: #fff;
    }
}

.rs-header__catalog-list ul li:not(:last-child)>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e7e3d3;
}

.rs-header__catalog-list ul li>a {
    padding: 19px 0px 19px 0px;
}

@media (max-width: 1176px) {
    .rs-header__catalog-list ul li>a {
        padding: calc(10px + (19 - 10) * ((100vw - 320px) / (1176 - 320))) 0;
    }
}

.rs-header__catalog-list ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #617798;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    z-index: 9;
}


/* .rs-header__catalog-list ul li a i {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-left: 10px;
} */


/* .rs-header__catalog-list ul li a i::before {
  font-weight: 500;
  font-size: 15px;
} */

.rs-header__catalog-list ul li i {
    position: absolute;
    right: 42px;
    top: 35%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 10;
}

.rs-header__catalog-list ul li i::before {
    font-weight: 500;
    font-size: 15px;
}

@media (min-width: 993px) {
    .rs-header__catalog-list ul li.dropdown._open>ul {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
    .rs-header__catalog-list ul li.dropdown._open>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        color: #682611;
    }
    .rs-header__catalog-list ul li.dropdown._open>a {
        color: #682611;
    }
}

@media (min-width: 993px) and (any-hover: hover) {
    .rs-header__catalog-list ul li.dropdown:hover>ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        pointer-events: all;
    }
    /* .rs-header__catalog-list ul li.dropdown:hover>a>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        color: #682611;
    } */
    .rs-header__catalog-list ul li.dropdown:hover>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        color: #682611;
    }
    .rs-header__catalog-list ul li.dropdown:hover>a {
        color: #682611;
    }
}

@media (max-width: 992px) {
    .rs-header__catalog-list ul li.dropdown>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .rs-header__catalog-list ul li.dropdown._open>ul {
        display: block;
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        float: none;
        border: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .rs-header__catalog-list ul li.dropdown._open>i {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        top: 10%;
    }
}

.rs-header__catalog-list ul li.dropdown>ul {
    left: 0;
    top: 0;
}

@media (max-width: 992px) {
    .rs-header__catalog-list ul li.dropdown>ul li {
        padding-left: 10px;
    }
}

@media (min-width: 993px) {
    .rs-header__catalog-list ul li.dropdown>ul {
        left: 100%;
        top: 0;
    }
}

.rs-header__logo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rs-header__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rs-header__action-btn {
    position: relative;
}

.rs-header__action-btn:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 1176px) {
    .rs-header__action-btn:not(:last-child) {
        margin-right: calc(10px + (24 - 10) * ((100vw - 320px) / (1176 - 320)));
    }
}

.rs-header__action-btn a::before,
.rs-header__action-btn button::before {
    font-size: 24px;
    color: #000000;
}

@media (max-width: 1176px) {
    .rs-header__action-btn a::before,
    .rs-header__action-btn button::before {
        font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1176 - 320)));
    }
}

@media (max-width: 992px) {
    .rs-header__search-btn {
        display: none;
    }
}

.rs-header__search-btn .search-btn {
    position: absolute;
    opacity: 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.rs-header__search-btn .search-btn._active {
    position: relative;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header__cart-btn .cart-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.rs-header__cart-btn .cart-btn .badge {
    margin-left: 6px;
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 3px 12px;
    background-color: #59200d;
    border-radius: 100%;
}

.rs-header .search {
    position: absolute;
    top: calc(100% + 18px);
    width: 0;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    overflow: hidden;
}

@media (max-width: 992px) {
    .rs-header .search {
        position: relative;
        opacity: 1;
        visibility: visible;
        height: auto;
        width: auto;
        margin: 20px 0px;
    }
    .rs-header__catalog-list ul li i {
        right: 0;
    }
}

.rs-header .search._search-active {
    opacity: 1;
    visibility: visible;
    width: 245px;
}

.rs-header .search__wrapper {
    height: 100%;
    width: 100%;
}

.rs-header .search__form {
    height: 100%;
    width: 100%;
}

.rs-header .search__field {
    height: 100%;
    width: 100%;
    position: relative;
}

.rs-header .search__input {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 70px 15px 10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on;
}

.rs-header .search__input::-webkit-input-placeholder {
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header .search__input:-ms-input-placeholder {
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header .search__input::-ms-input-placeholder {
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header .search__input::placeholder {
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rs-header .search__input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.rs-header .search__input:focus:-ms-input-placeholder {
    opacity: 0;
}

.rs-header .search__input:focus::-ms-input-placeholder {
    opacity: 0;
}

.rs-header .search__input:focus::placeholder {
    opacity: 0;
}

.rs-header .search__clear {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 45px;
    height: 100%;
    display: none;
}

.rs-header .search__clear::before {
    font-size: 18px !important;
}

.rs-header .search__clear._clear-search-active {
    display: block;
}

.rs-header .search__submit {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 0px;
    height: 100%;
    background-color: transparent;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rs-header .search__submit::before {
    color: #682611;
    font-size: 24px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
    .rs-header .search__submit:hover {
        background-color: #682611;
    }
    .rs-header .search__submit:hover::before {
        color: #fff;
    }
}

#menu-glavnoe-menyu-sverhu .rs-icon-arrow-down {
    display: none;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: #fff;
}