* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }

li {
  list-style-type: none; }

a {
  text-decoration: none;
  color: #555b6e; }

body {
  font-family: "Roboto", sans-serif;
  background: #f0f0f0; }
  body.hidden {
    overflow: hidden; }

.light {
  font-weight: 300; }

.medium {
  font-weight: 500; }

.logo {
  max-width: 620px;
  width: 100%;
  display: block;
  margin: auto; }

.container {
  max-width: 1185px;
  margin: 0 auto;
  width: 90%; }

@media screen and (min-width: 1024px) {
  .container {
    width: 95%; } }

.circle-border {
  border-radius: 200px; }

.intro-text {
  color: #555b6e;
  font-size: 13px;
  max-width: 650px;
  margin: 107px auto 90px;
  text-align: center;
  padding: 0 20px; }

@media screen and (min-width: 1024px) {
  .intro-text {
    font-size: 22px; } }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-top: 30px; }

@media screen and (min-width: 1024px) {
  .nav-wrapper {
    margin-bottom: 190px; } }

.overlay-close-menu {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease; }

@media screen and (min-width: 1024px) {
  .overlay-close-menu {
    display: none; } }

.mobile-menu {
  display: flex;
  width: 20px;
  height: 12px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 35px;
  cursor: pointer; }
  .mobile-menu:before {
    content: "";
    background: #89b0ae;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.25s, background 0.25s;
    transform-origin: bottom; }
  .mobile-menu:after {
    content: "";
    background: #89b0ae;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.25s, background 0.25s;
    transform-origin: bottom; }
  .mobile-menu .middle {
    background: #89b0ae;
    width: 100%;
    height: 2px;
    display: block;
    margin: auto; }

@media screen and (min-width: 1024px) {
  .mobile-menu {
    display: none; } }

.menu .avatar-menu {
  max-width: 28px;
  margin-right: 20px; }

.menu .link {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase; }

.menu ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  background: #89b0ae;
  top: 0;
  left: 0;
  padding: 115px 30px 30px 20px;
  bottom: 0;
  z-index: 1;
  width: 75vw;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  z-index: 2; }

.menu.is-open .mobile-menu {
  position: fixed; }
  .menu.is-open .mobile-menu:before {
    background: #fff;
    transform: rotate(45deg) translateY(7px); }
  .menu.is-open .mobile-menu:after {
    background: #fff;
    transform: rotate(-45deg) translate(1px, -6px); }
  .menu.is-open .mobile-menu .middle {
    opacity: 0; }

.menu.is-open ul {
  transform: translateX(0); }

.menu.is-open .overlay-close-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

@media screen and (min-width: 1024px) {
  .menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    position: relative;
    width: auto;
    transform: none;
    padding: 0; }
  .menu .avatar-menu {
    display: none; }
  .menu .item-link {
    position: relative; }
    .menu .item-link:not(:first-child):before {
      content: "";
      width: 1px;
      height: 20px;
      background: #555b6e;
      display: inline-block;
      align-items: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
    .menu .item-link:first-child .link {
      padding-left: 0; }
  .menu .link {
    color: #555b6e;
    font-size: 16px;
    padding: 0 10px;
    margin: 0;
    position: relative; }
    .menu .link:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      background: currentColor;
      top: 120%;
      left: 0;
      pointer-events: none;
      transform-origin: 100% 50%;
      transform: scale3d(0, 1, 1);
      transition: transform 0.3s; }
    .menu .link:hover:before {
      transform-origin: 0% 50%;
      transform: scale3d(1, 1, 1); } }

.flags {
  display: flex;
  align-items: center;
  margin-left: auto; }
  .flags .flag {
    margin-left: 10px; }

.intro-wrapper {
  border: 4px solid #89b0ae;
  position: relative; }

.logo-wrapper {
  background: #f0f0f0;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 70vw;
  padding: 0 10vw;
  top: -6vw; }

@media screen and (min-width: 1024px) {
  .logo-wrapper {
    padding: 0;
    top: -80px;
    max-width: 900px; } }

.visual {
  position: relative;
  width: 100%; }
  .visual::before {
    display: block;
    padding-bottom: 56%;
    content: "";
    background: url("../../img/loader.gif");
    background-repeat: no-repeat;
    background-position: top center; }
  .visual picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .visual img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%; }

#areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  padding: 50px 0; }

@media screen and (min-width: 1024px) {
  #areas {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px; } }

.visual-block {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.25s ease-out; }
  .visual-block:hover {
    box-shadow: 1px 1px 10px #ccc; }
    .visual-block:hover .image-area {
      opacity: 0.9; }
    .visual-block:hover .show-more {
      background: #9ad4c7; }

.image-area {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  transition: opacity 0.25s ease-in; }

.area-name {
  color: #89b0ae;
  text-transform: uppercase;
  font-size: 11px;
  padding: 37px 25px;
  text-align: center;
  margin: auto; }

@media screen and (min-width: 1024px) {
  .area-name {
    font-size: 16px; } }

.show-more {
  font-family: "Roboto", sans-serif;
  background: #bee3db;
  border: none;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding: 7px 10px;
  min-width: 112px;
  position: absolute;
  left: 50%;
  bottom: -15px;
  cursor: pointer;
  transform: translateX(-50%);
  transition: background 0.25s ease; }
  .show-more:hover {
    background: #acdbd1; }

.popup-areas {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease; }
  .popup-areas.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }

.popup-books {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease; }
  .popup-books.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto; }
  .popup-books .popup-title {
    top: 0;
    margin: 90px 0 50px; }

@media screen and (min-width: 1024px) {
  .popup-books .popup-title {
    margin: 30px 0 50px; } }

.libro-ejemplo {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 0 50px;
  color: #555b6e;
  font-size: 14px; }
  .libro-ejemplo:last-child {
    grid-column-start: 2; }

.contenido-libro-detalle {
  max-width: 184px; }

.foto-libro {
  max-width: 96px; }
  .foto-libro img {
    width: 100%; }

.books-wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 60px; }

@media screen and (min-width: 1024px) {
  .books-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 20px; } }

.area-popup-wrapper {
  max-width: 1040px;
  width: 90%;
  border-radius: 50px;
  background: #fff;
  z-index: 1;
  overflow: hidden;
  position: relative;
  margin: auto;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto; }
  .area-popup-wrapper .visual {
    height: 150px; }

@media screen and (min-width: 1024px) {
  .area-popup-wrapper .visual {
    max-height: 270px;
    height: initial; } }
    .area-popup-wrapper .visual:before {
      padding-bottom: 26%; }

.close-icon {
  cursor: pointer;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5%;
  right: 8%;
  z-index: 1; }

@media screen and (min-width: 1024px) {
  .close-icon {
    width: 25px;
    height: 25px;
    top: 30px;
    right: 40px; } }

.popup-title {
  background: #555b6e;
  text-align: center;
  border-radius: 200px;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding: 16px 36px;
  color: #fff;
  top: -30px;
  max-width: 690px;
  width: 80%; }

@media screen and (min-width: 1024px) {
  .popup-title {
    font-size: 20px; } }

.popup-description {
  max-width: 800px;
  width: 100%;
  margin: auto auto 80px;
  padding: 0 20px;
  font-size: 12px; }

@media screen and (min-width: 1024px) {
  .popup-description {
    font-size: 14px; } }

.close-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: fixed;
  height: 100%;
  cursor: pointer;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0; }

#equipo {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  border-radius: 60px;
  width: 100vw; }

@media screen and (min-width: 1024px) {
  #equipo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%; } }

.profile {
  padding: 110px 40px 50px;
  position: relative;
  background: #fff;
  text-align: center; }
  .profile:nth-child(1) {
    border-radius: 60px 60px 0 0; }
  .profile:nth-child(3) {
    border-radius: 0 0 60px 60px; }
  .profile:not(:first-child) {
    padding-top: 50px;
    padding-bottom: 50px; }

@media screen and (min-width: 1024px) {
  .profile {
    text-align: left;
    padding: 110px 40px 50px; }
    .profile:nth-child(1) {
      border-radius: 60px 0 0 60px; }
    .profile:nth-child(3) {
      border-radius: 0 60px 60px 0; } }
  .profile .title-container {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #555b6e;
    margin-bottom: 20px;
    justify-content: center; }
    .profile .title-container span {
      margin-left: 10px; }

@media screen and (min-width: 1024px) {
  .profile .title-container {
    justify-content: flex-start; } }
  .profile:nth-child(even) {
    border-top: 4px solid #f0f0f0;
    border-bottom: 4px solid #f0f0f0; }

@media screen and (min-width: 1024px) {
  .profile:nth-child(even) {
    border-right: 4px solid #f0f0f0;
    border-left: 4px solid #f0f0f0;
    border-top: 0;
    border-bottom: 0; } }

.profile-pic {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%); }

@media screen and (min-width: 1024px) {
  .profile-pic {
    left: initial;
    transform: none; } }

.team-description {
  font-size: 16px;
  color: #555b6e; }

.team-link {
  background: none;
  border: none;
  border: 2px solid #bee3db;
  width: 100%;
  display: block;
  color: #bee3db;
  text-transform: uppercase;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin: 10px 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
  .team-link.primary {
    background: #bee3db;
    color: #fff;
    margin-top: 70px; }
  .team-link:hover {
    background: #bee3db;
    color: #fff; }
    .team-link:hover.primary {
      background: #9ad4c7;
      border-color: #9ad4c7; }

#contacto {
  padding: 50px 0 0;
  width: 100vw; }

@media screen and (min-width: 1024px) {
  #contacto {
    width: 90%; } }

@media screen and (min-width: 1024px) {
  .map {
    border-radius: 80px;
    overflow: hidden; } }

.map img {
  width: 100%; }

.contact-info {
  background: #fff;
  color: #555b6e;
  border: 8px solid #f0f0f0;
  border-radius: 60px;
  padding: 26px 0;
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  top: -80px;
  line-height: 25px;
  max-width: 80vw; }

@media screen and (min-width: 1024px) {
  .contact-info {
    top: -120px;
    max-width: 640px; } }
  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px; }
  .contact-info p {
    font-size: 16px; }

footer {
  background: #89b0ae;
  color: #fff;
  text-align: center;
  padding: 30px 0; }
