@font-face {
    font-family: miFuente;
    src: url(https://cdn.glitch.global/b14e1f01-96d1-43c0-a614-db9a4dddb1e1/hk-grotesk.light.otf?v=1679071668772);
    font-weight: 500;
  }
/*
*{
    margin: 0;
    padding: 0;
}

.body{
    
    min-height: 100vh;
    width: 100%;
    display: flex;

}
.form{
    
    font-family: miFuente;
    background-color: #353F79;
    width: 90%;
    margin: auto;
    max-width: 400px;
    padding: 3.5em 1.5em; 
    margin-bottom: 50px;
    border-radius: 12px;
}
.form__container{
    
    font-family: miFuente;
    width: 100%;
    display: grid;
    gap: 1em;
    grid-auto-columns: 100%;
}
.form__title{
    font-family: miFuente;
    color: white;
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: .4em;
}
.form__input{
    font-family: miFuente;
    font-size: 1rem;
    padding: .8em 1em;
    outline: none;
    border: none;
    border: 1px solid #bbb0b0;
}
.form__input--message{
    font-family: miFuente;
    resize: none;
    padding: 1.8em 1em;
    margin-bottom: 1.5em;

}
.form__cta{
    font-family: miFuente;
    font-size: 1em;
    background-color: white;
    color: #353F79;
    border: none;
    padding: .7em 0;
    border-radius: .2em;
    cursor: pointer;

}
@media (max-width:450px){
    .form{
        padding: 3.5em 1.5em;
    }
}*/

  /**/
  /*Academicos*/
  

  /*Seccion los estudiantes estilos*/
  .titulo-contacto {
    font-family: miFuente;
    border-bottom: 4px solid #88be32;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    font-weight: 600;
    color: #192159;
    font-size: 35px;
    margin-bottom: 15px;
  }
  .cards-contacto{
    display: grid;
    overflow: hidden;
  }
  .contacto-cards{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
  }
  
  .card-contacto{
      overflow: hidden;
      background: #ffffff;
      color: #21201e;
      text-align: center;
      width: 290px;
      height: 350px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      
    
  }
  .card-contacto-title{
    font-size: 25px;
    padding-top: 75px;
    color :#192159;
  }
  
  .card-contacto i{
    padding-top: 25PX;
      scale:  2.8;
  }
  
  .card-contacto:hover i{
      scale:  2.5;
  }
  
  .card-contacto img {
      height: 200px;
      margin: 1rem;
      transition: all 0.3s;
  }
  





/* SECCION CONTACTO */
.contacto{
    font-family: miFuente;
    background-image: url("https://cdn.glitch.global/c56c0221-c5e1-44c7-82c1-12e481c4a5a3/Tecnolog%C3%ADa%20(27).png?v=1679926643959");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 50px 0;
}
.contacto .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.contacto h2{
    font-family: miFuente;
    font-size: 48px;
    text-align: center;
    padding: 20px 0;
}
.contacto .fila{
    display: flex;
}
.contacto .col{
    width: 50%;
    padding: 10px;
    position: relative;
}
.contacto .col input, .contacto .col textarea{
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    margin-bottom: 20px;
    color: #353F79;
    font-size: 18px;
}
.contacto button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 10;
}
.contacto button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #353F79;
    z-index: -1;
    transition: 1s;
}
.contacto button:hover .overlay{
    width: 100%;
}
.contacto .col img{
    width: 100%;
}
.contacto .col .info{
    font-family: miFuente;
    position: absolute;
    top: 45%;
    background-color: #353F79;
    padding: 30px;
    
    max-width: 550px;
    left: 50%;
    
    transform: translate(-50%, -50%);
}
.contacto .col .info ul{
    font-family: miFuente;
    list-style: none;
}
.contacto .col .info ul li{
    font-family: miFuente;
    margin-left: -40px;
    margin-bottom: 20px;
}
.contacto .col .info ul li i{
    color: #1CB698;
    display: inline-block;
    margin-right: 20px;
}

/* SECCION RESPONSIVE */
@media screen and (max-width:980px){
    nav{
        display: none;
    }
    .nav-responsive{
        display: block;
    }
    nav.responsive{
        display: block;
        position: absolute;
        right: 0;
        top: 75px;
        background-color: #252A2E;
        width: 180px;
    }
    nav.responsive ul{
        display: block !important;
    }
    nav.responsive ul li{
        border-bottom: 1px solid #fff;
        padding: 10px 0;
    }
}
@media screen and (max-width:700px){
   
    .contacto .fila{
        display: block;
    }
    .contacto .fila .col{
        width: 100%;
    }
}