    
      .hoy{
        display:flex;
        width:100%;
        height:587px;
        background-color:lightgrey;
        padding:20px;
        align-items:center;
        justify-content:center;
        position:relative;
      }
      
      .hoyFondo{
        display:flex;
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        background-color:black;
        overflow-y:hidden;
        z-index:0;
      }
      
      .hoyFondo img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }
      
      .hoyContainer{
        display:flex;
        width:100%;
        max-width:1221px;
        position:relative;
        align-items:center;
        /*background-color:purple;*/
        z-index:1;
      }
      
      .hoy .title{
        font-family: "helvetica-lt-pro", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size:36px;
        line-height:37px;
        letter-spacing:-0.047em;
        max-width:680px;
        color:white;
      }
      
      .hoy .title .especial{
        color:#B3FBFF;
      }


      @media(max-width:700px){


        .hoy{
          height: 70vh;
          align-items: flex-end;
          justify-content: center;
          text-align: center;
          padding-top: 60px;
          padding-bottom: 60px;
        }

        .hoy .title{
          font-size: 26px;
          line-height: 26px;
          max-width:360px;
        }

        .hoyFondo img{
          object-position: 68% 0%;
        }
        

      }