@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap");

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

body{
  font-family: "Raleway", sans-serif;  
  max-width: 1920px;
  max-height: 1080px;  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 100vw;
  background: #0b446f;
  position: relative;
}
#particles-js{
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
/*------------------------------------------------------------------------------------*/
/*HEADER=============================================================================*/

header{
  width: 100vw;
  height: 10vh;    
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  background-color: #0E5389;
  z-index: 1;   
}

.menu-boton{  
  width: 10%;
  height: 100%;  
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-boton a{
  text-decoration: none;
  color: #FFF;
  font-size: 50px;
  border-radius: 50px;
  transition: all 0.3s ease;  
}
.menu-boton a:hover{
  transform: scale(1.2,1.2);   
}

.menu_ctn_logo{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menu_ctn_logo img{
  width: auto;
  height: 60%;
}

.menu__container{
  width: 40%;
  height: 100%;   
  list-style: none;
  display: flex;  
  justify-content: space-evenly;
  align-items: center;
}

.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.3s ease; 
}

.menu__container a:hover {  
  width: 20%;
  height: 100%;
  background-color: #ffffff;
  color: #0E5389;
  transition: all 0.3s ease;
}

/*BREADCRUMB CTN========================================================================*/
.ctn-breadcrumb{
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2%; 
  color: #FFFFFF; 
  font-size: 15px;
  font-weight: 700;
  background: rgba(0, 0, 0, .3);
}
.ctn-breadcrumb a{
  text-decoration: none; 
  color: #FFFFFF;
  transition: all 0.3s ease; 
}
.ctn-breadcrumb a:hover{
  color: #adadad; 
}

/*WINDOW CTN-------------------------------------------------------------------*/
.window-ctn{
  width: 100vw;
  height: 75vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all 0.5s ease;
}

.window-ctn-text{
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.window-ctn-text p{
  width: 87%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b446f;
  font-size: 32px;
  font-weight: 400;
  border-radius: 10px;
  background: #FFFFFF;
}

/*==============================================================================*/
.menu-ctn-mod{
  width: 100%;
  height: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}

.menu-ctn-mod a{
  width: 60%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
  background: #f6fcfc;
  color: #0b446f;
  font-weight: 700;  
  font-size: 30px;
  text-decoration: none;
  transition: all 0.3s ease; 
}
.menu-ctn-mod a:hover{
  transform: scale(1.05,1.05);  
  background: #0081D6;
  color: #FFFFFF;
}

/*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;
}

.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);
}

/*------------------------------------------------------------------------------------*/




















