.servicios{
        display:flex;
        width:100%;
        background-color:#F7F1E9;
        padding:67px 0px 114px 0px;
        gap:9%;
      }
      
      .serviciosImagenes{
        display:flex;
        gap:12px;
        width:60%;
        height:510px;
        /*background-color:green;*/
      }
      
      .serviciosImagenBox{
        display:flex;
        width:100%;
        background-color:black;
      }
      
      .serviciosImagenBox img{
        object-fit: cover; /* OBLIGATORIO */
        object-position: center; /* OBLIGATORIO */
        width: 100%; /* OBLIGATORIO */
        background-color:grey;
      }
      
      
      .serviciosTextos{
        display:flex;
        justify-content:center;
        padding-right:40px;
        width:40%;
        display:flex;
        flex-direction:column;
        /*background-color:lightblue;*/
      }
      
      .serviciosLista{
        font-family: 'acumin-pro-wide', sans-serif;
        font-weight: 300;
        font-style: normal;
        letter-spacing:0.15em;
        font-size:15px; 
        line-height:1.4;
      }
      
      .serviciosLista span{
        display:block;
        margin-top:15px;
      }
      
       .serviciosBoton{
        display:flex;
        align-items: center;
        justify-content:flex-start;
        font-family: 'AppleGaramond', serif;
        font-weight: 100;
        font-style: italic;
        font-size: 18px;
        letter-spacing:0.03em;
        margin-top:41px;
      }
      
      .serviciosBoton a{
        all:unset;
        padding:18px 45px;
        border-radius:10px;
        cursor:pointer;
        background-color:white;
      }
      
      @media (max-width:950px){
        .servicios{
          flex-direction:column;
          gap:50px;
        }
        
        .serviciosTextos{
          width:100%;
          padding:40px;
        }
        
        .serviciosLista{
          text-align:center;
        }
        
        .serviciosImagenes{
          width:100%;
          height:350px;
        }
        
        .serviciosBoton{
          justify-content:center;
        }
        
      }
      
      @media (max-width:550px){
        .serviciosImagenes{
          height:250px;
        }
      }