@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-wrap: wrap;
}
/*==================================================================================*/

/*LEFT CTN - RIGHT CTN========================================================================*/

.ctn-left,
.ctn-right {
  width: 50%;
  height: 80%;
  position: relative;
}

.ctn-left div,
.ctn-right div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: scale(0, 0);
  transition: all 0.3s ease;
}

.ctn-right div span,
.ctn-left div span {
  width: 50%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0081d6;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ctn-right div span:hover,
.ctn-left div span:hover {
  transform: scale(1.05, 1.05);
  background: #0081d6;
  color: #ffffff;
  transition: all 0.3s ease;
}

.ctn-right div img,
.ctn-left div img {
  width: 80%;
  height: auto;
  border-radius: 50px;
  background: #17a1a5;
}

.ctn-right .active,
.ctn-left .active {
  opacity: 1;
  transform: scale(1, 1);
}

/*==================================================================================*/

/*DOWN CTN========================================================================*/

.ctn-down {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  list-style: none;
  box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.3);
  background: #0081d6;
  overflow: hidden;
}

.ctn-down li {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-align: justify;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
}

.ctn-down .active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}
/*==================================================================================*/
/*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);
}
/*------------------------------------------------------------------------------------*/
