     .headerMain h1{
        font-family: 'futura-bold', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size:42.3px;
        line-height:56px;
        color:white;
      }
      
      
     .headerMain h2{
        font-family: 'futura-medium', sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size:26px;
        line-height:32px;
       color:white;
      }

      .headerSpace{
        height: 67px;;
      }
           
      .headerMain{
        display:flex;
        position:relative;
        width:100%;
        height:745px;
        background-color:grey;
        justify-content:center;
        align-items:center;
        text-align:center;
      }
      
      .headerFondo{
        display:flex;
        position:absolute;
        z-index:1;
        top:0;
        left:0;
        width:100%;
        height:100%;
        /*background-color:lavender;*/
      }
             
      .headerFondo img{
        width:100%;
        object-fit:cover;
        object-position:center;
        background-color:#274147;
      }
      
      
      .headerTextos{
        display:flex;
        position:relative;
        z-index:2;
        flex-direction:column;
        width:100%;
        max-width:980px;
        /*background-color:green;*/
      }
      
      .headerFrase{
        padding:43px 0 52px 0;
      }
      
      .headerCTA{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:25px;
        /*background-color:purple;*/
      }
      
      .headerBoton{
        all:unset;
        position:relative;
        cursor:pointer;
        padding:21px 40px;
        background-color:#C9B96B;
        border-radius:12px;
        font-family: 'futura-bold', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size:18px;
        line-height:20px;
        color:#274147;
        letter-spacing:0.02em;
        transition:all 0.2s ease;
      }
      
      .headerBoton:hover{
        background-color:#DDCA7A;
        bottom:2px;
      }
      
      .headerFlecha{
        display:flecha;
        width:42px;
        height:29px;
        /*background-color:black;*/
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .headerFlecha.izq{
        background-image:url("./imgs/header/header_flechaizq.svg");
      }
      
     .headerFlecha.der{
        background-image:url("./imgs/header/header_flechader.svg");
      }

      @media(max-width:1020px){

        .headerMain{
          /*border:2px solid orange;*/
        }

        .headerTextos{
          width: 90%;
        }

        .headerBoton{
          padding-left: 25px;
          padding-right: 25px;
        }

        .headerCTA{
          gap: 15px;
        }


      }

      @media(max-width:700px){

        .headerMain{
          height: 85vh;
          min-height: 500px;
        }

        .headerMain h1{
          font-size: 34px;
          line-height: 39px;
        }

        h2.headerFrase{
          font-size: 21px;
          line-height: 24px;
        }

        .headerFrase{
          padding: 30px 0 40px 0;
        }

        .headerMain a{
          font-size: 15px;
          line-height: 18px;
        }

        .headerBoton{
          padding: 16px 10px;
          max-width: 60%;
        }

        .headerFlecha.der, .headerFlecha.izq{
          width: calc(42*0.75px);
          height: calc(29*0.75px);
        }

      }
