
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


*{
  margin: 0;
  padding: 0;
 
  
}


body{
  box-sizing: border-box;
 
}

section{
  font-family: "Poppins", sans-serif;
  padding: 100px 240px;
  box-sizing: border-box;

  
}


/************************
     el encabezado
*************************/
header{
  font-family: "Poppins", sans-serif;
  background: #3586FF;
  box-sizing: border-box;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
  position: fixed;
}


.logo{  /* abarca la imagen de base de datos y la marca */
    display: flex;
    align-items: center;
}


header .base{
  
  height: 50px;
  width: 50px;
    
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  
  
}

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}


/************************
 termina el encabezado
*************************/

/************************
 IMAGEN DE FONDO, LETRAS
*************************/



.home{                /* home es la imagen de fondo*/
  position: relative;
  width: 70%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  min-height: 70vh;
  *background: #2696E9; /*fondo por si acaso*/
  *background: #3586FF;    
}

.home .content{
    bottom: 0;  /*letra LA EMPRESA*/
    left: 15px;
    position: absolute;
    z-index: 99;
}
.home .content h1{
  
  
  color: #3586FF;
  font-size: 2.7em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 75px;
  text-shadow: black 0.1em 0.1em 0.2em    
    
    
  
}




/************************
 FIN IMAGEN DE FONDO, LETRAS
*************************/

/************************
     las redes sociales
*************************/

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  *flex-direction: column;
  transition: 0.5s ease;
  top: 30px;
 
}

.home .media-icons a{
  color: skyblue;
  font-size: 1.6em;
  transition: 0.3s ease;
  margin: 0 10px;
  
  
}

.home .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media-icons a:hover{
  transform: scale(1.3);
}



/******************************
    fin de  las redes sociales
******************************/


/******************************
    IMAGENES DE ABAJO
******************************/

.imagenes{
    width: 70%;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin-bottom: 150px;
}
.imagenes img{
    
    width: 400px;
    height: 300px;
    
    *margin: 0 20px;
}


/******************************
    FIN DE IMAGENES DE ABAJO 3
******************************/

/******************************
    MEDIA QUERY 1294PX
******************************/



@media (max-width: 1294px){
 .home{                
  width: 100%;
  
  
}     
    
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  
  }
    
  .imagenes{
       
        width: 100%;
        
        flex-wrap: wrap;
        
    }
.imagenes img{
        width:30%;
        margin: auto;
        
    }    

}


@media (max-width: 1040px){
  .home{                
  width: 100%;
  
  
}       
    
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    z-index: 900; /*lo puse porque habia problemas, se ponia debajo*/
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(../images/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(../images/cerrar.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
    
    .imagenes{
        width: 100%;
        
      
        
    }
.imagenes img{
        width:30%;
        
        
    }
    
}

@media (max-width: 560px){
    
    
 .home{                /* home son los videos y palabras del centro */
  
  width: 100%;
  
  
}  
    
.imagenes{
        width: 90%;
        background: red;
        flex-wrap: wrap;
        
    }
.imagenes img{
        width:100%;
        
    }}
    
 
/******************************
    TERMINA MEDIA QUERY 1294PX
******************************/






/******************************
    aqui empieza el CUERPO
*******************************/
#cuerpo{
 
  background: #ddd;
  display: flex;
  justify-content:space-evenly;
  
}

#cuerpo h3{
  color:midnightblue; 
    text-decoration-line: underline;
  
}

#cuerpo h2{
    
     color: midnightblue;
     text-align: center;
}

#cuerpo h4{
  color: blue;
  font-size: 20px;
  text-align: center;
  
}

#cuerpo h5{
   
  color: white;
  font-size: 14px;
  text-align: center;
  
}

#cuerpo .bienvenida{
  padding: 0 20px;
  width: 100%;
  *background: red;
  
}







/******************************
    aqui termina el CUERPO
*******************************/





@media (max-width: 560px){
  #cuerpo{
    flex-wrap:wrap;
  }

#cuerpo .bienvenida{
  
  width: 90%;
  
}
    

 }


/***************************
 EL FORMULARIO COMIENZA  AQUI
****************************/



.fecha {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

h1{ 
    
    text-align: center;
    font-size: 35px;
    color: blue;
}

form{
    
    width: 400px;
    margin:auto;
    background: rgba(0,0,0,0.4);
    
    padding: 20px 20px;
    border-radius: 7px;
    *filter: drop-shadow(0 0 16px grey);
    *box-shadow: 10px 5px 5px grey;

}

.envio input, textarea {
    
    
    font-family: "Poppins", sans-serif;
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 15px;
    
    
          
}


.pre{
    
    width: 100%;
    margin: auto;
    
    
}
.pre input {
   width: 5%;
   margin-bottom: -35px;
     
}

.pre p{
    font-family: 'Barlow Condensed', sans-serif;   
    margin-left: 20px;
    font-size: 1.1em;
    color:white;
    
    
    
    
}


.area2 textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 15px;
    
    min-height: 80px;
    max-height: 80px;
    max-width:100%; 
}


#boton{
    width: 100%;
   
   
    background: #3586FF;
    color: #fff;
    padding: 20px;
    filter: drop-shadow(0 0 16px grey);
}

#boton:hover{
    
    cursor: pointer;
    
    
}
@media (max-width:480px) {
    form{
        width: 90%;
    } 
    
    .pre p{
    font-family: 'Barlow Condensed', sans-serif;   
    margin-left: 20px;
    font-size: 0.8em;
    color:white;
    
    
    
    
}
    
    
}


/***************************
 EL FORMULARIO TERMINA
****************************/

.mapa {
   
    margin-top: 100px;
    display: flex;
  justify-content:space-around;
  
}

.mapa iframe{
    margin-left: auto;
    margin-right: auto;
}

/*********************************
*** AQUI EMPIEZA EL FOOTER ******
**********************************/



footer{
  font-family: 'Barlow Condensed', sans-serif;
  *font-family: 'Lato', sans-serif;
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding-bottom: 20px;
  *display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}

.social_icon{
  z-index: 500;
}

footer .social_icon, footer .menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  
}

footer .social_icon li, footer .menu li{
  
  list-style: none;
}

footer .social_icon li a {
  
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  
}

footer .social_icon li a:hover{
  transform: translateY(-10px);
}


footer .menu li a {
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
}

footer .menu li a:hover{
  opacity: 1;
}

footer p{
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
  
}


footer .wave{
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../images/wave.png);
  background-size: 1000px 100px;
  
}

footer .wave#wave1{
  z-index: 10;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}


footer .wave#wave2{
  z-index: 9;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3{
  z-index: 10;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave 3s linear infinite;
}


footer .wave#wave4{
  z-index: 9;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave_02 3s linear infinite;
}



@keyframes animateWave{
  0%{
    background-position-x: 1000px;
  }
  
  100%{
    background-position-x: 0px; 
  }
  
  
}


@keyframes animateWave_02{
  0%{
    background-position-x: 0px;
  }
  
  100%{
    background-position-x: 1000px; 
  }
  
  
}

/*********************************
*** AQUI ACABA EL FOOTER ******
**********************************/



  