:root {
    --color1: rgb(239, 165, 0);
    --color2: rgb(5, 5, 4);
    --color3: rgba(183, 118, 0, 0.888);
    --color4: rgb(43, 88, 12);
    --color5: rgb(255, 214, 73);
  
    --fondo: #efefef;
    --titulos: 33px;
    --margenes: 60px;
    --espacios: 10px;
    --espacios-contenido: 45px;
  }
  @font-face{
    font-family:'Yellowtail' ;
    src: url(../fonts/Yellowtail-Regular.ttf);
  }
  
  
  .main-img {
    width: 100%;
    height: 500px;
    background: url(../images/contacto/contactobanner.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  
  }
  
  .textos {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: center;
    z-index: -100;
    background: rgba(0, 0, 0, .688);
  
  
  
  }
  
  .textos>h1{
    font-size: 90px;
    color:#efefef;
    font-family: 'Yellowtail', cursive;
    letter-spacing: 8pt;
  
  }
  .textos>h2{
    font-size: 30px;
    font-weight: 300;
    color: rgb(239,165,0);
    
  }
  
  h3 {
    font-weight: 400;
    text-align: left;
    padding: 10px 0;
    font-size: 33px;
    color: rgb(239, 165, 0);
    margin: 10px 0 0 30px;
  }
  span{
    font-weight: 400;
    text-align: left;
    font-size: 30px;
    color:var(--color2);
  
  }
  
  .linea {
    background: var(--color4);
    height: 3px;
    width: 35%;
    display: block;
  }
  .container{
    width: 95%;
    grid-gap: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .container .contact-info{
      padding: 10px;
      margin-top: 15px;
      margin-bottom: 30px;
      
  }
  .contact-info h2{
    margin: 20px 0 0 20px;
  }
  .contact-info .column-txt{
    width: 70%;
    margin: 10px 0 0 30px;
    text-align: justify;

  }
  .contact-info img{
    height:15px;
    width:15px;
    margin-right: 5px;
    
   
    
  
  }

  form{
      margin-top:20px ;
      padding: 15px;
      padding-top: 0;
      
  }
  label,input, textarea{
      display: block;
      width: 100%;
      border: none;
      resize: none;
  }

  input{
      padding: 10px;
      margin-bottom: 10px;
  }
 textarea{
      min-height: 100px;
      min-width: 100%;
      max-width: 100%;
      max-height: 200px;
      font-size: 16px;
      
  }
  .formulario-btn{
      border: none;
      background: var(--color4);
      height: 40px;
      width: 90px;
      color: rgb(255, 255, 255);
      font-size: 1em;
      cursor: pointer;
      margin-top: 15px;
      
     
  }

  @media screen and (max-width:760px){
    .linea{
        width: 70%;
    }
    
    .contact-info .column-txt{
        width: 80%;
        margin: 10px 0 0 30px;
        text-align: justify;
    
      }
      .contact-info{
          border-right: 1px solid var(--color4);
          border-bottom: none;
      }
     input{
        padding: 10px;
        margin-bottom: 10px;
    }
    .formulario-btn{
        margin-top: 15px;
    }

  }
  @media screen and (max-width:580px){

      .linea{
          width: 95%;
      }
      .contact-info .column-txt{
        width: 95%;
        margin: 10px 0 0 30px;
        text-align: justify;
    
      }
      .contact-info{
        border-right: none;
        
    }
      form{
          margin-top: 0;
      }
    .formulario-btn{
        margin-top: 15px;
    }

  }
