:root {
    color-scheme: light only;
    --primary-bg-color: black;
    --main-bg-color: rgb(19, 19, 19);
    --yellow-color: rgb(228, 228, 0);
    --purple-color: #ad26ad;
    --blue-color: rgb(80, 173, 255);
    --shadow-yellow-color: rgba(82, 69, 0, 0.7);
    --shadow-blue-color: rgba(0, 1, 71, 0.7);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-family: 'Helvetica';
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

font {
    display: contents;
}

body::-webkit-scrollbar {
    max-width: 12px;
    /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--primary-bg-color);
    /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--purple-color);
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    border: 3px solid var(--primary-bg-color);
    /* creates padding around scroll thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #e651e6;
    /* color of the scroll thumb */
}


/* Loading screen styling */
#loading-screen {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg-color);
    color: aliceblue;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 2em;
    text-align: center;
}

.slide-up {
    animation: slideUp 0.8s 0.2s ease-out forwards;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-120%);
    }
}


.loading-message>span {
    font-family: 'Helvetica';
    font-size: 3em;
    text-align: center;
    line-height: 1.5;
}

.loading-message {
    font-family: 'Helvetica Rounded Bold';
    font-size: 3em;
    text-align: center;
    line-height: 1.5;
}

/* Loading spinner container */
.loading-spinner {
    position: absolute;
    top: 70vh;
    left: 50%;
    border: 6px solid #f3f3f3;
    border-top: 6px solid black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.loading-spinner-form {
    display: none;
    position: absolute;
    top: 50vh;
    left: 50%;
    border: 6px solid black;
    border-top: 6px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

/* Animation for spinning the spinner */
@keyframes spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}



#loading-screen:has(.title:hover) #cursor-loading-screen {
    height: 200px;
    width: 200px;
}

@media screen and (max-width: 768px) {
    #loading-screen {
        display: none;
    }
}

/****/

nav {
    display: flex;
    width: 100dvw;
    justify-content: flex-end;
    flex-direction: row;
    align-items: center;

    position: absolute;
    color: aliceblue;
    font-size: cramp(1rem, 1.5vw, 1.5rem);
    padding: 1rem 2rem;
    z-index: 999 !important;

}

.brand {
    position: absolute;
    left: 2rem;
}

.brand a {
    text-decoration: none;
    color: aliceblue;
}

nav ul {
    list-style: none;
    display: flex;
    width: 50%;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}

nav ul a {
    padding: .5rem;
    color: aliceblue;
    text-decoration: none;
    transition: color 200ms ease-in-out;
}

nav ul a:hover {
    color: var(--yellow-color);
    text-decoration: none;
}

.highlited {
    border: 2px solid aliceblue;
    border-radius: 10px;
    padding: 5px 15px;
    transition: border 200ms ease-in-out;
}

.highlited:hover {
    border: 2px solid var(--yellow-color);
}

.active {
    color: var(--yellow-color);
    pointer-events: none;
}

.highlited-active {
    border: 2px solid var(--yellow-color);
}

@media screen and (max-width: 768px) {
    nav {
        display: flex;
        width: 100dvw;
        justify-content: flex-end;
    }

    nav ul {
        width: auto;
    }

    nav ul li a {
        margin: 0 5px;
    }
}

@media screen and (max-width: 440px) {
    nav {
        display: flex;
        width: 100dvw;
        justify-content: space-between;
        padding: 1rem;
    }

    .brand {
        position: relative;
        left: 0;
    }

    nav ul {
        margin-left: -1rem;
        width: auto;
    }
}

/****/

.hero-section {
    position: relative;
    height: 100vh;
    width: 100dvw;
    background-color: var(--primary-bg-color);
    z-index: 0;
    transform-style: preserve-3d;
}

.title-container {
    position: absolute;
    top: 50%;
    padding-left: 1rem;
    transform: translateY(-50%);
    z-index: 2;
    color: aliceblue;
    pointer-events: none;
}

.title {
    display: flex;
    width: fit-content;
    font-family: 'Helvetica Rounded Bold';
    font-weight: normal;
    font-size: clamp(4rem, 10vw, 200px);
    margin: 0;
    padding: 0;
    pointer-events: fill;
    z-index: 0;
    cursor: none;
}

.title-stroked {
    position: absolute;
    font-size: clamp(4rem, 10vw, 200px);
    top: 0;
    text-stroke: 2px aliceblue;
    -webkit-text-stroke: 2px aliceblue;
    color: transparent;
    z-index: 2 !important;
}

.text-thin {
    font-family: 'Lato Regular';
    font-size: 1.15rem;
    padding-bottom: .5rem;
}

*::selection {
    color: aliceblue;
    background-color: var(--purple-color);
}

.hero-section *::selection {
    color: unset;
    background-color: var(--purple-color);
}

.description {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    font-size: 1.5rem;
    font-family: 'Lato Regular';
    padding: 2rem 1rem;
    z-index: 2;
    pointer-events: all;
}

.pc-only-text {
    display: contents !important;
}

.mobile-only-text {
    display: none !important;
}

.pc-only {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.mobile-only {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.graphic {
    display: block;
    margin: 0;
    position: absolute;
    height: 100vh;
    width: 100%;
    transform: translateX(20%);
    z-index: 0;
    pointer-events: all;
    overflow: hidden;
}

.graphic::before {
    content: "";
    position: absolute;
    z-index: 3;
    height: 100vh;
    width: 10%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 3%, rgba(0, 0, 0, 0) 100%);
}

.graphic iframe, .spline-viewer {
    width: 100%;
    height: 100%;
}

.graphic-video {
    inset: 0;
    width: auto;
    height: auto;
    overflow: hidden;
    pointer-events: none;
}

.graphic-video video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
}

.call-to-action-btn {
    pointer-events: all;
    color: aliceblue;
    text-decoration: none;
    border: 2px solid aliceblue;
    border-radius: 10px;

    font-size: clamp(1.6rem, 2.5vw, 2rem);
    text-align: center;
    padding: 10px 15px;
    margin-top: 1rem;
    margin-left: 1rem;
    transition: color 200ms ease-in-out, border 200ms ease-in-out, background-color 200ms ease-in-out;
}

.call-to-action-btn:hover {
    color: var(--primary-bg-color);
    background-color: aliceblue;
}

.paper-plane-cursor {
    cursor: url(assets/images/paper_airplane_cursor.webp), auto;
}

.arrow-down-cursor {
    cursor: url(assets/images/arrow-down-white.webp), auto;
}

/*---cursor---*/
#cursor-hero-section, #cursor-loading-screen {
    height: 60px;
    width: 60px;
    background-color: aliceblue;
    border-radius: 50%;
    mix-blend-mode: difference;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;

    z-index: 1000 !important;
    pointer-events: none;
    transition: all 200ms ease-in-out;

}

.hero-section:has(a:hover) #cursor-hero-section {
    height: 30px;
    width: 30px;
}

.hero-section:has(.title:hover) #cursor-hero-section {
    height: 200px;
    width: 200px;
}

.hero-section:has(.call-to-action-btn:hover) #cursor-hero-section {
    height: 20px;
    width: 20px;
    background-color: var(--purple-color);
    border: 2px solid var(--purple-color);
    mix-blend-mode: screen;
}

.spline-watermark {
    display: none !important;
    visibility: hidden;
}

/*---./cursor---*/


/* Mobile vue */
@media screen and (max-width: 992px) {
    .title-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .title {
        text-align: center;
    }

    .graphic {
        transform: translateX(0%);
    }

    .graphic::before {
        display: none;
    }

    .graphic, .graphic-video {
        opacity: .8;
    }

    .description {
        width: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 1rem 0 3rem 0;
        text-shadow: 0px 0px 5px black;
    }

    .call-to-action-btn {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    #cursor-hero-section, #cursor-loading-screen {
        display: none;
    }

    .graphic {
        pointer-events: none;
    }

    .pc-only-text {
        display: none !important;
    }

    .mobile-only-text {
        display: contents !important;
    }

    .pc-only {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

    .mobile-only {
        display: block !important;
        visibility: visible;
        opacity: 1;

    }
}


.spline-viewer {
    position: relative;
    z-index: 0;
    /* pointer-events: none; */
}

.watermark-hider {
    display: none;
    height: 100px;
    width: 100%;
    margin-top: -100px;
    color: black;
    background-color: black;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 50%);
    z-index: 3;
    transform-style: preserve-3d;
}

@media screen and (max-width: 1100px) {
    .watermark-hider {
        display: block;
    }
}

.divider {
    height: 53px;
    width: 100%;
    color: black;
    background-color: var(--primary-bg-color);
    /* background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 50%); */
    z-index: 3;
    /* transform-style: preserve-3d; */
}

.custom-shape-divider {
    position: absolute;
    top: 85vh;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 0;
}

.custom-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 2px);
    height: 90%;
}

.custom-shape-divider .shape-fill {
    fill: aliceblue;
    /* fill: #ad26ad; */

}

.arrow {
    display: flex;
    position: absolute;
    z-index: 4;
    height: clamp(200px, 15vw, 400px);
    top: 83vh;
    left: 50vw;
    transform: translateX(-50%);
    filter: invert();
    mix-blend-mode: difference;
    pointer-events: none;
    /* border: 1px solid red; */
}

@media screen and (max-width: 1400px) {
    .custom-shape-divider {
        top: 85vh;
        height: 300px;
    }

    .arrow {
        top: 85vh;
    }
}


/*** Section 1 ***/
.section1 {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: aliceblue;
    color: var(--main-bg-color);
    padding: 1rem 2rem;
    overflow: hidden;
}

.section1 * {
    color: var(--main-bg-color);
}

@media screen and (max-width: 768px) {
    .section1 {
        padding: 1rem 0;
    }
}

.logos {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

.logos img {
    padding: 1rem 2rem;
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Keyframes for continuous scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-159%);
    }
}

/* Duplicate the logos to create a seamless loop */
.logos::before {
    content: "";
    display: flex;
    position: absolute;
    width: 200%;
    /* Double the width to account for duplicate content */
    height: 100%;
}

.logos::before {
    content: attr(data-logos);
    display: inline-block;
    margin-left: 100%;
}

@media screen and (max-width: 1280px) {
    .logos {
        gap: 10px;
        animation: scroll 25s linear infinite;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-231%);
        }
    }
}

@media screen and (max-width: 900px) {
    .logos {
        gap: 10px;
        animation: scroll 20s linear infinite;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-330%);
        }
    }
}

@media screen and (max-width: 768px) {
    .logos {
        gap: 10px;
        animation: scroll 15s linear infinite;
    }

    .logos img {
        padding: 1rem 1rem;
        height: 100px;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-250%);
        }
    }
}


.section1 .section-title {
    font-family: 'Helvetica Rounded Bold';
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 4rem 0 2rem 0;
    color: var(--main-bg-color);
    text-align: center;
}

.section1 .section-title2 {
    font-family: 'Helvetica';
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 4rem 0 2rem 0;
    color: var(--main-bg-color);
    text-align: center;
}

.section1 p {
    /* font-family: 'Lato Regular'; */
    color: var(--main-bg-color);
    font-size: clamp(1rem, 5vw, 1.2rem);
    text-align: center;
    /* text-align: justify; */
}

.p-title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 900;
}

@media screen and (max-width: 768px) {
    .section1 p {
        text-align: center;
        padding: 0 .5rem;
    }
}

/***/

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
}

.card {
    max-width: 1500px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 2rem;
    border: 2px solid var(--main-bg-color);
    border-radius: 15px;
    cursor: cell;
    z-index: 1;
    /* transition: all 100ms ease; */
}

.card .p-title {
    font-size: clamp(2rem, 2vw, 3rem);
}

.card p {
    text-align: center;
    text-decoration: none;
}

.card-left {
    background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
    background-image: none;
}

.card-right {
    background-image: linear-gradient(to right, #ff758c 0%, #ff7eb3 100%);
    background-image: none;
}

.card:hover {
    background-image: none;
    background-color: var(--yellow-color);

    box-shadow: -5px 5px 0 var(--shadow-yellow-color);
    transform: translate(5px, -5px);
}

.card-right:hover {
    background-color: var(--blue-color);
    box-shadow: -5px 5px 0 var(--shadow-blue-color);
}

.cursor {
    font-family: 'Helvetica Rounded Bold';
    color: aliceblue;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    z-index: 10;

    background-color: var(--purple-color);
    box-shadow: -1px -5px 15px rgba(63, 63, 63, 0.3);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, -50%) rotateZ(-30deg);
    transition: all 200ms ease;
}

.cursor font {
    color: aliceblue;
}

.card:hover .cursor {
    visibility: visible;
    opacity: 1;
    height: 100px;
    width: 100px;
}

.bg-title-hidden {
    position: relative;
    font-size: clamp(6rem, 10vw, 7rem);
    font-family: 'Helvetica Rounded Bold';
    z-index: -1;
    margin: 0;
    margin-bottom: -30px;
    text-wrap: nowrap;
    pointer-events: none;
}

.bg-title {
    position: absolute;
    font-size: clamp(6rem, 10vw, 7rem);
    font-family: 'Helvetica Rounded Bold';
    margin: 0;
    top: 10rem;
    height: 7rem;
    margin-bottom: -30px;
    z-index: 0;
    text-wrap: nowrap;
    pointer-events: none;

    animation: title-scroll 15s infinite forwards linear;
}

.bg-title-stroke {
    font-size: clamp(6rem, 10vw, 7rem);
    font-family: 'Helvetica Rounded Bold';
    position: absolute;
    margin: 0;
    top: 10rem;
    z-index: 10;
    color: transparent;
    -webkit-text-stroke: 3px var(--primary-bg-color);
    text-wrap: nowrap;
    pointer-events: none;
    animation: title-scroll 15s infinite forwards linear;
}


/* Keyframes for continuous scrolling */
@keyframes title-scroll {
    from {
        transform: translateX(110%);
    }

    to {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 900px) {
    .card {
        padding: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .bg-title {
        animation: title-scroll 10s infinite forwards linear;
        top: 9rem;
        transform: translateY(-30px);
        color: var(--primary-bg-color);
        -webkit-text-stroke: 0px black;
    }

    .bg-title-stroke {
        top: 9rem;
        animation: title-scroll 10s infinite forwards linear;
    }

    .card-left {
        background-color: var(--yellow-color);
        box-shadow: -5px 5px 0 var(--shadow-yellow-color);
    }

    .card-right {
        background-color: var(--blue-color);
        box-shadow: -5px 5px 0 var(--shadow-blue-color);
    }

    .card:hover {
        transform: translate(0, 0);
    }

    .card::after {
        /* content: "See\AMore!"; */
        /* font-family: 'Helvetica Rounded Bold'; */
        content: "";
        background-image: url(assets/images/see-more-text.webp);
        background-size: 55px;
        background-repeat: no-repeat;
        background-position: center;

        display: flex;
        font-size: 1rem;
        color: aliceblue;
        align-items: center;
        text-align: center;
        position: absolute;
        height: 75px;
        width: 75px;
        background-color: var(--purple-color);
        border-radius: 50%;
        z-index: -1;
        right: -10px;
        bottom: -20px;
        box-shadow: -1px -5px 15px rgba(71, 40, 0, 0.3);
    }

    .cursor {
        display: none !important;
    }

    @keyframes title-scroll {
        from {
            transform: translateX(50%);
        }

        to {
            transform: translateX(-100%);
        }
    }

}

.section1 .call-to-action-btn {
    margin: auto;

    border: 2px solid var(--primary-bg-color);
    width: fit-content;
}

.section1 .call-to-action-btn:hover, .section1 .call-to-action-btn:hover font {
    color: aliceblue !important;
    background-color: var(--primary-bg-color) !important;
    border: 2px solid var(--primary-bg-color) !important;
}

.section1 a {
    width: fit-content;
}


.custom-shape-divider-bottom {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: aliceblue;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 107px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: black;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    min-height: 150px;
    padding: 0 1rem;
    padding-bottom: 1rem;
    color: aliceblue;
    background-color: var(--primary-bg-color);
}

.informations {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    background-color: var(--primary-bg-color);
}

footer p {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    color: aliceblue;
    padding: 0 1rem;
    font-size: 1rem;
    background-color: var(--primary-bg-color);
    font-family: 'Helvetica';
    text-decoration: none;
}

footer span {
    display: flex;
    flex-direction: row;
}

footer a {
    text-decoration: none;
    color: aliceblue;
    width: max-content;
    padding: 0 5px;
}

footer a:hover {
    color: var(--yellow-color);
}

.vl {
    border-left: 1px solid aliceblue;
    height: 100px;
}

@media screen and (max-width: 768px) {
    footer a {
        color: var(--yellow-color);
    }
}

/* Styling Button Go to top */
#scrollToTop {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    bottom: 20px;
    right: 20px;

    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid black;
    background-color: rgba(255, 255, 255, 0.9);
    transition: border 200ms, transform 200ms, visibility 200ms, opacity 200ms;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

#scrollToTop img {
    height: 2.5rem;
    width: auto;
    filter: invert(1);
    transform: rotateZ(-180deg);
    transition: filter 200ms;
    pointer-events: none;
}

#scrollToTop:hover {
    border: 2px solid var(--blue-color);
    transform: scale(1.1);
}

#scrollToTop:hover img {
    filter: invert(52%) sepia(79%) saturate(1799%) hue-rotate(157deg) brightness(88%) contrast(102%);
}

img:active {
    pointer-events: none;
}

/* Cross content Annimation */

@view-transition {
    navigation: auto;
}

@media (prefers-reduced-motion) {
    @view-transition {
        navigation: none;
    }
}

::view-transition-old(heading) {
    transition: all 5s ease;
    animation: move-out ease-in-out;
}

::view-transition-new(heading) {
    animation: move-out ease-in-out;
}


@keyframes move-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes move-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Fixes for high density displays:: iphones */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2/1),
only screen and (max-width: 768px) and (min-device-pixel-ratio: 2),
/* For iPhone X, XS, 11 Pro */
only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {

    #cursor-hero-section, #cursor-loading-screen {
        display: none;
    }

    .graphic {
        pointer-events: none;
    }

    .pc-only-text {
        display: none !important;
    }

    .mobile-only-text {
        display: contents !important;
    }

    .pc-only {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

    .mobile-only {
        display: block !important;
        visibility: visible;
        opacity: 1;

    }

    .grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .bg-title {
        animation: title-scroll 10s infinite forwards linear;
        top: 9rem;
        transform: translateY(-30px);
        color: var(--primary-bg-color);
        -webkit-text-stroke: 0px black;
    }

    .bg-title-stroke {
        top: 9rem;
        animation: title-scroll 10s infinite forwards linear;
    }

    .card-left {
        background-color: var(--yellow-color);
        box-shadow: -5px 5px 0 var(--shadow-yellow-color);
    }

    .card-right {
        background-color: var(--blue-color);
        box-shadow: -5px 5px 0 var(--shadow-blue-color);
    }

    .card:hover {
        transform: translate(0, 0);
    }

    .card::after {
        content: "";
        background-image: url(assets/images/see-more-text.webp);
        background-size: 55px;
        background-repeat: no-repeat;
        background-position: center;

        display: flex;
        font-size: 1rem;
        color: aliceblue;
        align-items: center;
        text-align: center;
        position: absolute;
        height: 75px;
        width: 75px;
        background-color: var(--purple-color);
        border-radius: 50%;
        z-index: -1;
        right: -10px;
        bottom: -20px;
        box-shadow: -1px -5px 15px rgba(71, 40, 0, 0.3);
    }

    .cursor {
        display: none !important;
    }

    @keyframes title-scroll {
        from {
            transform: translateX(50%);
        }

        to {
            transform: translateX(-100%);
        }
    }
}