* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fefefe;
    --secondary-color: #121212;
    --tertiary-color: #0b46bc;
    --padding: 85px
        /* --padding:  min(100px , 9%) */
}

@media (max-width:1200px) {
    :root {
        --padding: 78px;
    }
}

@media (max-width:1000px) {
    :root {
        --padding: 67px;
    }
}

@media (max-width:760px) {
    :root {
        --padding: 45px;
    }
}

@media (max-width:600px) {
    :root {
        --padding: 40px;
    }
}

@media (max-width:500px) {
    :root {
        --padding: 25px;
    }
}

@media (max-width:400px) {
    :root {
        --padding: 20px;
    }
}



@font-face {
    font-family: prim;
    src: url('Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype'),

}

@font-face {
    font-family: pixel1;
    src: url('pixel-1/ari-w9500-display.ttf') format('truetype'),

}

@font-face {
    font-family: pixel2;
    src: url('pixel-2/04B_30__.TTF') format('truetype'),

}

@font-face {
    font-family: poppin;
    src: url('Poppins/Poppins-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: suss;
    src: url('fonnts.com-Suisse_Intl_Regular.ttf') format('truetype'),

}

@font-face {
    font-family: base;
    src: url('fonts/BasisGrotesqueArabicPro-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: base-2;
    src: url('fonts/BasisGrotesqueArabicPro-black.ttf') format('truetype'),

}

@font-face {
    font-family: roboto;
    src: url('fonts/Roboto_Slab/RobotoSlab-Regular.ttf') format('truetype'),

}

@font-face {
    font-family: argent;
    src: url('fonts/Argent-CF/Fontspring-DEMO-argentcf-regular.otf') format('truetype'),

}


html {
    width: 100%;
    overflow-x: clip !important;
    /* scroll-behavior: smooth; */
}


body {
    font-size: 24px;
    overflow-x: clip !important;
    background-color: var(--secondary-color);
    transition: all .4s ease;
    color: var(--primary-color);
    scroll-behavior: smooth;

}

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

button {
    cursor: pointer;
}

section h1 {
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-body {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;

}

/*  */
.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 100px;
    /* padding: 10px; */
}

/*  */

main {
    height: 100%;
    font-family: prim;
}

.header-1 {
    position: fixed;
    /* top: 10px;  */
    width: 100vw;
    /* left: 50%;
    transform: translate(-50%); */
    /* width: 100%; */
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-radius: 100px;
    z-index: 999;
    padding: 17px 30px;
    /* backdrop-filter: blur(30px); */
    /* keep constant for performance */
    transition: none;
    will-change: transform, background-color, padding;
    /* GPU hint */
    transform-origin: center;
    font-size: 18px;


}

..header-1-black-bg {
    background: #ffffff8c !important;

}

.header-1 nav {
    /* width: 700   px; */
    height: 75px;
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
    margin: auto auto;
}

nav ul li {
    list-style-type: none;
    font-family: suss;
    padding: 8px 3px;
    border-radius: 80px;
    font-weight: lighter;

    color: var(--secondary-color);
    position: relative;

    &:hover {
        cursor: pointer;
    }

}

nav ul li::after {
    content: "";
    height: 1px;
    width: 100%;
    background: black;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: scaleX(0%);
    transition: all .3s ease;
    transform-origin: left;
}

nav ul li:hover::after {
    transform: scaleX(100%);
}






.header-1 .logo {
    width: 3.5em;
    transition: all .5s ease;

    &:hover {
        cursor: pointer;
    }
}

.header-1 .logo img {
    width: 100%;
    transition: all .5s ease;
}



/* header-2 */

.header-2 {
    display: none;
}

.header-2 {
    background: #12121263;
    border-bottom: 1px solid;
    backdrop-filter: blur(30px);
    width: 100vw;
    height: 60px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 997;

}

.header-2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 14px;
    width: 100%;
    height: inherit;
}


.header-2 .logo {
    max-height: 100%;
    transition: all .5s ease;
    aspect-ratio: 1/1;

    &:hover {
        cursor: pointer;
    }
}

.header-2 .logo img {
    height: 100%;
    transition: all .5s ease;
}

.header-2 .menu {
    font-size: 30px;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.header-2 .drawer {
    /* background: var(--secondary-color); */
    width: min(300px, 60%);
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0px;
    top: 0px;
    /* padding: 20px 15px; */
    z-index: 999;
    transition: all .5s ease;
    top: 59px;

    /* display: none; */
}

.header-2 .drawer ul {
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
}

.header-2 .drawer ul li {
    font-size: clamp(25px, 4vw, 30px);
    list-style-type: none;
    border-bottom: 1px solid #5e5e5e;
    padding-bottom: 10px;
    font-family: base;
    padding: 15px 20px;
}



/*  */
.drawer-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 11, 11, 0.449);

}

.drawer-close {
    transform: translate(100%, 0px);
}


@media (max-width:920px) {
    .header-1 {
        display: none;
    }

    .header-2 {
        display: flex;
    }
}


/* hero */

.hero {
    height: 100dvh;
    display: flex;
    /* padding: 20px 130px; */
    background-image: url(img/hero/download.jpeg);
    background-size: cover;
    overflow: hidden;
    position: relative;

    width: 100%;
}

@media (max-width:500px) {
    .hero {
        height: 90dvh;
    }
}

.hero .socials {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0%, -50%);
    background-color: rgb(84, 84, 84);
    padding: 20px 18px;
    /* border-radius: 0px 12px 12px 0px; */
}

.hero .socials ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero .socials ul li {
    list-style-type: none;

    &:hover {
        cursor: pointer;
    }
}

.hero .socials i {
    color: var(--primary-color);
    font-size: 24px;
}



/* absolute text */
.hero .absolute-text {
    color: var(--secondary-color);
}

.hero .absolute-text .yujin-p {}



.hero .container {
    /* gap: 50px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

}


.hero .container>.text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all .5s ease;
}

.hero .container>.welcome-text h2 {
    font-family: base-2;
    font-size: 6.4vw;
    letter-spacing: 3px;
    margin: 0 auto;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: .4;
    margin-bottom: 30px;

    /* opacity: 0; */

    /* text-shadow:  3px 3px 5px black; */

}




.hero .sections {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
    height: 100%;
    justify-content: center;
    padding: 10px;

}

.hero .sections>a {
    z-index: 100;
    padding: 8px 20px;
    width: fit-content;
    font-family: base;
    border-radius: 5px;
    font-size: 17px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 3px #151515;
    transition: all .4s ease;
    font-weight: bold;
    background: #a9a9a999;

    &:hover {
        cursor: pointer;
    }
}

.hero .sections>a:hover {
    background-color: rgba(75, 75, 75, 0.058);
    box-shadow: 0px 0px 5px #151515;

}






.hero .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* object-position: 10%; */
}

.hero .content * {
    transition: all .4s ease;
    position: absolute;
}

.hero .content {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: base;
}

.hero .content .img {
    border-radius: 10px;
    overflow: hidden;
    transition: all .4s;
}

.hero .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .content p {
    font-family: base;
    font-weight: bold;
}

.hero .content h1,
.hero .content h2 {
    letter-spacing: .4px;
}

/* content-1 */
.hero .content-1 {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    width: calc(100% - 150px);
    margin-left: auto;

    width: min(calc(100% - 170px), 1050px);
    left: 170px;
}





.hero .content-1 .img {
    position: absolute;
    right: 5%;
    top: 20%;
    height: calc(300px + 8vw);
    width: calc(150px + 11vw);

    transform: scaleX(0%);
    /* animation: img 1s ease; */
    transform-origin: 30% !important;
    border: 1px solid var(--secondary-color);
    box-shadow: 5px 5px 10px rgb(78, 78, 78);


}



.hero .content-1 .text {
    position: static !important;
}

.hero .content-1 .p-1 {
    font-family: base;
    font-size: 20px;
    position: absolute;
    top: 21%;
    left: 9%;
    width: 350px;
    letter-spacing: .4px;
    opacity: 0;
}

.hero .content-1 .p-2 {
    font-family: base;
    font-size: 20px;
    position: absolute;
    bottom: 20%;
    left: 0%;
    width: 320px;
    letter-spacing: .4px;
    opacity: 0;
    /* text-align: center; */
}

.hero .content-1 p {
    font-size: clamp(18px, 2.5vw, 21px) !important;
    font-size: clamp(15px, 1.3vw, 24px) !important;

}

.hero .content-1 h1 {
    font-family: roboto;
    font-size: 65px;
    font-size: clamp(17px, 5vw, 65px);
    letter-spacing: .4px;
    font-weight: lighter;
    position: absolute;
    /* text-transform: uppercase; */
    bottom: 36.5%;
    left: 11%;

    opacity: 0;
}


.hero .sections> :nth-child(3):hover~.content-1 .img {
    transform: scaleX(100%);
}

.hero .sections> :nth-child(3):hover~.content-1 p {
    opacity: 1;
}

.hero .sections> :nth-child(3):hover~.content-1 h1 {
    opacity: 1;
}



@media (max-width:950px) {
    .hero .content {
        width: min(calc(100% - 155px), 1050px);
        left: 155px;

    }

    .hero .sections>a {
        font-size: 15.5px;
    }

    .hero .content-1 h1 {
        bottom: unset;
        top: 22%;
    }

    .hero .content-1 .text .p-1 {
        top: 41%;
        left: 2%;
        width: 24vw;
    }

    .hero .content-1 .text .p-2 {
        text-align: right;
        left: 3%;
        max-width: 300px;
        font-size: calc(7px + 1vw) !important;
        bottom: 2%;
        white-space: nowrap;
    }

    .hero .content-1 .img {
        bottom: 9%;
        right: 4%;
        top: unset;
    }


}

@media (max-width:590px) {
    .hero .sections>a {
        font-size: 13px;
    }

    .hero .content-1 {
        width: min(calc(100% - 140px), 1050px);
        left: 140px;
    }

    .hero .content-1 .text .p-1 {
        max-width: 330px;
        width: unset;
        left: -13%;
        top: 17%;
        padding-right: 20px;
    }

    .hero .content-1 .p-2 {
        display: none;
    }

    .hero .content-1 p {
        font-size: clamp(12px, 1.1vw, 15px) !important;
    }

    .hero .content-1 h1 {
        right: 0vw;
        left: unset;
        writing-mode: vertical-rl;
        width: fit-content;
        bottom: 0px;
        top: 29%;
        font-size: clamp(43px, 5vw, 65px);
    }

    .hero .content-1 .img {
        left: 0%;
        bottom: 2%;
        height: calc(240px + 19vw);
        width: calc(75px + 28vw);
    }
}

@media (max-width:460px) {
    .hero .sections>a {
        font-size: 12px;
        padding: 8px 17px;
        letter-spacing: .5px;
    }

    .hero .content-1 {
        width: min(calc(100% - 135px), 1050px);
        left: 135px;
    }

    .hero .content-1 h1 {
        top: 32%;
        font-size: clamp(39px, 5vw, 65px);
        right: -1.5%;
    }

    .hero .content-1 .img {
        left: 0%;
        top: 47%;
        height: calc(210px + 19vw);
        width: calc(42px + 32vw);
    }

    .hero .content-1 .text .p-1 {
        max-width: 330px;
        left: -20%;
        top: 17%;
        padding-right: 20px;
    }
}


/* content-2 */

.hero .content-2 {
    width: min(calc(100% - 170px), 1300px);
    left: 170px;
}


.hero .sections .content-2 .text {
    /* width: 100%; */

    display: flex;
    align-items: end;
    max-width: 1000px;
    padding: 10px;

    left: clamp(70px, calc(-120px + 14vw), 180px);
    height: 500px;
    bottom: 110px;
    gap: 10px;
}



.hero .sections .content-2 .text .left {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    height: 100%;
}


.hero .sections .content-2 h1 {
    font-family: roboto;
    font-size: 65px;
    font-weight: lighter;
    margin-bottom: auto;
    position: relative;
    left: -40px;
    top: -20px;
    opacity: 0;

}


.hero .sections .content-2 .p-1 {
    /* bottom: 31%;
    right: 8%; */
    position: relative;
    max-width: 290px;
    font-size: 18px;
    text-align: right;
    min-width: 230px;
    font-size: clamp(16px, 1.4vw, 21px);

    opacity: 0;

}

.hero .sections .content-2 .p-2 {
    max-width: 350px;
    font-size: clamp(16px, 1.4vw, 21px);
    text-align: left;
    font-family: base;
    font-weight: bold;
    position: relative;
    height: 100%;
    top: 47%;
    opacity: 0;

}


.hero .sections .content-2 .img {
    min-width: 330px;
    height: 450px;
    min-width: calc(230px + 5.5vw);
    /* left: 45%;
    bottom: 15%; */
    transform: scaleY(0%);
    transform-origin: top;
    position: relative;

}


.hero .sections> :nth-child(2):hover~.content-2 .img {
    transform: scaleY(100%);
}

.hero .sections> :nth-child(2):hover~.content-2 p {
    opacity: 1;
}

.hero .sections> :nth-child(2):hover~.content-2 h1 {
    opacity: 1;
}



@media (max-width:950px) {
    .content-2 {
        display: none;
    }

}


/* content-3 */

.hero .content-3 {
    width: min(calc(100% - 270px), 1300px);
    left: clamp(191px, 15vw, 270px);
    display: grid;
    grid-template-columns: auto 1fr;
    height: fit-content;
    gap: 40px;
}

.hero .sections .content-3 .img {
    width: calc(245px + 4.5vw);
    height: calc(310px + 8vw);
    position: relative;
    transform: scaleY(0%);
    box-shadow: 0px 0px 10px rgb(27, 27, 27);
    transform-origin: bottom;

}

.hero .content-3 .text {
    position: relative;
    height: 100%;
    width: min(100%, 500px);
}

.hero .sections .content-3 img {
    object-position: top;
}

.hero .sections .content-3 .p-1 {
    max-width: 330px;
    font-size: calc(4px + 1vw);
    font-family: base;
    position: relative;
    font-weight: bold;
    letter-spacing: .3px;
    opacity: 0;

}

.hero .sections .content-3 .p-2 {
    letter-spacing: .3px;

    font-size: calc(5px + 1vw);
    font-family: base;
    font-weight: bold;
    transform-origin: right;
    white-space: nowrap;
    position: absolute;
    right: 3%;
    bottom: 60px;
    transform: scaleX(0%);
    opacity: 0;

}

.hero .sections .content-3 h1 {
    position: relative;
    font-family: roboto;
    font-size: calc(20px + 3vw);
    font-weight: lighter;
    top: 21%;
    white-space: nowrap;
    opacity: 0;

}



.hero .sections> :nth-child(1):hover~.content-3 .img {
    transform: scaleY(100%);
}

.hero .sections> :nth-child(1):hover~.content-3 p {
    opacity: 1;
    transform: scaleX(100%);
}

.hero .sections> :nth-child(1):hover~.content-3 h1 {
    opacity: 1;
}

.hero .sections> :nth-child(1):hover~.content-3>p {
    opacity: 1;
}


@media (max-width:950px) {
    .hero .content-3 {
        display: none;
    }
}




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

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

}






/* section-2 */

.section-2 {
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: start;
}

.section-2 .container {
    /* background-color: var(--secondary-color); */
    border-radius: 20px;
    padding: var(--padding);

    display: flex;
    /* align-items: center; */
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.section-2 .container>.text {
    position: relative;
}

.section-2 .container .text>p {
    font-family: pixel1;
    margin-top: 25px;
    font-weight: 700;
    font-size: clamp(18px, calc(2.3vw + 9px), 41px);
    /* width: 900px; */
    text-align: center;
    font-weight: 300;
    position: relative;
    background: -webkit-linear-gradient(#6699dd, #d9d9d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-2 .container>p span {
    background: -webkit-linear-gradient(#5ac8ff, #335ecb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: base-2;
    position: relative;
    z-index: 2;
}




/*  */



.section-2 .functions {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    place-items: center;
    margin-top: 13vw;
    gap: 10px;
    row-gap: 50px;
    flex-wrap: wrap;
    max-width: 1700px;
}


.section-2 .function {
    width: 25vw;
    transition: all .5s ease;
    transform-origin: center;
    perspective: 1000px;
    height: 510px;


    &:hover {
        cursor: pointer;
        color: #78a0f1;
    }
}

.section-2 .function .card {
    transform-style: preserve-3d;
    transition: transform 1s ease;
    width: 100%;
    height: 100%;
}

.section-2 .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* hides backside when flipped */
}


.section-2 .back {
    transform: rotateY(180deg);
    height: 100%;
}

/* Flip on hover */
.section-2 .function:hover .card {
    transform: rotateY(180deg);
}





.section-2 .function .img {
    /* height: 400px; */
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 2px white;
}

.section-2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
}

.section-2 .functions>:nth-child(2) img {
    object-position: bottom;

}

.section-2 .functions .text {
    display: flex;
    overflow-wrap: break-word;
    gap: 15px;
    margin-top: 15px;

}

.section-2 .function .desc {
    margin-top: 12px;
}

.section-2 h3 {
    font-size: 4.2em;
    font-family: base;
    font-weight: bolder;
    position: relative;
    bottom: 9px;

    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.section-2 h5 {
    font-size: .8em;
    letter-spacing: .4px;
    padding-bottom: 5px;
    font-family: base;
    margin-bottom: 5px;
    border-bottom: 1px solid;
}

.section-2 p {
    font-size: .44em;
    letter-spacing: .3px;
    /* font-size: clamp(10px, 2vw, 20px);  */
    font-family: base;
}

/*  */

.section-2 .functions .function .back {
    width: 100%;
    height: 100%;

    overflow: hidden;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    /* background-color: #ffffff8c; */
    /* z-index: 10; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid white; */

}

.section-2 .function .back h6 {
    /* transform: rotate(90deg); */
    rotate: 90deg;
    color: white;
    margin: auto auto;
    font-size: 2.8em;
    white-space: nowrap;
    font-weight: lighter;
    font-family: pixel1;
    letter-spacing: .5px;
    background: -webkit-linear-gradient(#bababa, #FFFFFF);
    /* background: -webkit-linear-gradient( #2373b4,#FFFFFF); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;





}

@keyframes rotate-card {
    50% {
        transform: scaleX(0);
    }
}



@media (max-width:1000px) {

    .section-2 .function {
        width: 330px;
    }
}

@media (max-width:850px) {
    .section-2 .functions {
        justify-content: center;
        flex-direction: column;
    }

    .section-2 .function {
        max-width: calc(340px + 5vw);
        width: 100%;
    }

}

@media (max-width:500px) {
    .section-2 .function .card {
        width: 93%;
        margin: 0 auto;
    }

    .section-2 .functions {
        gap: 3px;
    }

    .section-2 h3 {
        font-size: 3.7em;
    }
}

@media (max-width:400px) {
    .section-2 .function {
        height: 130vw;
    }

    .section-2 p {
        font-size: 3vw;
    }

    .section-2 h3 {
        font-size: 3.8em;
    }
}

/* section-3 */





/* section-4 */

.section-4 {
    /* min-height: 85vh; */
    margin-top: 2vw;
    margin-bottom: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding);
    position: relative;
    font-size: 24px;
}

.section-4 .container {
    display: flex;
}

.section-4 .img img {
    /* max-height: calc(210px + 11.5vw); */
    /* height: calc(190px + 14vw); */

    width: calc(420px + 14vw);

}

.section-4 .text {
    font-size: calc(10px + 1.4vw);
}

.section-4 .text h1 {
    font-size: 1.9em;
    /* font-size: 4vw; */
    font-family: pixel1;
    font-weight: lighter;
    margin-bottom: 20px;

    background: -webkit-linear-gradient(#4578bf, #d3def1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.section-4 p {
    font-size: .8em;
    margin-bottom: 14px;
}


.section-4 button {
    border: none;
    padding: 5px 13px;
    font-size: .8em;
    font-size: 22px;
    margin-top: 4px;
    border-radius: 5px;
    background: none;
    box-shadow: 2px 2px 4px rgb(86, 135, 199), inset 0px 0px 2px rgb(86, 135, 199);
    color: var(--primary-color);


    transition: all .4s ease;

    &:hover {

        transform: scale(1.01) translate(0%, -8%);
    }
}

@media (max-width:1200px) {
    .section-4 p {
        font-size: .75em !important;
    }
}

@media (max-width:1100px) {
    .section-4 .img img {
        /* max-height: calc(210px + 11.5vw); */
        /* height: calc(190px + 14vw); */
        width: calc(320px + 14vw);

    }
}

@media (max-width:1000px) {
    .section-4 .container {
        flex-direction: column;
    }


    .section-4 .img {
        display: flex;
        margin-bottom: 8vw;
    }

    .section-4 .img img {
        margin: 0 auto;
        width: 100%;
        max-width: calc(520px + 14vw);

    }
}

@media (max-width:700px) {
    .section-4 button {
        font-size: 18.5px;
    }

}

@media (max-width:550px) {
    .section-4 .img img {
        max-width: unset !important;
        width: 120%;
        position: relative;
        left: -10%;
    }
}


@media (max-width:500px) {
    .section-4 button {
        font-size: 16px;
    }
}


/* section-5 */

.section-5 {
    padding: var(--padding);
    padding-top: 0px;
    min-height: 100vh;
    height: 100%;
    position: relative;
    /* background-color: var(--secondary-color); */
}

.section-5 .container {
    /* border-top: 1px solid var(--primary-color); */

    padding-top: 8vw;
}

.section-5 .text {
    margin-bottom: 80px;
    text-align: center;
    width: 100%;
    max-width: 1600px;
    width: 100%;

}

.section-5 h1 {
    font-family: pixel1;
    text-transform: uppercase;
    font-size: 50px;
    font-size: min(10vw, 42px);
    margin-bottom: 30px;
    letter-spacing: .8px;
}

.section-5 .text p {
    max-width: 700px;
    margin: 0 auto;
    font-family: base;
    margin-top: 10px;
    font-size: clamp(19px, 2.5vw, 27px);
}

.section-5 .team {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 35px;
    column-gap: 25px;
}

.section-5 .team>div {
    padding: 10px;
    background-color: var(--primary-color);
    border-radius: 10px;
    color: var(--secondary-color);
    background: radial-gradient(circle, rgba(189, 189, 189, 1) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: inset 0px 0px 10px rgb(154, 154, 154);

    /* animation: gradient 15s ease infinite; */
    /* background-image: linear-gradient(to right top, #eef6ff, #dcebfd, #cae0fa, #b8d5f8, #a6caf5, #97c0f1, #89b6ed, #7aace9, #6ca1e3, #5d96dc, #4e8bd6, #3d80cf); */

}

.section-5 .img {
    /* height: 240px; */
    aspect-ratio: 1/1;
}

.section-5 .team>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}


.section-5 h3 {
    font-family: suss;
    letter-spacing: .4px;
}

.section-5 .details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.section-5 .team>div p {
    font-size: 13px;
    font-family: suss;
    font-weight: bolder;
    letter-spacing: .5px;
}

.section-5 .team>div h3 {
    font-size: 24px;
}

.section-5 .team>div i {
    width: fit-content;
}

@media (max-width:1000px) {
    .section-5 .team {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width:700px) {
    .section-5 .team {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .section-5 h3 {
        font-size: clamp(22px, 4vw, 30px);
    }

    .section-5 .team>div p {
        font-size: clamp(11px, 1.7vw, 20px);
    }
}

@media (max-width:500px) {
    .section-5 .team>div {
        padding: 8px;
    }
}

@media (max-width:400px) {
    .section-5 .team {
        column-gap: 15px;
    }
}

/* section-6 */

.section-6 {
    min-height: 100vh;
    padding: var(--padding);
    height: 100%;
    width: 100%;
}

.section-6 .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 20px;
}

.section-6 .grid>div {
    /* background-color: #23d5ab; */
    /* width: 100; */
    height: 330px;
}

.section-6 .grid>div video {
    width: 100%;
    object-fit: cover;
    height: 100%;

}

.section-6 .grid> :nth-child(1) {
    grid-row: span 2;
    height: 100%;
    /* grid-column: span 1; */
}

.section-6 .text-div {
    display: flex;
    justify-content: end;
    align-items: center;
}

.section-6 .text-div .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    letter-spacing: .4px;
    width: 330px;
    font-family: base;
    font-size: 19px;
    position: relative;
    top: 20px;
}








/* section-7 */

.gsap-section {
    padding: var(--padding);
    min-height: 100vh;

}

.gsap-section .card {
    height: 300px;
    width: 100px;

    margin: 0 auto;
}

.gsap-section .spacer,
.gsap-section .wrapper {
    width: 100%;
    /* min-height: 100vh; */
}

.gsap-section .wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
    border-top: dashed 2px var(--color-surface50);
    border-bottom: dashed 2px var(--color-surface50);
}

.gsap-section .card-wrapper {
    width: 100%;
    perspective: 500px;
    margin-bottom: 50px;
}

.gsap-section .card-wrapper p {
    /* margin-top: auto;
    width: 400px;
    font-family: 'suss';
    text-align: right;
    margin-left: auto; */
}

.gsap-section .card-wrapper:last-child {
    margin-bottom: 0;
}

.gsap-section .cards {
    /* width: 70%; */
    margin: 0 auto;
    /* padding: 0 50px; */
}

.gsap-section .card {
    width: 100%;
    height: 400px;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    font-size: 30px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    flex-direction: column;
    padding: 25px;
    background: var(--secondary-color);
}

.gsap-section .card-wrapper {
    border-radius: 10px;

}


.gsap-section .card {
    border-radius: 10px;
    padding: 10px;
    border-bottom: 1.4px solid rgb(232, 232, 232);
    display: flex;
    flex-direction: row;
    padding: 30px;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    /* box-shadow: inset 0px 0px 10px  rgb(234, 234, 234); */

    overflow: hidden;
}

.gsap-section .card .img {
    width: 610px;
    height: 100%;
}

.gsap-section .card .img img {
    width: 100%;
    border-radius: 10px;
}

.gsap-section .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 23px;
    width: 100%;
    letter-spacing: .4px;

}

.gsap-section .text h2 {
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: pixel1;
    font-weight: lighter;
    text-transform: uppercase;
    font-size: 1.8em;
    font-size: clamp(22px, 5.6vw, 60px);
}

.gsap-section .text p {
    font-size: clamp(13px, 1.9vw, 18px);
    font-family: base;
    line-height: 24px;
    letter-spacing: .3px;

}

.gsap-section .text button {
    width: fit-content;
    font-style: 1.4em;
    padding: 8px 18px;
    font-family: base;
    border-radius: 100px;
    border: none;
    color: var(--primary-color);
    /* border: 1px solid rgb(106, 106, 106); */
    box-shadow: 0px 0px 3px white;
    background: linear-gradient(to right, rgb(24, 24, 24), rgb(27, 27, 165));
    background: rgb(14, 14, 107);
    transition: all .4s ease;

    &:hover {}
}

.gsap-section .text button:hover {
    background: linear-gradient(to right, rgb(121, 121, 121), rgb(43, 43, 212));
    background: rgb(46, 46, 206);

}

/*  */
.gsap-section .pin-spacer {
    width: 100% !important;
    display: flex !important;
    justify-content: center;
}


.gsap-section .card-wrapper {
    width: min(85vw, 900px) !important;
}


@media (max-width:800px) {
    .gsap-section .card {
        padding: 20px;
    }
}

@media (max-width:700px) {
    .gsap-section .text p {
        line-height: 19px;
    }
}

@media (max-width:600px) {
    .gsap-section .card-wrapper {
        /* height: auto !important; */
    }

    .gsap-section .card {
        /* height: 100%; */
        flex-direction: column !important;
    }

    .gsap-section .text p {
        line-height: 18px;
    }

    .gsap-section .text {
        position: absolute;
        left: 0px;
        bottom: 0px;
        padding: 12px 13px;
        background: #181818e3;
        gap: 13px;
    }

    .gsap-section .text>button {
        display: none;
    }

    .gsap-section .card .img {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .gsap-section .cards> :nth-child(even) .card {
        flex-direction: column-reverse;
    }
}


/* section-8 */

.section-8.pop-up {
    min-height: 100vh;
    height: 100%;
    font-family: base;
    letter-spacing: .5px;
    font-size: 24px;


    position: absolute;
    top: 55%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%) scale(100%);

    background: rgba(50, 50, 50, 0.923);
    backdrop-filter: blur(20px);
    min-height: 70vh;
    height: fit-content;
    padding: 0px;
    font-size: 20px;
    z-index: 999;
    padding: 30px;
    border-radius: 20px;
    transition: all .4s ease-in;
    transform-origin: center;
    width: min(90%, 900px);
    /* background: linear-gradient(var(--secondary-color) , rgb(66, 66, 66)); */
}



.section-8 .close,
.section-10 .close {
    position: absolute;
    top: 10px;
    right: 17px;
    font-family: pixel1;
    font-size: 1.3em;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: lighter;
    color: var(--primary-color);
    cursor: pointer;
}

.section-8 h1 {
    text-align: center;

    font-size: 2em;
    font-family: pixel1;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-8 .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-8 .text h3 {

    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    font-size: .8em !important;
    margin-top: 10px;
    text-align: center;
    /* text-transform: capitalize; */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-8 .text p {
    font-size: .75em;
    line-height: 25px;
    display: none;
}



.section-8 form {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    row-gap: 20px;
}

.section-8 form label {
    font-size: .8em;
    color: #f2f2f2;

}

.section-8 form .input {
    /* width: 50%; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-8 form .input input {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    height: 30px;
    border-radius: 5px;
    color: var(--primary-color);
    padding: 2px 6px;
    font-size: 16px;

    border: none;
    /* box-shadow:inset 0px 0px 4px rgb(194, 194, 194); */
    border-bottom: 1px solid;
    outline: none !important;
    /* border-left: 1px solid; */
}

.section-8 .text-area {

    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    resize: vertical;
}


.section-8 .text-area textarea {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    padding: 2px 6px;
    font-size: 16px;
    border: none;
    height: 60px;
    border-radius: 5px;
    resize: vertical;
    overflow-x: hidden;
    outline: none !important;
    /* box-shadow: 0px 0px 4px rgb(211, 211, 211); */
    border-bottom: 1px solid;
    /* border-left: 1px solid; */

}

.section-8 form button {
    width: fit-content;
    padding: 6px 24px;
    font-size: 1em;
    border-radius: 100px;
    background: linear-gradient(#f1f1f1, #bababa);
    font-family: base;
}



@media (max-width:760px) {
    .section-8 {
        min-height: unset !important;
        height: 90vh;
        top: 7% !important;
        padding-top: 35px;
        padding-bottom: 25px;
        /* top: 50% !important; */
        padding: 25px;
    }

    .section-8 .text h3 {
        font-size: calc(7px + 1.5vw) !important;
        width: 90%;
        margin: 0 auto;
        margin-top: 7px;

    }

    .section-8 .close,
    .section-10 .close {
        font-size: 1.2em;
    }

    .section-8 .form-div {
        height: auto;
    }

    .section-8 form {
        grid-template-columns: 1fr;
        gap: 30px;
        row-gap: 12px;
        overflow-y: auto;
        /* margin-top: 20px; */


        width: 105%;
        position: relative;
        right: 2.5%;
    }

    .section-8 h1 {
        font-size: calc(11px + 2.7vw);
        width: 90%;
        margin-inline: auto;
    }

    .section-8 form .input {
        gap: 3px;
    }

    .section-8 .text-area {
        gap: 10px;
        grid-column: unset;
    }

    .section-8 .text-area textarea {
        height: 40px;
    }


    .section-8 form button {
        width: fit-content;
        padding: 6px 22px;
        font-size: .8em;

    }

    .section-8 form button {
        margin-top: 10px;

    }
}

@media (max-width:520px) {
    .section-8 {
        padding-left: 25px !important;
        width: min(94%, 900px) !important;

    }

    .section-8 form {
        margin-top: 20px;
    }
}


/* section-9  - contact section */

.contact {
    min-height: 100vh;
    padding: var(--padding);
    font-family: base;
    letter-spacing: .4px;
}

.contact h1 {
    font-family: pixel1;
    text-transform: uppercase;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: lighter;
    font-size: 44px;
    font-size: calc(15px + 2.3vw);

    margin-bottom: 50px;
    text-align: center;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact .left {
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: center;
    padding: 40px calc(10px + 1vw);
}

.contact .left p {
    text-align: center;
    font-size: clamp(13px, 2.45vw, 19px);
    /* width: 500px; */
    margin: 0 auto;
}

.contact .socials {
    margin-top: 45px;
}


.contact .left .profiles ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact .left li {
    list-style-type: none;

    &:hover {
        cursor: pointer;
    }
}

.contact .left .socials h5 {
    font-family: pixel1;
    font-weight: lighter;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact .left .socials h6 {
    font-weight: lighter;
    font-family: poppin;

}

.contact .left .socials {
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact .left .socials>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: lighter;
}

/* right */
.contact .right {
    box-shadow: 0px 0px 8px rgb(0, 0, 0), inset 0px 0px 6px rgb(166, 166, 166);
    padding: 30px;
    border-radius: 10px;
    border-right: 1px solid rgb(153, 153, 153);
    border-top: 1px solid rgb(153, 153, 153);
}

.contact .right form {
    display: flex;
    flex-direction: column;

}

.contact .right form input,
.contact textarea {
    margin-bottom: 25px;
    background: none;
    border: none;
    outline: none;
    border-bottom: .5px solid rgb(215, 215, 215);
    color: var(--primary-color);
    margin-top: 10px;
    height: 40px;
    resize: vertical;
    font-size: 20px;
    width: 100%;

}

.contact .right label {
    color: rgb(220, 219, 219);
    width: fit-content;
}

.contact textarea {
    margin-bottom: 45px;
}

.contact .right form button {
    width: fit-content;
    padding: 13px 47px;
    font-size: 22px;
    border-radius: 8px;
    /* text-transform: uppercase; */
    margin: 0 auto;
    background: linear-gradient(#FFFFFF, #bababa);
    border-radius: 100px;
    border: none;
    color: var(--secondary-color);
    box-shadow: inset 0px 0px 4px rgb(188, 188, 188);
    transition: all .3s ease;
    /* font-weight: bold; */
    /* font-family: base; */
    color: black;

    &:hover {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        scale: 1.01;
    }

}

.contact ul li {
    font-size: calc(17px + 1.6vw);
}


@media (max-width:1000px) {
    .contact .container {
        grid-template-columns: 1fr;

    }

    .contact .left {
        padding-top: 0px;
    }

    .contact .socials {
        display: flex;
        justify-content: space-evenly;
    }

    .contact h1 {
        font-size: calc(30px + 3.3vw);
        margin-bottom: 4vw;

    }

    .contact .right form button {
        font-size: calc(8px + 1.6vw);
    }
}



@media (max-width:700px) {
    .contact form {
        margin-top: 9vw;
    }
}

@media (max-width:600px) {
    .contact .left .socials h6 {
        font-size: calc(8px + 1.6vw);
    }

    .contact .right {
        padding: 20px;
    }

    .contact .right form input,
    .contact textarea {
        height: 30px;
    }

    .contact .right label {
        font-size: calc(12px + 1vw);
    }

    .contact h1 {
        font-size: calc(23px + 3.3vw);
    }
}

@media (max-width:440px) {
    .contact .socials {
        flex-direction: column;
    }

    .contact .left p {
        /* font-size: .7em; */
    }
}

/* section-10 */
.section-10 {
    min-height: fit-content;
    padding: var(--padding);
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, 0%) scale(100%);
    z-index: 999;
    background: var(--secondary-color);
    transition: all .4s ease;
    transform-origin: center;
    backdrop-filter: blur(30px);
    width: min(90%, 900px);
    padding: 30px 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 5px white;
    background: rgba(19, 19, 19, 0.944);
}

.section-10 h1 {
    font-family: pixel1;
    font-size: clamp(33px, 7.2vw, 57px);
    margin-bottom: 70px;
    margin-bottom: calc(7px + 3vw);
    text-align: center;
    padding: 0px 10px;
    padding-top: 5px;
}

.progress {
    width: min(90%, 700px);
    height: 30px;
    border: 1px solid white;
    border-radius: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: calc(7px + 1.7vw);
}

.progress>div {
    height: 100%;
    position: relative;
}

.progress>div::after {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(rgb(27, 71, 214), darkblue);
    width: 100%;
    height: 100%;
    transform: scaleX(0%);
    transform-origin: left;

}

.section-10 .successful {
    font-size: clamp(33px, 7.2vw, 57px);
    font-family: base-2;
    font-size: clamp(33px, 7.2vw, 47px);
    margin-bottom: 70px;
    margin-bottom: calc(7px + 3vw);
    text-align: center;
    padding: 0px 10px;
    padding-top: 5px;
    font-weight: lighter;

    background: -webkit-linear-gradient(rgb(208 215 239), #4e84ab);
    ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-10 .tasks {
    display: flex;
    flex-direction: column;
}

.section-10 .tasks .task {
    display: flex;
    justify-content: space-between;
    border-bottom: .4px solid rgb(142, 142, 142);
    font-family: base;
    text-transform: uppercase;
    /* padding: 13px 0px; */
    height: 90px;
    display: flex;
    align-items: center;
    transition: all .2s ease;
    gap: 25px;
    /* padding-inline: 10px; */
}

.section-10 .tasks .task h2 {
    letter-spacing: .4px;
    background: -webkit-linear-gradient(#FFFFFF, #bababa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(16px, 2.7vw, 25px);
}


.section-10 .tasks .task:hover {
    /* background-color: #4578bf82; */
    scale: 1.01;
    cursor: pointer;
}


.section-10 .task button {
    font-size: 14px;
    padding: 5.5px 23px;
    border-radius: 100px;
    background: linear-gradient(to right, rgb(46, 114, 208), rgb(45, 85, 150));
    border: none;
    color: var(--primary-color);
    letter-spacing: .4px;
    font-family: base;
    transition: all .4s ease;

    &:hover {
        scale: 1.01;
    }
}

.section-10 .task ul {
    display: flex;
    gap: 15px;
}

.section-10 .task ul li {
    list-style-type: none;
}

.section-10 .task ul li i {
    font-size: 27px;
    background: linear-gradient(to right, rgb(46, 114, 208), rgb(45, 85, 150));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.section-10 .task-2 {
    cursor: unset !important;

}

.section-10 .task-2 h2 {

    width: calc(380px + 8vw);
}

.section-10 .task-3 p {
    font-size: 14px;
    text-transform: capitalize;
    background: -webkit-linear-gradient(#FFFFFF, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-10 .task .btns {
    display: flex;
    flex-direction: column;
    gap: 5px;
}



.section-10 .progress>div.task-active::after {

    animation: progressed 1s ease forwards;
}




.section-10 .task-4 {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
    justify-content: unset !important;
    min-height: 90px !important;
    max-height: unset !important;
    height: unset !important;
    padding: 25px 6px;
    align-items: unset !important;
    border-bottom: unset !important;
}

.section-10 .task-4 .input-div {
    display: flex;
    border-radius: 100px;
    padding: 5px 5px;
    background: rgb(237, 237, 237);
    background: unset;
    border: 1px solid rgb(180, 180, 180);
    justify-content: space-between;
    gap: 7px !important;
}

.section-10 .task-4 .input-div input {
    padding: 4px;
    background: none;
    border: none;
    outline: none;
    color: var(--primary-color);
    width: 98%;
}

.section-10 .task-4 .input-div button {
    border-radius: 100px;
    color: var(--secondary-color);
    height: 100%;
    background: linear-gradient(#FFFFFF, #bababa);

}



@keyframes progressed {
    0% {
        transform: scaleX(0%)
    }

    100% {
        transform: scaleX(100%);
    }
}






@media (max-width:700px) {
    .section-8 {
        top: 10%;
    }

    .section-10 .tasks .task {
        height: 80px;
    }

    .section-10 .task-3 p {
        font-size: clamp(10px, 1.9vw, 14px);
    }
}

@media (max-width:500px) {
    .section-10 {
        width: min(94%, 900px);
        padding: 20px;
    }

    .section-8 .close,
    .section-10 .close {
        font-size: .9em;
    }

    .section-10 .task ul li i {
        font-size: 23px;
    }

    .section-10 .task-4 .input-div {
        height: 31px;
    }

    .section-10 .task-4 button {
        font-size: 11px;
        height: unset;
        text-align: center;
        /* width: 27vw; */
        padding: 0px 4vw;
    }

    .section-10 .task-2 button {
        font-size: clamp(9px, 3vw, 12px);
        padding: 5px 4.5vw;


    }
}

@media (max-width:400px) {
    .section-10 .tasks .task h2 {
        font-size: 4.1vw;
    }
}


/* universal */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hide {
    display: none !important;
}

.popup-close {
    transform: translate(-50%, -50%) scale(0%) !important;
    transform-origin: center;
}

.popup-overlay {
    background: rgba(11, 11, 11, 0.449);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 997;

    &:hover {
        cursor: pointer;
    }
}


.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 133, 227, 0.708), transparent 70%);
    filter: blur(200px);
    /* left: -240px !important; */
    border-radius: 50%;
    z-index: -1;
}

@keyframes floatGlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(20px, -20px);
    }

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

.glow {
    /* animation: floatGlow 10s ease-in-out infinite; */
}