/**
 *
 * OTHLI
 *
 */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background: #eee;
  color: #423f40;
}
@media only screen and (max-width: 529px) {
  .no-mobile {
    display: none !important;
  }
}
.redesSociales {
  align-items: center;
  background: #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-around;
  left: 15px;
  margin-top: 20px;
  padding: 15px;
  position: fixed;
  top: 30vh;
  z-index: 9999;
}
@media only screen and (max-width: 529px) {
  .redesSociales {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
  }
}
.redesSociales-link {
  text-decoration: none;
  font-size: 24px;
  color: #423f40;
  transition: all 0.2s ease-in-out;
}
.redesSociales-link:hover {
  color: #d90041;
}
.aside {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  position: fixed;
  top: 50vh;
  right: 12px;
  z-index: 9999;
  gap: 8px;
}
@media only screen and (max-width: 529px) {
  .aside {
    bottom: 5vh;
    justify-content: end;
  }
}
.aside-link {
  align-items: center;
  background: #d90041;
  border-radius: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  height: 80px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: 80px;
}
@media only screen and (max-width: 529px) {
  .aside-link {
    border-radius: 50%;
    width: 42px;
    height: 42px;
  }
  .aside-link .aside-link-icon {
    font-size: 24px;
  }
  .aside-link span {
    display: none;
  }
}
.aside-link:hover {
  background: #fff;
  color: #000;
}
.aside-link:hover .aside-link-icon {
  color: #d90041;
}
.aside-link-icon {
  font-size: 32px;
}
.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}
.headroom--top {
  position: relative;
}
.headroom--top .header-top {
  height: 100% !important;
}
.headroom--pinned {
  position: sticky;
  transform: translateY(0%);
}
.headroom--pinned .header-top {
  height: 0;
  overflow: hidden;
}
.headroom--unpinned {
  transform: translateY(-100%);
}
.header {
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.header-top {
  display: grid;
  grid-template-columns: 250px 1fr;
  transition: all 1s linear;
}
@media only screen and (max-width: 529px) {
  .header-top {
    grid-template-columns: 1fr;
  }
}
.header-top-logo {
  text-align: center;
  padding: 15px;
}
.header-top-menu {
  display: flex;
  justify-content: flex-end;
}
.header-top-menu .topMenu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  padding-right: 12px;
  justify-content: end;
  align-items: center;
}
.header-top-menu .topMenu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.header-top-menu .topMenu-item-icon {
  font-size: 24px;
  color: #a3bc34;
}
.header-top-menu .topMenu-item-link {
  text-decoration: none;
  color: #000;
  transition: all 0.1s linear;
}
.header-top-menu .topMenu-item-link:hover {
  color: #a3bc34;
}
.header-logo {
  width: 120px;
  display: inline-block;
}
.header-menu {
  background: linear-gradient(45deg, #bb45ff, #612285);
  border-bottom: 5px solid #a3bc34;
  position: relative;
  width: 100%;
}
.header-menu-mobile {
  text-align: center;
  padding: 8px 25px;
  display: none;
}
@media only screen and (max-width: 529px) {
  .header-menu-mobile {
    display: block;
  }
}
.header-menu-mobile select {
  padding: 8px 25px;
  background: transparent;
  border: 0;
  color: #fff;
  width: 100%;
}
.header-menu-mobile select optgroup {
  color: #000;
}
.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  padding-right: 12px;
  position: relative;
}
.menu-item {
  padding: 12px;
  position: relative;
  transition: all 0.1s linear;
}
.menu-item:hover,
.menu-item.active {
  background: #a3bc34;
}
.menu-item:hover .menu-item-link + .menu-sub {
  display: flex;
}
.menu-item:hover .menu-item-link + .menu-sub li {
  height: auto;
}
.menu-item-link {
  color: #ececec;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  transition: all 0.2s linear;
}
.menu-item-link:hover {
  color: #fff;
}
.menu-sub {
  display: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 150%;
}
.menu-sub li {
  height: 0;
  background: #a3bc34;
  transition: all 0.2s linear;
}
.menu-sub li:hover {
  background: #d90041;
}
.menu-sub li a {
  color: #fff;
  display: inline-block;
  font-weight: 400;
  padding: 15px;
  text-decoration: none;
}
#google_translate_element .goog-te-gadget-simple {
  background: #e0aaff;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
}
.wave {
  width: 100%;
  position: absolute;
  overflow: hidden;
  left: 0;
  line-height: 0;
  direction: ltr;
  z-index: 1;
  top: 0;
}
.wave path {
  fill: #fff;
}
.footer {
  background: #612285;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  position: relative;
}
@media only screen and (max-width: 529px) {
  .footer {
    flex-direction: column;
    padding: 45px 0;
  }
  .footer .footer-item {
    margin-bottom: 16px;
  }
}
.footer a {
  color: #eee;
  text-decoration: none;
  transition: all 0.1s linear;
}
.footer a:hover {
  color: #fff;
  text-decoration: dotted;
}
.footer-item {
  flex: 1 auto;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  width: 120px;
  padding: 15px;
}
.footer-logo img {
  display: inline-block;
  width: 100%;
}
.section {
  position: relative;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
}
.btn-grad {
  background-image: linear-gradient(to right, #da22ff 0%, #9733ee 51%, #da22ff 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}
.btn-grad:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.img-othli {
  width: 100%;
  border-radius: 15px;
  box-shadow: -25px 25px 0px #a3bc34;
  animation: zoomIn 1s linear, sombraOthli 5s ease infinite alternate-reverse;
}
.img-othli:hover {
  animation-play-state: paused;
}
@media only screen and (max-width: 529px) {
  .img-othli {
    box-shadow: none;
    animation: none;
  }
}
@keyframes sombraOthli {
  0% {
    box-shadow: -25px 25px 0px #d90041;
  }
  50% {
    box-shadow: -25px 25px 0px #612285;
  }
  100% {
    box-shadow: -25px 25px 0px #a3bc34;
  }
}
/* HOME */
#video {
  position: relative;
  z-index: 1;
  top: -215px;
}
@media only screen and (max-width: 529px) {
  #video {
    top: 0;
  }
}
.mapa {
  background: #fff url(../img/footer-bg.png) no-repeat fixed;
  background-position: -150px 20%;
  padding: 35px;
}
.mapa-title {
  font-size: 42px;
}
.mapa-google {
  padding: 15px;
  background: #eee;
  width: 100%;
  max-width: 560px;
  display: inline-block;
  border-radius: 25px;
}
.mapa-iframe {
  display: inline-block;
  width: 100%;
}
.news {
  background: #fff;
  padding: 115px 35px;
  top: -215px;
  box-shadow: 0 55px 0 #612285, 0 75px 0 #d90041, 0 145px 0 #a3bc34;
}
@media only screen and (max-width: 529px) {
  .news {
    top: 0;
  }
}
.news-container {
  display: flex;
  gap: 15px;
}
.new {
  background: #fff;
  flex: 0 0 auto;
  overflow: hidden;
  transition: all 0.3s linear;
  width: 320px;
}
.new:hover .new-title {
  text-decoration: underline;
}
.new:hover .new-img {
  filter: grayscale(0);
  transform: scale(1.01);
}
.new-img {
  display: block;
  width: 100%;
  height: 240px;
  border-radius: 5px;
  box-shadow: 0px 8px 5px #c1c1c1;
  filter: grayscale(0.95);
  transition: all 0.3s linear;
  object-fit: cover;
}
.new-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
}
.new-description {
  text-align: center;
  font-size: 18px;
  padding: 8px 8px 16px 8px;
}
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transition: all 0.2s linear;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fff;
  box-shadow: 0px 0px 0px 10px #fff;
}
.swiper {
  width: 100%;
  height: 100%;
}
.niveles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.nivel {
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
  color: #000;
  animation: backInDown 0.4s ease-in-out;
}
.nivel:hover .nivel-icono {
  animation: pulse 0.4s ease-in-out;
}
.nivel-titulo {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
.nivel-icono {
  text-align: center;
  margin-bottom: 16px;
}
.nivel-icono img {
  display: inline-block;
  width: 120px;
}
.spaces {
  margin: 135px 0 0 0;
  background: url(../img/our-spaces.png) no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
}
.spaces-container {
  flex: 1;
  max-width: 960px;
}
.spaces-google {
  display: inline-block;
  border-radius: 15px;
  width: 100%;
}
.spaces .section-title {
  color: #fff;
  text-align: center;
}
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 135px 0;
  background: #fff url(../img/fotos/27.JPG) no-repeat center fixed;
  background-size: cover;
  filter: grayscale(1) blur(2px);
  transition: all 0.3s linear;
}
.partners:hover {
  filter: grayscale(0);
}
.partners .section-title {
  color: #fff;
}
.partners-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}
.partner {
  position: relative;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.partner-img {
  display: inline-block;
  width: 80%;
}
.nosotros {
  padding: 125px 0;
}
.nosotros-item {
  display: flex;
  background: #dddeee;
  align-items: center;
  margin-bottom: 32px;
  gap: 15px;
  color: #000;
  border-left: 15px solid #a3bc34;
}
.nosotros-item:nth-child(2) {
  border-left-color: #d90041;
}
.nosotros-titulo {
  font-size: 32px;
  font-weight: 600;
  padding: 15px;
}
.nosotros-descripcion {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  flex-grow: 1;
}
.testimonios-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media only screen and (max-width: 529px) {
  .testimonios-container {
    grid-template-columns: 1fr;
  }
}
.testimonios-card {
  background: #eee;
  padding: 15px;
  transition: all 0.2s linear;
}
.testimonios-card:hover {
  background: #bb45ff;
}
.testimonios-card:hover .testimonio-img {
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
}
.testimonio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  text-decoration: none;
  color: #000;
  transition: all 0.2s linear;
}
.testimonio:hover {
  color: #fff;
}
.testimonio-img {
  height: 450px;
  transition: all 0.8s linear;
}
.testimonio-text {
  font-size: 32px;
  font-weight: 600;
  padding: 16px;
  text-align: centerP;
}
.galeria-fancybox {
  /**
	*  Thumbnails
	*/
  /* Align thumbnails on right side if not draggable */
}
.galeria-fancybox a[data-fancybox] img {
  cursor: zoom-in;
}
.galeria-fancybox .fancybox__container {
  flex-direction: column-reverse;
  --fancybox-color: #0d0c22;
  --fancybox-bg: #fff;
  --fancybox-thumbs-width: 80px;
  --fancybox-thumbs-ratio: 4 / 3;
  --carousel-button-bg: #f3f3f4;
  --carousel-button-border-radius: 8px;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 1.5;
  --carousel-button-svg-filter: none;
}
.galeria-fancybox .carousel__button.is-close {
  top: 36px;
  right: 26px;
  z-index: 30;
}
.galeria-fancybox .carousel__button.is-close:hover {
  background: #e7e7e9;
}
.galeria-fancybox .fancybox__slide {
  padding-top: 1.25rem;
}
.galeria-fancybox .fancybox__thumbs {
  padding: 0 100px 0 26px;
  border-bottom: 2px solid #f3f3f4;
}
.galeria-fancybox .fancybox__thumbs:not(.is-draggable) .carousel__track {
  justify-content: flex-end;
}
.galeria-fancybox .carousel__slide.has-thumb {
  padding: 30px 7px;
}
.galeria-fancybox .fancybox__thumb {
  border-radius: 4px;
  background-color: #e7e7e9;
}
.galeria-fancybox .is-nav-selected .fancybox__thumb {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ea4c89;
}
.galeria-fancybox .is-nav-selected .fancybox__thumb::after {
  display: none;
}
a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s linear;
}
a:hover {
  color: #d90041;
}
.read {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.read b {
  text-decoration: blink;
  text-decoration-color: #612285;
  text-decoration-line: underline;
}
.galeria {
  text-align: center;
  margin: 35px 0;
}
.titulo {
  font-weight: 900;
  font-size: 42px;
  border-bottom: 6px solid #a3bc34;
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 35px;
  position: relative;
}
.titulo::before {
  content: "";
  top: 100%;
  left: 0;
  width: 0;
  height: 8px;
  background: #612285;
  position: absolute;
  z-index: 1;
  animation: borderTitulo 3s ease-in-out 1s forwards;
}
@keyframes borderTitulo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.subtitulo {
  font-weight: 900;
  font-size: 24px;
  border-bottom: 6px solid #a3bc34;
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 35px;
}
.celulas {
  display: inline-block;
  width: 100%;
  max-width: 600px;
}
.directorios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 529px) {
  .directorios {
    grid-template-columns: 1fr;
  }
}
.directorio {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 0 0 16px 0;
  text-align: center;
}
.directorio-img {
  display: inline-block;
  width: 100%;
  height: 320px;
  margin-bottom: 12px;
  border-radius: 15px;
  background-size: cover;
  animation: fadeInLeft 1s linear;
}
.directorio-puesto {
  font-weight: 900;
  text-align: center;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.directorio-nombre {
  font-weight: 600;
  color: #612285;
}
.directorio-correo {
  text-decoration: none;
  color: #999;
  font-weight: 600;
  transition: all 0.2s linear;
}
.directorio-correo:hover {
  color: #d90041;
}
#mainCarousel {
  width: 600px;
  height: 50vh;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #170724;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2),
        0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  --carousel-button-svg-stroke-width: 2.5;
}
@media only screen and (max-width: 529px) {
  #mainCarousel {
    width: 100%;
    height: auto !important;
  }
}
#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
}
#mainCarousel .carousel__slide img {
  object-fit: cover;
  width: 100%;
}
#mainCarousel .carousel__button.is-prev {
  left: -1.5rem;
}
#mainCarousel .carousel__button.is-next {
  right: -1.5rem;
}
#mainCarousel .carousel__button:focus {
  outline: none;
  box-shadow: 0 0 0 4px #a78bfa;
}
#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 96px;
  height: 64px;
}
#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}
.btnCursos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
  border: 2px solid #fffeee;
}
@media only screen and (max-width: 529px) {
  .btnCursos {
    overflow-x: auto;
    background: #eee;
    padding: 15px;
    justify-content: flex-start;
  }
}
.btnCursos-btn {
  background-image: linear-gradient(to right, #b24592 0%, #f15f79 51%, #b24592 100%);
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  border: 0;
}
@media only screen and (max-width: 529px) {
  .btnCursos-btn {
    margin: 0;
    padding: 4px 12px;
  }
}
.btnCursos-btn:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.becas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px 10px;
  margin: 35px 0;
}
@media only screen and (max-width: 529px) {
  .becas {
    grid-template-columns: 1fr;
    gap: 70px 0;
  }
}
.beca {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.beca-nombre {
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
  border-bottom: 5px solid #6f1fcc;
}
.beca-img {
  width: 100%;
  max-width: 360px;
}
.beca-btn {
  background: #999;
  display: inline-block;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 15px;
  margin: 15px 0;
  color: #fff;
}
.beca-btn:hover {
  color: #eee;
}
.beca-btn.beca-btn-1 {
  background: #d6e234;
}
.beca-btn.beca-btn-2 {
  background: #ca2244;
}
.beca-btn.beca-btn-3 {
  background: #6f1fcc;
}
.beca-btn.beca-btn-4 {
  background: #2e356c;
}
