
.contenedor-carrusel{
    background-color: #00257f;

    width: 100%;
    height: 30vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.titulo-sponsor{
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
}
.slider {
    width: 75%;
    height: auto;
    margin: auto;
    overflow: hidden;

    cursor: pointer;
}

.slider .slide-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;


    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 12);
}

.slider .slide {
    width: 200px;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 6));
        transform: translateX(calc(-200px * 6));
    }
}