@charset "UTF-8";
:root {
  /* tamaños pre */
  --SizeS: 1rem;
  --SizeM: 2.5rem;
  --SizeL: 5rem;
  --SizeXL: 10rem;
  /* colores */
  --negro: #393939;
  /* Tipografía */
  --primaria: "Montserrat", sans-serif;
  --secundaria: "Playfair Display", serif;
}

/* fuentes de uso */
@font-face {
  font-family: "Montserrat", sans-serif;
  src: url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Playfair+Display:ital@1&display=swap");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Playfair Display", serif;
  src: url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Playfair+Display:ital@1&display=swap");
  font-style: italic;
  font-weight: normal;
}
/* generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primaria);
  color: var(--negro);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fffdf6;
}

h1 {
  font-size: calc(2vw + 0.5vh + 2vmin);
  text-transform: uppercase;
  color: white;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.32);
  font-weight: 500;
  text-align: center;
}

h2 {
  font-size: calc(0.1vw + 1vh + 2vmin);
  font-weight: 100;
  text-align: center;
}

h3 {
  font-size: calc(1vw + 1vh + 2vmin);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

h4 {
  font-size: calc(1vw + 0.5vh + 2vmin);
  font-weight: 600;
  text-align: center;
}

h5 {
  font-size: calc(1vw + 0.5vh + 2vmin);
  font-weight: 400;
  text-align: center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

button {
  cursor: pointer;
  border: none;
}

/* grid */
.wrapper {
  max-width: 1140px;
  margin: auto;
  width: 100%;
  flex-wrap: wrap;
}

/* breakpoints */
@media (max-width: 1200px) {
  .wrapper {
    max-width: 90%;
  }
} 
.cookies {
  animation: barra 1s 3s forwards;
  opacity: 0;
  display: flex;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7882352941);
  position: fixed;
  bottom: 0;
  left: 0;
}
@keyframes barra {
  to {
    opacity: 1;
  }
}
.cookies-text {
  padding: 1em;
  text-align: center;
}
.cookies-text p {
  font-size: 1.7em;
  font-weight: 100;
}
.cookies-text a {
  color: red;
  text-decoration: underline;
}
.cookies-button {
  padding: 0.5em 1em;
  background: green;
  color: white;
  margin: 1em;
  font-size: 1.5em;
  border-radius: 0.2em;
}
.cookies.barra {
  display: none;
}

.build {
  height: 100vh;
  background-image: url(../img/hero-img.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.build-content {
  position: absolute;
  top: 0;
  padding: 3em 0;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
}
.build h1 {
  color: var(--negro);
}

.nav {
  background-color: rgba(57, 57, 57, 0.9098039216);
  width: 100%;
  height: 100vh;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.nav-list {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.nav.active {
  opacity: 1;
  visibility: visible;
}
.nav-li {
  color: white;
  font-size: 6em;
  cursor: pointer;
  display: contents;
  transition: all 0.5s ease;
}
.nav-li:hover {
  color: #106737;
}
.nav-li.menusa:hover .nav__submenu {
  opacity: 1;
  height: 1.5em;
}
.nav-li.menusa {
  margin-bottom: 0;
}

.header {
  background-color: rgba(255, 255, 255, 0.89);
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  height: 10em;
}
.header-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.header-nav {
  display: flex;
  flex-flow: row nowrap;
  gap: 2em;
}
.header-logo {
  padding: 1em;
}
.header-logo img {
  width: 100%;
  max-width: 20em;
}
.header-link {
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: 400;
}
.header a {
  color: var(--negro);
  cursor: pointer;
  transition: all 0.5s ease;
}
.header a:hover {
  color: green;
  -webkit-text-decoration: dashed;
          text-decoration: dashed;
}

.icons {
  font-size: 3em;
  position: fixed;
  right: 0;
  top: 0;
  padding: 0.5em 0.5em 0 0;
  z-index: 2;
}
.icons i {
  color: var(--negro);
  cursor: pointer;
  transition: all 0.5s ease;
}
.icons i:hover {
  color: green;
}
.icons i.burguer {
  display: none;
}
.icons i.burguer.light {
  display: none;
}
.icons i.cross {
  display: none;
  color: white;
  transition: all 0.5s ease;
}
.icons i.cross.light {
  display: block;
}
.icons i.light {
  display: none;
}
.icons .burguer, .icons .cross {
  font-size: 0.6em;
}

.banner {
  height: 100vh;
  background-image: url(../img/hero-img.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.banner-content {
  position: absolute;
  top: 35%;
  padding: 10em 5em;
  background-color: rgba(255, 255, 255, 0.6);
}
.banner-content h5 {
  text-align: left;
  margin-bottom: 0.1em;
  font-weight: 400;
}

.doble {
  display: flex;
  flex-flow: row wrap;
  min-height: 60em;
}
.doble-col50 {
  flex: 1;
  flex-basis: 40%;
}
.doble-left {
  width: 100%;
}
.doble-left.people {
  background-image: url(../img/people-blur.jpg);
  background-size: cover;
  background-position: center;
}
.doble-right {
  width: 100%;
}
.doble-right.students {
  background-image: url(../img/students-blur.jpg);
  background-size: cover;
  background-position: center;
}
.doble-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 3em;
}
.doble-content img {
  width: 100%;
  max-width: 50em;
}
.doble button {
  background-color: #106737;
  color: white;
  padding: 1em;
  border-radius: 0.3em;
  margin-top: 2em;
  transition: all 0.5s ease;
}
.doble button:hover {
  filter: grayscale(1);
}
.doble button a {
  font-size: 1.5em;
  font-weight: 100;
}

.stats {
  flex-flow: row wrap;
  padding: 5em 2em;
  background-color: #fff7d2;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.stats-numbers {
  display: flex;
  justify-content: center;
  gap: 3em;
}
.stats-col50 {
  flex: 1;
  flex-basis: 40%;
  width: 100%;
}

.long {
  background-image: url(../img/empresa-blur.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
.long-text {
  padding: 3em 0 4em 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.long-text img {
  margin-bottom: 4em;
  width: 100%;
  max-width: 50em;
}
.long-cuadro {
  background-color: rgba(255, 255, 255, 0.4588235294);
  padding: 2em;
}
.long h2 {
  margin-bottom: 1em;
}
.long h5 {
  margin-bottom: 0.5em;
}

.footer {
  padding: 3em 0.5em 1em 0.5em;
}
.footer-logo {
  max-width: 15em;
  transition: all 0.5s ease;
}
.footer-logo:hover {
  opacity: 30%;
}
.footer button {
  background-color: var(--negro);
  color: white;
  padding: 1em;
  border-radius: 0.3em;
  margin-top: 1em;
  transition: all 0.5s ease;
}
.footer button:hover {
  background-color: #106737;
}
.footer-col50 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1.5em;
}
.footer-up {
  display: flex;
  flex-flow: row wrap;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 3em;
}
.footer-up li, .footer-up p {
  font-size: calc(0.5vw + 0.5vh + 1vmin);
  font-weight: 100;
  text-align: center;
}
.footer-up li {
  transition: all 0.5s ease;
}
.footer-up li:hover {
  color: green;
}
.footer-up :nth-child(2) {
  max-width: 30em;
}
.footer-sublist {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.footer-line {
  width: 0.1em;
  height: 10em;
  background-color: var(--negro);
}
.footer hr {
  margin: 2em 0;
}
.footer-down {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.footer-down p {
  font-size: calc(0.2vw + 0.5vh + 1vmin);
  font-weight: 100;
}
.footer-down img {
  max-width: 3em;
  transition: all 0.5s ease;
}
.footer-down img:hover {
  filter: grayscale(1);
}

.historia {
  background-image: url(../img/libros-blur.jpg);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.historia-text {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 0 3em 0 3em;
  margin-top: 10em;
  padding-bottom: 5em;
  background-color: rgba(255, 255, 255, 0.568627451);
}
.historia-text img {
  margin: 4em auto 4em auto;
  width: 100%;
}
.historia h1 {
  color: var(--negro);
  text-shadow: none;
  margin: 0.5em;
}
.historia h2 {
  margin-bottom: 1em;
}
.historia h5 {
  margin-bottom: 0.5em;
}
.historia button {
  background-color: var(--negro);
  color: white;
  padding: 1em;
  border-radius: 0.3em;
  margin: 1em auto 3em auto;
  background-color: #106737;
  transition: all 0.5s ease;
}
.historia button:hover {
  filter: grayscale(1);
}
.historia button a {
  font-size: 1.5em;
}
.historia-col50 {
  flex: 1;
  flex-basis: 50%;
}
.historia-col50 h2 {
  margin-bottom: 0em;
  font-size: calc(0.1vw + 1vh + 1.7vmin);
}
.historia-perfil {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 3em;
  margin: 0 auto 3em auto;
  padding: 0 5em 0 5em;
}

.sesiones {
  background-image: url(../img/clase2-blur.jpg);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.sesiones-text {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 0 3em 0 3em;
  margin-top: 10em;
  padding-bottom: 5em;
  background-color: rgba(255, 255, 255, 0.568627451);
}
.sesiones-text img {
  margin: 4em auto 4em auto;
  width: 90%;
}
.sesiones-text h1 {
  color: var(--negro);
  text-shadow: none;
  margin: 0.5em;
}
.sesiones-text h5 {
  margin-bottom: 0.5em;
}
.sesiones-text h2 {
  margin-bottom: 1em;
}

.contacto {
  background-image: url(../img/contacto-blur.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.contacto-text {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 0 3em 0 3em;
  margin: 10em auto 5em auto;
  background-color: rgba(255, 255, 255, 0.568627451);
}
.contacto-text img {
  margin-bottom: 4em;
  width: 90%;
}
.contacto-map {
  padding-bottom: 3em;
  height: 50em;
}
.contacto h1 {
  color: var(--negro);
  text-shadow: none;
  margin: 0.5em;
}
.contacto h2 {
  margin-bottom: 1em;
}
.contacto h5 {
  margin-bottom: 0.5em;
}
.contacto a {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
  .burguer {
    display: block;
  }
  .doble-col50 {
    flex-basis: 100%;
  }
  .stats-col50 {
    flex-basis: 100%;
  }
  .icons i.burguer {
    display: flex;
  }
  .doble-left.change {
    order: 2;
  }
  .banner {
    background-attachment: scroll;
    height: 60vh;
  }
  .doble-left,
  .doble-right {
    min-height: 35em;
  }
  .banner-content {
    top: 35%;
    padding: 2em 1em;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .long-cuadro {
    padding: 1em;
  }
  .long-text img {
    max-width: 20em;
  }
  .long-text.wrapper {
    padding: 2em;
  }
  .doble-content {
    padding: 2em;
  }
  .doble-content img {
    max-width: 30em;
  }
  .historia-perfil {
    flex-flow: column nowrap;
  }
  .footer-up :nth-child(3) {
    max-width: 15em;
  }
  .footer-down {
    flex-flow: column nowrap;
    gap: 1em;
  }
}
@media (max-width: 600px) {
  .header {
    height: 7em;
  }
  .header-logo img {
    max-width: 12em;
  }
  .doble-content button a {
    font-size: 1em;
  }
  .footer hr {
    margin: 1em 0;
  }
  .footer-up {
    flex-flow: column nowrap;
    align-items: center;
    gap: 2.5em;
  }
  .footer-down img {
    max-width: 2em;
  }
  .footer-down :nth-child(2) {
    gap: 0.5em;
  }
  .contacto-map {
    height: auto;
    aspect-ratio: 1;
  }
  .contacto-text {
    margin: 10em auto 3em auto;
  }
  .contacto-text {
    padding: 0 1em 0 1em;
  }
  .historia button a {
    font-size: 1em;
  }
  .historia-perfil {
    padding: 0;
  }
  .historia-col50 img {
    margin: 0 0 1.5em 0;
  }
  .historia-text {
    padding: 0 1em 0 1em;
  }
  .historia-text img {
    margin: 1em auto 2em auto;
  }
  .sesiones-text, .historia-text, .contacto-text {
    margin-top: 7em;
  }
  .sesiones-text {
    padding: 0 1em 0 1em;
  }
  .sesiones-text img {
    margin: 0em auto 2em auto;
  }
  .cookies p {
    font-size: 1.3em;
  }
  .cookies button {
    font-size: 1.3em;
  }
  .footer-up li {
    font-size: 1.5em;
  }
  .footer-up p {
    font-size: 1.3em;
  }
  .footer-down p {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */