:root {
    --primary-blue: #3860fb;
    --navLinksGray: #858779;
    --prime-purple: #8F5DFF;
    --gradient: linear-gradient(262deg, #2E9BFF 0%, rgba(255, 20, 255, 0.70) 100%);
    --mobile-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset, 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset, 0px 0px 16px 4px rgba(255, 255, 255, 0.12) inset, 0px 0px 16px 4px rgba(143, 93, 255, 0.40), 0px 1px 2px 0px #6B26C2;
    --swiper-theme-color: var(--primary-blue);
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-inactive-color: #313131;
    --swiper-pagination-bullet-inactive-opacity: 1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    color: white;
    background: #0d0d12;
    /*background-image: url("/assets/images/background-desktop-min.jpg");*/
    background-size: cover;
    background-repeat: no-repeat;
}

body.noScroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
    border: none;
}

video,
picture,
img {
    display: block;
}


@media (max-width: 997px) {
    body {
        background-image: url("/assets/images/background-mobile-min.jpg");
    }
}

/************************** Buttons ******************************/

.button {
    border-radius: 100vh;
    display: block;
    font-weight: 600;
    padding: 16px 50px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    background-color: var(--prime-purple);
    color: white;
    width: 100%;
    cursor: pointer;
    transition: ease all 300ms;
}

.outline {
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    background-color: transparent;
}

.button.center {
    margin: auto;
}

.button.glow:hover {
    box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset, 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset, 0px 0px 16px 4px rgba(255, 255, 255, 0.12) inset, 0px 0px 16px 4px rgba(143, 93, 255, 0.40), 0px 1px 2px 0px #6B26C2;
}

.sheen::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 50%, rgba(255, 255, 255, 0) 100%);
    animation: sheen 2s ease 0s infinite;
    opacity: 0.2;
}

@keyframes sheen {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(200%, 0, 0);
    }
}

.loading {
    position: relative !important;
    pointer-events: none !important;
    color: transparent !important;
}

.loading svg {
    visibility: hidden;
}

.loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 1000px) {
    .button {
        font-size: 18px;
        width: 100%;
    }
}


/************************** Nav ******************************/
.navbar {
    padding: 32px 108px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: auto;
}

.navbarTop,
.navbarList,
.navbarButtons {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbarBrand {
    max-width: 205px;
}

.menuBtn {
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset;
}

.menuBtn img {
    width: 20px;
}

.navbarList {
    gap: 16px;
    min-width: 360px;
}

.navbarLink {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    padding: 0 20px;
    display: block;
}

.navbarButtons {
    gap: 12px;
    justify-content: flex-end;
}


.navbarListLogin {
    max-width: 180px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0px 0px 12px 2px rgba(255, 255, 255, 0.04) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
}

.navbarGetStarted {
    max-width: 160px;
    padding: 10px;
    font-size: 14px;
}

.navbarLink:hover {
    color: white;
}


.navbarTop {
    justify-content: space-between;
    width: 100%;
}

.navbarListMobile {
    display: none;
}


@media (max-width: 800px) {
    .navbar {
        height: auto;
        padding: 10px 24px;
        flex-direction: column;
        align-items: flex-start;
        background-color: #000;
    }

    .navbarBrand {
        max-width: 205px;
    }


    .navbarListMobile {
        flex-direction: column;
        padding: 0;
        display: none;
        text-align: center;
    }

    .navbarListMobile.open {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 10px 0 0;
    }

    .navbarLink {
        padding: 10px 0;
    }

    .menuBtn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbarList,
    .navbarButtons {
        display: none;
    }

    .navbarContainer {
        display: block;
    }

    .navbarListLogin {
        margin: 10px 0 20px;
        max-width: unset;
    }

    .navbarGetStarted {
        max-width: unset;
    }

}


/************************** Footer ******************************/

.footer {
    width: 100%;
    margin: 0 auto;
    padding: 96px 30px 40px;
    /*box-shadow: 0 0 200px 10px rgba(135, 92, 231, 0.3);*/
}

.footerBrand img {
    max-width: 205px;
    width: 100%;
}

.footerTop {
    display: flex;
    align-items: flex-start;
    gap: 18%;
    margin: 0 auto 56px;
    max-width: 1016px;
}

.footerLinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    padding-top: 4px;
}

.footerLinks div {
    flex: 1;
    max-width: 160px;
}

.footerListTitle {
    color: rgba(255, 255, 255, 0.64);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: .84px;
    line-height: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.footerList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footerLink {
    padding: 12px 0px;
    display: block;
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    line-height: 20px;
}

.copyright {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.64);
    margin: 40px 0 0;
    display: block;
}

hr.footerHr {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 800px) {

    .footer {
        width: 100%;
        padding: 37px 24px 51px;
        background-color: #000;
    }

    .footerTop {
        flex-direction: column;
        margin-bottom: 36px;
    }

    .footerBrand {
        margin-bottom: 48px;
    }

    .footerLinks {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        row-gap: 40px;
    }

    .footerLink {
        padding: 0 0 12px;
    }

    .footerBrand img {
        max-width: 192px;
    }

    .copyright {
        margin: 20px 0 0;
    }

}

/**********
Modal
 */

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    background-color: #0e0e0e66;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    display: none;
    padding: 20px;
}

.modal.active {
    display: flex;
}