#outerbox{
    /* width: 570px; */
    width: auto;
    height: 100px;
    overflow: hidden;
}

#sliderbox{
    position: relative;
    width: 4026px;
    animation: correr 30s infinite linear;
}

#sliderbox:hover{
    animation-play-state: paused;
    cursor: pointer;    
}


#sliderbox img{
    float: left;
    /* width: 180px; */
    width: auto;
    height: 100px;    
    margin-right: 10px;
    filter: grayscale(100%);
}

#sliderbox img:hover{
    box-shadow: 0px 0px 10px 0px blue;
    transition: all 300ms;  
    filter: none;
}

@keyframes correr{
    0%{
        left: 0px;;
    }
    50%{
        /* left: -1560px; */
        left: -2976px;
    }
    100%{
        left: 0px;
    }
}


/*Dispositivo móvil*/

@media (max-width: 800px){
    #outerbox{
        /*width: 320px;*/
        width: 100%;
        height: 100px;
        overflow: hidden;
    }

    #sliderbox{
        position: relative;
        width: 4026px;
        animation-name: correr;
        animation-duration: 20s;    
        animation-iteration-count: infinite;

    }
    
    #sliderbox:hover{
        animation-play-state: paused;
        cursor: pointer;
    }
    
    #sliderbox img{
        float: left;
        /* width: 180px; */
        width: auto;
        height: 50px;    
        margin-right: 10px;
        filter: grayscale(100%);
    }

    #sliderbox img:hover{
        box-shadow: 0px 0px 10px 0px blue;
        transition: all 300ms;
    }
    
     
    @keyframes correr{
        0%{
            left: 0px;
        }
        50%{
            left: -1730px;        
        }
        100%{
            left:0px;
        }
    
    }
    
}


/* CSS para Nuestros servicios */
.servicio-img-b img:hover{
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 1em #25347D;
}

.servicio-img-b img{
    width: 75px;height: 75px;
}

.servicio-img-y img:hover{
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 1em gold;
}

.servicio-img-y img{
    width: 75px;height: 75px;
}

.servicio-img-r img:hover{
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 1em red;
}

.servicio-img-r img{
    width: 75px;height: 75px;
}

#digital{ 
    border-radius: 5px; 
    border: solid white;
}

#offline{
    border-radius: 5px; 
    border: solid white;
}

@media (max-width: 61.9em) {
    .servicio-img-b img{
        width: 50px;height: 50px;
    }
    .servicio-img-y img{
        width: 50px;height: 50px;
    }
    .servicio-img-r img{
        width: 50px;height: 50px;
    }   
}