/****** BLOCK NUESTROS CLIENTES ******/
.carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.carousel-img {
    width: 250px;
    height: 120px;
    margin: 0 30px;
}

.carousel-img-small {
    width: 120px;
    height: 120px;
    padding: 20px 0;
    margin: 0 10px;
    
}

/* Animación */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/****** END BLOCK NUESTROS CLIENTES ******/