.mobile-menu-tabs {
    display: none;
    color: #fff;
    width: 100%;
    padding-bottom: 20px;
}

.mobile-menu-tabs a {
    color: inherit;
}

.mobile-menu-tabs__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 0;
    border: none;
    margin-bottom: 18px;
}

.mobile-menu-tabs__list li {
    margin: 0px 5px;
}

.mobile-menu-tabs__list li.active .mobile-menu-tabs__link {
    background-color: #fff;
    color: #FCD462;
}

.mobile-menu-tabs__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    font-size: 20px;
}

.mobile-menu-tabs__pane {
    font-size: 0.875em;
    font-weight: 500;
    text-align: center;
}

.mobile-menu-tabs__pane a,
.mobile-menu-tabs__pane span {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.mobile-menu-search {
    display: none;
    width: 100%;
    height: 40px;
    margin-bottom: 25px;
}

.mobile-menu-search__box {
    position: relative;
    height: 100%;
}

.mobile-menu-search__input {
    width: 100%;
    height: 100%;
    color: #616161;
    border-radius: 10px;
    background-color: #ffffff;
    padding-left: 48px;
}

.mobile-menu-search__button {
    position: absolute;
    left: 18px;
    top: 50%;
    color: #616161;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
}

.menu {
    height: 83px;
    font-size: 12px;
}

.menu__list {
    height: 100%;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menu__list > li {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menu__list > li > a {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 3px;
    color: #FCD462;
    text-align: center;
    text-transform: uppercase;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.menu__dropdown {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu__dropdown-arrow {
    position: relative;
    background-color: transparent;
    margin-left: 3px;
    margin-right: 3px;
    width: 20px;
    height: 15px;
    color: #FCD462;
    transition: -webkit-transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
    transition: transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
    transition: transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1), -webkit-transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
}

.menu__dropdown-arrow._active {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.menu__dropdown-list .menu__dropdown-arrow {
    display: block;
}

.menu__dropdown-list {
    position: absolute;
    top: 100%;
    left: 0px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.24, 0.002, 0.002, 1);
    background-color: #181F27;
}

.menu__dropdown-list .menu__dropdown-list {
    top: 0px;
    left: 100%;
}

.menu__dropdown-list li {
    padding-left: 93px;
    padding-right: 93px;
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
}

.menu__dropdown-list a {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.3;
    color: #FCD462;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
}

.menu__dropdown.hover > .menu__dropdown-list {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 0;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.menu-overlay.active {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}

.nav > li > a {
    padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
}

.menu-burger {
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    display: none;
    position: relative;
    width: 42px;
    height: 40px;
    padding: 13px 10px;
    line-height: 1;
    z-index: 15;
    background-color: transparent;
}

.menu-burger span {
    display: block;
    position: absolute;
    top: 13px;
    left: auto;
    right: 10px;
    width: 22px;
    height: 2px;
    background: #FCD462;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: color 0.3s cubic-bezier(0.28, 0, 0.49, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
    transition: color 0.3s cubic-bezier(0.28, 0, 0.49, 1), transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
    transition: color 0.3s cubic-bezier(0.28, 0, 0.49, 1), transform 0.3s cubic-bezier(0.42, 0, 0.002, 1), -webkit-transform 0.3s cubic-bezier(0.42, 0, 0.002, 1);
}

.menu-burger span:nth-child(2) {
    top: 19px;
    width: 16px;
}

.menu-burger span:nth-child(3) {
    top: 25px;
}

.menu-burger.active span {
    background: #FCD462;
}

.menu-burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(4px) translateX(4px);
    transform: rotate(45deg) translateY(4px) translateX(4px);
}

.menu-burger.active span:nth-child(2) {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.menu-burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
    transform: rotate(-45deg) translateY(-4.5px) translateX(4.5px);
}

.rs-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 242px;
}

.rs-header__logo {
    height: 159px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rs-header__menu {
    position: relative;
}

.rs-header__menu::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(252, 212, 98, 0) 0%, #fcd462 50%, rgba(252, 212, 98, 0) 100%);
}

.logo {
    display: inline-grid;
    grid-template-columns: 93.69px 1fr;
    -webkit-column-gap: 23px;
    -moz-column-gap: 23px;
    column-gap: 23px;
    font-size: 45px;
}

.logo img {
    width: 93.69px;
    height: 92.89px;
    grid-row: span 2;
}

.logo span {
    display: block;
    font-family: "Playfair Display";
    text-transform: uppercase;
    background: linear-gradient(176.59deg, #c38b00 13.22%, #fdd973 38.09%, #fff3d1 43.06%, #fdd973 46.89%, #e9c154 58.36%, #fff0c8 66.4%, #c48b00 86.67%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span:first-of-type {
    font-size: 1em;
    line-height: 1.1;
    letter-spacing: 0.76766px;
    font-weight: 700;
}

.logo span:last-of-type {
    font-weight: 400;
    font-size: 0.7446808511em;
    line-height: 1.2;
    letter-spacing: 0.603357px;
}

.sticky .rs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition-duration: 0.4s;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

.sticky .rs-header .rs-header__logo {
    -webkit-transform: none;
    transform: none;
}

.sticky.out .rs-header {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

@media (min-width: 991.98px) {
    .menu__dropdown-list .menu__dropdown-arrow {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .menu__dropdown.hover > .menu__dropdown-arrow {
        -webkit-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }

    .menu__dropdown-list li {
        transition: background-color 0.3s linear;
    }

    .menu__dropdown-list li:hover {
        background-color: #394048;
    }

    .menu__list > li > a {
        transition-duration: 0.4s;
    }

    .menu__list > li.active > a {
        color: #FCD462;
    }

    .menu__list > li:hover > a {
        color: #FCD462;
    }

    .menu-overlay {
        display: none;
    }
}

@media (any-hover: hover) and (min-width: 991.98px) {
    .menu__dropdown:hover > .menu__dropdown-arrow {
        -webkit-transform: rotateX(-180deg);
        transform: rotateX(-180deg);
    }
}

@media (min-width: 991.98px) and (min-width: 991.98px) {
    .menu__dropdown-list li:hover > .menu__dropdown-arrow,
  .menu__dropdown-list li.hover > .menu__dropdown-arrow {
        -webkit-transform: rotate(-90deg) translateY(10px);
        transform: rotate(-90deg) translateY(10px);
    }
}

@media (min-width: 1200px) {
    .menu__list > li:not(:last-child) {
        margin-right: 37px;
    }
}

@media (max-width: 1176px) {
    .menu__dropdown-list li {
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu__dropdown-list a {
        white-space: normal;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu-tabs {
        display: block;
    }

    .mobile-menu-search {
        display: block;
    }

    .menu {
        height: calc(100% - 83px);
        position: fixed;
        left: 0;
        top: 73px;
        width: 100%;
        background-color: #FCD462;
        -webkit-transform: translateY(calc(-100% - 83px));
        transform: translateY(calc(-100% - 83px));
        transition: -webkit-transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
        transition: transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
        transition: transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1), -webkit-transform 0.3s cubic-bezier(0.24, 0.002, 0.002, 1);
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        overflow-y: auto;
    }

    .menu.active {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .menu__list {
        display: block;
        height: auto;
    }

    .menu__list > li {
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 20px;
        height: auto;
        margin-right: 0 !important;
    }

    .menu__list > li > a {
        color: #181F27;
        text-align: left;
        font-size: 1.5em;
    }

    .menu__dropdown {
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .menu__dropdown-arrow {
        color: #181F27;
        font-size: 22px;
        width: auto;
        height: auto;
        margin-left: 20px;
    }

    .menu__dropdown-list {
        position: static;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
        margin: 0;
        padding: 0px 0px 0px 15px;
        pointer-events: auto;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        height: auto;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .menu__dropdown-list .menu__dropdown-list {
        padding: 10px 0px 0px 20px;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .menu__dropdown-list li {
        padding-right: 0;
        padding-left: 0;
        -moz-text-align-last: left;
        text-align-last: left;
    }

    .menu__dropdown-list a {
        color: #181F27;
        white-space: normal;
    }

    .rs-header {
        height: 83px;
    }

    .rs-header__logo {
        height: auto;
    }

    .rs-header__container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }

    .rs-header__menu::after {
        display: none;
    }

    .logo {
        font-size: 22px;
        grid-template-columns: 55px 1fr;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 991px) {
    .menu__list > li:not(:last-child) {
        margin-right: 20px;
    }

    .menu-burger {
        display: block;
    }
}

@media (max-width: 479.98px) {
    .logo {
        font-size: 14px;
        grid-template-columns: 35px 1fr;
        -webkit-column-gap: 13px;
        -moz-column-gap: 13px;
        column-gap: 13px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .menu {
        font-size: clamp( 11px , 6.2583732057px  +  0.4784688995vw , 12px );
    }

    .menu__list > li:not(:last-child) {
        margin-right: clamp( 20px , -60.6076555024px  +  8.1339712919vw , 37px );
    }
}

@media (any-hover: hover) {
    .menu__dropdown-arrow {
        display: none;
    }

    .menu__dropdown:hover > .menu__dropdown-list {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}