@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&family=Julius+Sans+One&family=Tiny5&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

:root {
    --cursor-border: #c185e8;

    --text-xxl: 2rem;
    --text-xl: 1.6rem;
    --text-lg: 1.2rem;
    --text-md: 1rem;
    --text-vmd: .8rem;
    --text-sm: 0.6rem;
}

body {
    background-image: url("/images/home_page/1920x3240_completed_bg.png");
    cursor: none;

    background-size: 100%;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* overflow: hidden; */

    /* height: 300vh; */

    /* background-color: rgba(0, 0, 0); */
    /* background-blend-mode: darken; */
}

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

/* NavBar */
.navbar {
    width: 100%;

    border-bottom: 1px solid #00000011;

    background-image: url("/images/home_page/dot_bg_opaque.jpeg");
    background-size: 300px;

    position: fixed;
    z-index: 9998;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0px 60px;
}

.navbar .container .logo-text a {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: var(--text-xxl);

    color: black;

    letter-spacing: -1.5px;
}

.navbar .container .pc-panel a,
.navbar .container .mob-panel a {
    font-family: "Syne";
    font-weight: 700;
    font-size: var(--text-md);

    color: black;

    padding: 0 10px 0;
}

/* Mobile Menu */
.navbar .ham-btn {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    padding: 4px;

    width: 30px;
    height: 30px;

    background-color: var(--cursor-border);
    border-radius: 50%;
}

.navbar .ham-btn .top-line,
.navbar .ham-btn .bottom-line {
    background-color: #000;
    width: 15px;
    height: 2px;

}

.navbar .container .mob-panel {
    display: none;
    flex-direction: column;
    align-items: end;

    position: fixed;
    top: 0px;
    right: -100vw;

    height: 100vh;

    padding: 20px 20px 0 20px;

    background-image: url("/images/home_page/dot_bg_opaque.jpeg");
    background-size: 100px;
    border-left: 1px solid #00000011;

    transition: .3s right ease-in-out;
}

.navbar .container .mob-panel .contained {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.navbar .container .mob-panel .close-btn {
    padding: 2px 0px 40px 0;
}

.navbar .container .mob-panel .close-btn .top-line,
.navbar .container .mob-panel .close-btn .bottom-line {
    background-color: #000;
    width: 20px;
    height: 2px;
}

.navbar .container .mob-panel .close-btn .top-line {
    transform: rotate(45deg) translateX(1px);
}

.navbar .container .mob-panel .close-btn .bottom-line {
    transform: rotate(-45deg) translateX(1px);
}

.navbar .container .mob-panel a {
    padding: 0 0 20px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 30px;

    overflow: hidden;
}

.hero .main {
    height: 100%;

    display: flex;
    align-items: end;
    justify-content: space-between;
}

.hero .main .left {
    max-width: 60%;
}

.hero .main .left p {
    font-family: "Syne";
    font-size: 5rem;
    font-weight: 900;
}

.hero .main .left p span {
    color: var(--cursor-border);
    text-shadow: 2px 2px black;
}

.hero .main .right {
    display: grid;

    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 4%,
            rgba(0, 0, 0, 1) 96%,
            rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 4%,
            rgba(0, 0, 0, 1) 96%,
            rgba(0, 0, 0, 0));
}

.hero .main .right p {
    grid-row: 1;
    grid-column: 1;

    transform: translateY(100%);

    font-family: "Syne";
    font-size: var(--text-xl);
    font-weight: 900;

    writing-mode: vertical-rl;

    white-space: nowrap;

    animation: infinity-scroll 60s infinite;
    animation-timing-function: linear;
}

.hero .main .right p span {
    color: var(--cursor-border);
    text-shadow: -1px 1px black;
}

.pre-sec {
    width: 95%;

    background-color: #ffffff66;
    border-radius: 10px;
    /* outline: 1px solid var(--cursor-border); */
    box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e888;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 20px 30px;
    margin-bottom: 40px;
}

.pre-sec .image-carousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    margin: 0 0 20px 0;

    /* position: relative; */
    overflow: hidden;
}

.pre-sec .image-carousel .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* overflow: hidden; */
}

.pre-sec .image-carousel .carousel-slide .carousel-seat {
    max-width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pre-sec .image-carousel img {
    max-width: 85%;
    margin: 0 40px;
    object-fit: cover;

    border: 1px solid black;
}

.pre-sec .image-carousel .left-btn,
.pre-sec .image-carousel .right-btn {
    font-size: 4rem;
    color: var(--cursor-border);
    opacity: 0.6;

    text-shadow: 0 0 1px black;

    transition: opacity .3s;
}

.pre-sec .image-carousel .left-btn:hover,
.pre-sec .image-carousel .right-btn:hover {
    opacity: 1;
}

.pre-sec .image-carousel .left-btn {
    left: 0;
    transform: rotate(180deg);

    z-index: 2;
}

.pre-sec .image-carousel .right-btn {
    right: 0;

    z-index: 2;
}

.pre-sec .image-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 10%;

    margin: 0 0 40px 0;
}

.pre-sec .image-nav div {
    border-radius: 50%;
    /* border: 1.5px solid #000; */
    background-color: black;

    width: 8px;
    height: 8px;

    transition: background-color .3s;
}

.pre-sec .image-nav div.active {
    background-color: #00000000;
    border: 2px solid var(--cursor-border);
}

.pre-sec .first-row {
    text-align: center;

    font-family: FuturaPTBold, sans-serif;
    font-size: 1.6rem;
    font-weight: bold;

    padding: 10px 0 0;
}

.pre-sec .content-row {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: white;
    border-radius: 5px;
    box-shadow: inset 0 0 2px #c185e888, 0 0 15px #c185e888;

    width: 100%;
}

.pre-sec .content-row .content-true {
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    padding: 10px 0;
    width: 100%;
}

.pre-sec .content-row .element-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    margin: 0 20px;
}

/* .pre-sec .content-row .element-column .img-div {
    width: 100px;
    height: 100px;
} */

.pre-sec .content-row .element-column .img-div img {
    max-width: 100px;
    border-radius: 50%;
}

/* .pre-sec .content-row .element-column .img-div::after {
    content: "";
    top: 0; 
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    border-left: 2px solid #888;
    border-right: 2px solid #888;
    border-radius: 50%;
    z-index: 0;
} */

/* .pre-sec .content-row .element-column .img-div:hover {
    transform: rotate(90deg);
}

.pre-sec .content-row .element-column .img-div img:hover {
    transform: rotate(-90deg);
} */

.pre-sec .content-row .element-column .text-div {
    font-size: var(--text-md);
    font-family: 'Suisseintl';
    font-weight: 100;

    /* color: var(--cursor-border); */
    /* text-shadow: 1px 1px #000; */
}

.first-sec {
    width: 95%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e8;
    border-radius: 10px;

    background: linear-gradient(to bottom left, #c185e8aa, #fff);

    margin-bottom: 40px;
}

.first-sec .left-reg {
    width: 60%;
    height: 90%;

    padding: 20px;
}

.first-sec .left-reg .logo-div {
    transform: rotate(45deg);
    width: 100px;

    border-radius: 50%;
    border-left: 1px solid var(--cursor-border);
}

.first-sec .left-reg .logo-div img {
    max-width: 100px;

    transform: rotate(-45deg);
}

.first-sec .left-reg .title {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 3.5rem;

    line-height: 1;
    margin-bottom: 5px;
}

.first-sec .left-reg .title span {
    color: var(--cursor-border);
    /* font-weight: bolder; */
    text-shadow: 2px 2px #8643b3;
}

.first-sec .left-reg .sub-title {
    max-width: 70%;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 100;

    margin-bottom: 40px;
}

.first-sec .left-reg .content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 80%;

    margin-bottom: 40px;
}

.first-sec .left-reg .content .content-element {
    display: flex;
    align-items: center;
}

.first-sec .left-reg .content .content-element img {
    max-width: 70px;

    margin: 0 20px 0 0;
}

.first-sec .left-reg .content .content-element .column p {
    font-family: FuturaPT, sans-serif;
    text-align: center;
}

.first-sec .left-reg .content .content-element .column .main {
    font-family: FuturaPTBold, sans-serif;
    font-size: 40px;
}

.first-sec .left-reg .dates {
    display: flex;
    align-items: center;
    justify-content: start;

}

.first-sec .left-reg .dates img {
    max-width: 50px;

    margin-right: 20px;
}

.first-sec .left-reg .dates .column div {
    font-family: FuturaPT;
    font-weight: bold;
    font-size: 20px;

    letter-spacing: 3px;
}

.first-sec .right-reg {
    width: 35%;
    height: 100%;

    /* box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e888; */
    border: 2px solid #c185e8;
    border-radius: 10px;

    margin: 0 20px 0 0;
    padding: 15px 10px 30px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.first-sec .right-reg .form-element h1 {
    font-family: FuturaPT;
    font-size: 35px;

    margin-bottom: 20px;
    line-height: 1;
}

.first-sec .right-reg .form-element label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    cursor: none;

    font-family: FuturaPT, sans-serif;
}

.first-sec .right-reg .form-element input[type="text"],
.first-sec .right-reg .form-element input[type="email"],
.first-sec .right-reg .form-element input[type="tel"],
.first-sec .right-reg .form-element select {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #c185e888;
    border-radius: 4px;
    color: var(--cursor-border);
}

.first-sec .right-reg .form-element select {
    background: #fff;
}

.first-sec .right-reg .form-element button {
    width: 100%;
    padding: 10px;
    background-color: var(--cursor-border);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.first-sec .right-reg .form-element button:hover {
    background-color: #8a50b1;
    transform: scale(1.05);
}

.first-sec .right-reg .form-element p {
    margin-top: 20px;
    font-family: FuturaPT;
    font-size: 18px;
    /* text-shadow: .5px .5px black;
    color: var(--cursor-border); */
}

.first-sec .right-reg .form-element p:last-child {
    color: #8a50b1;
    margin-top: 5px;
}

.second-sec {
    width: 95%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e8;
    border-radius: 10px;

    background: linear-gradient(to bottom left, #c185e8aa, #fff);
    /* background: linear-gradient(to bottom left, #c185e8aa, #fff); */

    padding: 40px 100px;

    margin-bottom: 40px;
}

.footer {
    width: 100%;
    /* height: 50vh; */

    background-image: url("/images/home_page/dot_bg_opaque.jpeg");
    background-size: 400px;
    background-color: #b5e893;

    background-blend-mode: difference;
    /* background-color: #c185e8; */

    /* height: 80vh; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer .maxi-div {
    width: 100%;

    margin-bottom: 50px;

    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;

    padding: 10px 15px;
}

.footer .inc {
    max-width: 50%;
}

.footer .inc .main-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    font-weight: bold;

    letter-spacing: 8px;

    margin-bottom: 5px;
}

.footer .inc .main-text span {
    margin-right: 5px;
}

.footer .inc .sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: FuturaPT;
    font-size: 16px;
}

.footer .maxi-div .socials {
    transform: translateX(-50%);

    padding: 10px 0;

    color: white;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footer .maxi-div .socials img {
    max-width: 40px;
    margin: 0 8px;

    opacity: 0.8;
}

.footer .maxi-div .socials .invert {
    filter: invert(1);
}

.footer .linked {
    width: 100%;

    padding: 10px 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .linked .pseudo {
    display: flex;
}

.footer .linked a,
.footer .linked p {
    font-family: FuturaPT;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 100;
}

.footer .linked p {
    font-weight: bolder;
    font-size: 18px;
    padding: 0 10px;
}

.footer .linked .copyright {
    font-family: FuturaPT;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;

    font-weight: 100;
    padding: 0;
}

@keyframes infinity-scroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-10%);
    }
}

/* Utilities */
[data_text]::after {
    content: attr(data_text);
}

/* Media Query */
@media screen and (max-width: 800px) {
    .clickable {
        cursor: pointer !important;
    }

    body {
        background: none;
        cursor: none;
    }

    .navbar .container {
        padding: 0px 20px;
    }

    .navbar .container .pc-panel {
        display: none;
    }

    .navbar .ham-btn {
        display: flex;
    }

    .navbar .container .mob-panel {
        display: flex;
    }

    .hero::before {
        background-image: url("/images/home_page/completed_bg.png");
        cursor: none;

        margin: 0px;
        padding: 0px;

        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;

        background-size: 100%;
        background-repeat: no-repeat;

        transform: translateY(15px);
    }

    .hero {
        padding: 0;
        height: 95vh;
    }

    .hero .main .left {
        max-width: 90%;
        padding-bottom: 40px;
        padding-left: 15px;
    }

    .hero .main .left p {
        font-size: 40px;
    }

    .hero .main .right p {
        font-size: var(--text-lg);
        padding-right: 15px;
    }

    .pre-sec {
        padding: 0;
        margin: 0 0 20px 0;

        box-shadow: none;
    }

    .pre-sec .image-carousel {
        margin: 0 0 10px;
    }

    .pre-sec .image-carousel img {
        max-width: 100%;
        /* margin: 0; */
        margin: 0 20px !important;

        border: none;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
    }

    .pre-sec .image-carousel .left-btn,
    .pre-sec .image-carousel .right-btn {
        display: none;
    }

    .pre-sec .image-nav {
        width: 15%;

        margin: 0 0 40px 0;
    }

    .pre-sec .image-nav div {
        width: 5px;
        height: 5px;
    }

    .pre-sec .image-nav div.active {
        border: 1.5px solid var(--cursor-border);
    }

    .pre-sec .first-row {
        font-size: var(--text-lg);
    }

    .pre-sec .content-row .content-true {
        display: grid;
        grid-template-columns: auto auto;
        padding: 20px 0;
    }

    .pre-sec .content-row .element-column {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* .pre-sec .content-row .element-column img {
        padding: 0  !important;
        margin: 0 !important;
    } */

    .pre-sec .content-row .element-column .text-div {
        font-size: var(--text-vmd);
    }

    .first-sec {
        display: flex;
        flex-direction: column;

        box-shadow: none;
        background: none;

        margin: 30px 0 0;
    }

    .first-sec .left-reg {
        width: 100%;
        margin-bottom: 20px;

        background: linear-gradient(to bottom left, #c185e8aa, #fff);
        box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e888;

        border-radius: 10px;
    }

    .first-sec .left-reg .logo-div {
        width: 80px;
    }

    .first-sec .left-reg .logo-div img {
        max-width: 80px;
    }

    .first-sec .left-reg .title {
        font-size: 2.25rem;
    }

    .first-sec .left-reg .sub-title {
        max-width: 100%;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .first-sec .left-reg .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;

        margin: 0 0 10px 0;
    }

    .first-sec .left-reg .content .content-element {
        /* justify-content: space-between; */
        width: 100%;
        margin-bottom: 20px;
    }

    .first-sec .left-reg .content .content-element img {
        max-width: 45px;
    }

    .first-sec .left-reg .content .content-element:last-child img {
        margin-right: 38px !important;
    }

    .first-sec .left-reg .content .content-element .column p {
        font-size: .9rem;
        line-height: 1;
    }

    .first-sec .left-reg .content .content-element .column .main {
        font-size: var(--text-xl)
    }

    .first-sec .left-reg .dates img {
        max-width: 45px;

        margin-right: 20px;
    }

    .first-sec .left-reg .dates .column div {
        font-family: FuturaPT;
        font-weight: bold;
        font-size: 15px;

        letter-spacing: 1.5px;
    }

    .first-sec .right-reg {
        width: 100%;
        padding: 20px 30px;

        margin: 0 0 20px 0;

        box-shadow: inset 0 0 15px #c185e888, 0 0 15px #c185e888;
        border: none;
    }

    .first-sec .right-reg .form-element {
        width: 100%;
    }

    .first-sec .right-reg p {
        font-size: 18px !important;
    }

    .second-sec {
        width: 95%;

        flex-direction: column;

        margin-bottom: 40px;
    }

    .card {
        margin-left: 0 !important;
        margin: 7px 0;
    }

    .card:hover {
        transform: translateY(0px) !important;
        transition: 0s;
    }

    .card:hover~.card {
        transform: rotateX(0deg) rotateY(0deg) !important;
        transition: 0s;
        left: 0px !important;
    }

    .contained .button-57 {
        padding: 12px 20px !important;
    }

    .footer .maxi-div {
        margin: 0;
    }

    .footer .inc {
        max-width: 70%;
    }

    .footer .inc .main-text {
        font-size: 20px;
    }

    .footer .inc .sub-text {
        font-size: 14px;
    }

    .footer .maxi-div .socials img {
        max-width: 35px;
        margin: 0 4px;
    }

    .footer .linked {
        flex-direction: column;
    }

    .footer .linked .pseudo {
        width: 100%;

        flex-direction: column;
        align-items: start;
    }

    .footer .linked a {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .footer .linked p {
        display: none;
    }

    .footer .linked .copyright {
        margin-top: 10px;
        display: block;
    }
}

/* Cursor Styling */
body.small-screen {
    cursor: default;
}

.clickable {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transform: translateX(-50%) translateY(-50%);
    border: 2px solid var(--cursor-border);
    border-radius: 50%;
    pointer-events: none;
    transition: height 0.3s ease, width 0.3s ease;
    z-index: 9999;
}

.custom-cursor.grow {
    width: 60px;
    height: 60px;
}

.hidden {
    display: none !important;
}

.loading {
    position: fixed;
    height: 100vh;
    width: 100vw;

    background-color: #c185e855;

    z-index: 10000;
}

.loader {
    border-radius: 50%;
    height: 15vh;
    width: 15vh;

    border: 5px solid #c185e8;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;

    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;

    animation: spinner 1s linear infinite;
}

.loader-inner {
    border-radius: 50%;
    height: 10vh;
    width: 10vh;

    border: 5px solid #c185e8;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;

    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;

    animation: spinner 3s linear infinite;
    animation-direction: reverse;
}

@keyframes spinner {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

/* Selections */
*::selection {
    background-color: var(--cursor-border);
    color: #fff;
}

*::-moz-selection {
    background-color: var(--cursor-border);
    color: #fff;
}

*::-o-selection {
    background-color: var(--cursor-border);
    color: #fff;
}

*::-ms-selection {
    background-color: var(--cursor-border);
    color: #fff;
}

*::-webkit-selection {
    background-color: var(--cursor-border);
    color: #fff;
}

/* Login Button */
.button-57 {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-dark-color);
    color: var(--primary-dark-color);
    display: inline-block;
    font-size: var(--text-md);
    font-family: 'Syne';
    font-weight: bold;
    line-height: var(--text-sm);
    padding: 15px 20px;
    text-decoration: none;
    background: var(--primary-light-text-color);
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.button-57 span:last-child {
    color: black;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 12px;
    line-height: 13px;
}

.button-57:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 105%;
    height: 100%;
    background-color: black;
    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.button-57:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
    transform: translateX(-45%) translateY(-70%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

@font-face {
    font-family: 'Suisseintl';
    src: url('https://assets.website-files.com/62d0cfd0298820c06a8ebb26/62d0d1b06e8bed25b80eb4b6_62a300b973c161205fc2e4bc_SuisseIntl-Book.woff2') format('woff2'), url('https://assets.website-files.com/62d0cfd0298820c06a8ebb26/62d0d1b06761bb0e100c2626_62a300b973c161b1c9c2e4c7_SuisseIntl-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: FuturaPTBold;
    src: url(/font/FuturaPTBold.woff) format("woff");
    font-display: swap
}

@font-face {
    font-family: FuturaPT;
    src: url(/font/FuturaPT.woff) format("woff");
    font-display: swap
}

.sky {
    background: #060010;
    background: -moz-linear-gradient(top,
            #3a045b 0%, #591b81 80%, #884fae 100%);
    background: -webkit-linear-gradient(top,
            #3a045b 0%, #591b81 80%, #884fae 100%);
    background: linear-gradient(to bottom,
            #3a045b 0%, #591b81 80%, #884fae 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#060010",
            endColorstr="#370569",
            GradientType=0);

    transform: scale(1);

    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    transition: all 10s linear;

    opacity: 0.8;
}

.star {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    opacity: 0.64;
}

.blink {
    animation: blink ease-in-out infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.star-0 {
    height: .8px;
    width: .8px;
}

.star-1 {
    height: 2.4px;
    width: 2.4px;
}

.star-2 {
    height: 1.8px;
    width: 1.8px;
}

.star-3 {
    height: 2.5px;
    width: 2.5px;
}

.star-4 {
    height: 3.5px;
    width: 3.5px;
    box-shadow: 0px 0px 6px 1px rgba(255, 255, 255, 0.5);
}

.star-5 {
    height: 3.5px;
    width: 3.5px;
    box-shadow: 0px 0px 6px 1px rgba(255, 255, 255, 0.7);
}

.stars-cross {
    position: absolute;
    top: 10vh;
    left: 0px;
    width: 120vw;
    height: 20vh;
    transform: rotate(20deg);
    transform-origin: top left;
}

.stars-cross-aux {
    position: absolute;
    top: 0vh;
    left: 10vw;
    width: 120vw;
    height: 10vh;
    transform: rotate(20deg);
    transform-origin: top left;
}

.stars-cross>.blur,
.stars-cross-aux>.blur {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
    filter: blur(15px);
    width: 5px;
    height: 10px;
}

.card {
    display: flex;
    align-items: end;
    /* justify-content: end; */
    height: 400px;
    width: 280px;
    background-color: #2b223f;
    /* box-shadow: -1rem 0 3rem #00000044; */
    /* margin-left: -80px; */
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
    /* bottom: 0px; */

    border: 1px solid rgb(255, 255, 255);
    border-radius: 20px;
    /* border-image: linear-gradient(to top, #FFFFFF, var(--primary-dark-color)) 10; */
    overflow: hidden;
}

.card:not(:first-child) {
    margin-left: -50px;
}

.card:hover {
    transform: translateY(-20px);
    transition: 0.4s ease-out;
    text-shadow: 2px 2px 8px #6e5b94;
}

.card:hover~.card {
    position: relative;
    left: 50px;
    transform: rotateX(-15deg) rotateY(10deg);
    transition: 0.4s ease-out;
}

.card ul {
    /* margin-left: 16px; */
    list-style: none;
}

.card ul li {
    font-size: 15px;
    font-family: FuturaPT;
    font-weight: bold;
    padding: 4px 0;
}

.title-1 {
    color: #ffffff;
    font-size: 32px;
    font-family: FuturaPT;
    font-weight: bold;
    padding: 0 0 90px 20px;
    /* position: absolute; */
    /* left: 20px;
    top: 15px; */
}

.btn {
    position: absolute;
    top: 320px;
    left: 0px;
    margin: 0 20px;
    width: 120px;
    height: 35px;
    border-radius: 8px;
    border: none;
    background-color: #a94ee6;
    color: #fff;
    transition: 0.4s ease-out;

    font-family: FuturaPT;
    font-weight: bolder;
    font-size: 16px;
}

.btn:hover {
    transition: 0.4s ease-out;
    background-color: #b177d8;
    color: #ffffff;
    box-shadow: 0px 0px 20px #9d47ff80,
        0px 5px 5px -1px #c185e844,
        inset 4px 4px 8px #dbafff80,
        inset -4px -4px 8px #8913d859;
}

.bar {
    position: absolute;
    top: 380px;

    height: 5px;
    width: 100%;
}

.emptybar {
    background-color: #201c29;
    width: 100%;
    height: 100%;
}

.filledbar {
    position: absolute;
    top: 0px;
    z-index: 3;
    width: 0px;
    height: 100%;
    background: var(--cursor-border);
    background: linear-gradient(90deg, #602297, var(--cursor-border) 100%);
    transition: 0.6s ease-out;
}

.card:hover .filledbar {
    width: 100%;
    transition: 0.4s ease-out;
}

.content-x {
    position: absolute;
    padding: 20px;
    top: 20px;
    color: #eae0fd;
    font-size: 0.7rem;
}

.stroke {
    stroke: white;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: 0.6s ease-out;
}

.card:hover .stroke {
    stroke-dashoffset: 100;
    transition: 0.6s ease-out;
}

/* @font-face {
    font-family: 'Orator Std Medium';
    font-style: normal;
    font-weight: bold;
    src: url('https://evergladefoundation.tech/public/styles/OratorStd.woff') format('woff');
} */