 .placesWrapper{
        width:100%;
        display:flex;
        gap:3px;
        /*background-color:pink;*/
      }
      
      .places{
        width:100%;
        display:flex;
        padding:20px;
        align-items:center;
        justify-content:center;
        height:585px;
        background-color:black;
        position:relative;
      }
      
      .places .fondo{
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        /*background-color:grey;*/
        z-index:1;
        overflow: hidden;
      }
      
      .places img{
        width:100%;
        object-position:center;
        object-fit:cover;
      }
      
      .places .parrafo{
        display:flex;
        flex-direction:column;
        width:100%;
        gap:36px;
        max-width:359px;
        /*background-color:brown;*/
        text-align:center;
        justify-content:center;
        align-items:center;
        z-index:2;
      }
      
      .places .title{
         font-family: "Playfair Display", serif;
         font-weight: 400;
         font-style: italic;
         font-size:44.97px;
         line-height:49.7px;
         color:white;
      }
      
      .places .text{
        font-family: "Cardo", serif;
        font-weight: 400;
        font-style: normal;
        font-size:19px;
        line-height:23px;
         color:white;
      }
      
      .places a{
        display:flex;
        width:fit-content;
        text-decoration:none;
        color:#515151;
        padding:17px 20px;
        min-width:166px;
        background-color:white;
        justify-content:center;
      }
      
      @media(max-width:700px){
        
        .placesWrapper{
          flex-direction:column;
        }
        
        .places{
          height:380px;
        }
        
      }