/*HOJA DE ESTILOS DE LA PAGINA DE SERVICIOS*/

/*SOLUCIONES PARA TODOS*/
.SolucionesParaTodos_Contenedor{
    height: fit-content;
    width: 100%;
    display: inline-block;
    text-align: center;
    background-image: url(../Media_Resources/Images/SolucionesParaTodosFondo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
    background-attachment: fixed;
}
.SolucionesParaTodos_Contenido{
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    height: auto;
}
.titulosolucionesparatodos{
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 45px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}
.descripcionsolucionesparatodos{
    margin-bottom: 20px;
    font-size: 20px;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
}
/*LO QUE NOS DIFERENCIA*/
.ContenedorSomosDiferentes{
    background-color: whitesmoke;
    justify-content: center;
    display: flex;
}
.ContenidoSomosDiferentes{
    justify-content: center;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}
.TituloSomosDiferentes{
    font-size: 45px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-transform: uppercase;
}
.panelessomosdiferentes{
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    width: 300px;
}
.panelessomosdiferentes>img{
    height: 250px;
    width: 250px;
}
.panelessomosdiferentes>h2{
    margin-bottom: 10px;
    font-size: 2em;
}

/*MEDIA QUERYS*/
@media(max-width:992px){
    .titulosolucionesparatodos{
        font-size: 35px;
    }
    .descripcionsolucionesparatodos{
        font-size: 15px;
    }
    .panelessomosdiferentes{
        display: block;
        width: auto;
        text-align: center;
    }
    .panelessomosdiferentes>img{
        height: 200px;
        width: 200px;
    }
    .panelessomosdiferentes>h2{
        font-size: 30px;
    }
    .TituloSomosDiferentes{
        font-size: 35px;
    }
}