.servicios{
    padding-bottom: 4%;
}

.servicios__contenido{
    display: flex;
	flex-wrap: wrap;
    justify-content:space-around;

}

.servicios__titulo{
    text-align: center;
}

.servicio{
    height: 8rem;
	background-color: #FFF;
    border-radius: 15px;
	text-align: center;
	margin: 1.65%;
	position: relative;
    width: 44%;
    display:flex;
    align-items:center;
    justify-content:space-around;
    padding: 0 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.servicio:hover{
    background-color: rgba(228, 228, 228, 0.7);
}

.servicio__contenido{
    width: 280px;
    display: flex;
    justify-content: center;
}

.servicio__img{
    width:18%;
    padding-bottom: 0;
    opacity:80%;
}

.servicio__img2{
    width:18%;
    padding-bottom: 0;
}

.servicio:hover .servicio__titulo{
    color:var(--azul2);
}

.servicio__titulo{
    font-weight:500;
    font-size: 1.6rem;
    padding-bottom: 0;
    line-height: 2rem;
    color:var(--gris2);
}

@media screen and (min-width:150px) {
    .servicio{
        width: 80%;
        margin-bottom: 1rem;
    }
    .servicio__img{
        width:80px;
    }
    .servicio__img2{
        width:80px;
    }
    .servicio__titulo{
        font-size: 1.2rem;
        line-height: 1.5rem;
    }
}

@media screen and (min-width:600px) {
    .servicio__titulo{
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .servicio__img{
        width:110px;
    }
    .servicio__img2{
        width:110px;
    }
}

@media screen and (min-width:1200px) {
    .servicio{
        width: 42%;
    }
    .servicio__img{
        width:18%;
    }
    .servicio__img2{
        width:18%;
    }
}