#servicios .contenedor {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#servicios article {
    margin: 7px;
}

#servicios img {
    width: 100%;
    max-width: 280px;
    border-radius: 15%;
}

#servicios article:hover img{
    -webkit-transform:scale(1.1);
    transform:scale(1.05);
}

#servicios .contenedor {
    overflow:hidden;
}

#servicios img:hover {
    filter: sepia(50%);
}
    
    
#servicios h2 {
    text-align: center;
    font-weight: normal;
    font-family: Oswald;
    color: #000124;
    font-size: 17px;
}

@media (min-width:480px) {
    #servicios article {
        width: 40%;
        text-align: center;
    }
}

@media (min-width:1024px) {
    #servicios .contenedor {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        top: 108px;
    }
    
    #servicios article {
        width: auto;
    }
}

