#folio {
    padding: 70px 0px;
}


.folio-carousel {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 30px;
}

.folio-carousel-slide {
    display: inline-flex;
    gap: 30px;
    animation: 12s scroll infinite linear;
}

.folio-carousel-slide:first-child {
    margin-right: 30px;
}

.folio-carousel-track { 
    flex-shrink: 0;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 105px 0px 105px 0px;
}

.circle-btn-container {
    margin: auto;
    text-align: center;
    margin-top: 30px;
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    
    to {

        transform: translateX(-100%);
    }
}


@keyframes scroll-right {
    from {
        transform: translateX(100%);
    }
    
    to {

        transform: translateX(0);
    }
}





.folio-carousel::before, 
.folio-carousel::after {
    content: ""; 
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
}

.folio-carousel::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);       
}

.folio-carousel::after {
    right: 0;
    background: linear-gradient(to right, transparent, #000);        
}