     .welcome{
        display:flex;
        width:100%;
        padding:136px 20px 145px 20px;
        justify-content:center;
        align-items:center;
        background-color:white;
      }
      
      .welcome .content{
        display:flex;
        width:100%;
        justify-content:space-between;
        align-items:center;
        max-width:1225px;
        gap:48px;
        /*background-color:purple;*/
      }
      
      .welcome .parrafo{
        display:flex;
        flex-direction:column;
        gap:40px;
        /*background-color:pink;*/
      }
      
      .welcome .title{
         font-family: "Playfair Display", serif;
         font-weight: 400;
         font-style: italic;
         font-size:44.97px;
         line-height:49.7px;
      }
      
      .welcome .fecha{
        font-family: "Cardo", serif;
        font-weight: 400;
        font-style: normal;
        font-size:29px;
        line-height:29px;
      }
      
      .welcome .texto{
        font-family: "Cardo", serif;
        font-weight: 400;
        font-style: normal;
        font-size:19px;
        line-height:23px;
        max-width:507.8px;
      }
      
      .welcome .firmaSpace{
        width:100%;
        display:flex;
        /*ackground-color:blue;*/
        justify-content:flex-end;
      }
      
      .welcome .firma{
        display:flex;
        width:263px;
        height:176.14px;
        /*background-color:green;*/
      }
      
      .welcome .firma img{
        width:100%;
        object-position:center;
        object-fit:cover;
      }
      
      .welcome .foto{
        display:flex;
        width:538.98px;
        height:739.12px;
        background-color:black;
        flex-shrink:0;
      }
      
      .welcome .foto img{
        width:100%;
        object-position:center;
        object-fit:cover;
      }
      
      
      @media(max-width:970px){
        
        .welcome .foto{
          width:50%;
          max-width:500px;
          height:100%;
          aspect-ratio:538.98/739.12;
        }
        
        .welcome .fecha{
          max-width:300px;
        }
        
      }
      
        
      
      @media(max-width:850px){


        .welcome{
          padding: 0px 0px 60px 0px ;
        }

        .welcome .content{
          flex-direction:column;
          align-items:center;
          text-align:center;
          gap: 65px;
        }
        
        .welcome .parrafo{
          align-items:center;
          order: 2;
          padding: 0 25px;
        }
        
        .welcome h3{
          max-width:700px;
        }
        
        .welcome .fecha{
          max-width:300px;
        }
        
        .welcome .firmaSpace{
          justify-content:center;
        }
        
        .welcome .foto{
          width:100%;
          order: 1;
        }
        
      }