@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;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  min-width: 100%;
  background: #0b446f;
}
#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, 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;
  flex-direction: column;
  justify-content: center;
}
/*==================================================================================*/

/*UP CTN========================================================================*/

.ctn-up {
  width: 100%;
  height: 50%;
  justify-items: center;
  align-items: center;
  list-style: none;
  position: relative;
  transition: all 0.3s ease;
}
.ctn-up .active {
  opacity: 1;
  transform: scale(1, 1);
  z-index: 1;
  transition: all 0.3s ease;
}

.ctn-textintro {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ctn-textintro div {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
}
.ctn-textintro .active {
  opacity: 1;
}

.ctn-textintro div h2 {
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  color: #ffffff;
}

.ctn-textintro div p {
  width: 80%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-align: justify;
  color: #ffffff;
}

.ctn-text {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  transition: all 0.3s ease;
}

.ctn-text div {
  width: 60%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50px;
  background: #144064;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.ctn-text div h3 {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #ffffff;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.ctn-text div p {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

/*==================================================================================*/

/*DOWN CTN========================================================================*/

.ctn-down {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  transition: all 0.3s ease;
}

.ctn-down li {
  width: 20%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #0081d6;
  border-radius: 40px;
  background: #f6fcfc;
  text-align: center;
  cursor: pointer;
  font-size: 30px;
  transition: all 0.3s ease;
}
.ctn-down li:hover {
  transform: scale(1.05, 1.05);
}

.ctn-down .active {
  color: #ffffff;
  background: #0081d6;
}

/*==================================================================================*/
/*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);
}
/*------------------------------------------------------------------------------------*/
