@font-face {
    font-family: "Avenir Next Cyr";
    src: url("../fonts/AvenirNextCyr-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next Cyr";
    src: url("../fonts/AvenirNextCyr-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next Cyr";
    src: url("../fonts/AvenirNextCyr-MediumItalic.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next Cyr";
    src: url("../fonts/AvenirNextCyr-Demi.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next Cyr";
    src: url("../fonts/AvenirNextCyr-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    text-decoration: none;
    background: none;
    font-family: "Avenir Next Cyr", "Avenir Next", Arial, sans-serif;
}

:where(
    a[href],
    button,
    input,
    select,
    textarea,
    [tabindex]:not([tabindex="-1"])
):focus-visible {
    outline: 1px solid #1955E6;
}

li{
    list-style: none;
}

a,
button {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}
/* SPECIAL CLASS */
.d-flex-c-c{
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop,
.desktop-f,
.tablet,
.tablet-f,
.d-none{
    display: none;
}
.mobile{
    display: block;
}
.mobile-f{
    display: flex;
}

.hidden {
    overflow: hidden;
}
[hidden] {
    display: none !important;
}
/* SPECIAL CLASS */

.container{
    margin-inline: 16px;
}

.button-arrow-icon{
    width: 22px;
    height: 22px;
    background: #1955E6;
    border-radius: 50%;
}

.button{
    width: 100%;
    border-radius: 99px;
    background: #1955E6;
    height: 48px;
    gap: 12px;
}

.button-text{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

/* HEADER */
#header{
    background: #FFF;
    width: 100%;
    position: absolute;
    z-index: 10;
    padding: 20px 0 16px;
}

.header__inner{
    justify-content: space-between;
}

.header__logo{
    justify-content: flex-start;
    gap: 8px;
}

.header-logo__inner{
    border-radius: 50%;
    background: #F1453D;
    width: 28px;
    height: 28px;
}

.header-logo__img{
    width: 26px;
    height: 26px;
}


.header-logo__text{
    color: #6B6B7A;
    font-size: 11px;
    font-weight: 500;
    line-height: 11px; /* 100% */
}

.header-logo__text strong{
    color: #0C0C0E;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
}

.header__content{
    gap: 8px;
}

.language-switcher__button{
    min-width: 70px;
    gap: 2px;
    padding: 0 5px;
    cursor: pointer;
}

.language-switcher-button__text{
    color: #6B6B7A;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.language-switcher-button__arrow {
    transition: transform 0.25s ease;
}

.language-switcher.is-open .language-switcher-button__arrow {
    transform: rotate(180deg);
}

.language-switcher__dropdown {
    position: absolute;
    top: 100% ;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
    background: #FFF;
    backdrop-filter: blur(6.5px);
    padding: 6px 0 2px;
    border-bottom: 1px solid #E8ECFF;
}

.language-switcher.is-open .language-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher__list{
    flex-direction: column;
    gap: 2px;
}

.language-switcher__item{
    width: 100%;
}

.language-switcher__language{
    gap: 6px;
}

.language-switcher__name{
    color: #1D1B20;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

.language-switcher__link{
    padding: 0 12px;
    height: 32px;
    width: 100%;
    gap: 6px;
    justify-content: space-between;
}

.header-search__button {
    width: 28px;
    height: 28px;
}

.header-search__img{
    width: 20px;
    height: 20px;
}

.header-menu__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header-menu__icon {
    display: block;
    width: 44px;
    height: 44px;
    overflow: visible;
    stroke: #0C0C0E;
    transform-box: fill-box;
    transform-origin: center;
    transition:
        translate 1s ease,
        rotate 1s ease;
}

.header-menu__icon-line {
    stroke-dasharray: 60 31 60 300;
    transition:
        stroke-dasharray 1s ease,
        stroke-dashoffset 1s ease;
}

.header-menu__button[aria-expanded="true"] .header-menu__icon {
    translate: 0 -1px;
    rotate: 0.125turn;
}

.header-menu__button[aria-expanded="true"] .header-menu__icon-line {
    stroke-dasharray: 60 105 60 300;
    stroke-dashoffset: -90;
}

.header-menu__block {
    position: fixed;
    z-index: 2;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 64px);
    overflow-y: auto;
    background: linear-gradient(0deg, #F5F3EF 0%, #F5F3EF 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24px);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}

.header-menu__block.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
}

.header-menu__block-inner{
    padding: 24px 0;
}

.header-menu__nav{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
}

.header-menu-nav__title{
    margin-bottom: 8px;
    color: #0C0C0E;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

.header-menu-nav__item:not(:last-child){
    margin-bottom: 8px;
}

.header-menu-nav__link{
    display: inline-block;
    max-width: 100%;
    color: rgba(12, 12, 14, 0.52);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    overflow-wrap: anywhere;
    transition: color 250ms ease;
}

.header-menu-nav__link:hover,
.header-menu-nav__link:focus-visible{
    color: #1955E6;
}



.country__facts{
    border-radius: 20px;
    border: 0.667px solid rgba(206, 206, 208, 0.20);
    background: rgba(1, 1, 1, 0.20);
    backdrop-filter: blur(10px);
    padding: 7px 12px;
    height: 42px;
    gap: 5px;
}

.country__fact{
    padding: 0 8px;
    flex-direction: column;
}

.country-fact__text{
    color: #B2B2C2;
    font-size: 9px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.country-fact__value{
    color: #fff;
    gap: 3px;
}

.country-fact__value span{
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
}

.country-fact__value--time{
    align-items: baseline;
}

.country-fact__value--time span{
    letter-spacing: 0.3px;
}

.country-fact__value--time small{
    font-size: 9px;
    line-height: 9px;
}

.country-fact__value--currency span{
    font-size: 12px;
    line-height: 12px;
    width: max-content;
}

.country-fact__value--currency small{
    font-size: 11px;
    line-height: 11px;
}

.country-facts__separator{
    width: 1px;
    height: 100%;
    background:  #47566B;
}

/* HEADER */
.main{
    padding-top: 64px;
}
/* NEWSLETTER */
#newsletter{
    --newsletter-bg: url("../img/newsletter/newsletter_background_mob.webp");
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%), var(--newsletter-bg)  lightgray 50% / cover no-repeat;
}
.newsletter__inner{
    max-width: 770px;
    padding: 40px 0;
}
.newsletter__title{
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 8px;
}
.newsletter__pre-title{
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 24px;
}
.newsletter-form__label{
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
}
.newsletter-form__input{
    height: 48px;
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    padding: 0 16px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.newsletter-form__input:-webkit-autofill,
.newsletter-form__input:-webkit-autofill:hover,
.newsletter-form__input:-webkit-autofill:focus,
.newsletter-form__input:-webkit-autofill:active {
    -webkit-text-fill-color: #FFF !important;
    caret-color: #FFF;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.20) inset !important;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.20) inset !important;
    transition: background-color 9999s ease-out 0s;
}

.newsletter-form__input::placeholder{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.newsletter-form__error{
    gap: 4px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transform: translateY(-4px);

    transition: max-height 250ms ease, opacity 250ms ease, transform 250ms ease,
    margin-top 250ms ease;
}

.newsletter-form__error--terms {
    grid-column: 1 / -1;
    justify-self: end;
}

.newsletter-form__error.is-visible {
    align-items: baseline;
    margin-top: 10px;
    max-height: 35px;
    opacity: 1;
    transform: translateY(0);
}

.newsletter-form-error__img{
    width: 13px;
    height: 13px;
}

.newsletter-form-error__text{
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.newsletter-form__submit{
    margin-bottom: 24px;
}

.newsletter-form__submit:disabled {
    opacity: .6;
    pointer-events: none;
}

.newsletter-form-submit__img{
    background: rgba(255, 255, 255, 0.50);
    transition: background-color 250ms ease;
}

.newsletter-form__submit.is-ready .newsletter-form-submit__img{
    background-color: #FFF;
}

.newsletter-form__submit path{
    transition: stroke 250ms ease;
}

.newsletter-form__submit.is-ready path{
    stroke: #1955E6;
}

.newsletter-form__terms{
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: flex-start;
}

.newsletter-form__label--checkbox{
    display: block;
    margin: 2px 0;
    width: 20px;
    height: 20px;
    padding: 5px 4px;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
}

.newsletter-form__checkbox{
    user-select: none;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    pointer-events: none !important;
}

.newsletter-form__label--checkbox:has(.newsletter-form__checkbox:checked){
    background-image: url("../img/newsletter/newsletter_form_check.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
}

.newsletter-form-terms__text{
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}


/* NEWSLETTER */
/* FOOTER */
#footer{
    border-top: 0.667px solid rgba(255, 255, 255, 0.08);
    background: #0C0C0E;
}

.footer__inner{
    padding: 40px 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer__text{
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.footer__top{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-top__header{
    width: 100%;
    justify-content: space-between;

}

.footer-top-header__logo{
    gap: 8px;
}

.footer-top-logo__img-wrapper{
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background: #F1453D;
}

.footer-top-logo__img{
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.footer-top-logo__text{
    color: #C1CADD;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.6px;
}

.footer-top-logo__text strong{
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.footer-top-header__images{
    justify-content: flex-end;
    gap: 8px;
}

.footer-top-img-1{
    width: 28px;
    height: 28px;
    aspect-ratio: 1/1;
}

.footer-top-img-2{
    width: 49px;
    height: 28px;
    aspect-ratio: 7/4;
}


.footer-top__list{
    gap: 8px;
}

.footer-top-item__link{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.footer-top-item__img--x{
    padding: 4px;
    border-radius: 4px;
    background: rgba(193, 202, 221, 0.70);
}

.footer__body{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.footer-body-block__title{
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 8px;
}

.footer-body-block__link{
    transition: color 250ms ease;
}

.footer-body-block__link:hover{
    color: #FFF;
}

.footer-body-block__item:not(:last-child){
    margin-bottom: 8px;
}

.footer-body-block__item:last-child{
    margin-bottom: 10px;
}


.footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    padding-top: 25px;
    gap: 12px;
    border-top: 0.667px solid rgba(255, 255, 255, 0.08);
}

/* FOOTER */

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 250ms ease, visibility 250ms ease;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 14, 0.40);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 400px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 250ms ease, opacity 250ms ease;

    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 40px 0 rgba(85, 84, 84, 0.15);
    padding: 12px 20px;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal.is-open .modal__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal__header{
    justify-content: flex-end;
}

.modal__close{
    width: 20px;
    height: 20px;
}

.modal-close__icon{
    width: 10px;
    height: 10px;
}

.modal__body{
    padding: 14px 0;
    flex-direction: column;
}

.modal-body__img{
    margin-bottom: 14px;
    width: 37px;
    height: 30px;
    object-fit: cover;
}

.modal-body__title{
    margin-bottom: 12px;
    color: #02063C;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.modal-body__text{
    color: #4A516E;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.modal-body__form{
    width: 100%;
}

.modal-body__label{
    border-radius: 99px;
    border: 1px solid #C1CADD;
    padding: 0 14px;
    height: 40px;
    gap: 6px;
    justify-content: flex-start;
}

.modal-body__input{
    flex: auto;
    color: #0C0C0E;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    caret-color: #1955E6;
}

.modal-body__input::placeholder{
    color: #B2B2C2;
    font-weight: 400;
}

.modal-body__button {
    margin-left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 22369600px;
}

.modal__footer{
    position: relative;
    padding-top: 20px;
    gap: 8px;
}

.modal__footer::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #CECED0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 750ms ease;
}

.modal.is-open .modal__footer::after{
    transform: scaleX(1);
}

.modal-footer__img{
    height: 20px;
    width: 20px;
}

.modal-footer__text{
    color: #6B6B7A;
    font-size: 11px;
    font-weight: 500;
    line-height: 11px;
}

.modal-footer__text strong {
    color: #0C0C0E;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
}

/* MODAL */
/* SLIDER */
.slider {
    --slider-gap: 10px;
    --slider-peek: 0px;
    --slider-duration: 400ms;
    width: 100%;
    min-width: 0;
}

.slider__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.slider__track {
    display: flex;
    align-items: center;
    gap: var(--slider-gap);
    transform: translate3d(0, 0, 0);
    transition: transform var(--slider-duration) ease;
    will-change: transform;
}

.slider__slide {
    flex: 0 0 calc(100% - var(--slider-peek));
    min-width: 0;
    height: auto;
}

/* Клоны для бесконечного loop */
.slider__slide.is-clone {
    pointer-events: none;
}

.slider__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.slider.is-dragging,
.slider.is-dragging * {
    -webkit-user-select: none;
    user-select: none;
}

.slider.is-dragging .slider__viewport {
    cursor: grabbing;
}

.slider__slide img {
    -webkit-user-drag: none;
    user-select: none;
}

/* =========================
   PAGINATION
   ========================= */

.slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-top: 12px;
}

.slider__dot {
    display: block;
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.65);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.slider__dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.slider__dot.is-active {
    width: 18px;
    background-color: #315cff;
    border-radius: 999px;
}

.slider__dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .slider__track,
    .slider__dot {
        transition: none;
    }
}


/* SLIDER */
/* CUSTOM INPUTS */
.input-select-parent,
.date-range-picker-parent{
    position: relative;
}

.input-select-label,
.date-range-picker-label{
    width: fit-content;
}

.input-select,
.date-range-picker-input{
    width: 100%;
    cursor: pointer;
}

.input-select-arrow,
.date-range-picker-arrow{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: #80839F;
    transition: transform 250ms ease;
}

.input-select-inner.is-open .input-select-arrow,
.date-range-picker-inner.is-open .date-range-picker-arrow{
    transform: translateY(-50%) rotate(180deg);
}

.input-select-dropdown,
.date-range-picker-dropdown{
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 250ms ease, opacity 250ms ease;
}

.input-select-inner.is-open .input-select-dropdown,
.date-range-picker-inner.is-open .date-range-picker-dropdown{
    grid-template-rows: 1fr;
    opacity: 1;
}

.input-select-dropdown__inner,
.date-range-picker-dropdown__inner{
    min-height: 0;
    overflow: hidden;
}

.date-range-picker-dropdown{
    margin-top: 2px;
    pointer-events: none;
}

.date-range-picker-inner.is-open .date-range-picker-dropdown{
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    pointer-events: auto;
    border-radius: 16px;
}

.date-range-picker-calendar{
    padding: 14px;
    border-radius: 16px;
    border: 0.667px solid #E8E8EE;
    background: #FFF;
}

.date-range-picker-months{
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.date-range-picker-month{
    min-width: 0;
}

.date-range-picker-month__header{
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EDECF1;
}

.date-range-picker-month__title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.date-range-picker-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #4A516E;
    font-family: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 150ms ease, opacity 150ms ease;
}

.date-range-picker-nav:hover:not(:disabled){
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-nav:disabled{
    opacity: 0.25;
    cursor: default;
}

.date-range-picker-weekdays{
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-bottom: 4px;
    margin-top: 12px;
}

.date-range-picker-weekday{
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    color: #7E818C;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
}

.date-range-picker-days{
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    row-gap: 2px;
}

.date-range-picker-day-cell{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-width: 0;
}

.date-range-picker-day-cell.is-empty{
    pointer-events: none;
}

.date-range-picker-day-cell.is-in-range{
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-day-cell.is-range-start::before,
.date-range-picker-day-cell.is-range-end::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-day-cell.is-range-start::before{
    right: 0;
}

.date-range-picker-day-cell.is-range-end::before{
    left: 0;
}

.date-range-picker-day{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    outline: none;
    background: transparent;
    color: #0C0C0E;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.date-range-picker-day:hover:not(:disabled):not(.is-selected){
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-day.is-today:not(.is-selected){
    border-color: #1955E6;
    color: #1955E6;
}

.date-range-picker-day.is-selected{
    border-color: #1955E6;
    background: #1955E6;
    color: #FFF;
}

.date-range-picker-day:disabled{
    color: #C5C7D0;
    cursor: default;
}

.date-range-picker-footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 12px;
    padding-top: 8px;
}

.date-range-picker-confirm{
    width: 100%;
    height: 44px;
    border: 0;
    font-family: inherit;
    cursor: pointer;
    transition: background 250ms ease, color 250ms ease;
    border-radius: 999px;
    background: #F5F3EE;
    color: #0C0C0E;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.date-range-picker-confirm.is-ready{
    color: #1955E6;
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-calendar-error{
    width: 100%;
}

.input-select-error,
.date-range-picker-error{
    display: flex;
    align-items: center;
    gap: 5px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: #D75555;
    font-size: 12px;
    line-height: 16px;
    opacity: 0;
    transition: max-height 250ms ease, margin-top 250ms ease, opacity 250ms ease;
}

.input-select-error.is-active,
.date-range-picker-error.is-visible{
    max-height: 40px;
    margin-top: 6px;
    opacity: 1;
}

.input-select-error__img,
.date-range-picker-error__img{
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.input-select-error__text,
.date-range-picker-error__text{
    color: #C35954;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.date-range-picker-month__button{
    border: 0;
    background: transparent;
    color: #0C0C0E;
    font-family: inherit;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.date-range-picker-month__button:hover{
    background: rgba(25, 85, 230, 0.08);
}

.date-range-picker-quick-picker{
    min-height: 250px;
}

.date-range-picker-quick-picker--month{
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-content: start;
    padding: 12px 0;
}

.date-range-picker-quick-picker__item{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 40px;
    padding: 0 6px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #0C0C0E;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease;
}

.date-range-picker-quick-picker__item:hover:not(:disabled):not(.is-selected){
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-quick-picker__item.is-selected{
    background: #1955E6;
    color: #FFF;
}

.date-range-picker-quick-picker__item:disabled{
    color: #C5C7D0;
    cursor: default;
}

.date-range-picker-quick-picker--year{
    padding: 4px 0 12px;
}

.date-range-picker-year-picker__header{
    display: grid;
    grid-template-columns:32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.date-range-picker-year-picker__title{
    text-align: center;
    color: #0C0C0E;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

.date-range-picker-year-picker__nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #4A516E;
    font-family: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 150ms ease, opacity 150ms ease;
}

.date-range-picker-year-picker__nav:hover:not(:disabled){
    background: rgba(25, 85, 230, 0.10);
}

.date-range-picker-year-picker__nav:disabled{
    opacity: 0.25;
    cursor: default;
}

.date-range-picker-year-picker__grid{
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 8px;
}

@media (min-width: 1024px){
    .date-range-picker-dropdown{
        right: 0;
        left: auto;
    }
}

/* CUSTOM INPUTS */
@media (prefers-reduced-motion: reduce) {
    .header-menu__icon,
    .header-menu__icon-line {
        transition-duration: 0.01ms;
    }
}

@media (min-width: 768px){
    .mobile,
    .mobile-f{
        display: none;
    }
    .tablet{
        display: block;
    }
    .tablet-f{
        display: flex;
    }

    /* LIBS */
    .date-range-picker-quick-picker--month{
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }

    .date-range-picker-year-picker__grid{
        grid-template-columns:repeat(4, minmax(0, 1fr));
    }

    .date-range-picker-months{
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .date-range-picker-calendar{
        padding: 16px;
    }

    .input-select-inner,
    .date-range-picker-inner{
        position: relative;
    }

    .input-select-inner.is-open,
    .date-range-picker-inner.is-open{
        z-index: 20;
    }

    .input-select-dropdown{
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        z-index: 100;
        width: 100%;
        min-width: 100%;
    }

    .date-range-picker-dropdown{
        position: absolute;
        top: calc(100% + 2px);
        right: auto;
        left: 0;
        z-index: 100;
        width: 620px;
        max-width: 90vw;
    }

    .date-range-picker-dropdown.is-top{
        top: auto;
        bottom: calc(100% + 2px);
    }
    /* LIBS */

    /* HEADER */
    .header__inner{
        gap: 40px;
    }
    .header__search{
        justify-content: flex-start;
        border-radius: 99px;
        border: 1px solid #C1CADD;
        padding: 2px 0;
        gap: 10px;
        flex: 1 0 0;
    }
    .header-search__icon{
        width: 24px;
        height: 24px;
        padding: 6px 4px 6px 8px;
    }
    .header-search__input{
        width: 100%;
        color: #0C0C0E;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        caret-color: #1955E6;
        padding-right: 20px;
        outline: none;
    }
    .header-menu__nav{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 32px;
    }
    /* HEADER */
    /* NEWSLETTER TABLET */
    #newsletter {
        --newsletter-bg: url("../img/newsletter/newsletter_background_desk.webp");
    }
    .newsletter__form{
        display: grid;
        grid-template-columns: repeat(2, 270px) 1fr;
        gap: 16px;
    }
    .newsletter-form__label{
        justify-content: flex-start;
        align-items: flex-start;
    }
    .newsletter-form__input{
        padding: 14px 10px;
        font-size: 14px;
    }
    .newsletter-form-terms__text{
        color: rgba(255, 255, 255, 0.70);
        font-size: 14px;
        line-height: normal;
    }
    .newsletter-form__terms{
        grid-column: 1 / -1;
        align-items: center;
    }
    .newsletter-form__error--terms{
        justify-self: start;
    }
    .newsletter-form-error__text{
        font-size: 14px;
        line-height: normal;
    }
    /* NEWSLETTER TABLET */
}

@media (min-width: 1024px){
    .tablet-f,
    .tablet{
        display: none;
    }
    .desktop{
        display: block;
    }
    .desktop-f{
        display: flex;
    }
    .container{
        margin-inline: 50px;
    }
    /* LIBS */
    .date-range-picker-dropdown{
        left: auto;
        right: 0;
    }
    /* LIBS */
    /* HEADER */
    #header{
        padding: 10px 0;
        border-bottom: 1.245px solid rgba(12, 12, 14, 0.08);

    }
    .header-logo__text{
        font-size: 14px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: -0.6px;
    }
    .header-logo__text strong{
        font-size: 20px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -0.6px;
    }
    .header__search{
        padding: 2px 8px;
        height: 40px;
    }
    .header-search__icon{
        padding: 0;
    }
    .header__content{
        gap: 16px;
    }
    .language-switcher__button{
        gap: 5px;
        padding: 8px 10px;
    }
    .language-switcher-button__flag{
        width: 24px;
        height: 14px;
        aspect-ratio: 12/7;
        border-radius: 1px;
    }
    .language-switcher-button__text{
        font-size: 14px;
        font-weight: 500;
        line-height: 20px; /* 142.857% */
    }
    .language-switcher__dropdown{
        width: 164px;
    }
    .header-menu__block{
        top: 63px;
    }
    .country__facts{
        background: #0C0C0E;
    }
    .country-fact__value{
        gap: 4px;
    }
    /* HEADER */
    /* NEWSLETTER */
    .newsletter__inner{
        padding: 100px 0;
    }
    .newsletter__title{
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 52px;
    }
    .newsletter__pre-title{
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 22px;
    }
    .newsletter__form{
        gap: 30px 8px;
    }
    .newsletter-form__label,
    .newsletter-form__submit{
        margin-bottom: 0;
    }
    /* NEWSLETTER */
    /* FOOTER */
    #footer{
        position: relative;
        overflow: hidden;
    }
    #footer::before{
        content: "GEORGIA";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
        color: rgba(255, 255, 255, 0.03);
        font-size: clamp(180px, 17.1875vw, 330px);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
    }
    .footer__inner{
        grid-template-columns: 326px minmax(0, 720px) ;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px 40px;
        padding: 40px 0 10px;
    }
    .footer__top{
        min-height: 229px;
        gap: 20px;
    }
    .footer-top__text{
        font-weight: 500;
    }
    .footer-top__list{
        margin-top: auto;
    }
    .footer__body{
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-body-block__title{
        margin-bottom: 16px;
    }
    .footer-body-block__item:not(:last-child){
        margin-bottom: 10px;
    }
    .footer__bottom {
        grid-column: 1 / -1;
        padding: 0;
        border: none;
        gap: 16px;
    }
    .footer-bottom__text{
        color: rgba(255, 255, 255, 0.40);
        line-height: 16px;
    }
    .footer-bottom__text span{
        font-weight: 600;
    }
    .footer-bottom__text--copyright{
        font-size: 12px;
        line-height: 16px;
    }
    /* FOOTER */
}

@media (min-width: 1440px){
    .button{
        height: calc(1.25vw + 1.75rem);
        gap: max(0.75rem, 0.625vw);
    }
    .button-text{
        font-size: calc(0.4167vw + 0.5rem);
        line-height: normal;
    }
    .button-arrow-icon{
        width: 26px;
        height: 26px;
    }
    .container {
        margin-inline: calc(6.25vw - 20px);
    }
    .main{
        padding-top: calc(2.0833vw + 30px);
    }
    /* MODALS */
    .modal__content{
        max-width: 636px;
        padding: 40px;
        gap: 32px;
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0 4px 40px 0 rgba(85, 84, 84, 0.15);
    }
    .modal__close{
        display: none;
    }
    .modal__body{
        margin: 0 0 32px;
    }
    .modal-body__img {
        margin-bottom: 32px;
        width: 73px;
        height: 59px;
    }
    .modal-body__title{
        font-size: 32px;
        line-height: normal;
        margin-bottom: 21px;
    }
    .modal-body__text{
        width: 494px;
        font-size: 18px;
        line-height: 32px;
        text-align: center;
    }
    .modal__footer{
        padding-top: 32px;
    }
    .modal-footer__img{
        width: 32px;
        height: 32px;
        border: 2px solid #F1453D;
        border-radius: 50%;
    }
    .modal-footer__text{
        font-size: 16px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: -0.6px;
    }
    .modal-footer__text strong {
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        text-transform: uppercase;
    }
    /* MODALS */
    /* LANGUAGE*/
    .language-switcher__dropdown{
        right: calc(7.9167vw - 97px);
    }
    /* LANGUAGE*/
    /* HEADER */
    #header{
        padding: 0;
        height: calc(2.0833vw + 30px);
    }
    #header .container{
        height: 100%;
    }
    .header__inner {
        height: 100%;
        gap: 2.7778vw;
    }
    .header__logo{
        gap: 0.4167vw;
    }
    .header-logo__inner {
        width: calc(0.8333vw + 16px);
        height: calc(0.8333vw + 16px);
    }
    .header-logo__img {
        width: calc(0.8333vw + 14px);
        height: calc(0.8333vw + 14px);
    }
    .header-logo__text {
        font-size: calc(0.4167vw + 8px);
        line-height: max(32px, 1.6667vw);
        letter-spacing: -0.6px;
    }
    .header-logo__title {
        font-size: calc(0.8333vw + 8px);
        line-height: max(32px, 1.6667vw);
        letter-spacing: -0.6px;
    }
    .header__content{
        gap: calc(0.8333vw + 4px);
    }
    .country__facts{
        border: none;
        height: 40px;
        padding: 0 0.8333vw;
    }
    .country__fact{
        padding: 0 calc(0.8333vw - 4px);
    }

    .country-fact__text{
        font-size: calc(0.2083vw + 6px);
    }
    .country-fact__value span{
        font-size: calc(0.2083vw + 11px);
        line-height: 15px;
        letter-spacing: 0.375px;
    }

    .country-fact__value--time small{
        font-size: 10px;
        font-weight: 500;
        line-height: 10px;
    }

    .language-switcher-button__text {
        font-size: calc(0.4167vw + 8px);
    }

    .header-menu__button {
        width: 1.0417vw;
        height: 1.0417vw;
    }
    .header-menu__icon {
        width: 2.2917vw;
        height: 2.2917vw;
    }
    .header-menu__block{
        top: calc(2.0833vw + 30px);
    }
    /* HEADER */
    /* NEWSLETTER */
    .newsletter__inner {
        padding: calc(5.4167vw + 22px) 0;
    }
    .newsletter__title{
        font-size: calc(2.5vw + 0.25rem);
        line-height: max(3.25rem, 2.7083vw);
    }
    .newsletter__pre-title{
        font-size: calc(0.4167vw + 0.625rem);
        line-height: max(1.375rem, 1.1458vw);
    }
    .newsletter__form {
        gap: 2.0833vw calc(0.625vw - 1px);
    }
    .newsletter-form__input{
        height: calc(1.25vw + 1.75rem);
        padding: max(0.625rem, 0.5208vw) max(0.875rem, 0.7292vw);
        gap: max(0.625rem, 0.5208vw);
        border-radius: max(0.625rem, 0.5208vw);
        font-size: calc(0.4167vw + 0.5rem);
        line-height: normal;
    }

    .newsletter-form__input::placeholder{
        font-size: calc(0.4167vw + 0.5rem);
        line-height: normal;
    }
    .newsletter-form__terms{

    }
    .newsletter-form-terms__text{
        font-size: calc(0.4167vw + 0.5rem);
        line-height: normal;
    }
    /* NEWSLETTER */
}

@media (min-width: 1920px) {
    .button-arrow-icon {
        width: 1.3542vw;
        height: 1.3542vw;
    }

    .button-arrow-icon svg {
        width: 0.8333vw;
        height: 0.8333vw;
    }
    /* MODALS */
    .modal__content{
        max-width: 33.125vw;
        padding: 2.0833vw;
        gap: 1.6667vw;
        border-radius: 1.0417vw;
        box-shadow: 0 0.2083vw 2.0833vw 0 rgba(85, 84, 84, 0.15);
    }
    .modal__body {
        margin-bottom: 1.6667vw;
    }
    .modal-body__img {
        margin-bottom: 1.6667vw;
        width: 3.8021vw;
        height: 3.0729vw;
    }
    .modal-body__title{
        font-size: 1.6667vw;
        margin-bottom: 1.09375vw;
    }
    .modal-body__text{
        width: 25.7292vw;
        font-size: 0.9375vw;
        line-height: 1.6667vw;
    }
    .modal__footer{
        padding-top: 1.6667vw;
        gap: 8px;
    }
    .modal-footer__img {
        width: 1.6667vw;
        height: 1.6667vw;
        border-width: 0.1042vw;
    }
    .modal-footer__text{
        font-size: 0.8333vw;
        line-height: 1.6667vw;
        letter-spacing: -0.03125vw;
    }
    .modal-footer__text strong {
        font-size: 1.25vw;
        line-height: 1.6667vw;
        letter-spacing: -0.03125vw;
    }
    /* MODALS */
    /* LANGUAGE*/
    .language-switcher__dropdown{
        right: 2.8646vw;
        width: max(10.25rem, 8.5417vw);
        backdrop-filter: blur(max(0.40625rem, 0.3385vw));
        padding: max(0.375rem, 0.3125vw) 0 max(0.125rem, 0.1042vw);
        border-bottom-width: max(0.0625rem, 0.0521vw);
    }
    .language-switcher__list {
        gap: max(0.125rem, 0.1042vw);
    }
    .language-switcher__language {
        gap: max(0.375rem, 0.3125vw);
    }

    .language-switcher__name {
        font-size: max(0.875rem, 0.7292vw);
        line-height: max(1.625rem, 1.3542vw);
    }

    .language-switcher__link {
        padding: 0 max(0.75rem, 0.625vw);
        height: max(2rem, 1.6667vw);
        gap: max(0.375rem, 0.3125vw);
    }
    /* LANGUAGE */
    /* CUSTOM INPUTS */
    .date-range-picker-dropdown {
        margin-top: 0.1042vw;
    }

    .date-range-picker-inner.is-open .date-range-picker-dropdown {
        box-shadow: 0 0.2083vw 1.0417vw 0 rgba(0, 0, 0, 0.10);
        border-radius: 0.8333vw;
    }

    .date-range-picker-calendar {
        padding: 0.7292vw;
        border-radius: 0.8333vw;
        border-width: 0.0347vw;
    }

    .date-range-picker-months {
        gap: 0.9375vw;
    }

    .date-range-picker-month__header {
        grid-template-columns: 1.6667vw minmax(0, 1fr) 1.6667vw;
        gap: 0.3125vw;
        padding-bottom: 0.625vw;
        border-bottom-width: 0.0521vw;
    }

    .date-range-picker-month__title {
        gap: 0.2083vw;
    }

    .date-range-picker-nav {
        width: 1.6667vw;
        height: 1.6667vw;
        font-size: 1.1458vw;
    }

    .date-range-picker-weekdays {
        margin-top: 0.625vw;
        margin-bottom: 0.2083vw;
    }

    .date-range-picker-weekday {
        font-size: 0.5208vw;
        line-height: 0.78125vw;
    }

    .date-range-picker-days {
        row-gap: 0.1042vw;
    }

    .date-range-picker-day-cell {
        height: 1.9792vw;
    }

    .date-range-picker-day {
        width: 1.7708vw;
        height: 1.7708vw;
        border-width: 0.0521vw;
        font-size: 0.6771vw;
    }

    .date-range-picker-footer {
        margin-top: 0.625vw;
        padding-top: 0.4167vw;
    }

    .date-range-picker-confirm {
        height: 2.2917vw;
        font-size: 0.8333vw;
        line-height: 1.0417vw;
    }

    .input-select-error,
    .date-range-picker-error {
        gap: 0.2604vw;
        font-size: 0.625vw;
        line-height: 0.8333vw;
    }

    .input-select-error.is-active,
    .date-range-picker-error.is-visible {
        max-height: 2.0833vw;
        margin-top: 0.3125vw;
    }

    .input-select-error__img,
    .date-range-picker-error__img {
        flex-basis: 0.7292vw;
        width: 0.7292vw;
        height: 0.7292vw;
    }

    .input-select-error__text,
    .date-range-picker-error__text {
        font-size: 0.625vw;
    }

    .date-range-picker-month__button {
        font-size: 0.8333vw;
        line-height: 1.0417vw;
    }

    .date-range-picker-quick-picker {
        min-height: 13.0208vw;
    }

    .date-range-picker-quick-picker--month {
        gap: 0.4167vw;
        padding: 0.625vw 0;
    }

    .date-range-picker-quick-picker__item {
        height: 2.0833vw;
        padding: 0 0.3125vw;
        border-radius: 0.3125vw;
        font-size: 0.6771vw;
    }

    .date-range-picker-quick-picker--year {
        padding: 0.2083vw 0 0.625vw;
    }

    .date-range-picker-year-picker__header {
        grid-template-columns: 1.6667vw minmax(0, 1fr) 1.6667vw;
        gap: 0.4167vw;
        margin-bottom: 0.5208vw;
    }

    .date-range-picker-year-picker__title {
        font-size: 0.7292vw;
    }

    .date-range-picker-year-picker__nav {
        width: 1.6667vw;
        height: 1.6667vw;
        font-size: 1.1458vw;
    }

    .date-range-picker-year-picker__grid {
        gap: 0.4167vw;
    }
    /* CUSTOM INPUTS */
    /* HEADER */
    .header__search{
        height: 2.0833vw;
        padding: 0.1042vw 0.4167vw;
        border-width: 0.0521vw;
        gap: 0.5208vw;
    }
    .header-search__icon{
        width: 1.25vw;
        height: 1.25vw;
    }
    .header-search__input{
        font-size: 0.7292vw;
        line-height: 1.0417vw;
        padding-right: 1.0417vw;
    }
    .country__facts{
        border: 0.0521vw solid #CECED0;
        height: 2.0833vw;
        gap: 0.2604vw
    }
    .country-facts__separator{
        width: 0.0521vw;
    }
    .country-fact__text{
        line-height: max(10px, 0.5208vw);
        letter-spacing: max(1px, 0.0521vw);
    }
    .country-fact__value{
        gap: 0.2083vw;
    }
    .country-fact__value span{
        line-height: max(15px, 0.78125vw);
        letter-spacing: max(0.375px, 0.01953vw);
    }
    .country-fact__value--time small{
        font-size: 0.5208vw;
        line-height: 0.5208vw;
    }
    .country-fact__value--weather img{
        font-size: 0.7292vw;
    }
    .country-fact__value--currency small{
        font-size: 0.5729vw;
        line-height: 0.5729vw;
    }
    .language-switcher__button {
        padding: 0.4167vw 0.5208vw;
        gap: 0.2604vw;
    }

    .language-switcher-button__flag {
        width: 1.25vw;
        height: 0.7292vw;
    }

    .language-switcher-button__text {
        font-size: 0.8333vw;
        line-height: 1.0417vw;
    }

    .language-switcher-button__arrow {
        height: 0.2083vw;
        width: 0.3646vw;
    }
    /* HEADER */
    /* NEWSLETTER */
    .newsletter__inner{
        max-width: 40.1042vw;
    }
    .newsletter__title{
        margin-bottom: max(0.625rem, 0.5208vw);
    }
    .newsletter__pre-title{
        margin-bottom: 2.0833vw;
    }
    .newsletter__form {
        grid-template-columns: repeat(2, 14.0625vw) 1fr;
    }
    .newsletter-form__terms {
        grid-template-columns: max(1.25rem, 1.0417vw) 1fr;
        gap: max(0.625rem, 0.5208vw);
    }
    .newsletter-form__label--checkbox {
        display: block;
        margin: max(0.125rem, 0.1042vw) 0;
        width: max(1.25rem, 1.0417vw);
        height: max(1.25rem, 1.0417vw);
        padding: max(0.3125rem, 0.2604vw) max(0.25rem, 0.2083vw);
        border-radius: max(0.25rem, 0.2083vw);
        border: max(0.0625rem, 0.0521vw) solid #D3D3D3;
    }
    .newsletter-form__error.is-visible {
        margin-top: max(0.625rem, 0.5208vw);
        max-height: max(2.1875rem, 1.8229vw);
    }
    .newsletter-form-error__img {
        width: max(0.8125rem, 0.6771vw);
        height: max(0.8125rem, 0.6771vw);
    }

    .newsletter-form-error__text {
        font-size: max(0.875rem, 0.7292vw);
        line-height: normal;
    }
    /* NEWSLETTER */
    /* FOOTER */
    #footer::before{
        font-size: 17.1875vw;
    }
    .footer__inner{
        grid-template-columns: 17vw minmax(0, 52vw);
        padding: 2.0833vw 0 0.5208vw;
        gap: 1.25vw 2.0833vw;
    }
    .footer__top {
        min-height: 11.9271vw;
        gap: 1.0417vw;
    }
    .footer-top-logo__img-wrapper {
        width: 1.6667vw;
        height: 1.6667vw;
    }

    .footer-top-logo__img {
        width: 1.5625vw;
        height: 1.5625vw;
    }
    .footer__text {
        font-size: 0.7292vw;
        line-height: 1.0417vw;
    }
    .footer-top-logo__text strong {
        font-size: 1.25vw;
        line-height: 1.6667vw;
        letter-spacing: -0.03125vw;
    }

    .footer-top-logo__text {
        font-size: 0.8333vw;
        line-height: 1.6667vw;
        letter-spacing: -0.03125vw;
    }
    .footer-top-header__images {
        justify-content: flex-end;
        gap: 0.4167vw;
    }
    .footer-top-img-1 {
        width: 1.4583vw;
        height: 1.4583vw;
    }
    .footer-top-img-2 {
        width: 2.5521vw;
        height: 1.4583vw;
    }
    .footer-top-item__link {
        width: 1.875vw;
        height: 1.875vw;
    }
    .footer-top-item__img{
        width: 1.0417vw;
        height: 1.0417vw;
    }
    .footer-body-block__title{
        margin-bottom: 0.8333vw;
        font-size: 0.7292vw;
        line-height: 1.0417vw;
    }
    .footer-body-block__item:not(:last-child) {
        margin-bottom: 0.5208vw;
    }
    .footer-bottom__text--copyright {
        font-size: 0.625vw;
        line-height: 0.8333vw;
    }
    /* FOOTER */
}

