body{
    overflow-y: hidden !important;
    height: 100vh !important;
}

.text-ai-assistant{
    display: flex;
    column-gap: 11px;
}

.info-side,
#projectImage{
    animation: fadeIn 2s;
    animation-timing-function: ease-in-out;
}

.section-top{
    min-height: 90vh;
    box-sizing: border-box;
}

.main{
    column-gap: 5vw;
    background: radial-gradient(
        circle at center, rgba(198, 243, 52, 0.1), transparent 40%
    );
    min-height: 70vh;
}

.sphere-side{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 50vw !important;
    height: 50vh !important;
    background: transparent;
    z-index: 100;
    pointer-events: none;
}

.image-side,
.info-side{
    margin: 5%;
    position: relative;
    border-radius: 10px;
}

.image-side .img{
    background-color: black;
    background-size: cover;
    background-position: center;
    opacity: .5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    
}

.image-side .next{
    width: 125%;
    height: 125%;
    opacity: 0;
}

.info-side{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

#projectName{
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Hydrogen Whiskey";
    font-size: 80px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    column-gap: 20px;
    overflow-y: hidden;
    width: 100%;
    margin-left: 100px;
    box-sizing: border-box;
    cursor: pointer;
}

#projectName:hover .dot{
    animation: bouncingScale 375ms;
    scale: 1.1;
}

#projectName .next{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, 50%);
}

#projectName .dot {
    width: 50px !important;
    height: 50px !important;
    animation: bouncingScaleReverse 375ms;
    position: absolute;
}

#projectName .dot .ring{
    width: 60px !important;
    height: 60px !important;
    left: -5px;
    top: -5px;
}

#projectName .icon{
    width: 50%;
    height: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(180deg) scale(-1, 1);
}

#projectAdv{
    list-style: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0 0 0 6vw;
}

#projectAdv .next{
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
}

.slider{
    font-family: "Advent Pro";
    position: fixed;
    width: 25vw;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.slider .page-first,
.slider .page-last{
    transition: 250ms all ease-in-out !important;
}

.slider .progress-line{
    height: 1px;
    background: white;
    position: relative;
    margin: 2vw;
    width: calc(100% - 4vw);
    box-sizing: border-box;
}

.progress-line .ring{
    position: absolute;
    width: 10px;
    aspect-ratio: 1 / 1;
    border: 1px solid white;
    border-radius: 50%;
    background: var(--background);
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    animation: bouncing-anim-little 1s ease-in-out;
    transition: 250ms all ease-in-out !important;
}

.progress-line .last{
    right: 0;
    transform: translateY(-50%) translateX(50%);
}

.slider .progress-line .first{
    background-color: var(--green);
    border-color: var(--green);
}

.progress-line .progress{
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    background-color: var(--green);
    width: calc(100% / (5 / 1));
    transition: 250ms all ease-in-out !important;
}

@media only screen and (max-width: 1200px){
    .main{
        justify-content: end;
        align-items: center;
        flex-direction: column;
        row-gap: 20vh;
    }

    .sphere-side{
        width: 80vw !important;
        height: 80vh !important;
    }

    .info-side{
        width: 100% !important;
    }

    #projectName{
        margin-left: 0 !important;
        width: 100%;
        font-size: 80px !important;
        justify-content: center;
    }

    #projectName a{
        text-align: center;
    }

    #projectName .next{
        justify-self: anchor-center;
    }

    #projectAdv{
        transform: translateY(90px);
        margin: 0;
        align-self: center
    }

    .slider{
        width: 50vw;
    }

    #projectName .dot{
        display: none;
    }
}

@media only screen and (max-width: 768px){
    .side.info-side{
        min-height: 150px !important;
    }

    #projectAdv{
        display: block;
        position: absolute;
        bottom: 50%;
    }
}