/* global styles */

:root {
    --color-dark: rgb(14, 14, 14);
    --color-light: #FFF;
    --color-grey: #b4b4b4;
    --color-red: #d01a3c;
    --color-orange: #FF8A1A;
    --color-blue: #1A6AFF;
    --color-green: #1AFF6A;
    --color-yellow: #FFEA1A;
    --wrap-S: 1024px;
    --wrap-M: 1280px;
    --wrap-L: 75%;
    --wrap-XL: 95%;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 16px;
    color: var(--color-light);
    background-color: var(--color-dark);
    cursor: default;
    width: 100%;
}

body {
    overflow: hidden;
    overflow-x: hidden !important;
    scroll-behavior: auto !important;
}

a {
    cursor: pointer;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* img {
    pointer-events: none;
} */

h1 {
    font-size: max(80px, 8vw);
    line-height: 1;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: .3em;
}

.svgBlur {
    display: none;
}

.noiseContainer {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: soft-light;
    opacity: 0.6;
}

.noiseBg {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


@keyframes noise {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-3%, -6%);
    }

    20% {
        transform: translate(-9%, 3%);
    }

    30% {
        transform: translate(12%, -9%);
    }

    40% {
        transform: translate(-15%, 12%);
    }

    50% {
        transform: translate(-3%, -3%);
    }

    60% {
        transform: translate(12%, 0%);
    }

    70% {
        transform: translate(0%, 12%);
    }

    80% {
        transform: translate(3%, 3%);
    }

    90% {
        transform: translate(-15%, 15%);
    }

    100% {
        transform: translate(0, 0);
    }
}

#intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    color: var(--color-light);
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
}

#intro .square {
    background-color: var(--color-dark);
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    transform-origin: top;
    top: 0;
    left: 0;
}


#intro h2 {
    font-size: 2em;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 2;
    transform: translateY(100%);
    animation: revealTransition 1s ease-in-out forwards;
    pointer-events: none;
}

#intro h2:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform-origin: bottom;
    transform: scaleY(0);
    animation: reveal 1s ease-in-out forwards;
}


#intro.hide h2 {
    animation: hideRevealTransition 1s ease-in-out forwards;
}

#intro.hide h2:before {
    animation: hideReveal 1s ease-in-out forwards;
}

#intro.hide .square {
    animation: hideIntro 1s ease-in-out forwards .55s;
}

@keyframes reveal {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
    }
}

@keyframes revealTransition {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes hideReveal {
    0% {
        transform: scaleY(0);
    }

    0%,
    99.9% {
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes hideRevealTransition {
    0% {
        transform: translateY(0);
    }

    0%,
    99.9% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes hideIntro {
    0% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
    }
}




/* Homepage */

#homepage main {
    position: relative;
    min-height: 100dvh;
    width: 100%;

    .picture {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        background: url("../img/2000x2000.jpg") no-repeat center center;
        background-size: contain;
        background-attachment: fixed;
        opacity: 0.5;
    }
}

#homepage main .mainHero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 100dvh;
    width: 100%;
    position: relative;
    z-index: 2;

    h1 {
        div {
            display: block;
            height: 1em;
            overflow: hidden;

            &:first-of-type {
                font-size: max(80px, 9vw);

                span {
                    transform: translateY(130%) rotate(8deg);
                    animation: titleReveal .5s ease-in-out forwards 2.5s;
                }
            }

            &:last-of-type {
                font-size: max(60px, 6vw);

                span {
                    transform: translateY(130%) rotate(8deg);
                    animation: titleReveal .5s ease-in-out forwards 3.1s;
                }

                @media screen and (max-width: 1024px) {
                    font-size: max(50px, 5vw);
                }
            }

            span {
                display: inline-block;

                &.space {
                    width: .3em;
                    height: 1em;
                }
            }
        }

        strong {
            color: var(--color-red);
            font-weight: 600;
        }
    }


    .heroFooter {
        position: absolute;
        bottom: 40px;
        left: 0;
        padding: 0 2.5%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        p:not(.label) {
            font-weight: 500;
            margin-bottom: 4px;
        }

        .availability {
            p:not(.label) {
                text-transform: uppercase;
                margin-bottom: 0;
                margin-top: 4px;
                display: flex;
                align-items: center;
                gap: 4px;
            }

            span {
                display: inline-block;
                width: 8px;
                height: 8px;
                background-color: var(--color-orange);
                border-radius: 50%;
                margin-right: 8px;
                position: relative;

                &:after {
                    content: '';
                    display: inline-block;
                    width: 8px;
                    height: 8px;
                    background-color: var(--color-orange);
                    border-radius: 50%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    animation: pulsingDot 1.5s ease-in-out infinite;
                }
            }
        }
    }
}

@keyframes pulsingDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

#homepage main .content {
    position: relative;
}

#homepage .subHero {
    position: relative;
    height: 100dvh;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h2 {
        font-size: 2.5em;
        max-width: 560px;
        line-height: 1.4;

        @media screen and (max-width: 1024px) {
            font-size: 2em;
        }
    }
}


i.scrollDown {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.675rem;
    font-weight: 400;
    transition: opacity 0.3s ease;

    span.chevronDown {
        display: inline-block;
        transform: translateY(0) rotate(-45deg);
        animation: scrollDown 1s linear infinite;

        &:after,
        &:before {
            content: '';
            display: inline-block;
            width: 10px;
            height: 2px;
            background-color: var(--color-light);
        }

        &:before {
            width: 2px;
            height: 13px;
        }
    }

    @media screen and (max-width: 1024px) {
        bottom: 20%;
    }
}


@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-5px) rotate(-45deg) scale(0.6);
    }

    40% {
        opacity: 1;
        transform: translateY(10px) rotate(-45deg) scale(1);
    }

    60% {
        opacity: 1;
        transform: translateY(20px) rotate(-45deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(30px) rotate(-45deg) scale(0.3);
    }
}




@keyframes titleReveal {
    0% {
        transform: translateY(130%) rotate(8deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}



.subSection {
    min-height: 100dvh;
    padding: 10vh 0;

    h2 {
        font-size: max(60px, 6vw);
        text-align: center;
        margin-bottom: 40px;
        text-transform: uppercase;

        @media screen and (max-width: 1024px) {
            font-size: max(40px, 4vw);
        }

        span {
            display: inline-block;

            &:first-of-type {
                transform: translateX(-30px);

                &:after {
                    content: "—";
                    position: relative;
                    top: -8px;
                    display: inline-block;
                    color: var(--color-red);
                    margin-left: -30px;
                    transform: scaleX(0);
                    transition: transform .8s ease-in-out;
                    transform-origin: left;
                }
            }

            &:last-of-type {
                transform: translateX(30px);
                margin-left: -30px;
            }
        }

        &.visible {
            span {
                &:first-of-type {
                    animation: translateFromSide .8s ease-in-out forwards;

                    &:after {
                        transform: scaleX(1);
                    }
                }

                &:last-of-type {
                    animation: translateFromSide .8s ease-in-out forwards;
                }
            }
        }

        @media screen and (max-width: 1024px) {
            span {
                &:first-of-type {
                    transform: none;
                    animation: none;

                    &:after {
                        position: static;
                        margin-left: 0 !important;
                        top: 0;
                        transform: none;
                    }
                }

                &:last-of-type {
                    transform: none !important;
                    margin-left: 0 !important;
                    animation: none !important;
                }
            }
        }
    }

    &#playground {
        h2 {
            span {
                &:first-of-type {
                    &:after {
                        margin-left: -43px;
                        top: 0;
                    }
                }

                &:last-of-type {
                    margin-left: -25px;
                }
            }
        }
    }

    &#about {
        h2 {
            span {
                &:first-of-type {
                    &:after {
                        margin-left: -41px;
                    }
                }

                &:last-of-type {
                    margin-left: -30px;
                }
            }
        }
    }
}

.projects {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

    &:not(:last-of-type) {
        margin-bottom: 30px;
    }

    @media screen and (max-width: 1024px) {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: calc(33.333% - 20px);
        border-radius: 20px;
        background-color: hsl(0, 0%, 8%);
        padding: 16px;
        transition: width 0.3s ease-in-out;

        &.active,
        &:hover {
            width: 40%;
        }

        h3 {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 16px;
            display: flex;
            align-items: center;
            width: 100%;
            border-radius: 12px;
            margin-bottom: 16px;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.6s ease-in-out;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .videoContainer {
            width: 100%;
            position: relative;
            border-radius: 20px;
            overflow: hidden;

            @media screen and (max-width: 1024px) {
                &:after {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(0deg, rgba(10, 15, 26, 1) 20%, rgb(10 15 26 / 0%) 60%);
                    z-index: 1;
                    pointer-events: none;
                }
            }

            img,
            video {
                width: 100%;
                height: 600px;
                object-fit: cover;
                border-radius: 16px;
                opacity: 0.1;
                filter: grayscale(100%);
                transition: all 0.6s ease-in-out;

                @media screen and (max-width: 1024px) {
                    filter: grayscale(0);
                    opacity: 1;
                }
            }

            h4 {
                position: absolute;
                bottom: 16px;
                left: 16px;
                z-index: 2;
                font-size: 2rem;

                @media screen and (max-width: 1024px) {
                    font-size: 1.25rem;
                }

                strong {
                    display: block;
                    font-weight: 500;
                }
            }
        }

        &.osteovision.active {
            h3 {
                background-color: #248aef;
            }
        }

        &.globaltechtracks.active {
            h3 {
                background-color: #e03232;
            }
        }

        &.praxiscript.active {
            h3 {
                background-color: #1236cf;
            }
        }

        @media screen and (max-width: 1024px) {
            &.osteovision {
                h3 {
                    background-color: #248aef;
                }
            }

            &.globaltechtracks {
                h3 {
                    background-color: #ff3535;
                }
            }

            &.praxiscript {
                h3 {
                    background-color: #1236cf;
                }
            }
        }

        &.active,
        &:hover {

            img,
            video {
                opacity: 1;
                filter: grayscale(0%);
            }
        }

        @media screen and (max-width: 1024px) {
            width: 100%;
            height: auto;

            &.active,
            &:hover {
                width: 100%;
            }

            .videoContainer {
                height: 300px;
                border-radius: 10px;

                img,
                video {
                    height: 100%;
                }
            }

            h3 {
                font-size: 1.2rem;
            }

        }
    }
}

#playground .projects {

    .card {
        .videoContainer {

            img,
            video {
                tranisition: transform 0.3s ease-in-out;
                will-change: transform;
            }
        }

        &.active,
        &:hover {
            width: calc(33.333% - 20px);

            .videoContainer {

                img,
                video {
                    transform: scale(1.1);
                }
            }

            @media screen and (max-width: 1024px) {
                width: 100%;
            }
        }

    }
}


@keyframes translateFromSide {
    to {
        transform: translateX(0);
    }
}



@media (max-width: 1024px) {

    #homepage main {
        flex-direction: column-reverse;
    }

    #homepage main .left {
        width: 100%;
        height: auto;
        align-items: flex-start;
        padding: 0 5%;
        top: 60%;
    }

    #homepage main .left h1 {
        font-size: 3em;
        text-align: left;
        text-transform: none;
    }

    #homepage main .left h1 span {
        display: inline;
        color: var(--color-dark);
    }

    #homepage main .left p {
        text-align: left;
    }

    #homepage main .right {
        width: 100%;
        height: 50%;
        top: 60px;
        left: 0;
    }
}

.fadeIn {
    transform: translateY(5px);
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.customers {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;

    @media screen and (max-width: 1024px) {
        display: none;
    }
}

.customers .row {
    display: flex;
    justify-content: center;
    gap: 4rem;

    @media screen and (max-width: 1024px) {
        flex-wrap: wrap;
    }
}

.customers .row:nth-child(1) {
    justify-content: center;
}

.customers .row:nth-child(2) {
    justify-content: space-between;
    width: 100%;
    padding: 0 3rem;
}

.customers .row:nth-child(3) {
    justify-content: flex-start;
    padding-left: 4rem;
}

.customers .row:nth-child(4) {
    justify-content: space-around;
    width: 100%;
}

/* Images (logos) */
.customers img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.05;
    transition: opacity 0.2s ease-in-out;

    @media screen and (max-width: 1024px) {
        filter: none;
        opacity: 1;
    }
}

.customers img:hover {
    opacity: 0.5;
}

.links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

button a {
    gap: 8px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 500;
    width: max-content;
    display: flex;
    place-items: center;
    place-content: center;
    text-decoration: none;
    font-style: normal;
    letter-spacing: 0em;
    text-align: center;
    padding: 8px 12px 8px 10px;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    user-select: none;
    white-space: nowrap;
    cursor: pointer;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    li a {
        align-items: center;
        aspect-ratio: 1 / 1;
        display: flex;
        flex: none;
        flex-direction: column;
        flex-wrap: nowrap;
        height: 32px;
        width: 32px;
        justify-content: center;
        overflow: hidden;
        padding: 12px 16px;
        position: relative;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }
}


.aboutCols {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

    @media screen and (max-width: 1024px) {
        flex-direction: column;
        gap: 20px;
    }

    .col {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 30%;
        flex-grow: 1;

        @media screen and (max-width: 1024px) {
            width: 100%;
        }
    }

    .aboutCard {
        position: relative;
        border-radius: 20px;
        background-color: hsl(0, 0%, 8%);
        padding: 24px 30px;

        .desc {
            font-size: 1.625rem;
            line-height: 1.4;
        }

        &.personalCard {
            height: 500px;

            .personalPicture {
                width: 100%;
                height: 100%;
                background: url("../img/portrait.jpg") no-repeat center center;
                background-size: cover;
                border-radius: 20px;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 0;

                &:after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.3);
                    border-radius: 20px;
                    z-index: 1;
                }
            }

            .content {
                position: relative;
                z-index: 1;
                height: 100%;
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                gap: 8px;

                p {
                    width: max-content;
                    padding: 8px 12px 8px 10px;
                    background-color: rgba(0, 0, 0, 0.2);
                    border-radius: 50px;
                    opacity: 0;
                    transform: translateY(20px);

                    &:first-of-type {
                        animation-delay: 0;
                    }

                    &:nth-of-type(2) {
                        animation-delay: 0;
                    }

                    &:nth-of-type(3) {
                        animation-delay: 0;
                    }

                    &:nth-of-type(4) {
                        animation-delay: 0;
                    }
                }

                &.visible {
                    p {
                        animation: fadeInFromBottom 0.3s ease-in-out forwards;

                        &:first-of-type {
                            animation-delay: 0.5s;
                        }

                        &:nth-of-type(2) {
                            animation-delay: 0.7s;
                        }

                        &:nth-of-type(3) {
                            animation-delay: 0.9s;
                        }

                        &:nth-of-type(4) {
                            animation-delay: 1.1s;
                        }
                    }
                }
            }
        }

        &.textCard {
            h3 {
                font-size: 1rem;
                margin-bottom: 24px;
                text-transform: uppercase;
                font-weight: 500;
            }

            p {
                color: rgba(255, 255, 255, 0.6);

                &:not(:last-of-type) {
                    margin-bottom: 16px;
                }
            }
        }
    }

    .resumeList {
        display: flex;
        flex-direction: column;
        gap: 24px;

        li {
            display: flex;
            flex-direction: row;
            align-items: flex-start;

            .date {
                font-size: 0.875rem;
                color: rgba(255, 255, 255, 0.6);
                flex: 0.3 0 0;
            }

            .content {
                flex: 0.7 0 0;

                h4 {
                    margin-bottom: 4px;
                    font-weight: 400;
                }

                p {
                    color: rgba(255, 255, 255, 0.6);
                }
            }
        }
    }


    .awardsList {
        display: flex;
        flex-direction: column;
        gap: 24px;

        li {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;

            img {
                height: 48px;
                width: 48px;
                border-radius: 8px;
            }

            .content {
                display: flex;
                width: calc(100% - 48px - 16px);
                justify-content: space-between;

                @media screen and (max-width: 1024px) {
                    flex-direction: column;
                    gap: 4px;
                    justify-content: flex-start;
                }

                h4 {
                    font-weight: 400;
                }

                a {
                    color: rgba(255, 255, 255, 0.6);

                    i {
                        margin-left: 8px;
                    }

                    &:hover {
                        color: rgba(255, 255, 255, 1);
                    }
                }
            }
        }
    }
}


@keyframes fadeInFromBottom {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#galleryCarousel {
    position: relative;
    padding: 0;
    overflow: hidden;

    .gallery {
        height: 500px;
        border-radius: 20px;
        display: flex;
        transition: transform 0.3s ease-in-out;
        will-change: transform;
        overflow: hidden;

        .galleryItem {
            height: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                user-select: none;
                pointer-events: none;
            }
        }
    }
}

.dotnav {
    text-align: center;
    margin-top: 1rem;
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.dotnav .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dotnav .dot.active {
    background: #fff;
}








.trackList {
    width: 100%;
    font-family: sans-serif;
}

.track {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    color: white;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 10px;
}

.track img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    margin-right: 10px;
}

.track .info {
    flex: 1;
}

.track .title {
    font-weight: bold;
}

.track .artist {
    font-size: 0.9em;
    opacity: 0.7;
}

.track .actions a {
    margin-left: 10px;
}

.track .actions img.spotifyLogo {
    width: 20px;
    height: 20px;
}

.preview-btn {
    display: inline-block;
    font-size: 1.2em;
    color: white;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    background: #1db954;
}

.preview-btn.disabled {
    display: none;
}



footer {
    padding-top: 80px;
    margin-top: 80px;
    padding-bottom: 80px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;

    &:before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    &:after {
        content: '';
        display: block;
        width: 10%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.3);
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        animation: infiniteTranslate 2s ease-in-out infinite alternate;
    }



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

        .socials {
            ul {
                display: flex;
                align-items: center;
                gap: 16px;
            }
        }

        .copyright {
            p {
                &:last-of-type {
                    font-size: 0.625rem;
                    color: rgba(255, 255, 255, 0.3);
                    text-transform: uppercase;
                    margin-top: 4px;
                    letter-spacing: 1px;
                }
            }
        }
    }
}

@keyframes infiniteTranslate {
    0% {
        left: -30%;
    }

    100% {
        left: 120%;
    }
}