/* Font declarations */
@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-Regular.woff2') format('woff2'),
    url('../fonts/Roobert-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert';
    src: url('../fonts/Roobert-Medium.woff2') format('woff2'),
    url('../fonts/Roobert-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;

}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roobert', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    font-feature-settings: "ss09" 1;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    font-feature-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

/* Container */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Roobert', sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
}

h1, .h1 {
    font-size: 68px;
    line-height: 72px;
}

h2, .h2 {
    font-size: 50px;
    line-height: 60px;
}

h3, .h3 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2px;
}

h4, .h4 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -2px;
}

h5, .h5 {
    font-size: 24px;
    line-height: 35px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #000;

    &:hover {
        text-decoration: underline;
    }
}


.text-medium {
    font-weight: 500;
}

.text-lg {
    font-size: 20px;
    line-height: 28px;
}

.text-sm {
    font-size: 15px;
    line-height: 24px;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.col {
    flex: 1 0 0;
    padding: 0 15px;
}


.btn {
    font-weight: 500;
    display: block;
    width: fit-content;
    padding: 16px 24px;
    border-radius: 30px;
    position: relative;

    &:hover {
        text-decoration: none;
    }

    &:has(span) {
        &:hover:before {
            opacity: 1;
            transform: translate(0, 0);
        }

        &:before {
            content: attr(data-hover);
            position: absolute;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translate(0, 100%);
            transition: all .3s ease-in-out;
            text-align: center;
        }

        span {
            display: block;
            transition: all .3s ease-in-out;
        }

        &:hover span {
            opacity: 0;
            transform: translate(0, -100%)
        }
    }

}


.btn--black {
    background: #000;
    color: #fff;
}

.btn--white {
    background: #fff;
    color: #000;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}


/* Responsive styles */
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
    }

    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    h1, .h1 {
        font-size: 48px;
        line-height: 52px;
    }

    h2, .h2 {
        font-size: 40px;
        line-height: 44px;
    }

    h3, .h3 {
        font-size: 32px;
        line-height: 40px;
    }

    h4, .h4 {
        font-size: 28px;
        line-height: 36px;
    }

    h5, .h5 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* HEADER */
#header {
}

.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all .3s;
    top: 0;


    &.scrolling{
        background: #ffffff80;
    }
}

.header__container {
    display: flex;
    justify-content: space-between;
    padding: 24px 15px;
    align-items: center;
}

.header__logo {
}

.header__logo-link {
}

.header__logo-img {
}

.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header__nav-link {

}

.header__lang {
    position: relative;
    padding: 10px;

    &:hover {
        background-color: #eeeeee;
        border-radius: 5px 5px 0 0;
    }

    &:hover .header__lang-available {
        display: flex;
        flex-direction: column;
        position: absolute;
        background-color: #fff;
        border-radius: 0 0 5px 5px;
        left: 0;
        width: 100%;
        border-top: 1px solid #e4e4e4;
        top: 100%;
        text-align: center;
    }
}

.header__lang-current {
    display: flex;
    gap: 5px;
    cursor: pointer;
}

.header__lang-icon {
}

.header__lang-available {
    display: none;
}

.header__lang-item {
    padding: 5px 0;
}

.header__btns {
    .btn {
        padding: 9px 25px;
    }
}

@media (max-width: 992px) {
    #header {
    }

    .header {
    }

    .header__container {
        width: 100%;
        max-width: 100%;
    }

    .header__logo {
    }

    .header__logo-link {
    }

    .header__logo-img {
    }

    .header__nav {
    }

    .header__nav-link {
    }

    .header__lang {
    }

    .header__lang-current {
    }

    .header__lang-icon {
    }

    .header__lang-available {
    }

    .header__lang-item {
    }
}

/* HERO */

#hero {
    background-color: #D8D9E2;
    z-index: 1;
    position: relative;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/hero-bg.png');
        background-size: contain;
        background-position: center;
        z-index: -1;
        opacity: 0.1;
    }
}

.hero {
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
}

.hero__h1 {
    text-align: center;
    margin-bottom: 50px;
}

.hero__content {
    margin-top: auto;
}

.hero__btns {
    .btn {
        margin: 0 auto 100px;
    }
}

.hero__img-wrap {
    /* margin-bottom: -6px; */
    display: flex;
    gap: 48px;
    align-items: start;
}

.hero__img {
    max-width: 670px;
}

.hero__img-app{
    max-width: 320px;
    width: 100%;
    transform: translateX(50%);
    z-index: 3;
}
.hero__img-card{
    transform: translateX(-50%);
    z-index: 2;
}

@media (max-width: 992px) {
    #hero {
    }

    .hero {
    }

    .hero__container {
        padding-top: 132px;
        padding-bottom: 80px;
    }

    .hero__h1 {
        margin-bottom: 30px;
    }

    .hero__content {
    }

    .hero__btns {
    }

    .hero__img-wrap {
        width: 100%;
        flex-direction: column;
        position: relative;
        z-index: 5;
        align-items: center;
    }


    .heroImg img{
        animation: none !important;
        transform: translateX(0%);
        opacity: 1 !important;
        margin-bottom: -6px;
    }

}


/* Discover */
#discover {
}

.discover {
    margin-top: 200px;
}

.container__discover {
    text-align: center;
}

.discover_h2 {
    margin-bottom: 120px;
}

.discover_features-wrap {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 100px;
}

.discover_features-col {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
}

.discover_features-media {
    height: min(100%, 700px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, #E0EBFA 0%, #ECE7FB 100%);
    border-radius: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.discover_features-media-2 {
    padding: 20px;
}

.discover_features-img {
    max-width: 100%;
    max-height: 100%;
}

.discover_features-img-2 {
    max-width: 420px;
    width: 100%;
}

.discover_features-text {
}

.discover_features-title {
    margin-bottom: 8px;
}

.discover_features-desc {
    color: #818390;
}

.discover_advantages {
}

.discover_advantages-list {
    display: flex;
    text-align: left;
    gap: 8px;
}

.discover_advantages-item {
    background: #F5F5F7;
    padding: 32px;
    border-radius: 16px;
    flex-basis: 50%;
}

.discover_advantages-icon {
}

.discover_advantages-img {
    margin-bottom: 40px;
}

.discover_advantages-title {
    font-size: 20px;
    margin-bottom: 4px;
}

.discover_advantages-desc {
    color: #818390;
}


@media (max-width: 992px) {
    #discover {
    }

    .discover {
        margin-top: 80px;
    }

    .container__discover {
    }

    .discover_h2 {
        margin-bottom: 80px;
    }

    .discover_features-wrap {
        flex-direction: column;
        gap: 56px;
        margin-bottom: 56px;
    }

    .discover_features-col {
    }

    .discover_features-media {
    }

    .discover_features-media-2 {
        padding: 150px 50px;
    }

    .discover_features-img {
    }

    .discover_features-img-2 {
    }

    .discover_features-text {
    }

    .discover_features-title {
    }

    .discover_features-desc {
    }

    .discover_advantages {
    }

    .discover_advantages-list {
        flex-direction: column;
    }

    .discover_advantages-item {
    }

    .discover_advantages-icon {
    }

    .discover_advantages-img {
        margin-bottom: 32px;
    }

    .discover_advantages-title {
    }

    .discover_advantages-desc {
    }
}

/* Banner cards */

#banner-cards {
}

.banner-cards {
    margin-top: 200px;
    padding: 20px;
}

.banner-cards__img-wrap {
    background: #000;
    border-radius: 16px;
}

.banner-cards__img {
    /* max-width: 900px; */
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 992px) {
    #banner-cards {
        margin-top: 120px;
    }

    .banner-cards {
    }

    .banner-cards__img-wrap {
        height: 721px;
        overflow: hidden;
        position: relative;
    }

    .banner-cards__img {
        width: 337dvw;
        max-width: initial;
        position: absolute;
        right: 50%;
        left: 59%;
        transform: translateX(-51%);
        top: -14%;
    }
}


/* backed */

#backed {
    overflow: hidden;
}

.backed {
    margin-top: 200px;
    margin-bottom: 200px;
}

.container__backed {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}


.backed__slider-wrap {
}

.backed__slider {
    display: inline-flex;
    gap: 8px;
    width: 99dvw;
    overflow: auto;
    padding: 0 120px;
    scrollbar-width: none;
    cursor: e-resize;
}

.backed__slider-item {
    background: #F5F5F7;
    border-radius: 12px;
    width: 193px;
    height: 193px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 193px;
}

.backed__slider-img {
    width: fit-content;
    max-width: 100%;
    max-height: 44px;
}


@media (max-width: 992px) {
    #backed {
        margin-top: 120px;
        margin-bottom: 0px;
    }

    .backed {
    }

    .container__backed {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }

    .backed__slider-wrap {
    }

    .backed__slider {
    }

    .backed__slider-item {
    }

    .backed__slider-img {
    }

}


/* SMARTER */

#smarter {
}

.smarter {
    margin-top: 200px;
}

.smarter__container {
}

.smarter__h2 {
    margin-bottom: 120px;
    margin-bottom: 80px;
}

.smarter__features-list {
    display: flex;
    gap: 110px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.smarter__features-item {
    flex: 1 1 calc(100% / 4);
}

.features__features-icon {
    background: #F6F2FF;
    width: fit-content;
    padding: 20px 43px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.features__features-img {
    width: 40px;
    height: 40px;
}

.smarter__features-title {
    color: #818390;
    font-size: 20px;

    b {
        font-weight: 500;
        color: #000;
    }
}

@media (max-width: 992px) {
    #smarter {
        margin-top: 120px;
    }

    .smarter {
    }

    .smarter__container {
    }

    .smarter__h2 {
    }

    .smarter__features-list {
        gap: 20px;
    }

    .smarter__features-item {
        flex: 2 2 calc(100% / 3);
        max-width: 50%;
    }

    .features__features-icon {padding: 15px 35px;}

    .features__features-img {

    }

    .smarter__features-title {
    }

}


/* CTA TURN */

#cta-turn {
}

.cta-turn {
    margin-top: 200px;
    background: #000000;
    padding: 120px 0;
}

.cta-turn__container {
    display: flex;
    gap: 72px;
}

.cta-turn__col {
    flex-basis: 50%;
    width: 50%;
}

.cta-turn__h2 {
    color: #FFFFFF;
    margin-bottom: 48px;
}

.cta-turn__pay-logo {
    display: flex;
    gap: 32px;
    margin-bottom: 130px;
}

.cta-turn__pay-logo-item {
}

.cta-turn__list {
    margin-bottom: 40px;
}

.turn__list-item {
    color: hsla(0, 0%, 100%, 0.5);
    display: flex;
    font-size: 20px;
    margin-bottom: 16px;
    gap: 8px;
}

.turn__list-icon {
}

.turn__list-title {
}

.cta-turn__btns {
}

.cta-turn__banner {
    background: #6944E3;
    border-radius: 16px;
}

.turn__banner-img {
    width: 100%;
    margin-bottom: -6px;
}

@media (max-width: 992px) {
    #cta-turn {
        margin-top: 120px;
        padding: 80px 0px;
    }

    .cta-turn {
    }

    .cta-turn__container {
        flex-direction: column;
    }

    .cta-turn__col {
        width: 100%;
        flex-basis: 100%;
    }

    .cta-turn__h2 {
    }

    .cta-turn__pay-logo {
        margin-bottom: 30px;
    }

    .cta-turn__pay-logo-item {
    }

    .cta-turn__list {
    }

    .turn__list-item {
    }

    .turn__list-icon {
    }

    .turn__list-title {
    }

    .cta-turn__btns {
    }

    .cta-turn__banner {
    }

    .turn__banner-img {
    }
}


/* BUILT */

#built {
}

.built {
    margin-top: 200px;
}

.built__container {
}

.built__h2 {
    margin-bottom: 120px;
}

.built__slider-wrap {
    overflow: hidden;
}

.built__slider {
    display: flex;
    overflow: auto;
    width: 99dvw;
    padding: 0 120px;
    gap: 8px;
    scrollbar-width: none;
    cursor: e-resize;
}

.built__slider-item {
    background: #F5F5F7;
    border-radius: 16px;
    width: 395px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.built__slider-img {
}

.built__slider-text {
    font-size: 20px;
    margin-top: auto;
}

@media (max-width: 992px) {
    #built {
        margin-top: 120px;
    }

    .built {
    }

    .built__container {
    }

    .built__h2 {
        margin-bottom: 80px;
    }

    .built__slider-wrap {
    }

    .built__slider {
    }

    .built__slider-item {
    }

    .built__slider-img {
    }

    .built__slider-text {
    }

}


/* TRUSTED */
#trusted {
}

.trusted {
    margin-top: 200px;
    background: #D8D9E2;
}

.trusted__container {
    padding: 120px 25px;
}

.trusted__h2 {
    text-align: center;
    margin-bottom: 64px;
}

.trusted__platform {
    margin-bottom: 88px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trusted__platform-col {
    text-align: center;
}

.trusted__platform-logo {
}

.trusted__platform-text {
    margin-top: 8px;
}

.trusted__reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trusted__review-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    flex: 1 1 calc(100% / 4);
    display: flex;
    flex-direction: column;
}

.trusted__review-stars {
    margin-bottom: 20px;
}

.trusted__review-text {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
}

.trusted__review-name {
    margin-top: auto;
}

@media (max-width: 992px) {

    #trusted {
        margin-top: 120px;
    }

    .trusted {
    }

    .trusted__container {
        padding-right: 0;
        padding-left: 0;
    }

    .trusted__h2 {
        padding-right: 15px;
        padding-left: 15px;
    }

    .trusted__platform {
        padding-right: 15px;
        padding-left: 15px;
    }

    .trusted__platform-col {
    }

    .trusted__platform-logo {
    }

    .trusted__platform-text {
    }

    .trusted__reviews {
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: none;
        padding-right: 15px;
        padding-left: 15px;
    }

    .trusted__review-item {
        min-width: 270px;
    }

    .trusted__review-stars {
    }

    .trusted__review-text {
    }

    .trusted__review-name {
    }

}


/* FAQ */
#faq {
}

.faq {
    margin-top: 162px;
}

.faq__container {
}

.faq__header {
    margin-bottom: 92px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq__h2 {
    flex-basis: 50%;
}

.faq__header-text-wrap {
    flex-basis: 50%;
}

.faq__header-text {
    font-size: 20px;
    margin-bottom: 32px;
}

.faq__header-btns {
}

.faq__question-list {
}

.faq__question-item {
    background: #F5F5F7;
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 8px;
    cursor: pointer;

    &.open {
        .faq__question-answer {
            height: fit-content;
            visibility: visible;
            margin-top: 12px;
            transition: all .3s;
            opacity: 1;
        }

        .faq__question-control {
            transition: all .3s;
            transform: rotate(45deg);
        }
    }

}

.faq__question-head {
    display: flex;
    justify-content: space-between;
}

.faq__question-title {
    font-size: 20px;
}

.faq__question-control {
    transition: all .3s;
}

.faq__question-answer {
    color: #818390;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    height: 0;
    transition: all .3s;
}

@media (max-width: 992px) {


    #faq {
        margin-top: 120px;
    }

    .faq {
    }

    .faq__container {
    }

    .faq__header {
        flex-direction: column;
        margin-bottom: 70px;
    }

    .faq__h2 {
    }

    .faq__header-text-wrap {
    }

    .faq__header-text {
    }

    .faq__header-btns {
    }

    .faq__question-list {
    }

    .faq__question-item {
    }

    .faq__question-head {
    }

    .faq__question-title {
    }

    .faq__question-control {
    }

    .faq__question-answer {
    }

}

/* CTA READY */

#cta-ready {
}

.cta-ready {
    margin-top: 250px;
}

.cta-ready__container {
    display: flex;
    gap: 8px;
}

.cta-ready__col {
    flex-basis: 50%;
    padding: 32px;
    border-radius: 16px;
}

.cta-ready__col--one {
    background: #000;
}

.cta-ready__col--one__h4 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-ready__col--one__text {
    color: #ffffff7a;
    font-size: 20px;
}

.cta-ready__col--one__marketplays {
    margin-top: 130px;
}

.cta-ready__col--two {
    background: #6944E3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-ready__col--two__qr-code {
}

@media (max-width: 992px) {
    #cta-ready {
        margin-top: 120px;
    }

    .cta-ready {
    }

    .cta-ready__container {
        flex-direction: column;
    }

    .cta-ready__col {
    }

    .cta-ready__col--one {
    }

    .cta-ready__col--one__h4 {
    }

    .cta-ready__col--one__text {
    }

    .cta-ready__col--one__marketplays {
    }

    .cta-ready__col--two {
    }

    .cta-ready__col--two__qr-code {
    }

    .cta-ready__col--one__btn{
        margin-top: 120px;
    }
}


.footer {
    margin-top: 250px;
    margin-bottom: 40px;
}

.footer__container {
}

.footer__row {
}

.footer__logo {
}

.footer__logo-link {
}

.footer__logo-img {
}

.footer__nav-wrap {
}

.footer__nav {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.footer__nav-item {
}

.footer__nav-category {
    font-weight: 500;
    margin-bottom: 16px;
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav-link {
    color: hsla(232, 6%, 54%, 1);
}

.footer__socials {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.footer__socials-link {
}

.footer__copy {
    font-size: 15px;
    font-weight: 500;
    color: hsla(232, 6%, 54%, 1);
}

.footer__ligal {
    margin-top: 48px;
    font-size: 15px;
    font-weight: 500;
    color: hsla(232, 6%, 54%, 1);
}

.footer__security {
    display: flex;
    gap: 8px;
}

.footer__security-item {
    background: hsla(240, 11%, 96%, 1);
    padding: 24px;
    border-radius: 16px;
    flex: 1;
}

.footer__security-icon {
    margin-bottom: 44px;
}

.footer__security-text {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    gap: 5px;
}

.footer__security-text-icon {
}

.footer__row--one {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__row--two {
}

.footer__row--three {
    margin-top: 48px;
}

@media (max-width: 992px) {
    .footer {
        margin-top: 120px;
    }

    .footer__container {
    }

    .footer__row {
        flex-direction: column;
    }

    .footer__logo {
    }

    .footer__logo-link {
    }

    .footer__logo-img {
    }

    .footer__nav-wrap {

    }

    .footer__nav {
        display: flow;
        columns: 150px;
        margin-bottom: 30px;
    }

    .footer__nav-item {
        margin-bottom: 25px;
        width: 100%;
        break-inside: avoid;
    }

    .footer__nav-category {
    }

    .footer__nav-links {
    }

    .footer__nav-link {
    }

    .footer__socials {
    }

    .footer__socials-link {
    }

    .footer__copy {
    }

    .footer__ligal {
    }

    .footer__security {
    }

    .footer__security-item {
        width: 270px;
        min-width: 270px;
        padding: 24px;
    }

    .footer__security-icon {
        margin-bottom: 28px;
    }

    .footer__security-text {

        span{
            white-space: nowrap;
        }
    }

    .footer__security-text-icon {
    }

    .footer__row--one {
    }

    .footer__row--two {
    }

    .footer__row--three {
        overflow: auto;
        scrollbar-width: none;
    }
}



/*.slideUp {
    opacity: 0;
}


.slideUp.visible {
    --slideUp-delay: 0s;
    --slideUp-transform-start: 100%;
    animation: slideInUp 0.5s ease-out forwards;
    animation-delay: var(--slideUp-delay);
    transform: translate3d(0, var(--slideUp-transform-start), 0);
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, var(--slideUp-transform-start), 0);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}*/


.slideUp {
    --slideUp-delay: 0s;
    --slideUp-transform-start: 100%;
    opacity: 0;
}

.heroBtnSpeedAnim{
    --slideUp-delay: 0.3s;
    --slideUp-transform-start: 100%;
    --slideUp-speed: 0.4s;
    --slideUpOpacity-speed: 0.8s;
}

.heroSpeedAnim{
    --slideUp-delay: 0.3s;
    --slideUp-transform-start: 5%;
    --slideUp-speed: 0.4s;
    --slideUpOpacity-speed: 0.8s;
}

.sectionSpeedAmin{
    --slideUp-delay: 0s;
    --slideUp-transform-start: 5%;
    --slideUp-speed: 0.5s;
    --slideUpOpacity-speed: 1s;
}

.slideUp.visible {
    animation: slideUpTransform var(--slideUp-speed, 0.4s) cubic-bezier(.7,0,.3,1) forwards,
    slideUpOpacity var(--slideUpOpacity-speed, 0.8s) cubic-bezier(.7,0,.3,1) forwards;
    animation-delay: var(--slideUp-delay, 0s);
}

@keyframes slideUpTransform {
    from {
        transform: translate3d(0, var(--slideUp-transform-start, 100%), 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideUpOpacity {
    from { opacity: 0; }
    to { opacity: 1; }
}


.perspective {
    perspective: 600px;
}


.perspective-text-anim{
    animation: perspectiveTextAnim 0.5s ease-out forwards;
    display: inline-block;
    position: relative;
    opacity:0;
    transform: translateY(100%) rotate(0deg) rotateX(-44.6561deg) translateZ(0px);
}

@keyframes perspectiveTextAnim {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0%) rotate(0deg) rotateX(0deg) translateZ(0px);
    }
}



.heroImg img{
    animation: heroImgAnim 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes heroImgAnim {
    from {

    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}




.cookie {
    &.close{
        display: none;
    }
}
.cookie-wrapper {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 500px;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0px 4px 8px 0px hsla(0, 0%, 0%, 0.04);
    z-index: 5;
    width: 100%;
}
.cookie__h5 {}
.cookie__content {
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #818390;
}
.cookie__link {
    font-size: 15px;
    color: #818390;
    text-decoration: underline;
}
.cookie__bts {
    .btn{
        cursor: pointer;
        border: none;
        padding: 10px 20px;
    }
    .btn--white{
        border: 1px solid #D8D9E2;
    }
    .btn--black{
    }
;
    margin-top: 24px;
}
.cookie__bts-item{
    display: flex;
    gap: 8px;
}
.cookie__btn--accept {}
.cookie__btn--reject {}
.cookie__btn--white {}
.cookie__btn--customize {}
.cookie__customize-content {
    margin-top: 32px;
    display: none;

    p{
        margin-bottom: 0px;
    }
}
.cookie__customize-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cookie__customize-item {
    display: flex;
    justify-content: space-between;
    background: #F5F5F7;
    padding: 16px 20px;
    border-radius: 12px;
}
.cookie__customize-save {
    margin-top: 20px;
    margin-left: auto;
}


@media (max-width: 992px) {

    .cookie {
        left: 0px;
        width: 90%;
        margin: 0 auto;
        right: 0;
    }
    .cookie-wrapper {}
    .cookie__h5 {}
    .cookie__content {}
    .cookie__link {}
    .cookie__bts {}
    .cookie__btn--accept {}
    .cookie__btn--reject {}
    .cookie__btn--white {}
    .cookie__btn--customize {}
    .cookie__customize-content {}
    .cookie__customize-items {}
    .cookie__customize-item {}
    .cookie__customize-save {}


}


.switch {
    display: flex;
    /* align-items: center; */
    /* height: 68px; */
    /* background: #f7f7fa; */
    /* border-radius: 24px; */
    /* padding-left: 30px; */
    /* user-select: none; */
}

.switch input {
    display: none;
}

.slider {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    background: #e7e7ef;
    border-radius: 36px;
    transition: background 0.3s;
    box-sizing: border-box;
    vertical-align: middle;
    cursor: pointer;
}

.switch input:checked + .slider {
    background: #787a89;
    border-color: #787a89;
}

.slider:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 2.3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.3s;
}

.switch input:checked + .slider:before {
    transform: translateX(15px);
}

.checkmark {
    display: none;
    position: absolute;
    left: 1px;
    top: 1px;
    font-size: 18px;
    color: #fff;
    pointer-events: none;
    transition: opacity 0.2s;
}

.switch input:checked + .slider .checkmark {
    display: block;
}

.switch input:disabled + .slider {
    background: #edeef2;
    border-color: #d1d2dc;
    cursor: not-allowed;
    opacity: 0.7;
}

.switch input:disabled + .slider:before {
    background: #fff;
}

.switch input:disabled:checked + .slider {
    background: #d1d2dc;
    border-color: #d1d2dc;
}

.switch input:disabled:checked + .slider .checkmark {
    color: #d1d2dc;
}

.hide{
    display: none;
}

.qr-code-wrapper{
    position: fixed;

    top: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #0000008f;
    z-index: 555;
    display: none;

    &.open{
        display: flex;
    }
}
.qr-code__content{
    background: #fff;
    padding: 20px 32px;
    border-radius: 16px;
    text-align: center;
}
.qr-code_h5{}
.qr-code__text{
    margin-top: 12px;
    font-size: 15px;
    color: #818390;
}
.qr-code__img{
    margin-top: 5px;
    margin-bottom: 5px;
}
.qr_code__stors{}


@media (max-width: 992px) {
    .qr-code-wrapper{}
    .qr-code__content{}
    .qr-code_h5{}
    .qr-code__text{}
    .qr-code__img{}
    .qr_code__stors{}
}


.terms{
    padding-top: 150px;
}

.terms-body{
    font-size: 16px;
    div{
        margin-bottom: 8px;
    }
    *:first-child{
        margin-top: 0;
    }
    h1, h2, h3, h4, h5, h6{
        margin-top: 20px;
        margin-bottom: 15px;
    }
    ul, ol{
        margin-left: 20px;
        margin-bottom: 8px;
        margin-top: 8px;
    }

    td{
        padding: 10px;
    }

    p:first-child{
        margin-bottom: 0;
    }

    a{
        color: hsl(220.08deg 100% 37.09%);
    }
}


.mb-hide{
    display: block;
}

.mb-hide-flex{
    display: flex;
}

.mb-show, .mb-show-flex{
    display: none;
}

@media (max-width: 992px) {
    .mb-hide-flex{
        display: none;
    }
    .mb-hide{
        display: none;
    }
    .mb-show{
        display: block;
    }

    .mb-show-flex{
        display: flex;
    }

    .hero__h1,
    .hero__img-app,
    .hero__img-card {
        transition: transform 0.5s cubic-bezier(.4,1,.5,1);
        will-change: transform;
        position: relative;
    }

    .heroImg img.hero__img-card{
        z-index: 12;
        position: absolute;
        transform: translateY(100%);
    }
    .hero__btns-mb{
        justify-content: center;
        margin-top: 50px;
        z-index: 5;
        transition: all 0.4s cubic-bezier(.4,1,.5,1);
    }

}

body{
    overflow-x: hidden;
}



._fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}
