@charset "UTF-8";
/*
    ⚡⚡ BREAKPOINTS ⚡⚡
    EM -> referencia a la fuenta base de la etiqueta contenedora
    1400px / 16px -> 87.5em
    1200PX / 16PX -> 75em
    992PX / 16PX -> 62em
    768PX / 16PX -> 48em
    576PX / 16PX -> 36em
    480PX / 16PX -> 30em
    320PX / 16PX -> 20em
*/
* {
  margin: 0;
  padding: 0;
}

html {
  /*
      1rem = 16px
      width: 91px -> 5.6875rem
      // ⚡⚡ transformarlo a 10px la fuente base 
      del root

      1rem = 10px
      width: 91px -> 9.1rem

      16px ===== 100%
      10px ----> 62.5%
  */
  font-size: 62.5%;
}
@media only screen and (max-width: 36em) {
  html {
    font-size: 50%;
  }
}

ul {
  list-style: none;
}

img {
  display: block;
}

a {
  text-decoration: none;
  display: inline-block;
}

/*
    font-family: 'Kaushan Script', cursive;
    font-family: 'Merriweather', serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto Slab', serif;
*/
.contenedor {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 62em) {
  .contenedor {
    max-width: 72rem;
  }
}
@media only screen and (max-width: 48em) {
  .contenedor {
    max-width: 54rem;
  }
}
@media only screen and (max-width: 36em) {
  .contenedor {
    padding: 0 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-italic {
  font-style: italic;
}

.btn {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0rem 4rem;
  border-radius: 0.5rem;
}

.btn-amarillo {
  color: white;
  background-color: #fed136;
  transition: all 0.3s;
}
.btn-amarillo:hover {
  background-color: #fdc302;
  transition: all 0.3s;
}

.titulo-n2 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
}

.resumen-n2 {
  font-family: "Merriweather", serif;
  font-size: 1.6rem;
  color: #6c757d;
  font-style: italic;
}

.titulo-n3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
}

.resumen-n3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 2.8rem;
}

.h-100 {
  height: 100%;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.section {
  background-color: whitesmoke;
  position: relative;
  align-items: center;
  display: flex;
}
.section a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.section__contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
  padding-left: 8rem;
  text-align: center;
  gap: 12rem;
}
@media screen and (max-width: 1200px) {
  .section__contenedor .section__contenedor__horario {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 800px) {
  .section__contenedor {
    font-size: 0.5rem;
    padding: 0;
    width: 100%;
    gap: 1rem;
    padding-left: 2rem;
    padding-top: 4px;
    font-size: 0.4rem;
  }
  .section__contenedor .section__contenedor__portal {
    right: 1rem;
  }
  .section__contenedor .section__contenedor__portal img {
    height: 6rem;
  }
  .section__contenedor .section__contenedor__horario {
    width: 25rem;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 500px) {
  .section__contenedor {
    font-size: 0.5rem;
    padding: 0;
    gap: 2rem;
    padding-left: 2rem;
    padding-top: 5px;
    font-size: 0.5rem;
  }
  .section__contenedor img {
    height: 3rem;
  }
  .section__contenedor i {
    font-size: 15px;
  }
  .section__contenedor .section__contenedor__horario {
    display: none;
  }
}
.section__contenedor__iconos {
  display: flex;
  font-size: 1rem;
  text-align: center;
  align-items: center;
  position: relative;
  gap: 1.5rem;
  color: blanchedalmond;
}
.section__contenedor__iconos :hover {
  color: aqua;
}
.section__contenedor__iconos i {
  font-size: 20px;
}
.section__contenedor__horario {
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section__contenedor__horario .aviso {
  font-weight: 700;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.section__contenedor__portal {
  display: flex;
  gap: 2rem;
  position: relative;
  right: 1rem;
}
.section__contenedor__portal :hover {
  transform: scale(1.1);
}
.section__contenedor__portal img {
  height: 7rem;
}

.footer {
  background-color: rgb(50, 52, 71);
  color: #fec503;
}
.footer .content .titulo {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.footer .content .titulo img {
  width: 10vh;
}
.footer .content .informacion .suport .medios .redes {
  font-size: 1.5rem;
}
.footer .content .informacion .suport .medios .redes .sms {
  color: #fff;
}
.footer .content .informacion .suport .medios .redes a p {
  color: #fff;
}
.footer .content .informacion .suport .atencion .horas {
  font-size: 1.5rem;
  color: aliceblue;
}
.footer .content .informacion .map .mapa {
  height: 35vh;
  border: 5px solid;
  border-radius: 5%;
  border-color: black;
}
@media screen and (max-width: 500px) {
  .footer .content .informacion .map .mapa {
    height: 280px;
    width: 280px;
  }
}

.link {
  background-color: rgb(231, 238, 235);
  text-align: center;
}
.link .sss .ccc .mmm {
  background-color: rgb(235, 245, 241);
}
.link .sss .ccc .mmm a {
  padding: 5px;
}
.link .sss .ccc .mmm a:hover {
  background-color: aliceblue;
}

.nav {
  position: absolute;
  padding: 0.7rem 0;
  width: 100%;
  background-color: #212529;
  transition: all 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 62em) {
  .nav {
    background-color: #212529;
    padding: 1rem 0;
  }
}
.nav__contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__contenedor img {
  position: relative;
  height: 13vh;
  right: 6rem;
  border-radius: 20%;
}
.nav__contenedor__menu {
  display: flex;
}
@media only screen and (max-width: 62em) {
  .nav__contenedor__menu {
    position: absolute;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
    top: 0;
    left: -200%;
    width: 50%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
    transition: all 0.3s;
    align-items: center;
    text-align: center;
  }
  .nav__contenedor__menu.mostrarMenu {
    left: 0;
    gap: 5rem;
    transition: all 0.3s;
  }
  .nav__contenedor__menu__item {
    position: relative;
    display: block;
    float: none;
    height: auto;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .nav__contenedor__menu__item:hover {
    transition: 0.3s;
    margin-bottom: 19rem;
  }
  .nav__contenedor__menu__item--link {
    display: flex;
    vertical-align: middle;
  }
  .nav__contenedor__menu__item--link--sub {
    left: 0;
    position: absolute;
    transition: clip-path 0.2s;
    transform: translateY(0);
  }
  .nav__contenedor__menu__item--link--sub .submenu {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0);
  }
  .nav__contenedor__menu__item--link--sub .submenu__action {
    list-style: none;
  }
}
@media only screen and (max-width: 62em) and (max-width: 500px) {
  .nav__contenedor__menu__item--link--sub .submenu__action {
    font-size: 0.5rem;
    color: red;
  }
}
.nav__contenedor__menu__item {
  list-style: none;
  position: relative;
  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.nav__contenedor__menu__item:hover {
  --transform: rotate(-90deg);
  --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.nav__contenedor__menu__item i {
  left: 1rem;
  position: relative;
}
.nav__contenedor__menu__item--link {
  color: whitesmoke;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 1rem 2.5rem;
  text-decoration: none;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  transition: all 0.3s;
}
.nav__contenedor__menu__item--link .dddd {
  transform: var(--transform);
  transition: transform 0.3s;
}
.nav__contenedor__menu__item--link:hover {
  color: #fec503;
  transition: all 0.3s;
}
@media only screen and (max-width: 62em) {
  .nav__contenedor__menu__item--link {
    font-size: 1.5rem;
  }
}
.nav__contenedor__menu__item--link--sub {
  clip-path: var(--clip);
  position: absolute;
  list-style: none;
  transition: clip-path 0.3s;
  bottom: 0;
  left: 1.9rem;
  width: max-content;
  transform: translateY(100%);
  background-color: #1b3044;
}
.nav__contenedor__menu__item--link--sub .submenu {
  padding: 13px 30px;
  text-align: center;
}
.nav__contenedor__menu__item--link--sub .submenu:hover {
  background-color: rgba(51, 142, 228, 0.37);
}
.nav__contenedor__menu__item--link--sub .submenu__action {
  color: whitesmoke;
  font-size: 1.3rem;
}
.nav__contenedor__menu__item--link--sub .submenu__action:hover {
  color: #fec503;
  transition: all 0.3s;
}
.nav__contenedor--btn {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  border: 0.1rem solid rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: 0.5rem;
  display: none;
  z-index: 1;
}
@media only screen and (max-width: 62em) {
  .nav__contenedor--btn {
    display: block;
  }
}
.nav.cambioNav {
  padding: 1rem 0;
  transition: all 0.3s;
}

.header {
  margin-top: 7rem;
}
.header img {
  height: 120vh;
}
.header .carousel-text {
  display: flex;
  padding-bottom: 30%;
  position: absolute;
  overflow: visible;
}
.header .carousel-text h5 {
  font-size: 5rem;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.header .carousel-text p {
  font-size: 3rem;
}
.header .headIm img {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 850px) {
  .header {
    padding-top: 1rem;
    padding-bottom: 0;
    height: 620px;
  }
  .header button {
    height: 620px;
  }
}
.header #carouselExampleInterval {
  height: 800px;
  position: relative;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 650px) {
  .header {
    height: 400px;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
  }
  .header span {
    width: 10px;
  }
  .header button {
    height: 400px;
  }
  .header img {
    height: 70vh;
  }
}
@media screen and (max-width: 400px) {
  .header {
    height: 300px;
    padding-top: 4rem;
    position: relative;
  }
  .header span {
    width: 10px;
  }
  .header button {
    height: 300px;
  }
  .header img {
    height: 50vh;
  }
}

.bio {
  background-image: linear-gradient(to right, rgba(135, 255, 245, 0.178) 20%, #fff 80%);
  padding-top: 5px;
  width: 100%;
  padding-bottom: 5px;
}
.bio__contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
.bio__contenedor__letter {
  text-align: unset;
  width: 40%;
  gap: 2rem;
}
.bio__contenedor__letter__content {
  position: relative;
  left: 5%;
}
.bio__contenedor__letter__content .icon {
  background-color: aqua;
  padding: 2px;
  width: 8rem;
  margin-top: 2rem;
}
.bio__contenedor__letter__content .title {
  padding-bottom: 2rem;
  font-size: 4rem;
}
.bio__contenedor__letter__content .descript {
  font-size: 2rem;
  width: 80%;
}
.bio__contenedor__letter__content .button {
  padding-top: 3.5rem;
}
.bio__contenedor__letter__content .button :hover {
  color: rgb(36, 160, 190);
}
.bio__contenedor__letter__content .button button {
  padding: 10px;
  padding-inline: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: aliceblue;
  border: 2px solid rgb(100, 201, 248);
  border-radius: 25px;
}
.bio__contenedor--im {
  width: 40%;
}
.bio__contenedor--im img {
  height: 500px;
  border-radius: 25px;
}
.bio__contenedor--im :hover {
  box-shadow: 0 0 10px black;
}
@media screen and (max-width: 900px) {
  .bio__contenedor {
    padding-top: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .bio__contenedor__letter {
    width: 100%;
  }
  .bio__contenedor__letter__content {
    left: 0%;
    position: relative;
    text-align: center;
    align-items: center;
  }
  .bio__contenedor__letter__content .descript {
    width: 100%;
  }
  .bio__contenedor__letter__content .icon {
    width: 37rem;
  }
  .bio__contenedor--im {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .bio__contenedor--im img {
    display: block;
    height: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .bio__contenedor--im img {
    height: 300px;
  }
}

.news {
  background-color: rgba(135, 255, 245, 0.178);
}
.news__contenedor h1 {
  padding-top: 1rem;
  font-size: 3rem;
  padding-bottom: 3rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight: 600;
}
.news__contenedor button {
  width: 5%;
}
.news__contenedor span {
  color: beige;
}
.news__contenedor .conter h5 {
  font-size: 2.2rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.news__contenedor .conter p {
  font-size: 1.4rem;
}
.news__contenedor .conter .card-footer {
  justify-content: space-between;
}
.news__contenedor .conter .card-footer a {
  text-decoration: none;
  color: rgb(0, 133, 173);
  font-size: 1.2rem;
}
.news__contenedor .conter .card-footer i {
  left: 0.5rem;
  position: relative;
  font-size: 1rem;
}

.mision {
  padding-top: 10rem;
  padding-bottom: 4rem;
}
.mision_portada {
  height: 50vh;
  background-image: url("../img/Foto-caja.jpeg");
  background-size: cover;
  background-position: center;
}
.mision_portada-text {
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  padding-top: 10rem;
  color: white;
  font-family: sans-serif;
}
.mision-content {
  padding-top: 4rem;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.mision-content h2 {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  color: rgb(221, 144, 50);
}

/*# sourceMappingURL=estilos.css.map */
