    .fronterasTitle{
        font-family: 'futura-bold', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size:34px;
        line-height:46px;
        letter-spacing:0.02em;
        color:white;
      }
      
      
     .fronterasTexto{
        font-family: 'futura-medium', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size:21px;
        line-height:25px;
        letter-spacing:0.02em;
        color:white;
      }
           
      .fronteras{
        display:flex;
        padding:71px 0;
        width:100%;
        /*background-color:grey;*/
      }
      
      .fronterasWrapper{
        display:flex;
        width:100%;
        padding:95px 60px;
        background-color:#274147;
        min-height:568px;
        align-items:center;
        justify-content:center;
      }
      
      .fronterasContent{
        display:flex;
        width:100%;
        max-width:1216px;
        justify-content:space-between;
        gap:60px;
        /*background-color:blue;*/
        align-items:center;
      }
      
      .fronterasTextosContent{
        display:flex;
        width:100%;
        gap:55px;
        flex-direction:column;
        /*background-color:brown;*/
      }
      
      .fronterasTextitos{
        display:flex;
        flex-direction:column;
        width:100%;
        /*background-color:purple;*/
        gap:35px;
      }
      
      .fronterasVineta{
        display:flex;
        gap:36px;
        width:100%;
        /*background-color:pink;*/
        align-items:center;
        flex-shrink:0;
      }
      
      .fronterasIcon{
        display:flex;
        width:45.5px;
        height:29px;
        flex-shrink:0;
        /*background-color:black;*/
        background-image:url("./imgs/fronteras/fronteras_flecha.svg");
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .fronterasImagen{
        display:flex;
        width:443px;
        height:100%;
        /*background-color:lightgrey;*/
        flex-shrink:0;
        position:relative;
      }
      
      .fronterasFoto{
        display:flex;
        position:absolute;
        right:0;
        top:50%;
        transform: translateY(-50%);
        width:443px;
        height:674px;
        flex-shrink:0;
        background-color:black;
        border-radius:17px;
        box-shadow: 0 0px 19px rgba(0, 0, 0, 0.25);
      }
      
      .fronterasFoto img{
        width:100%;
        object-fit:cover;
        object-position:center;
        border-radius:17px;
        /*background-color:grey;*/
      }


      @media(max-width:1020px){

        .fronterasContent{
          flex-direction: column;
        }

        .fronterasImagen{
          width: 400px;
          height: 400px;
        }

        .fronterasFoto{
          width: 400px;
          height: 400px;
        }
        
        .fronteras{
          padding: 40px 0;
        }
        
        .fronterasWrapper{
          padding: 80px 40px;
        }

        .fronterasTitle{
          text-align: center;
        }

      }

      @media(max-width:700px){


        .fronteras{
          padding: 60px 0;
        }

        .fronterasWrapper{
          padding: 60px 20px;
        }

        .fronterasTitle{
          font-size: 30px;
          line-height: 35px;
        }

        .fronterasTexto{
          font-size: 19px;
          text-align: center;
        }

        .fronterasTextosContent{
          gap: 30px;
        }

        .fronterasIcon{
          display: none;
        }

        .fronterasTextitos{
          gap: 20px;
        }

        .fronterasContent{
          gap: 45PX;
        }

        .fronterasVineta{
          align-items: center;
          justify-content: center;
        }

      }