*,
*::after,
*::before {
  box-sizing: border-box;
  color: black;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", "Arila", "Helvetica", sans-serif;
}

a,
a:active,
a:hover,
a:visited,
a:link {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  width: auto;
}

body,
html {
  background-color: #e4e4e3;
  scroll-padding: 150px;
  scroll-behavior: smooth;
}

.navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 1rem 2rem;
  background: white;
  z-index: 100;
}
.navbar__logo {
  padding: 0.1rem 0;
  height: 4rem;
}
.navbar__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.navbar__link {
  font-size: 0.9rem;
  transition: 0.3s all;
}
.navbar__link a {
  transition: 0.3s all;
}
.navbar__link a:visited,
.navbar__link a:link,
.navbar__link a:active {
  color: black;
}
.navbar__link a:hover {
  color: #a78f4f;
}

.navbar--hidden {
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
  background-color: white;
  transform: translateY(-10rem);
  transition: transform 0.5s;
}

.language {
  position: relative;
}
.language__button {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.language__button img {
  width: 1.25rem;
}
.language:hover .language__container {
  width: 17rem;
  height: 17rem;
  opacity: 1;
}
.language__container {
  position: absolute;
  right: 0;
  top: 1.5rem;
  background-color: white;
  padding: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  transition: 0.3s all;
}
.language__wrapper {
  max-height: 15rem;
  overflow: auto;
  padding: 0.5rem 0 0.5rem 2rem;
}
.language__lang {
  display: flex;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  justify-content: space-between;
  width: 100%;
}
.language__lang span:nth-child(2) {
  font-size: 0.9rem;
  color: #a78f4f;
  font-weight: bold;
  width: 2rem;
  display: inline-block;
  text-align: left;
}
.language__lang span:nth-child(1) {
  font-size: 1rem;
}
.language__lang:hover {
  background-color: rgb(225, 225, 225);
}
.language__search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}
.language__search img {
  width: 1.25rem;
}
.language__search input {
  border: none;
  border-bottom: 0.1rem solid rgb(202, 202, 202);
  padding: 0.25rem;
  font-size: 1rem;
  width: 100%;
  transition: 0.3s all;
}
.language__search input:focus {
  outline: none;
  border-bottom: 0.1rem solid #a78f4f;
}

.menu {
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  cursor: pointer;
}
.menu-burger {
  position: absolute;
  width: 2rem;
  height: 0.25rem;
  border-radius: 2rem;
  background-color: black;
}
.menu-burger::after, .menu-burger::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.25rem;
  border-radius: 2rem;
  background-color: black;
  transition: all 0.5s;
}
.menu-burger::before {
  transform: translateY(-0.5rem);
}
.menu-burger::after {
  transform: translateY(0.5rem);
}
.menu.open .menu-burger {
  background-color: transparent;
}
.menu.open .menu-burger::after {
  background-color: black;
  transform: rotate(45deg);
}
.menu.open .menu-burger::before {
  background-color: black;
  transform: rotate(-45deg);
}

.hidden-menu {
  display: none;
  position: fixed;
  top: 1.5rem;
  left: calc(100% - 1rem);
  transform: translate(-3rem, -10rem);
  transition: transform 0.5s;
}

.section {
  padding: 8rem;
}

.hero {
  padding: 20rem 8rem 12rem;
  min-height: 90vh;
  background-image: url("../assets/ecuador.jpeg");
  background-size: cover;
}
.hero__header {
  text-align: center;
  margin-bottom: 8rem;
  text-shadow: 0 0 1.5rem black, 0 0 5rem rgba(0, 0, 0, 0.8);
}
.hero__header h1 {
  color: white;
  font-size: 2.25rem;
}
.hero__header p {
  color: white;
  font-style: italic;
}

.cta_button {
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 5rem;
  border: none;
  outline: none;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: 0.3s all;
}
.cta_button:hover {
  background-color: #a78f4f;
}
.cta_button__wrapper {
  display: flex;
  align-items: center;
}
.cta_button--big_shadow {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.cta_button--brown {
  background-color: #a78f4f;
  color: white;
}
.cta_button--brown:hover {
  background-color: #84713f;
}
.cta_button--gray {
  background-color: #585a5b;
  color: white;
}

.vision_section {
  padding-top: 0;
  position: relative;
}
.vision_section svg {
  position: absolute;
  left: 0;
  bottom: 90%;
  width: 100%;
}

.icon_picture {
  width: 45rem;
  height: 45rem;
  position: absolute;
  z-index: 0;
  top: -2rem;
  right: 7rem;
  filter: grayscale(100%);
  opacity: 5%;
  top: 0;
  left: 0;
}

.target_picture {
  width: 13rem;
  height: 13rem;
  position: absolute;
  z-index: 5;
  top: -2rem;
  right: 7rem;
}

.vision_container {
  padding-top: 8rem;
  display: flex;
  position: relative;
  z-index: 5;
  gap: 2rem;
  align-items: center;
}
.vision_container__item:nth-child(1) {
  flex: 1;
}
.vision_container__item:nth-child(1) p {
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.125rem;
}
.vision_container__item:nth-child(1) .cta_button__wrapper {
  margin-top: 2rem;
}
.vision_container__item:nth-child(2) {
  flex: 0.8;
  background: white;
  padding: 2rem 4rem;
  border-radius: 4rem;
}
.vision_container__item:nth-child(2) p {
  font-size: 1.125rem;
  text-align: center;
  color: #6c6d70;
}
.vision_container__item:nth-child(2) p:nth-child(1) {
  padding-bottom: 2rem;
}
.vision_container__item:nth-child(2) b {
  color: #6c6d70;
}

.section__h2 {
  margin-bottom: 2rem;
}
.section__h2 span {
  display: block;
}
.section__h2 span:nth-child(1) {
  font-size: 3rem;
  font-weight: 400;
  line-height: 100%;
  color: #6c6d70;
}
.section__h2 span:nth-child(2) {
  line-height: 100%;
  font-size: 3.5rem;
  padding-left: 3rem;
  text-transform: uppercase;
  text-shadow: 0.2rem 0.2rem 0.25rem rgba(0, 0, 0, 0.5);
}
.section__h2--light span:nth-child(1),
.section__h2--light span:nth-child(2) {
  color: white;
}

.benefits {
  background-image: url("../assets/presentation1.jpg");
  background-size: cover;
}

.benefits_grid {
  max-width: 60rem;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.benefits_grid__item {
  background-color: white;
  border-radius: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.benefits_grid__item p {
  color: #6c6d70;
  font-size: 1.125rem;
}
.benefits_grid__item b {
  color: #6c6d70;
}
.benefits_grid__item img {
  width: 8rem;
  position: absolute;
  top: -5rem;
}
.benefits_grid__item:nth-child(even) {
  background-color: #a78f4f;
  position: relative;
  margin-top: 5rem;
  padding-top: 5rem;
}
.benefits_grid__item:nth-child(even) p,
.benefits_grid__item:nth-child(even) b {
  color: black;
}

.benefits_par {
  max-width: 60rem;
  margin: 5rem auto 2rem;
}
.benefits_par p {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.fees {
  padding-left: 0;
  padding-right: 0;
  background-color: white;
  background-image: url("../assets/background2.png");
  background-size: cover;
}
.fees header {
  padding-left: 8rem;
}

.fees_container {
  display: flex;
  margin: 5rem auto 0;
  position: relative;
  align-items: center;
}
.fees_container__item:nth-child(1) {
  background-color: #a78f4f;
  width: 100%;
  padding: 2.5rem;
  padding-right: 55%;
}
.fees_container__item:nth-child(1) p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.fees_container__item:nth-child(2) {
  position: absolute;
  width: 45%;
  right: 2.5rem;
  background-color: white;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.fees_container__item:nth-child(2) p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  text-align: center;
  color: #6c6d70;
}

.schedule {
  background-image: url("../assets/background.jpeg");
  background-size: cover;
}

.schedule_table {
  max-width: 60rem;
  margin: 2rem auto;
  background: white;
  padding: 3rem;
  border-radius: 2rem;
  text-align: left;
}
.schedule_table__th {
  vertical-align: top;
  font-weight: 400;
}
.schedule_table__th span {
  display: block;
}
.schedule_table__th span:nth-child(1) {
  text-transform: uppercase;
  color: #84713f;
  font-size: 1.25rem;
  font-weight: 500;
}
.schedule_table__td {
  padding: 0.5rem;
  font-size: 1.125rem;
  width: 40%;
}

.notice {
  background-color: white;
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
}
.notice p {
  font-size: 1.125rem;
  text-align: center;
  padding-bottom: 1rem;
}
.notice .cta_button__wrapper {
  position: absolute;
  bottom: -1.75rem;
}

.tools {
  background-image: url("../assets/deal.jpg");
  background-size: cover;
}

.tools_container {
  display: flex;
  position: relative;
  z-index: 5;
  gap: 2rem;
  align-items: center;
}
.tools_container__item:nth-child(1) {
  flex: 1;
}
.tools_container__item:nth-child(1) p {
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.125rem;
  color: white;
}
.tools_container__item:nth-child(1) .cta_button__wrapper {
  margin-top: 2rem;
}
.tools_container__item:nth-child(2) {
  flex: 0.8;
  background: white;
  padding: 2rem 4rem;
  border-radius: 4rem;
}
.tools_container__item:nth-child(2) p {
  font-size: 1.125rem;
  text-align: center;
  color: #6c6d70;
}
.tools_container__item:nth-child(2) p:nth-child(1) {
  padding-bottom: 2rem;
}
.tools_container__item:nth-child(2) b {
  color: #6c6d70;
}
.tools_container__list {
  font-size: 1.125rem;
}
.tools_container__list li {
  padding: 0.25rem 0;
  list-style: none;
  gap: 0.5rem;
  display: flex;
  align-items: center;
}
.tools_container__list li::before {
  content: "";
  display: block;
  background-image: url("../assets/marker.png");
  width: 2.5rem;
  height: 2.5rem;
  background-size: cover;
  background-repeat: none;
  flex: none;
}

.leadership {
  max-width: 60rem;
  margin: 2rem auto;
  text-align: center;
}
.leadership__par {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.leadership__par--bold {
  font-weight: bold;
}
.leadership__tiles {
  display: flex;
  margin: 4rem 0;
  gap: 2rem;
}
.leadership__tile {
  width: 100%;
}
.leadership__tile img {
  width: 100%;
}

.leadership_section {
  background: linear-gradient(#ffffff, #b7b8b8);
}

.leadership_info {
  background-color: white;
  padding: 4rem;
  margin: 3rem auto;
  border-radius: 50rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.leadership_info__item {
  display: flex;
  gap: 2rem;
  width: 80%;
}
.leadership_info__item:nth-child(2) {
  width: 100%;
}
.leadership_info__item div {
  flex: 1;
}
.leadership_info span {
  font-size: 5rem;
  color: white;
  font-weight: bold;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: #a78f4f;
  display: grid;
  place-content: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.leadership_info h3 {
  font-size: 1rem;
}
.leadership_info p {
  font-size: 1rem;
}

.password_modal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password_modal__box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 30rem;
  width: 100%;
}
.password_modal__box input {
  display: block;
  padding: 0.75rem;
  width: 100%;
  margin: 1rem 0;
  border-radius: 0.25rem;
  border: none;
  border-bottom: 0.125rem solid rgb(220, 220, 220);
  background-color: rgb(238, 238, 238);
  font-size: 1.125rem;
  transition: all 0.2s;
}
.password_modal__box input.error {
  background-color: rgb(255, 175, 175);
}
.password_modal__box input:focus {
  background-color: white;
  border-bottom: 0.125rem solid #a78f4f;
  outline: none;
}
.password_modal__box label {
  font-weight: 600;
}
.password_modal__box button {
  padding: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.25rem;
  font-size: 1.125rem;
  border: none;
  color: white;
  background-color: #a78f4f;
}
.password_modal__box button:hover {
  background-color: #b29b5d;
}
.password_modal__box img {
  width: 8rem;
}
.password_modal__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer {
  padding-top: 4rem;
  background-color: #d1d2d4;
}
.footer__container {
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.footer__logo {
  width: 15rem;
}
.footer hr {
  height: 10rem;
  border: 0.05rem solid black;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__item {
  text-align: center;
  width: 15rem;
}
.footer__item p {
  font-size: 0.8rem;
}
.footer__item img {
  width: 2rem;
}
.footer__copyright {
  padding: 2rem;
  border-top: 0.05rem solid black;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
}

@media (min-width: 1800px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 2000px) {
  html {
    font-size: 22px;
  }
}
@media (min-width: 2200px) {
  html {
    font-size: 24px;
  }
}
@media (min-width: 2400px) {
  html {
    font-size: 26px;
  }
}
@media (min-width: 2600px) {
  html {
    font-size: 28px;
  }
}
@media (min-width: 2800px) {
  html {
    font-size: 30px;
  }
}
@media (min-width: 3000px) {
  html {
    font-size: 32px;
  }
}
@media (max-width: 1010px) {
  .navbar {
    background-color: white;
    border-color: white;
    padding: 0.5rem 1rem;
  }
  .vision_section svg {
    display: none;
  }
  .menu {
    display: flex;
  }
  .hidden-links {
    padding: 7rem 3rem;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    width: 20rem;
    height: 100vh;
    background-color: white;
    box-shadow: 0px 30px 12px rgba(0, 0, 0, 0.01), 0px 17px 10px rgba(0, 0, 0, 0.03), 0px 7px 7px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 0px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
    transform: translateX(20rem);
  }
  .hidden-links li {
    display: block;
    color: white;
    padding-bottom: 1rem;
  }
  .hidden-links li a:nth-child(2) {
    background-color: none;
  }
  .hidden-links li:nth-child(2) {
    color: white;
    background-color: transparent;
    border-radius: 0;
    padding: 0 0 1rem 0;
  }
  .navbar__links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  .section {
    padding: 4rem;
  }
  .hero {
    padding: 15rem 8rem 12rem;
  }
  .vision_container {
    flex-direction: column;
    padding-top: 3rem;
  }
  .icon_picture {
    width: 100%;
    height: auto;
  }
  .target_picture {
    display: none;
  }
  .benefits_grid {
    grid-template-columns: 1fr 1fr;
  }
  .fees header {
    padding: 0;
  }
  .fees_container {
    flex-direction: column;
    gap: 2rem;
  }
  .fees_container__item:nth-child(1) {
    padding-right: 2.5rem;
  }
  .fees_container__item:nth-child(2) {
    position: relative;
    width: 100%;
    right: 0;
  }
  .tools_container__item:nth-child(2) {
    padding: 2rem;
  }
  .tools_container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    gap: 2rem;
    align-items: center;
  }
  .schedule_table {
    width: 100%;
    max-width: auto;
  }
  .section__h2 span:nth-child(1) {
    font-size: 2rem;
  }
  .section__h2 span:nth-child(2) {
    font-size: 2.5rem;
  }
  .leadership__tiles {
    display: flex;
    margin: 4rem 0;
    gap: 2rem;
    flex-direction: column;
  }
  .leadership_info {
    background-color: white;
    padding: 4rem;
    margin: 3rem auto;
    border-radius: 3rem;
    max-width: 70rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .leadership_info__item {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer__container {
    display: flex;
    flex-direction: column;
  }
  .footer__container hr {
    display: none;
  }
  .language__container {
    right: -7rem;
  }
}
@media (max-width: 516px) {
  .list_item {
    flex-direction: column;
  }
  .benefits_grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .vision_container__item:nth-child(1) p {
    padding: 1rem;
  }
  .vision_container__item:nth-child(2) {
    padding: 1rem;
    border-radius: 2rem;
  }
  .schedule_table {
    padding: 1rem;
  }
  .section__h2 span:nth-child(2) {
    font-size: 1.5rem;
  }
}
.error__nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem 1rem 3rem;
  color: white;
  z-index: 100;
  background-color: #a78f4f;
}
.error__nav img {
  padding: 0.1rem 0;
  height: 4rem;
  width: auto;
}
.error__main {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 10rem 3rem;
}
.error__main h1 {
  font-size: 2rem;
  text-align: center;
}
.error__main img {
  width: 8rem;
}
.error__main a {
  margin-top: 1rem;
  color: #a78f4f;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0.75rem 1rem;
  border: 0.125rem solid #a78f4f;
  border-radius: 0.5rem;
  transition: 0.3s background, 0.3s color;
}
.error__main a:hover {
  background-color: #a78f4f;
  color: white;
}

@media (max-width: 850px) {
  .error__nav {
    padding: 1rem 2rem;
  }
  .error__main h1 {
    font-size: 1.5rem;
  }
  .error__main img {
    width: 6rem;
  }
  .error__main a {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .error__nav img {
    height: 2.5rem;
  }
}