@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Mono";
  src: url("../../fonts/Roboto_Mono/static/RobotoMono-Regular.ttf") format("truetype");
}
:root {
  background-color: #fff;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  width: 100vw;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

header {
  color: #fff;
  background-color: rgba(94, 51, 131, 0.8705882353);
}
header section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header section section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 3.5rem;
}
header section section div:first-child {
  display: flex;
  flex-direction: column;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header section section div:first-child div {
  align-self: center;
}
header section section div:first-child div:first-child img {
  height: 3rem;
  width: auto;
}
header section section div:nth-child(2) div h1 {
  font-size: 1rem;
  text-align: center;
}
header section section div:nth-child(2) div h1 a p {
  padding: 0.2rem 0;
  color: #fff;
}

/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  header section section div:first-child div:first-child img {
    height: 4.5rem;
    width: auto;
  }
  header section section div:first-child div:nth-child(2) div h1 {
    font-size: 1.8rem;
  }
}
/* Estilos para pantallas grandes */
@media screen and (min-width: 992px) {
  header {
    width: 100%;
  }
  header section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  header section section {
    display: flex;
    justify-content: space-evenly;
  }
  header section section div:first-child div:first-child img {
    height: 13vh;
    width: auto;
  }
  header section section div:nth-child(2) div h1 {
    margin: 0rem 3rem;
    font-size: 1.5rem;
    text-align: center;
  }
}
/* Estilos para pantallas pequeñas */
@media screen and (max-width: 575px) {
  .header_position {
    position: fixed;
    z-index: 999;
    bottom: 0%;
    left: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    bottom: 5rem;
    left: 0;
    background-color: rgba(94, 51, 131, 0.8705882353);
    width: 100%;
  }
}
/* Estilos para pantallas medianas */
@media all and (min-width: 576px) and (max-width: 991px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 5rem;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .menu ul {
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: rgba(94, 51, 131, 0.8705882353);
  }
}
/* Estilos para pantallas grandes */
@media all and (min-width: 992px) {
  .header_position {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100vw;
    height: 20vh;
  }
  .header_position section {
    position: relative;
    height: 100%;
  }
  .header_position section section {
    height: 100%;
  }
  .menu ul {
    position: relative;
    top: 0;
    right: 0;
    background-color: transparent;
  }
}
/* ********** Botón Menu de hamburguesa ********** */
.menu-btn {
  border: 0;
  cursor: pointer;
  background-color: transparent;
}

.menu-btn img {
  fill: transparent;
  height: 1.5rem;
  width: auto;
}

.none {
  display: none;
}

/* ********** Barra de navegación-Menú hamburguesa  ********** */
.menu {
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li {
  width: 100%;
  height: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu ul li:hover {
  background-color: #3ab9c8;
}
.menu ul li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
}
.menu ul li a > div:first-child {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.menu ul li a > div:first-child div img {
  padding-right: 1rem;
  height: 2.3rem;
  width: auto;
}
.menu ul li a > div:nth-child(2) {
  width: 50%;
  height: auto;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 300;
}

.menu.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .menu-btn img {
    fill: transparent;
    height: 3rem;
    width: auto;
  }
  .menu ul {
    justify-content: center;
    align-items: center;
  }
  .menu ul li {
    height: 4rem;
    padding: 0.3rem 0rem;
  }
  .menu ul li a {
    border-bottom: 0px;
  }
  .menu ul li a div {
    font-size: 2rem;
    font-weight: 300;
  }
  .menu ul li a div img {
    height: 3rem;
    width: auto;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
  .navbar {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu {
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
    height: 100%;
  }
  .menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 100%;
  }
  .menu ul:hover {
    background-color: transparent;
  }
  .menu ul li {
    color: transparent;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .menu ul li:hover {
    background-color: #3ab9c8;
  }
  .menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 0px;
  }
  .menu ul li a div {
    width: max-content;
    padding: 0vw 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu ul li a div:first-child {
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .menu ul li a div:first-child div img {
    height: 5vh;
    width: auto;
  }
  .menu ul li a div:nth-child(2) {
    width: fit-content;
    height: auto;
    text-align: center;
    font-size: 3vh;
    font-weight: 300;
  }
  .menu ul:last-child {
    padding-right: 0;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer section {
  width: 100%;
}
footer section:first-child {
  padding: 1rem;
  background-color: #f6a51e;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
footer section:first-child div:first-child img {
  height: auto;
  width: 5rem;
}
footer section:first-child div:nth-child(2) a {
  font-family: "Roboto";
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.4rem;
}
footer section:first-child div:last-child {
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer section:first-child div:last-child span {
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}
footer section:first-child div:last-child a {
  padding: 0rem 0.3rem;
}
footer section:first-child div:last-child a img {
  height: 1.5rem;
  width: 100%;
}
footer section:nth-child(2) {
  padding: 1rem 0rem;
  background-color: #3ab9c8;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
footer section:nth-child(2) div {
  padding: 0.5rem 0rem 0rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
footer section:nth-child(3) {
  padding: 1rem 2rem;
  background-color: #a8c83f;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
footer section:nth-child(3) div {
  padding: 0.5rem 0rem 0rem;
}
footer section:nth-child(3) div img {
  height: 2rem;
  width: auto;
}

.empty_footer {
  width: 100%;
  height: 5rem;
}

@media all and (min-width: 575px) {
  .empty_footer {
    display: none;
  }
}
/* Estilos para pantallas medianas */
@media screen and (min-width: 576px) and (max-width: 991px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 0.5rem;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 2.5rem;
    width: auto;
    padding-left: 4rem;
  }
  footer section:first-child div:nth-child(2) a {
    font-size: 2rem;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 0.3rem;
  }
  footer section:first-child div:last-child a img {
    height: 1.7rem;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 0.5rem 0rem;
  }
  footer section:nth-child(2) div {
    padding: 0.5rem 0rem 0rem;
    font-size: 0.8rem;
  }
  footer section:nth-child(3) {
    padding: 0.4rem 2rem;
  }
  footer section:nth-child(3) div {
    padding: 0.5rem 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 1.7rem;
    width: auto;
  }
}
/* Estilos para pantallas grandes */
@media only screen and (min-width: 992px) {
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer section {
    width: 100%;
  }
  footer section:first-child {
    padding: 1vh;
  }
  footer section:first-child div:first-child {
    width: 30%;
  }
  footer section:first-child div:first-child img {
    height: 8vh;
    width: auto;
  }
  footer section:first-child div:nth-child(2) a {
    color: #fff;
    font-size: 5vh;
  }
  footer section:first-child div:last-child {
    width: 30%;
  }
  footer section:first-child div:last-child a {
    padding: 0rem 1vw;
  }
  footer section:first-child div:last-child a img {
    height: 5vh;
    width: auto;
  }
  footer section:nth-child(2) {
    padding: 1vh 0rem;
  }
  footer section:nth-child(2) div {
    padding: 1vh 0rem 0rem;
    font-size: 1.8vh;
  }
  footer section:nth-child(3) {
    padding: 1vh 2vh;
  }
  footer section:nth-child(3) div {
    padding: 2vh 0rem 0rem;
  }
  footer section:nth-child(3) div img {
    height: 5vh;
    width: auto;
  }
}
.iniciar_sesion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin: 10vh 10vw;
}
.iniciar_sesion > div:first-child {
  background-color: #5e3383;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  border-color: #000;
  border-style: solid;
  border-width: 0.2rem;
  border-radius: 1rem 1rem 0rem 0rem;
}
.iniciar_sesion > div:first-child h2 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.iniciar_sesion > div:first-child img {
  height: 2rem;
  width: auto;
}
.iniciar_sesion > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  background-color: #ccc;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem 0.2rem;
}
.iniciar_sesion > div:nth-child(2) form {
  background-color: transparent;
  border-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 1rem;
  gap: 3vh;
}
.iniciar_sesion > div:nth-child(2) form div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.iniciar_sesion > div:nth-child(2) form div label {
  padding: 2vw;
  font-size: 1.5rem;
  color: #5e3383;
}
.iniciar_sesion > div:nth-child(2) form div input {
  font-size: 1.5rem;
  background-color: #eee;
  outline: none;
  padding: 10px 20px;
  border: solid 1px #481c6e;
  border-radius: 10px;
  transition: background-color 0.2s, border 0.2s, box-shadow 0.2s;
  color: #111;
  width: 70%;
}
.iniciar_sesion > div:nth-child(2) form div input:hover {
  background-color: #fff;
  border: solid 1px #eee;
  box-shadow: 0 0 4px rgba(235, 80, 255, 0.3098039216);
  cursor: pointer;
}
.iniciar_sesion > div:nth-child(2) form div input:focus {
  background-color: #fff;
  border: solid 0.1rem #eee;
  box-shadow: 0 0 0.3rem rgba(235, 80, 255, 0.3098039216);
  cursor: pointer;
}
.iniciar_sesion > div:nth-child(2) form div button {
  width: 70%;
  margin: 2vh 0vh;
  font-size: 1.5rem;
  background-color: #198754;
  outline: none;
  padding: 0.6rem 0.2rem;
  border: solid 1px #eee;
  border-radius: 0.5rem;
  transition: background-color 0.2s, border 0.2s, box-shadow 0.2s;
  color: #fff;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.iniciar_sesion > div:nth-child(2) form div button:hover {
  background-color: rgba(25, 135, 84, 0.5176470588);
  border: solid 1px #eee;
  box-shadow: 0 0 4px rgba(235, 80, 255, 0.3098039216);
  cursor: pointer;
}
.iniciar_sesion > div:nth-child(2) form div button:focus {
  background-color: rgba(25, 135, 84, 0.5176470588);
  border: solid 0.1rem #eee;
  box-shadow: 0 0 0.3rem rgba(235, 80, 255, 0.3098039216);
  cursor: pointer;
}
.iniciar_sesion > div:nth-child(2) form div p {
  padding: 0.2rem;
  text-align: center;
}
.iniciar_sesion > div:nth-child(3) {
  background-color: #3ab7c8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0rem;
  width: 100%;
  border-color: #000;
  border-style: solid;
  border-width: 0rem 0.2rem 0.2rem 0.2rem;
  border-radius: 0rem 0rem 1rem 1rem;
}
.iniciar_sesion > div:nth-child(3):hover {
  background-color: #a0e3ec;
}
.iniciar_sesion > div:nth-child(3):focus {
  background-color: #a0e3ec;
}
.iniciar_sesion > div:nth-child(3) a {
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.iniciar_sesion > div:nth-child(3) a img {
  height: 1.8rem;
  width: auto;
}

@media all and (min-width: 576px) and (max-width: 991px) {
  .iniciar_sesion {
    margin-top: 20vh;
  }
}
@media screen and (min-width: 992px) {
  .iniciar_sesion {
    width: 40vw;
    margin: 30vh 30vw 10vh 30vw;
  }
  .iniciar_sesion > div:first-child img {
    height: 4rem;
    width: auto;
  }
  .iniciar_sesion > div:nth-child(2) form {
    gap: 1vh;
  }
  .iniciar_sesion > div:nth-child(2) form div label {
    padding: 0.5vw;
    font-size: 1.2rem;
  }
  .iniciar_sesion > div:nth-child(2) form div input {
    font-size: 1.2rem;
    padding: 10px 20px;
    border: solid 1px #481c6e;
    border-radius: 10px;
    transition: background-color 0.2s, border 0.2s, box-shadow 0.2s;
    color: #111;
    width: 70%;
  }
}
.empty_header {
  width: 100%;
  height: 2rem;
  position: absolute;
  top: -5rem;
}/*# sourceMappingURL=iniciar_sesion.css.map */