
@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 270px;
  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 300px;
  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
*************************/





.home{               
  position: relative;
  width: 70%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #2696E9;
   margin-left: auto;
  margin-right: auto;    
}

.home:before{
  margin:auto;    
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
 
  z-index: 888;
  color: #fff;
  width: 100%;
  margin-top: 50px;
  margin-left: -150px;    
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h1{
  
  font-size: 3.5em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 75px;
  margin-bottom: 40px;
}

.home .content h1 span{
  font-size: 1em;
  font-weight: 500;
}

.home .content p{
  margin-bottom: 65px;
  
}

.home .content a{
  background: #fff;
  padding: 15px 35px;
  color: #1680AC;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
}


/************************
     las redes sociales
*************************/

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  *flex-direction: column;
  transition: 0.5s ease;
  top: 100px;
 
}

.home .media-icons a{
  color: #fff;
  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
******************************/


.home img{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/******************************
    aqui empieza el CUERPO
*******************************/
#cuerpo{
  background: #ddd;
  display: flex;
  justify-content:space-between;
  
}

#cuerpo h3{
  color: blue;
       
  
}

#cuerpo .bienvenida{
  padding: 0 20px;
  width: 60%;
  *background: red;
  
}

#cuerpo .enlaces{
  padding: 0 20px;
  display: flex;
  *background: yellow;
  width: 40%;
  flex-direction: column;
 
}

#cuerpo .enlaces a{
  padding-left: 100px;  
}

#cuerpo .enlaces h3{
  padding-left: 100px;  
}

#cuerpo .enlaces a:hover{
  text-decoration: none;
  font-weight: 500;
  color:red;
  
}



@media (max-width: 560px){
  #cuerpo{
    flex-wrap:wrap;
  }

#cuerpo .bienvenida{
  
  width: 100%;
  
}

#cuerpo .enlaces{
    
    
  margin-top: 60px;
  display: flex;
  width: 90%;
  flex-direction: column;
 
} 
    
#cuerpo .enlaces a{
  padding-left: 0px;  
}

#cuerpo .enlaces h3{
  padding-left: 0px;  
}    
    

}


/******************************
    aqui termina el CUERPO
*******************************/


/******************************
   MEDIAS QUERRRRYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
******************************/



@media (max-width: 1600px){
    header{
          padding: 15px 200px; 
    
    }}
@media (max-width: 1406px){
    
    
    .home{
        width: 100%;}
    
    .home .content{
        margin-left: 0;
    }
       
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 100px;
  }

}




@media (max-width: 1040px){
    section{
        padding: 100px 200px;
    }
    
      .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;
  }
    #cuerpo .enlaces a{
  padding-left: 10px;  
}

#cuerpo .enlaces h3{
  padding-left: 10px;  
} 
    
}

@media (max-width: 560px){
    
      .home{
        width: 100%;}
  .home .content h1{
    font-size: 2.4em;
    line-height: 60px;
  }
  

}
  


/******************************
    aqui termina el encabezado
*******************************/




/*********************************
*** 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 ******
**********************************/