@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, 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;
}

.mod-ctn {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 27% 1fr 1fr;
  justify-items: center;
  align-items: center;
  transition: all 0.5s ease;
}

.mod-ctn a {
  width: 60%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  background: #f6fcfc;
  color: #0b446f;
  font-weight: 700;
  font-size: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.mod-ctn a:hover {
  transform: scale(1.05, 1.05);
  background: #0081D6;
  color: #ffffff;
}

.mod-text {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-column-start: 1;
  grid-column-end: 3;
  border-bottom: 5px solid #0081D6;
  border-left: 5px solid #0081D6;
  border-right: 5px solid #0081D6;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #105f9b;
}
.mod-text h3 {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
}
.mod-text p {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
}

/*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);
}

/*------------------------------------------------------------------------------------*/
