@font-face {
    font-family: "TT Lakes Neue";
    src: url('../fonts/tt-lakes-neue.ttf');
}


.text-ai-assistant{
    display: flex;
    column-gap: 11px;
}

.main{
    padding-left: 40%;
}

.slogan-side{
    justify-content: start;
    align-items: end;
}

.slogan{
    width: 106%;
    margin-top: calc(3.5rem + 45 * ((100vw - 425px) / 680) + 5vh)!important;
}

.slogan .line{
    font-size: calc(3.5rem + 45 * ((100vw - 425px) / 680)) !important;
    display: flex;
    font-family: "Hydrogen Whiskey";
    transform: translateX(0);
    min-width: 48vw;
}

.main .text-effect{
    font-size: calc(3.5rem + 45 * ((100vw - 425px) / 680)) !important;
}

.main .text-effect .dot-big{
    transform: translate(-100%, -50%) !important;
}

.slogan .pages{
    position: absolute;
    width: 100%;
    transform: translate(-50%, -100%);
}

.slogan .pages .line{
    width: max-content;
}

.slogan .pages .next{
    position: absolute;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.next-button{
    position: absolute;
    width: 7vw;
    height: 7vw;
    left: 15vw;
    top: 25vh;
    cursor: pointer;
}

@media (hover: hover) {  
    .next-button:hover .icon{
        transform: rotate(180deg);
    }

    .next-button:hover .ring{
        width: 8vw;
        height: 8vw;
        left: -.5vw;
        top: -.5vw;
    }
}

.next-button .ring{
    border-width: 2px;
    width: 7.75vw;
    height: 7.75vw;
    left: -.375vw;
    top: -.375vw;
    transition: 250ms;
    pointer-events: none;
}

.next-button .icon{
    width: 64px;
    margin: 35%;
    transition: 250ms all;
}

.slogan-sequel{
    margin-right: 10vw;
}

.section-ecosystem{
    display: flex;
}

.section-ecosystem .side{
    display: flex;
    flex-direction: column;
}

.section-ecosystem .button{
    width: fit-content;
    column-gap: 20px;
    align-self: start;
}

.section-ecosystem .button img{
    width: 36px;
}

.list-item{
    padding: 1vw 0;
}

.list-item #text{
    font-size: 1.75rem;
    font-weight: bold;
    margin-right: 5%;
}

.section-workflow{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pathway-container{
    width: 100%;
    height: 60vh;
    background-color: #EEEEF2;
    border-radius: 10px;
    margin: 60px 0;
    display: flex;
}

.pathway-container span{
    color: var(--background) !important;  
}

.pathway-container .article{
    display: flex;
    flex-direction: column;
    width: calc((60% / 5));
    overflow: hidden;
    padding: 20px 30px 60px 30px;
    box-shadow: inset 10px 0 20px 1px rgba(0, 0, 0, 0.125);
    position: relative;
    transition: 500ms width ease-out !important;
}

.pathway-container .article.active{
    width: 40%;
    padding: 20px 50px 60px 50px;
}

.pathway-container .title-tiny{
    margin-left: 3vw;
    min-width: unset;
    width: fit-content;
    transform: translateX(-50%);
    font-family: "TT Lakes Neue";
}

.pathway-container .title{
    font-size: 4.5rem;
    font-family: "Hydrogen Whiskey";
    letter-spacing: 3px;
    transition: 250ms ease-out !important;
    transition-property: transform, font-size !important;
    max-width: 400px;
}

.pathway-container .article:not(.active) .title{
    transform: rotate(-90deg) translateX(20px);
    width: 20vh;
    aspect-ratio: 1 / 1;
    margin-top: auto;
    padding: 40% 0;
    box-sizing: border-box;
    font-size: 3rem;
    text-align: start;
    align-self: center;
}

.pathway-container .article:not(.active) .content{
    position: absolute;
    transform: translate(100%, 0);
    opacity: 0 !important;
}

.pathway-container .article:not(.active) *{
    pointer-events: none;
}

.pathway-container .article.active .title{
    margin-top: auto;
    margin-bottom: 40px;
}

@keyframes contentAnim {
    0%{transform: translateX(200px);opacity: 0;}
    100%{transform: translateX(0px);opacity: 1;}
}

.pathway-container .article.active .content{
    font-size: 1.25rem;
    width: 20vw !important;
    height: 10vh !important;
    opacity: 1;
    animation: contentAnim 250ms ease-out;
}

.section-results{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-results .title-tiny{
    min-width: unset;
    margin-bottom: 30px;
}

.section-results > .text-effect{
    text-align: center;
}

.section-results > .text-effect:nth-child(2){
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}

.section-results > .scroll-container{
    width: 30vw;
    min-width: 250px;
    margin: 20px 0;
    text-align: center;
}

.section-results > .scroll-container p{
    line-height: normal;
    margin-bottom: 2em;
}

.result-card-container{
    display: flex;
    height: 50vh;
    column-gap: 20px;
    width: 60vw;
    row-gap: 20px;
}

.result-card{
    width: 25%;
    max-width: 400px;
    aspect-ratio: 1 / 1.5;
    display: flex;
}

.result-card .card{
    margin-top: auto;
    width: 100%;
    height: 100%;
    background-color: #2A345D;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 1vw;
}

.result-card .img{
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    opacity: .25;
}

@media only screen and (max-width: 1440px){
    .result-card-container{
        flex-wrap: wrap;
        height: fit-content;
        justify-content: center;
    }

    .result-card{
        width: calc(50% - 20px) !important;
    }
}

@media only screen and (max-width: 1024px){
    .pathway-container{
        flex-direction: column;
        height: 700px;
    }

    .pathway-container .article{
        width: 100%;
        height: calc((60% / 5));
        padding: 20px 60px 20px 30px;
        flex-direction: row;
        box-shadow: inset 0 10px 20px 1px rgba(0, 0, 0, 0.125);
    }

    .pathway-container .article.active{
        width: 100%;
        height: 40%;
        padding: 20px 60px 20px 30px;
        column-gap: 40px;
    }

    .pathway-container .article.active .title{
        margin-bottom: 0;
        max-width: 300px;
    }

    .pathway-container .article.active .content{
        margin-top: auto;
        height: fit-content !important;
    }

    .pathway-container .article:not(.active) .title{
        transform: unset !important;
        margin-top: 0;
    }
}

@media only screen and (max-width: 968px){
    .next-button{
        width: 64px !important;
        height: 64px !important;
    }

    .next-button .icon{
        width: 32px !important;
        height: 32px !important;
    }

    .next-button .ring{
        width: 74px !important;
        height: 74px !important;
        left: -5px;
        top: -5px;
    }

    .section-ecosystem .side{
        width: fit-content !important;
        min-width: 40vw;
    }

    .section-ecosystem .side:last-child{
        width: 100% !important;
    }
}

@media only screen and (max-width: 768px){
    .next-button{
        width: 64px !important;
        height: 64px !important;
    }

    .next-button .ring{
        width: 74px !important;
        height: 74px !important;
        left: -5px;
        top: -5px;
    }

    .pathway-container{
        height: 1000px;
    }
    
    .pathway-container .title{
        font-size: 4rem;
        width: 100% !important;
    }

    .pathway-container .article{
        flex-direction: column;    
    }
    
    .pathway-container .article.active .title{
        width: 50% !important;
    }


    .pathway-container .article:not(.active) .title{
        padding: 0;
        align-self: start;
    }
    
    .pathway-container .article.active .content{
        width: 80% !important;
    }

    .result-card{
        width: 100% !important;
    }
    
}

@media only screen and (max-width: 425px){
    .next-button{
        width: 48px !important;
        height: 48px !important;
    }

    .next-button .ring{
        width: 58px !important;
        height: 58px !important;
    }
}