@charset "UTF-8";
/*? Variables con las fuentes principales para el sitio */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Graduate&display=swap");
/*! MIXINS */
/** Mixin para declarar "widht" y "height" */
/** Mixin para desplazar elementos */
/** Mixin para estilos dentro del background */
/** Mixin para objetar imagenes */
/** Mixin para declarar una perspectiva */
/** Mixin para declarar display */
/** Mixin para declarar una alineacion */
/*? Variables con los colores principales dentro del sitio */ /*? Mapa creado para darle estilo a los iconos */
/*? Varible que contiene 1rem, se podra utilizar para darle tamaño a lo que sea */
/*! - ESTILOS GENERALES - */
/** CSS Valores por defecto */
* {
  margin: 0;
  padding: 0;
}

.row {
  align-items: center;
  justify-content: space-around;
}

/** Fuentes para las letras */
h1 {
  font-family: "Graduate", "cursive";
}

h2 {
  font-family: "Graduate", "cursive";
}

h3 {
  font-family: "Graduate", "cursive";
}

p {
  font-family: "Montserrat", sans-serif;
}

/*TODO --- HEADER --- */
/** Se aplica una posicion estatica al header, se le declara un tamaño fijo al logo y se le define tanto colo como fuente a las letras dentro del nav */
header {
  position: sticky;
  top: 0px;
  z-index: 3;
}
header img {
  width: 70px;
  height: none;
  margin-left: 0.5rem;
}
header a {
  color: #fff;
  font-family: "Graduate", "cursive";
}

/** Se le modifica el color al sub-menu y se le aplica un color a las letras dentro del mismo */
.dropdown-menu {
  background-color: #000;
}
.dropdown-menu li a {
  color: #fff;
}

/*TODO --- MAIN --- INICIO --- */
/*? Seccion 1 /
/** Carrusel principal */
.imgCarrusel {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.logoCarrusel {
  width: none;
  height: 20vh;
  position: relative;
  top: 240px;
  left: 0;
  right: 0;
  bottom: 0;
  animation: zoomInDown 2s; /* Animacion para el logo en el carrusel */
}

body h1, h2 {
  color: #fcd201;
}

/*? Seccion 2 /
/** Banner que se le aplicara a todas las paginas, se incluye un color blanco para todas las letras (color estandar) */
.bannerPrincipal, .bannerPrincipal2 {
  width: 100%;
  height: none;
  background-image: url(../img/banner/banner-main.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

/** Mismo banner anterior pero con un margen superior */
.bannerPrincipal2 {
  margin-top: 4rem;
}

/** Declaracion de tamaño para los logos, bordes y margenes */
.logos {
  width: 130px;
  height: 130px;
  border-radius: 1.5rem;
  margin: 1rem;
}

.descripcion a {
  text-decoration: none;
}
.descripcion a p {
  position: relative;
  top: none;
  left: none;
  right: none;
  bottom: 16px;
  font-size: 10px;
  color: #000;
  font-family: "Graduate", "cursive";
}

/** Se aplica un pequeño banner a la seccion de localizacion asi como tambien un tamaño fijo al mapa */
.bannerLocalizacion {
  width: 100%;
  height: none;
  background-image: url(../img/banner/banner-localizacion.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bannerLocalizacion h2 {
  padding-top: 1.5rem;
}
.bannerLocalizacion iframe {
  width: 100%;
  height: 350px;
}

/** Banner que se aplicara para las promociones las cuales estaran dentro de un carrusel */
.bannerPromoCarrusel, .bannerPromoCarrusel2 {
  width: 100%;
  height: 480px;
  background-image: url(../img/promociones/promo1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: none;
}

/** Mismas especificaciones que antes pero con la modificacion del banner para la segunda promocion */
.bannerPromoCarrusel2 {
  background-image: url(../img/promociones/promo2.jpg);
}

/** Se aplica un color a los titulos de las promociones */
.promo h2 {
  color: #fcd201;
}

/** Especificaciones para la seccion que contendra a las redes sociales, en la misma se aplica una posicion mediante FLEX, asi como tambien a los respectivos logos */
.redesSociales h2 {
  padding-top: 3rem;
}
.redesSociales div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: none;
  align-items: center;
  align-content: none;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.redesSociales div div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: none;
  align-items: center;
  align-content: none;
  padding-bottom: 3rem;
}
.redesSociales a {
  width: 130px;
  height: 130px;
  font-size: 85px;
  color: #fff;
  background-color: #000;
  border-radius: 2rem;
  margin: 1.5rem;
  transition: 0.2s;
}

/*TODO --- MAIN --- ACTIVIDADES --- */
/** Se aplica una alineacion a los elementos y se le declara un tamaño a las imagenes */
.actividades img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
}
.actividades h2 {
  color: #000;
}

/** Se crea una clase para los backgrounds que contendran a cada actividad */
.bgExterno {
  background-color: #000;
  border-radius: 1rem;
}
.bgExterno .bgInterno {
  background-color: #fcd201;
  color: #000;
  border-radius: 1rem;
  box-shadow: 0 0 5px #fcd201, 0 0 7px #fcd201, 0 0 13px #fcd201;
}
.bgExterno .bgInterno ul {
  font-family: "Montserrat", sans-serif;
}

/*TODO --- MAIN --- GALERIA --- */
/** GRIDS "GALERIA" - Tamaño de las imangenes con su transformacion y transicion mediante :HOVER */
.gridGaleria {
  display: grid;
  grid-template-areas: "img9 img9 img8 img7 img7" "img9 img9 img6 img6 img6" "img3 img4 img6 img6 img6" "img3 img4 img6 img6 img6" "img3 img2 img1 img1 img1" "img5 img5 img1 img1 img1";
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  padding: 40px 100px;
  justify-content: center;
  justify-items: none;
  align-items: none;
  align-content: none;
  grid-gap: 10px;
}
.gridGaleria img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}
.gridGaleria img:hover {
  transform: translateY(-0.3rem) scale(1.15);
  transition: 0.65s;
  z-index: 2;
  box-shadow: 0 0 5px #fff, 0 0 7px #fff, 0 0 15px #fff;
}

/** GRIDS Areas*/
.img1 {
  grid-area: img1;
}

.img2 {
  grid-area: img2;
}

.img3 {
  grid-area: img3;
}

.img4 {
  grid-area: img4;
}

.img5 {
  grid-area: img5;
}

.img6 {
  grid-area: img6;
}

.img7 {
  grid-area: img7;
}

.img8 {
  grid-area: img8;
}

.img9 {
  grid-area: img9;
}

/*TODO --- MAIN --- STAFF --- */
/** Se declara una posicion wrap para los retratos de los disntintos profesores */
.staff section section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  justify-items: none;
  align-items: center;
  align-content: none;
}
.staff .bgInterno {
  border-radius: 1rem;
  box-shadow: 0 0 5px #fcd201, 0 0 7px #fcd201, 0 0 13px #fcd201;
}
.staff img {
  border-radius: 1rem;
  padding: 5px;
  box-shadow: 0 0 5px #fcd201, 0 0 7px #fcd201, 0 0 13px #fcd201;
}

/*TODO --- MAIN --- CONTACTO --- */
/** Se le aplica colores a las diferentes tipografias, se especifica una posicion y alineacion dentro de la seccion que contendra al FORM asi como tambien un background que lo contendra para darle estilo */
.contacto p {
  color: #fff;
}
.contacto label {
  color: #000;
}
.contacto section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: none;
  align-items: none;
  align-content: none;
}
.contacto .backgroundForm {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px 0 rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  width: 75%;
  height: none;
}

/*TODO --- FOOTER --- */
/** Se aplica un banner - Se declaran posiciones mediante FLEX y alineaciones - Se modifica el tamaño del ultimo parrafo */
footer {
  background-image: url(../img/banner/banner-footer.jpg);
}
footer > section {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
footer > section div a {
  display: flex;
  flex-direction: wrap;
  justify-content: center;
  justify-items: none;
  align-items: center;
  align-content: none;
  margin-bottom: 1rem;
}
footer > section > p {
  font-size: 12px;
}

/*TODO --- RESPONSIVE DESIGN --- */
/*? Responsive -- Desktop -- */
@media only screen and (min-width: 1024px) {
  /*TODO --- HEADER --- */
  /** Efecto neon al posicionarse sobre el menu */
  .btn-neon {
    position: relative;
    display: inline-block;
    padding: 10px;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.2s;
  }
  .btn-neon:hover {
    background: #fcd201;
    box-shadow: 0 0 1px #fcd201, 0 0 4px #fcd201, 0 0 8px #fcd201;
    transition-delay: 0.5s;
    color: #000;
  }
  .btn-neon span {
    position: absolute;
    display: block;
  }
  .btn-neon #span1 {
    top: 0px;
    left: -100%;
    right: none;
    bottom: none;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fcd201);
  }
  .btn-neon:hover #span1 {
    left: 100%;
    transition: 0.5s;
  }
  .btn-neon #span3 {
    top: none;
    left: none;
    right: -100%;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fcd201);
  }
  .btn-neon:hover #span3 {
    right: 100%;
    transition: 0.5s;
  }
  .btn-neon #span2 {
    top: -100%;
    left: none;
    right: 0px;
    bottom: none;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fcd201);
  }
  .btn-neon:hover #span2 {
    top: 100%;
    transition: 0.5s;
    transition-delay: 0.25s;
  }
  .btn-neon #span4 {
    top: none;
    left: 0px;
    right: none;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fcd201);
  }
  .btn-neon:hover #span4 {
    bottom: 100%;
    transition: 0.5s;
    transition-delay: 0.25s;
  }
  /** Efectos neo al posicionarse sobre el submenu de Actividades */
  .dropdown-menu li:hover a {
    background: #fcd201;
    box-shadow: 0 0 1px #fcd201, 0 0 6px #fcd201, 0 0 12px #fcd201;
    color: #000;
  }
  /*TODO --- MAIN --- INICIO --- */
  /** Estilos en los logos de las redes que tendra solo Desktop*/
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .instagram:hover {
    background-color: rgba(255, 11, 182, 0.4039215686);
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .facebook:hover {
    background-color: rgba(36, 85, 247, 0.4235294118);
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .whatsapp:hover {
    background-color: rgba(34, 119, 0, 0.3843137255);
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .transferencia:hover {
    background-color: #fcd201;
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .efectivo:hover {
    background-color: #fcd201;
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
  .redesSociales div div:hover a {
    filter: blur(3px);
  }
  .redesSociales div div:hover a:hover i {
    transition: all 0.65s;
    transform: rotateY(360deg);
  }
  .redesSociales div div .credito:hover {
    background-color: #fcd201;
    transform: translateY(-4.8px) scale(1.05);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
    filter: none;
    color: #000;
    text-decoration: none;
  }
}
/*? Responsive -- Tablet -- */
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  /** Se implementa un media query donde se quita el logo en orientacion landscape */
  /** Se efectua un cambio de imagen la cual tiene un tamaño mas acorde a tablet */
  /*TODO --- MAIN --- GALERIA --- */
  /** GRIDS "GALERIA" */
}
@media only screen and (min-width: 600px) and (max-width: 1023px) and (orientation: landscape) {
  .logoCarrusel {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .bannerPrincipal, .bannerPrincipal2 {
    background-image: url(../img/banner/banner-main-800px.jpg);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .bannerLocalizacion {
    background-image: url(../img/banner/banner-localizacion-800px.jpg);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .bannerPromoCarrusel, .bannerPromoCarrusel2 {
    background-image: url(../img/promociones/promo1-800px.jpg);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .bannerPromoCarrusel2 {
    background-image: url(../img/promociones/promo2-800px.jpg);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  footer {
    background-image: url(../img/banner/banner-footer-800px.jpg);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .instagram {
    color: #000;
    background-color: rgba(255, 11, 182, 0.4039215686);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .facebook {
    color: #000;
    background-color: rgba(36, 85, 247, 0.4235294118);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .whatsapp {
    color: #000;
    background-color: rgba(34, 119, 0, 0.3843137255);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .transferencia {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .efectivo {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .redesSociales .credito {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .gridGaleria { /* Se modifia el Grid principal, en este caso se reducen las columnas y se cambian de lugar las imangenes para tener una mejor visualizacion. */
    display: grid;
    grid-template-areas: "img1 img2 img7 img7" "img6 img6 img3 img3" "img9 img4 img3 img3" "img5 img5 img5 img8";
    grid-template-columns: repeat(4, 1fr);
  }
}
/*? Responsive -- Smartphone -- */
@media only screen and (max-width: 599px) {
  /** Se reduce el tamaño de las letras para una mejor visualizacion en smartphones */
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  /** Se modifica el TOP del logo */
  .logoCarrusel {
    top: 190px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /** Se implementa un media query donde se quita el logo en orientacion landscape */
  /** Se efectua un cambio de imagen la cual tiene un tamaño mas acorde a smartphone */
  /*TODO --- MAIN --- GALERIA --- */
  /** GRIDS "GALERIA" */
}
@media only screen and (max-width: 599px) and (orientation: landscape) {
  .logoCarrusel {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .bannerPrincipal, .bannerPrincipal2 {
    background-image: url(../img/banner/banner-main-400px.jpg);
  }
}
@media only screen and (max-width: 599px) {
  .bannerLocalizacion {
    background-image: url(../img/banner/banner-localizacion-400px.jpg);
  }
}
@media only screen and (max-width: 599px) {
  .bannerPromoCarrusel, .bannerPromoCarrusel2 {
    background-image: url(../img/promociones/promo1-400px.jpg);
  }
}
@media only screen and (max-width: 599px) {
  .bannerPromoCarrusel2 {
    background-image: url(../img/promociones/promo2-400px.jpg);
  }
}
@media only screen and (max-width: 599px) {
  footer {
    background-image: url(../img/banner/banner-footer-400px.jpg);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .instagram {
    color: #000;
    background-color: rgba(255, 11, 182, 0.4039215686);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .facebook {
    color: #000;
    background-color: rgba(36, 85, 247, 0.4235294118);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .whatsapp {
    color: #000;
    background-color: rgba(34, 119, 0, 0.3843137255);
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .transferencia {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .efectivo {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .redesSociales .credito {
    color: #000;
    background-color: #fcd201;
    box-shadow: 10px 13px 5px 0px rgba(0, 0, 0, 0.5);
  }
}
@media only screen and (max-width: 599px) {
  .gridGaleria { /* Se modifia el Grid principal, en este caso se reducen las columnas y se cambian de lugar las imangenes para tener una mejor visualizacion. */
    display: grid;
    grid-template-areas: "img1 img2 img5" "img6 img6 img3" "img8 img7 img3" "img4 img9 img9";
    padding: 40px 10px;
    grid-auto-rows: 100px;
    grid-gap: 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}

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