:root{
    --black: #000;
    --white: #fff;
    --light-grey: #F9F9F9;
    --grey: #929293;
    --red: #ff3333;
    --red-dark: #D4483C;
    --purple: #5045C8!important;
    --violet-darker: #2F2976;
    --violet-bg: #846AB0;
    --orange: #F57D73;
    --orange-light: #F9AE58;
    --pink: #D69CEE;
    --green: #a3d9c5;
    --main-color: var(--black);
    --secondary-color: var(--green);
    --error-color: var(--red);
    --max-width-container: 1430px;
    --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --add-offsize: 1rem;
    --scroll-bar-width: calc(100vw - 100%);
    --font-family-primary: "RundDisplay", "Trebuchet MS", Helvetica, sans-serif;
}
@font-face{
    font-family: RundDisplay;
    font-display: swap;
    src: url("../fonts/") format("woff2"), url("../fonts/RundDisplay-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: RundDisplay;
    font-display: swap;
    src: url("../fonts/RundDisplay-Medium.woff2") format("woff2"), url("../fonts/RundDisplay-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face{
    font-family: RundDisplay;
    font-display: swap;
    src: url("../fonts/RundDisplay-Regular.woff2") format("woff2"), url("../fonts/RundDisplay-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face{
    font-family: RundDisplay;
    font-display: swap;
    src: url("../fonts/RundDisplay-SemiBold.woff2") format("woff2"), url("../fonts/RundDisplay-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}
*{
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*:before,
*:after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body{
    height: 100%;
    min-width: 320px;
    scroll-behavior: smooth;
}
body{
    color: var(--main-color);
    line-height: 1;
    font-family: var(--font-family-primary);
    font-size: var(--main-offsize);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea{
    font-family: var(--font-family-primary);
    font-size: inherit;
}
button{
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}
a{
    color: inherit;
}
a:link,
a:visited{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
ul li{
    list-style: none;
}
img{
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: inherit;
    font-size: inherit;
}
.lock body{
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.page-template-default main {
    padding: 140px 0 60px;
}

.page-template-default main .wbars {
    font-family: var(--font-family-primary);
}

@media all and (max-width: 1024px) {
    .page-template-default main {
        padding: 120px 0 60px;
    }
    .page-template-default main .hero {
        padding: 120px 0 60px;
    }
}

.wrapper{
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}
@supports (overflow: clip){
    .wrapper{
        overflow: clip;
    }
}
.wrapper > main{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.wrapper > *{
    min-width: 0;
}
[class*=__container]{
    max-width: 85rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 999;
    padding: 20px 0;
}
.header__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__wrapper__logo{
    max-width: 550px;
}
.header__wrapper__logo__media{
    width: 100%;
    height: auto;
}
.header__wrapper__menu {
    position: relative;
}
.header__wrapper__menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header__wrapper__menu ul li a {
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: inherit;
}
.header__wrapper__menu ul li a:hover {
    text-decoration: underline;
    color:inherit;
}
.header__wrapper__menu ul li.btn a  {
    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;
    background-color: var(--purple);
    color: var(--white);
    gap: 8px;
    width: 100%;
    min-height: 43px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0);
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.header__wrapper__menu ul li.btn a:hover {
    background-color: var(--violet-darker);
    color: var(--white);
    border-color: rgba(0, 0, 0, 0);
    
}
.header__wrapper__menu ul li.btn a:hover {
    text-decoration: none;
}
.header__wrapper__menu__button {
    position: relative;
    display: none;
    width: 24px;
    height: 12px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
}
.header__wrapper__menu__button.header__wrapper__menu__button--second {
    position: absolute;
    top: 40px;
    right: 40px;
    display: none;
    width: 24px;
    height: 12px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
}
.header__wrapper__menu__button__line {
    width: 100%;
    height: 2px;
    background-color: var(--black);
}
@media all and (max-width: 1300px) {
    .header__wrapper__logo {
        max-width: 350px;
    }
}
@media all and (max-width: 1024px) {
    .header__wrapper__menu {
        transform: translateX(100%);
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 120px 40px;
        background-color: var(--white);
        z-index: 999;
        visibility: hidden;
        transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    .header__wrapper__menu__button.header__wrapper__menu__button--second {
        display: flex;
    }
    .header__wrapper__menu__button.header__wrapper__menu__button--second .header__wrapper__menu__button__line {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
    }
    .header__wrapper__menu__button.header__wrapper__menu__button--second .header__wrapper__menu__button__line:first-child {
        transform: rotate(45deg);
    }
    .header__wrapper__menu__button.header__wrapper__menu__button--second .header__wrapper__menu__button__line:last-child {
        transform: rotate(-45deg);
    }
    .header__wrapper__menu.active {
        transform: translateX(0);
        visibility: visible;    
    }
    .header__wrapper__menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
    .header__wrapper__menu__button {
        display: flex;
    }
}
@media all and (max-width: 580px) {
    .header__wrapper__logo {
        max-width: 70%;
    }
}
.contact-form__rows{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-flex-line-pack: start;
    align-content: start;
}
.contact-form__checkbox{
    display: block;
}
.contact-form__button{
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.contact-form .form__error{
    padding: 3px 0 0 10px;
    font-size: 12px;
    color: var(--error-color);
}
.button{
    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;
    gap: 8px;
    width: 100%;
    min-height: 43px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0);
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    border-radius: var(--border-radius);
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.button[hidden]{
    display: none;
}
.button--white{
    background-color: var(--white);
    color: var(--black);
}
.button--black{
    background-color: var(--black);
    color: var(--white);
}
.button-black{
    border: 1px solid var(--black) !important;
    background-color: var(--black) !important;
    color: var(--white) !important;
}
.button--outline{
    position: relative;
    overflow: hidden;
    border-color: var(--black);
}
.button--outline > span::after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--purple);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: translate3D(0px, 100%, 0);
    -ms-transform: translate3D(0px, 100%, 0);
    transform: translate3D(0px, 100%, 0);
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
}
.button--purple{
    background-color: var(--purple);
    color: var(--white);
}
.button--disabled{
    pointer-events: none;
    cursor: not-allowed;
}
button[type=submit] svg,
button[type=submit] span{
    -webkit-transition: opacity .6s ease;
    transition: opacity .6s ease;
}
._sending button[type=submit]{
    position: relative;
}
._sending button[type=submit]::after{
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-animation: load-spin ease infinite 3s;
    animation: load-spin ease infinite 3s;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    -webkit-box-shadow: 8px 8px var(--secondary), -8px 8px #dfdfdf, -8px -8px var(--secondary), 8px -8px #dfdfdf;
    box-shadow: 8px 8px var(--secondary), -8px 8px #dfdfdf, -8px -8px var(--secondary), 8px -8px #dfdfdf;
}
._sending button[type=submit] svg,
._sending button[type=submit] span{
    opacity: 0;
}
input[type=text],
input[type=email],
input[type=number],
input[type=tel],
textarea{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, textarea::-webkit-input-placeholder{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.input{
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 20px;
    border: 1px solid #b6b6b6;
    font-size: 15px;
    line-height: 1;
    letter-spacing: .01em;
    -webkit-transition: color .3s ease, border-color .3s ease;
    transition: color .3s ease, border-color .3s ease;
}
.input:has(~.form__error){
    height: auto;
}
.input:not(:-moz-placeholder-shown){
    color: var(--main-color);
}
.input:not(:-ms-input-placeholder){
    color: var(--main-color);
}
.input:not(:placeholder-shown){
    color: var(--main-color);
}
.input:-moz-placeholder-shown{
    color: #b6b6b6;
}
.input:-ms-input-placeholder{
    color: #b6b6b6;
}
.input:placeholder-shown{
    color: #b6b6b6;
}
.input._form-focus{
    color: var(--main-color);
}
.input._form-error{
    border-color: var(--error-color);
}
textarea.input{
    resize: none;
    padding: 0px 0px;
}
.checkbox{
    position: relative;
}
.checkbox__input{
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
.checkbox__input:focus + .checkbox__label:before{
    -webkit-box-shadow: 0 0 5px var(--purple);
    box-shadow: 0 0 5px var(--purple);
}
.checkbox__input:checked + .checkbox__label:before{
    background: var(--purple);
}
.checkbox__label{
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 8px;
}
.checkbox__label:before{
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    aspect-ratio: 1;
    border: 1px solid var(--black);
    border-radius: 2px;
}
.checkbox__text{
    line-height: 125%;
}
.checkbox__text a{
    text-decoration: underline;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
.select{
    position: relative;
    z-index: 6;
}
.select._select-open{
    z-index: 30;
}
.select__body{
    position: relative;
    font-size: 12px;
    letter-spacing: .01em;
}
.select__title{
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    text-align: left;
    border: 1px solid #b6b6b6;
    color: #b6b6b6;
    -webkit-transition: color .3s ease, border-radius .3s ease;
    transition: color .3s ease, border-radius .3s ease;
}
.select__pseudo-label{
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-color);
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
.select__value{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 24px;
    line-height: 1.4666666667;
}
.select__value > *{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.select__value._select-pseudo-label::before{
    content: attr(data-pseudo-label);
    opacity: .5;
}
.select__icon{
    content: "";
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    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;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
._select-open .select__icon{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.select__icon svg,
.select__icon img{
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.select__text{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-weight: 700;
}
.select__content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.select__input{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
}
.select__options{
    position: absolute;
    z-index: 5;
    top: 43px;
    left: 0px;
    width: 100%;
    padding: 10px 0;
    background-color: var(--white);
    border: 1px solid #b6b6b6;
    overflow: hidden;
}
.select__scroll{
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}
.select__option{
    width: 100%;
    text-align: left;
    color: #b6b6b6;
    cursor: pointer;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
.select__option._select-selected{
    color: var(--main-color);
}
.select__row{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.select__asset{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    margin-right: 5px;
}
._select-tag{
    cursor: pointer;
}
body::after{
    content: "";
    position: fixed;
    z-index: 149;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(7, 7, 7, .8);
    -webkit-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s;
    pointer-events: none;
}
.popup-show body::after{
    opacity: 1;
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.875rem 0.625rem;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility .3s ease 0s;
    transition: visibility .3s ease 0s;
}
.popup_show{
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}
.popup_show .popup__content{
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.popup__wrapper{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100%;
    width: 100%;
}
.popup__content{
    width: 100%;
    max-width: 37.5rem;
    padding: 20px;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background-color: var(--white);
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
}
.lock .popup__content{
    visibility: visible;
}
.video-modal .popup__content{
    padding: 0;
    max-width: 75rem;
}
.popup__close{
    position: absolute;
    z-index: 3;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
    -webkit-transform: translate(50%, -75%);
    -ms-transform: translate(50%, -75%);
    transform: translate(50%, -75%);
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
    outline: none;
}
.popup__close svg{
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
}
.popup__text{
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.popup__text video,
.popup__text iframe,
.popup__text object,
.popup__text embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.popup__thanks{
    text-align: center;
}
.popup__thanks h2{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
}
.popup__thanks p{
    font-size: 20px;
}
.contact-modal{
    position: fixed;
    z-index: 3;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}
.loaded .contact-modal{
    -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
}
._form-modal-is-open .contact-modal{
    opacity: 1;
    visibility: visible;
}
.contact-modal__inner{
    position: relative;
    margin-left: auto;
    border-radius: var(--border-radius);
    background-color: var(--white);
}
.contact-modal__title{
    max-width: 492px;
    margin-bottom: 20px;
    color: var(--purple);
    line-height: 105%;
    letter-spacing: .01em;
}
.contact-modal__descr{
    max-width: 344px;
    letter-spacing: .01em;
    color: var(--purple);
    opacity: .6;
}
.contact-modal__close{
    position: absolute;
    color: var(--purple);
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}
.contact-modal__close svg,
.contact-modal__close img{
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.title{
    line-height: 120%;
    letter-spacing: .01em;
    font-size: var(--title-offsize);
}
.lang-switcher{
    position: relative;
}
.lang-switcher__content{
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: -3px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    -webkit-transform: translate(0%, 100%);
    -ms-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    background-color: var(--white);
    border: 0;
    border-radius: 12px;
    -webkit-transition: color .1s ease, opacity .1s ease, visibility .1s ease;
    transition: color .1s ease, opacity .1s ease, visibility .1s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.active .lang-switcher__content{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lang-switcher__content--top-aligned{
    bottom: auto;
    top: -3px;
    -webkit-transform: translate3D(0px, -100%, 0);
    -ms-transform: translate3D(0px, -100%, 0);
    transform: translate3D(0px, -100%, 0);
}
.lang-switcher__content--larger{
    min-width: 12rem;
}
@media (max-width: 767px){
    .lang-switcher__content{
        position: fixed;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 300px;
        background-color: var(--white);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .active .lang-switcher__content{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .lang-switcher__content--top-aligned{
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
.lang-switcher__content::after{
    display: none;
}
.lang-switcher__item{
    font-size: 17px;
    line-height: 125%;
    padding: 5px 0;
    letter-spacing: .04em;
    text-align: center;
    color: var(--main-color);
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    color: #a4a0a0;
}
.slider-controls{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.slider-controls__button{
    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;
    aspect-ratio: 1;
    border-radius: 50%;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.slider-controls__button svg{
    height: auto;
}
[data-form-open] span{
    pointer-events: none;
}
[data-rebound-effect]::after{
    -webkit-transform: translate3D(0px, -150%, 0);
    -ms-transform: translate3D(0px, -150%, 0);
    transform: translate3D(0px, -150%, 0);
    opacity: 0;
}
[data-rebound-effect]::before{
    -webkit-transform: translate3D(0px, -50%, 0);
    -ms-transform: translate3D(0px, -50%, 0);
    transform: translate3D(0px, -50%, 0);
}
@-webkit-keyframes load-spin{
    0%, 100%{
        -webkit-box-shadow: 8px 8px var(--secondary-color), -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf;
        box-shadow: 8px 8px var(--secondary-color), -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf;
    }
    25%{
        -webkit-box-shadow: -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color);
        box-shadow: -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color);
    }
    50%{
        -webkit-box-shadow: -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color), -8px 8px #dfdfdf;
        box-shadow: -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color), -8px 8px #dfdfdf;
    }
    75%{
        -webkit-box-shadow: 8px -8px #dfdfdf, 8px 8px #4f4d49, -8px 8px #dfdfdf, -8px -8px #4f4d49;
        box-shadow: 8px -8px #dfdfdf, 8px 8px #4f4d49, -8px 8px #dfdfdf, -8px -8px #4f4d49;
    }
}
@keyframes load-spin{
    0%, 100%{
        -webkit-box-shadow: 8px 8px var(--secondary-color), -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf;
        box-shadow: 8px 8px var(--secondary-color), -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf;
    }
    25%{
        -webkit-box-shadow: -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color);
        box-shadow: -8px 8px #dfdfdf, -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color);
    }
    50%{
        -webkit-box-shadow: -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color), -8px 8px #dfdfdf;
        box-shadow: -8px -8px var(--secondary-color), 8px -8px #dfdfdf, 8px 8px var(--secondary-color), -8px 8px #dfdfdf;
    }
    75%{
        -webkit-box-shadow: 8px -8px #dfdfdf, 8px 8px #4f4d49, -8px 8px #dfdfdf, -8px -8px #4f4d49;
        box-shadow: 8px -8px #dfdfdf, 8px 8px #4f4d49, -8px 8px #dfdfdf, -8px -8px #4f4d49;
    }
}
@-webkit-keyframes moveBg{
    0%{
        background-position: 0 0;
    }
    12.5%{
        background-position: -550px -550px;
    }
    25%{
        background-position: -1000px -1000px;
    }
    37.5%{
        background-position: -1000px -550px;
    }
    50%{
        background-position: -1000px 0;
    }
    62.5%{
        background-position: -550px -550px;
    }
    75%{
        background-position: 0 -1000px;
    }
    87.5%{
        background-position: -550px -550px;
    }
    100%{
        background-position: 0 0;
    }
}
@keyframes moveBg{
    0%{
        background-position: 0 0;
    }
    12.5%{
        background-position: -550px -550px;
    }
    25%{
        background-position: -1000px -1000px;
    }
    37.5%{
        background-position: -1000px -550px;
    }
    50%{
        background-position: -1000px 0;
    }
    62.5%{
        background-position: -550px -550px;
    }
    75%{
        background-position: 0 -1000px;
    }
    87.5%{
        background-position: -550px -550px;
    }
    100%{
        background-position: 0 0;
    }
}
@-webkit-keyframes moveBgMobile{
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: -550px -300px;
    }
    100%{
        background-position: 0 0;
    }
}
@keyframes moveBgMobile{
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: -550px -250px;
    }
    100%{
        background-position: 0 0;
    }
}


.actions-menu{
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
.actions-menu__button{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.menu__list{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu__item{
    position: relative;
    letter-spacing: .02em;
}
.menu__item a{
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.menu__item a svg{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 13px;
    flex: 0 0 13px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}
.menu__logo{
    position: absolute;
    display: block;
    z-index: 3;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.menu__logo img{
    height: 39px;
    width: auto;
    object-fit: cover;
}
@media (max-width: 1170px){
    .menu__logo{
        margin-left: 30px;
    }
    .menu__logo img{
        height: 20px;
    }
}
.menu .menu__line{
    display: none;
}
.icon-menu{
    display: none;
}
.menu__item{
    position: relative;
}
.menu__item.opened svg{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.menu__sublist li{
    white-space: normal;
    line-height: 125%;
    letter-spacing: .04em;
    color: #a4a0a0;
}
.menu__sublist li:hover{
    color: var(--main-color);
}
.menu__sublist li:not(:last-child){
    margin-bottom: 10px;
}
.footer{
    position: relative;
    padding: 90px 0;
    background-color: var(--white);
    z-index: 900;
}
.footer__wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}
.footer__wrapper__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer__wrapper__item__link {
    max-width: 303px;
}
.footer__wrapper__item__link__media {
    width: 100%;
    height: auto;
}
.footer__wrapper__item__text {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black);
    max-width: 350px;
}
.footer__wrapper__item__menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer__wrapper__item__menu ul li a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--black);
    font-family: var(--font-family-primary);
}
.footer__wrapper__item__menu ul li a:hover {
    text-decoration: underline;
}
@media all and (max-width: 1024px) {
    .footer {
        padding: 60px 0;
    }
    .footer__wrapper {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1rem;
    }
    .footer__wrapper__item:first-child {
        grid-column: span 2;
    }
    .footer__wrapper__item__text {
        max-width: 100%;
    }
    .footer__wrapper__item__menu ul {
        gap: 12px;
    }
}
.swiper{
    overflow: hidden;
}
.swiper-initialized{
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-initialized.swiper-vertical{
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-wrapper{
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.swiper-vertical .swiper-wrapper{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-autoheight .swiper-wrapper{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.swiper-initialized .swiper-slide{
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper{
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.swiper-button-lock{
    display: none !important;
}
.swiper-button-disabled{
    opacity: .2;
    cursor: auto;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock){
    margin: toRem(25) 0 0 0;
    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;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) span{
    width: 10px;
    height: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10px;
    flex: 0 0 10px;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50%;
    -webkit-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) span:not(:last-child){
    margin: 0 toRem(10) 0 0;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) span.swiper-pagination-bullet-active{
    background-color: var(--add-color);
}
@media (min-width: 29.99875em){
    :root{
        --main-offsize: 1.0625rem;
        --border-radius: 1.875rem;
    }
    .button{
        font-size: 18px;
        padding: 10px 24px;
    }
    .popup__close{
        top: -20px;
        right: -20px;
    }
    .succes .popup__close{
        top: -10px;
        right: -10px;
    }
    .popup__close svg{
        width: 32px;
        height: 32px;
    }
}
@media (min-width: 47.99875em){
    .contact-form__rows{
        gap: 21px;
    }
    .contact-form__row{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 11px;
    }
    .contact-form__checkbox{
        margin-bottom: 17px;
    }
    .input{
        padding: 12px 18px;
        border-radius: 8px;
    }
    .checkbox__label{
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .checkbox__label:before{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 15px;
        flex: 0 0 15px;
        width: 15px;
    }
    .checkbox__text{
        font-size: 12px;
        text-align: center;
    }
    .select__title{
        border-radius: 8px;
    }
    .select__value{
        padding: 12px 14px;
    }
    .select__icon{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 18px;
        flex: 0 0 18px;
    }
    .select__option{
        padding: 12.5px 18px;
    }
    .popup__content{
        border-radius: 15px;
    }
    .popup__text{
        border-radius: 15px;
    }
    .contact-modal__inner{
        padding: 33px;
    }
    .contact-modal__descr{
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 112%;
    }
    .contact-modal__close{
        top: 46px;
        right: 31px;
    }
    .slider-controls{
        -ms-grid-columns: 45px 45px;
        grid-template-columns: 45px 45px;
        gap: 12px;
    }
    .slider-controls__button svg{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
        flex: 0 0 24px;
    }
    
}
@media (min-width: 61.99875em){
    :root{
        --title-offsize: 64px;
    }
    .contact-form__input{
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 5.5px);
        flex: 0 1 calc(50% - 5.5px);
    }
    .contact-modal__inner{
        max-width: 651px;
    }
    .title--small{
        --title-offsize: 3rem;
    }
    ._only-mobile{
        display: none !important;
    }

    .actions-menu{
        gap: 14px;
    }
    .actions-menu__button{
        min-width: 133px;
        min-width: 115px;
        font-size: 16px;
    }
    .actions-menu__button--narrow{
        min-width: 115px;
    }
    .menu__body{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .menu__list{
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }
    .menu__item a svg{
        display: none;
    }
    .menu__actions{
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        position: relative;
        z-index: 3;
    }
    .menu__sublist li svg{
        display: none;
    }
}
@media (any-hover: none)and (min-width: 61.99875em)and (min-width: 87.5em){
    .menu__list{
        gap: 2.3125rem;
    }
}
@media (min-width: 87.5em){
    .contact-form__rows{
        margin-bottom: 5.625rem;
    }
    .contact-modal{
        top: 117px;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        max-width: min(100% - 12px, (var(--max-width-container)) + var(--scroll-bar-width));
        margin: 0 auto;
        padding: 0 12px;
    }
    .contact-modal__title{
        font-size: 2.5rem;
    }
}
@media (min-width: 1em) and (min-width: 87.5em){
    .menu__sublist{
        max-width: min(100% - 12px, (var(--max-width-container)) + var(--scroll-bar-width));
    }
}
@media (max-width: 20em){
    .contact-form__rows{
        margin-bottom: 1.875rem;
    }
    .contact-modal__title{
        font-size: 1.5625rem;
    }
}
@media (max-width: 74.99875em){
}
@media (max-width: 61.99875em){
    .contact-form__input{
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }
    .contact-modal{
        max-width: calc(100% - 24px);
        top: 55px;
        left: 12px;
    }
    ._only-desktop{
        display: none !important;
    }
    .actions-menu{
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        gap: 26px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        -ms-flex-line-pack: end;
        align-content: end;
    }
    .actions-menu__button{
        min-width: 91px;
    }
    .actions-menu__button--narrow{
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        min-width: auto;
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        border: none;
        color: var(--main-color);
        text-decoration: underline;
    }
    .menu__body{
        position: fixed;
        z-index: 4;
        top: 0;
        left: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
        width: calc(100% - 24px);
        height: 80vh;
        padding: 1.875rem 1.625rem 1.25rem;
        background-color: var(--white);
        border-radius: var(--border-radius);
        -webkit-transform: translate3D(0, -102%, 0);
        -ms-transform: translate3D(0, -102%, 0);
        transform: translate3D(0, -102%, 0);
        -webkit-transition: -webkit-transform .3s ease 0s;
        transition: -webkit-transform .3s ease 0s;
        transition: transform .3s ease 0s;
        transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
        overflow-y: auto;
    }
    ._form-modal-is-open .contact-modal{
        height: 80vh;
    }
    .menu-open .menu__body{
        -webkit-transform: translate3D(0px, 55px, 0);
        -ms-transform: translate3D(0px, 55px, 0);
        transform: translate3D(0px, 55px, 0);
    }
    .menu__list{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 28px;
    }
    .menu__list > .menu__item{
        font-size: 18px;
        line-height: 1.25;
        white-space: nowrap;
    }
    .menu__subitem a svg{
        display: none;
    }
    .icon-menu{
        position: relative;
        z-index: 5;
        display: block;
        width: 1.5625rem;
        height: 1.1875rem;
        cursor: pointer;
    }
    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after{
        content: "";
        position: absolute;
        right: 0;
        width: 100%;
        height: 0.1875rem;
        border-radius: var(--border-radius);
        -webkit-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        background-color: var(--white);
    }
    ._header-scroll .icon-menu span,
    ._header-scroll .icon-menu::before,
    ._header-scroll .icon-menu::after{
        background-color: var(--main-color);
    }
    .icon-menu::before{
        top: 0;
    }
    .icon-menu::after{
        bottom: 0;
    }
    .icon-menu span{
        top: calc(50% - 0.09375rem);
    }
    .menu-open .icon-menu span{
        width: 0;
    }
    .menu-open .icon-menu::before{
        top: calc(50% - 0.09375rem);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .menu-open .icon-menu::after{
        bottom: calc(50% - 0.09375rem);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
@media (max-width: 61.99875em)and (max-width: 61.99875em){
    .menu__body > .actions-menu__button{
        max-width: 133px;
        background-color: var(--white);
        border-color: var(--purple);
        color: var(--purple);
    }
}
@media (min-width: 1em) and (max-width: 61.99875em){
    .menu__sublist{
        max-width: calc(100% - 22px);
    }
}
@media (max-width: 47.99875em){
    .contact-form__rows{
        gap: 11px;
    }
    .contact-form__row{
        display: -ms-grid;
        display: grid;
        gap: 11px;
    }
    .contact-form__row--nowrap{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5px;
    }
    .contact-form__checkbox{
        margin-bottom: 10px;
    }
    .input{
        padding: 10px 14px;
        border-radius: 6px;
    }
    .checkbox__label:before{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8px;
        flex: 0 0 8px;
        width: 8px;
        -webkit-transform: translate3D(0px, 1px, 0);
        -ms-transform: translate3D(0px, 1px, 0);
        transform: translate3D(0px, 1px, 0);
    }
    .checkbox__text{
        font-size: 10px;
    }
    .select__title{
        border-radius: 6px;
    }
    .select__value{
        padding: 10px;
    }
    .select__icon{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
        flex: 0 0 14px;
    }
    .select__option{
        padding: 7.5px 14px;
    }
    .popup__content{
        border-radius: 8px;
    }
    .popup__text{
        border-radius: 8px;
    }
    .contact-modal__inner{
        padding: 46px 28px 16px;
    }
    .contact-modal__descr{
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 107%;
        text-align: center;
    }
    .contact-modal__close{
        top: 24px;
        right: 21px;
        width: 13px;
        height: auto;
    }
    .slider-controls{
        -ms-grid-columns: 35px 35px;
        grid-template-columns: 35px 35px;
        gap: 12px;
    }
    .slider-controls__button svg{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
        flex: 0 0 20px;
    }
}
@media (max-width: 29.99875em){
    :root{
        --main-offsize: 0.875rem;
        --title-offsize: 1.5625rem;
        --border-radius: 1.375rem;
    }
    [class*=__container]{
        max-width: 85rem;
        margin: 0 auto;
        padding: 0 1.25rem;
    }
    .professors__container{
        padding-right: 0;
        padding-left: 0;
    }
    .professors__navigation{
        padding-right: 1.25rem;
    }
    .professors__title{
        padding-left: 1.25rem;
    }
    .professors__swiper{
        padding-left: 1.25rem;
    }
    .button{
        padding: 8px 10px;
        font-size: 16px;
    }
    .popup__close{
        top: 3px;
        right: 3px;
    }
    .video-modal .popup__close{
        top: -25px;
        right: auto;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .popup__close svg{
        width: 24px;
        height: 24px;
    }
    .contact-modal__title{
        text-align: center;
        max-width: 95%;
    }
    .actions-menu{
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .menu-open .actions-menu{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
@media (min-width: 29.99875em)and (max-width: 61.99875em){
    :root{
        --title-offsize: 3rem;
    }
}
@media (min-width: 20em)and (max-width: 87.5em){
    @supports (margin-bottom: clamp( 1.875rem , 0.7638888889rem  +  5.5555555556vw , 5.625rem )){
        .contact-form__rows{
            margin-bottom: clamp(1.875rem, 0.7638888889rem + 5.5555555556vw, 5.625rem);
        }
    }

    @supports not (margin-bottom: clamp( 1.875rem , 0.7638888889rem  +  5.5555555556vw , 5.625rem )){
        .contact-form__rows{
            margin-bottom: calc(1.875rem + 3.75 * (100vw - 20rem) / 67.5);
        }
    }

    @supports (font-size: clamp( 1.5625rem , 1.2847222222rem  +  1.3888888889vw , 2.5rem )){
        .contact-modal__title{
            font-size: clamp(1.5625rem, 1.2847222222rem + 1.3888888889vw, 2.5rem);
        }
    }

    @supports not (font-size: clamp( 1.5625rem , 1.2847222222rem  +  1.3888888889vw , 2.5rem )){
        .contact-modal__title{
            font-size: calc(1.5625rem + 0.9375 * (100vw - 20rem) / 67.5);
        }
    }
}
@media (min-width: 61.99875em)and (max-width: 87.5em){
    .contact-modal{
        max-width: calc(100% - 40px);
        margin: 0 auto;
        top: 117px;
        right: 6px;
        left: 6px;
        -webkit-transform: translate3D(0px, 0px, 0);
        -ms-transform: translate3D(0px, 0px, 0);
        transform: translate3D(0px, 0px, 0);
    }
}
@media (any-hover: none)and (min-width: 61.99875em)and (min-width: 81.25em)and (max-width: 87.5em){
    @supports (gap: clamp( 1.25rem , -12.5625rem  +  17vw , 2.3125rem )){
        .menu__list{
            gap: clamp(1.25rem, -12.5625rem + 17vw, 2.3125rem);
        }
    }

    @supports not (gap: clamp( 1.25rem , -12.5625rem  +  17vw , 2.3125rem )){
        .menu__list{
            gap: calc(1.25rem + 1.0625 * (100vw - 81.25rem) / 6.25);
        }
    }
}
@media (any-hover: none)and (min-width: 61.99875em)and (max-width: 81.25em){
    .menu__list{
        gap: 1.25rem;
    }
}
@media (min-width: 1em) and (min-width: 61.99875em)and (max-width: 87.5em){
    .menu__sublist{
        max-width: calc(100% - 12px);
    }
}
@media (max-width: 61.9375em){
    .menu__sublist{
        margin-right: -20px;
        padding-top: 20px;
        padding-right: 20px;
        max-height: 325px;
        overflow: auto;
        font-size: 16px;
    }
}
@media (min-width: 62em){
    .menu .menu__line{
        display: block;
        position: absolute;
        z-index: 2;
        background-color: var(--purple);
        border-radius: var(--border-radius);
        -webkit-transform: translate(0%, -100%);
        -ms-transform: translate(0%, -100%);
        transform: translate(0%, -100%);
        -webkit-transition: width .3s ease, height .3s ease, opacity .3s ease, -webkit-transform .3s ease;
        transition: width .3s ease, height .3s ease, opacity .3s ease, -webkit-transform .3s ease;
        transition: transform .3s ease, width .3s ease, height .3s ease, opacity .3s ease;
        transition: transform .3s ease, width .3s ease, height .3s ease, opacity .3s ease, -webkit-transform .3s ease;
        pointer-events: none;
        opacity: 0;
    }
    .menu__item > a{
        padding: 16px 25px;
        padding: 16px;
        background-color: rgba(0, 0, 0, 0);
        border-radius: var(--border-radius);
        -webkit-transition: background-color .3s ease, color .3s ease;
        transition: background-color .3s ease, color .3s ease;
    }
    .menu__item:hover > a{
        color: var(--white);
    }
    .menu__item:hover > button svg,
    .menu__item:hover > a svg{
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }
    .menu__sublist{
        position: fixed;
        z-index: 2;
        top: 0;
        left: 50%;
        width: 100%;
        height: auto;
        padding: 116px 60px 30px;
        background-color: var(--white);
        border-radius: 12px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        -webkit-transform: translate3D(-50%, 0%, 0);
        -ms-transform: translate3D(-50%, 0%, 0);
        transform: translate3D(-50%, 0%, 0);
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
        transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
    }
    .menu__sublist li{
        opacity: 0;
        visibility: hidden;
        -webkit-transition: color .3s ease, opacity 0, visibility 0, -webkit-transform 0;
        transition: color .3s ease, opacity 0, visibility 0, -webkit-transform 0;
        transition: color .3s ease, transform 0, opacity 0, visibility 0;
        transition: color .3s ease, transform 0, opacity 0, visibility 0, -webkit-transform 0;
    }
    [data-rebound-effect]{
        position: relative;
        overflow: hidden;
    }
    [data-rebound-effect]::before,
    [data-rebound-effect]::after{
        content: attr(data-rebound-effect);
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.5s var(--ease-in-out-cubic), opacity 0.5s var(--ease-in-out-cubic);
    }
    [data-rebound-effect]::before{
        transform: translateY(-50%);
        opacity: 1;
    }
    [data-rebound-effect]::after{
        transform: translateY(50%);
        opacity: 0;
    }
    [data-rebound-effect]:hover::before{
        transform: translateY(-150%);
        opacity: 0;
    }
    [data-rebound-effect]:hover::after{
        transform: translateY(-50%);
        opacity: 1;
    }
    [data-rebound-effect] > span{
        opacity: 0;
    }
    @supports (content: attr(data-rebound-effect)){
        [data-rebound-effect]::before,
        [data-rebound-effect]::after{
            content: attr(data-rebound-effect);
        }
    }

    @supports not (content: attr(data-rebound-effect)){
        [data-rebound-effect]::before,
        [data-rebound-effect]::after{
            content: "";
        }
        [data-rebound-effect] > span{
            opacity: 1;
        }
    }
}
@media (min-width: 1em){
    .button:hover{
        border-color: var(--black);
        color: var(--black);
    }
    .button--white:hover{
        border-color: rgba(0, 0, 0, 0);
        color: var(--white);
        background-color: var(--purple);
    }
    .button--black:hover{
        border-color: var(--white);
    }
    .button--outline:hover{
        color: var(--white);
        border-color: var(--purple);
    }
    .button--outline:hover span::after{
        -webkit-transform: translate3D(0px, 0px, 0);
        -ms-transform: translate3D(0px, 0px, 0);
        transform: translate3D(0px, 0px, 0);
    }
    .button--purple:hover{
        background-color: var(--violet-darker);
        color: var(--white);
        border-color: rgba(0, 0, 0, 0);
    }
    .input:hover{
        color: var(--main-color);
    }
    .checkbox__text a:hover{
        text-decoration: none;
    }
    .select__title:hover{
        color: var(--main-color);
    }
    .select__title:hover .select__pseudo-label{
        color: var(--blue);
    }
    .select__option:hover{
        color: var(--main-color);
    }
    .popup__close:hover svg{
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .contact-modal__close:hover{
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .lang-switcher__item:hover{
        color: var(--main-color);
    }
    .slider-controls__button:hover{
        background-color: var(--green);
    }
    .menu__item:hover .menu__sublist{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .menu__item:hover .menu__sublist li{
        opacity: 1;
        -webkit-transform: translate3D(0px, 0, 0);
        -ms-transform: translate3D(0px, 0, 0);
        transform: translate3D(0px, 0, 0);
        visibility: visible;
        -webkit-transition: color .3s ease, opacity .3s ease 0s, visibility .3s ease 0s, -webkit-transform .3s ease 0s;
        transition: color .3s ease, opacity .3s ease 0s, visibility .3s ease 0s, -webkit-transform .3s ease 0s;
        transition: color .3s ease, transform .3s ease 0s, opacity .3s ease 0s, visibility .3s ease 0s;
        transition: color .3s ease, transform .3s ease 0s, opacity .3s ease 0s, visibility .3s ease 0s, -webkit-transform .3s ease 0s;
    }
}