@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

:root{
  --primary-color: #0b446f;
  --second-color: #0081D6;
}

body{
  font-family: "Raleway", sans-serif;
  max-width: 1920px;
  max-height: 1080px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 100%;
  background: var(--primary-color);  
}

#particles-js{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}

.header_gov{
  width: 100%;
  height: 60px;
  background-color: #3366CC;
}
/*------------------------------------------------------------------------------------*/
/*HEADER=============================================================================*/

header{
  width: 100%;
  height: 12vh;    
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu__container{
  width: 60%;
  height: 60%;   
  list-style: none;
  display: flex;  
  justify-content: space-evenly;
  align-items: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: var(--second-color);
  
  
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);  
}

.menu__container a{
  width: 20%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;  
  text-align: center;
  text-decoration: none;  
  color: #FFFFFF;
  font-size: 18px; 
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.5s ease;  
}

.menu__container a:hover {  
  width: 20%;
  height: 100%;
  background-color: #ffffff;
  color: var(--second-color);
  transition: all 0.5s ease;
}

/*------------------------------------------------------------------------------------*/
/*MAIN=============================================================================*/
main{
  width: 100%;
  height: 78vh; 
  display: flex; 
  align-content: center;
  justify-content: center; 
}

.main__ctn__text{
  width: 50%;
  height: 100%; 
  display: flex;   
  flex-direction: column; 
  justify-content: space-between;
  align-items: center;   
}

.main__ctn__text img{
  width: auto;
  height: 70%;
}

@keyframes animacion_titulo {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}

.main__ctn__text p{
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  padding: 0% 5% 0% 15%;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;    
  animation: animacion_texto 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;    
}

@keyframes animacion_texto {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.main__ctn__img{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main__ctn__img img{
  width: 60%;
  height: auto;
  margin: 1%;  
  filter: drop-shadow(0px 20px 5px rgba(0, 0, 0, .3));    
  animation: rotate-in-center 1s, animacion__img 2.5s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

@keyframes animacion__img {
   0% {
    transform: translateY(0px);    
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }  
}

@keyframes rotate-in-center {
  0% {
    transform: rotate(-360deg);    
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}

.main__ctn__img div{
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: center;
  align-items: center;   
}

.main__ctn__img div a{
  width: 20%;
  height: 80%;
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  border-radius: 50px;
  background: var(--second-color);
  transition: all .3s ease-in-out;
  animation: animacion_boton 1.5s both;
}

@keyframes animacion_boton {
  0% {    
    filter: blur(4px);
    opacity: 0;
  }
  100% {    
    filter: blur(0px);
    opacity: 1;
  }
}

.main__ctn__img div a:hover{    
  transform: translateY(-10px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);  
  background-position: 100%;    
}




/*------------------------------------------------------------------------------------*/
/*FOOTER=============================================================================*/
footer{
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.3);
}

.footer_ctn_logo{
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_ctn_logo img{
  width: 90%;
  height: auto;
  /* background: #0081D6; */
}

.footer_ctn_text{
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_ctn_text p{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px; 
}

.footer_ctn_social{
  width: 33%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer_ctn_social a{
  color: #FFFFFF;
  font-size: 40px;
  text-decoration: none;
  transition: all 0.3s ease; 
}
.footer_ctn_social a:hover{
  transform: scale(1.2,1.2);
}

/*------------------------------------------------------------------------------------*/

