/* CONTENEDOR CARRUSEL*/
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 60px;
    margin: 20px 0 40px 0;
}

.carousel-track {
    height: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease-in-out;
}

.carousel-track img {
    width: 80px;
    height: 100%;
    object-fit: contain;
    margin: 0 20px;
}

.carousel-track img:nth-child(8){
    width: 130px;
}

.carousel-track img:nth-child(9){
    width: 70px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00000039;
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

@media (min-width: 1200px) {
    .carousel {
        width: 80%;
        /* display: flex;
        justify-content: center;
        align-items: center; */
    }
}