:root{
    --light: #edf1e8;
    --dark: #101010;
}

h3{
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.025rem;
    line-height: 1.125;
}

.scontainer{
    position: relative;
    width: 100%;
    height: 150%;
    background-color: var(--light);
    will-change: background-color;
}

.shero, .soutro {
    position: relative;
    width: 100%;
    height: 100svh;
    padding: 2rem;
    align-content: center;
    text-align: center;
}

.shero h1, .soutro h1{
    width: 75%;
    margin: 0 auto;
}


.soutro {
    background-color: var(--dark);
    color: var(--light);
}

.smarquee{
    position: absolute;
    top: 60%;
    left: 25%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 150%;
    height: 100%;
}

.smarquee-images{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    will-change: transform;
}


.smarquee-img{
    flex: 1;
    width: 100%;
    aspect-ratio: 5/3;
}


.shorizontal-scroll{
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

.shorizontal-scroll-wrapper{
    position: relative;
    width: 300%;
    height: 100svh;
    display: flex;
    will-change: transform;
}

.shorizontal-slide{
    flex: 1;
    height: 100%;
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.shorizontal-slide:not(.shorizontal-spacer) {
    background-color: var(--dark);
    color: var(--light);
}

.shorizontal-slide .scol:nth-child(1) {
    flex: 3;
}

.shorizontal-slide .scol:nth-child(2) {
    flex: 2;
}

.shorizontal-scroll .scol{
    display: flex;
    justify-content: center;
    align-items: center;
}

.shorizontal-slide .scol h3, .shorizontal-slide .scol img{
    width: 75%;
}

.shorizontal-slide .scol img{
    height: 75%;
}


@media (max-width: 768px) {
    /* .shorizontal-slide{
        flex-direction: column;
    }

    .shorizontal-slide .scol:nth-child(1),
    .shorizontal-slide .scol:nth-child(2){
        flex: none;
        width: 100%;
    }

    .shorizontal-slide .scol h3, .shorizontal-slide .scol img{
        width: 100%;
    } */

    h3{
        font-size: 1.5rem;
    }

    .shero h1, .soutro h1{
        width: 100%;
    }

    .smarquee{
        max-width: 100%;
        overflow: hidden !important;
    }
    .smarquee-wrapper{
        width: 300%;
    }

    .shorizontal-slide{
        padding: 4rem;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .shorizontal-slide .scol:nth-child(1){
        align-items: flex-start;
    }

    .shorizontal-slide .scol h3{
        width: 100%;
    }

    .shorizontal-slide .scol img{
        width: 100%;
        height: 100%;
    }

    .smarquee-images{
        overflow: hidden;
    }

    .smarquee-img img{
    width: 15vw;
    height: auto;
}
}

.smarquee-img img{
    width: 35vw;
    height: auto;
}

.projectscta{
    width: 75%;
    height: 60px;
    padding: 0.5rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    border-radius: 4rem;
    will-change: transform;
}

.projectscta-label{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.projectscta-label p{
    color: #000;
    font-size: 16px;
}

.projectscta-icon {
    position: relative;
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #303030;
    border-radius: 60px;
    will-change: transform;
}

.scol{
    display: flex;
    flex-direction: column;
}

body{
    background-color: #101010;
}