/** { margin: 0; padding: 0; outline: 0; }*/

.slider-infinity {
    background-image: url(images/Background01.jpg);
    /*background-color: white;*/
    padding-top: 15px;
    text-align: center;
}

.Clientes-Txt {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    color: #0462b7;
    font-size: 40px;
}

.caja-general {
    margin: 0;
    display: flex;
    min-height: 100vh;
    background: #f5f5d0;
}

.contenedor-slider {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.divisor {
    width: 100%;
    margin: auto;
    align-content: center;
}

#slider-infinito {
    width: 3100px;
    height: 100px;
    
    background-image: url(images/Clientes.png);
    background-size: 100% 100%;
    
    animation: slider 18s infinite;
}

@keyframes slider {
    to {
        background-position: 3100px; /* Estos 3100 deben ser igual a los 3100 del width del #slider-infinito */
    }

}


/*********************************************************/
@media screen and (max-width: 800px){

#slider-infinito {
    width: 3100px;
    height: 60px;
    
    background-image: url(images/Clientes.png);
    
    background-size: 80% 90%;
    
    animation: slider 22s infinite;
}
    
  h5 {
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    color: #0462b7;
    font-size: 25px;
} 
    

@keyframes slider {
    to {
        background-position: 2480px; /* Estos 2480 son porque es más angosto */
    }    
    
     
    }