




hr {
    display: none;
  }
  
  .wrapper {
    position: relative;
    height: 95vh;
  
    max-width: 1320px;
    display: flex;
    margin: 0 auto;
    justify-content: center !important; /*ajuste para centar el contenido de las columnas*/


  
  }
  
  .box-content {
    width: 33%;
    text-align: center;
    display: inline-block;
    height: auto !important;
 
    margin-top: 70px;
  }
  .footer .box-content {
      width: 33%;
      text-align: center;
      display: inline-block;
      height: auto !important;
      margin: 0px;
    }
  
  .footer .box-content p {
      padding: 0%;
      padding-left:5%;
      padding-right: 5%;
      
      text-align: center;
   
     
    }
  
    .icon {
      padding: 2%;
      padding-left:5%;
      padding-right:5%;
      
      text-align: justify;
  
    }
  
  .logo {
    margin: 8%;
  }
  
  .title {
    color: #34b5b8;
    text-align: center;
  }
  
  .box-content p {
    padding: 5%;
    text-align: justify;
    text-justify: inter-word;
    margin-top: 2%;
  }
  .img-full {
    max-width: 80%;
  }
  
  /*************Navegación header*************/
  
  .nav {
    height: 50px;
    width: 100% !important;
    background-color: #4d4d4d;
    position: absolute;
    margin-bottom: 50px;
    padding: 5px;

  
  }
  
  .nav > .nav-header {
    display: inline;
  }
  
  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px;
  }
  
  .nav > .nav-btn {
    display: none;
  }
  
  .nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
  }
  
  .nav > .nav-links > a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #efefef;
  }
  
  .nav > .nav-links > a:hover {
      background-color: #04AA6D;
    border-radius: 5px;
  }
  
  .nav > #nav-check {
    display: none;
  }
  
  .active {
      background-color: #04AA6D;
      color: white;
      border-radius: 5px;
  }
  
  @media screen and (max-device-width: 480px) {
   
     
  
    .box-content 
      {
      width: 92%;
    
      display: block;
      margin-top: 10px;
     
    }
  
    
  
   
  
    .wrapper {
      display: inline;
      max-width: 480px;
      height: auto;
    }
    hr {
      display: block;
    }
    
    .nav {
   
      position: relative;
     
   
    }
    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;
    }
    .nav > .nav-btn > label {
      display: inline-block;
      width: 50px;
      height: 50px;
      padding: 13px;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: black;
      z-index: 100 !important;
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 25px;
      height: 10px;
      border-top: 2px solid #eee;
    }
    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #333;
      height: 0px;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 50px;
      left: 0px;
    }
    .nav > .nav-links > a {
      display: block;
      width: 100%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
  }
  
  
  
  @media screen and (min-width: 481px) and (max-width: 1199px) {
  .box-content {
      width: 49%;
    
      display: inline-block;
      margin-top: 10px;
      
     
    }
    .wrapper {
      display: inline;
      max-width: 1199px;
      height: auto;
  
    }
  
    .nav {
      height: 50px;
      width: 100% !important;
      background-color: #4d4d4d;
      position: relative;
      margin-bottom: 50px;
      padding: 5px;
    
    }
  
  }
  
  
  /************* footer*************/
  
  .footer {
      position: relative;
      background-color: #4d4d4d;
      color: white;
    
      max-width: 1320px;
      display: flex;
      margin: 0 auto;
  }
  
  
  

  /************* Formulario*************/

form {
    padding: 2%;
    background-color: #E7E7E7;
    margin: 0 auto;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 10px;
    width: 100%;
}

form input {
    margin-bottom: 2%;
    width: 100%;
    padding: 3%;
    box-sizing: border-box;
    border: none;
    color: #525c66;
    resize: none;
}

.btn {
    background-color: #0095eb;
    padding: 10px 45px 10px 45px;
    border: 0;
    font-size: 1em;
    color: white;
    border-radius: 25px;
    margin: 1%;
}




.errors{
    text-align: left;
    color: red;
    background: aquamarine;
    border: radius 2px red;
}