<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.ser{
    width: 35px;
    height: 35px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    color: black;
}

.listaServicios{
    list-style: none; /* Quitamos los marcadores */
    padding: 0; /* Quitamos el padding por defecto de la lista */
    margin-left: 100px; /* Separamos la lista de la izquierda */
    font-size: 25px;
}

.textListaServicios::before{
    content: "\2022"; /* Insertamos el marcador */
    padding-right: 5px; /* Establecemos el espacio entre las viÃ±etas y el list item */
}
.textListaServicios{
    text-decoration: none;
    color: black;
}

@media (max-width:575px){
   .ser{
        width: 15px;
        height: 15px;
        font-size: 20px;
   }

   .listaServicios{
        font-size: 20px;
   }
   .imagenServicios{
       width: 50px;
       height: 50px;
    
    }
}</pre></body></html>