/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.content-section__title {
  color: var(--neutral_colors_headings_black) !important;
}

.educational-video-feature-1 {
  gap: var(--space-lg);
  display: block;
  width: 100%;
  @media only screen and (max-width: 1050px) {
    width: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.educational-video-feature__icon {
  height: 80px;
  width: 80px;
  object-fit: cover;
  flex-direction: column;
  display: inline;
  justify-content: center;
  align-items: center;
}

.content-section__feature-content {
  gap: var(--space-xs);
  align-self: stretch;
}

.educational-video-feature__headline {
  text-align: center;
}

.content-section__feature-description {
  text-align: center;
  align-self: stretch;
  line-height: 120%;
}

.content-section__feature-icon {
  height: 80px;
  width: 80px;
  object-fit: cover;
}

.column_two {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.homepage-column {
  background-color: var(--neutral_colors_white);
  width: 16%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray_300);
  @media only screen and (max-width: 1050px) {
    width: auto;
  }
}

.homepage-column__image {
  height: 200px;
  border-top-right-radius: var(--radius-xl);
  border-top-left-radius: var(--radius-xl);
  object-fit: cover;
}

.homepage-column__content {
  gap: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    gap: 16px;
  }

  @media only screen and (max-width: 550px) {
    gap: var(--space-3xl);
  }
}

.homepage-column__description {
  color: var(--black_900) !important;
  margin-top: 20px;
  width: 72%;
  line-height: 120%;
  font-style: italic;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin: 16px;
    display: block;
  }
}

.homepage-column__author {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  gap: var(--space-xs);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: start;
}

.homepage-column__author-name {
  color: var(--orange_500) !important;
}

.homepage-column__author-role {
  color: var(--gray_700) !important;
  margin-bottom: 18px;
  width: 100%;
  line-height: 120%;
}

.content-section__download-row {
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.rowheading__heading {
  color: var(--neutral_colors_headings_black) !important;
  width: 100%;
  line-height: 120%;
}

.arrow_left {
  height: 18px;
  width: 18px;
}

.volume-icon {
  height: 36px;
  width: 36px;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.homepage {
  overflow-x: scroll;
  background-color: var(--neutral_colors_white);
  width: 100%;
}


.hero {
  height: 500px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, #ffffffcc, #ffffffcc), url(../public/images/img_hero_2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    gap: 20px;
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
    text-align: center;
  }
}

.section__column {
  gap: var(--space-lg);
  display: flex;
  flex: 1;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    align-self: center;
    width: 70%;
    align-items: center;
    text-align: center;
  }

  @media only screen and (max-width: 550px) {
    align-self: stretch;
    width: 100%;
  }
}

.section__title {
  color: var(--neutral_colors_headings_black) !important;
  width: 88%;
  line-height: 120%;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    text-align: center;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.section__button {
  gap: 19px;
  display: flex;
  align-items: center;
}

.section__button-icon {
  height: 48px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: var(--green_a700) !important;
  width: 48px;
  border-radius: 24px !important;
}

.section__button-text {
  color: var(--green_a700) !important;
}

.section__video {
  max-height: 300px;
  width: 46%;
  object-fit: contain;
  border-radius: var(--radius-2xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.seccionlider {
  background-color: var(--gray_50);
  padding: 80px var(--space-2xl);
  @media only screen and (max-width: 1050px) {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  @media only screen and (max-width: 550px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.homepage__content {
  gap: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 550px) {
    gap: var(--space-4xl);
    margin-left: auto;
    margin-right: auto;
  }
}

.homepage__column--primary {
  gap: var(--space-5xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 550px) {
    margin-left: auto;
    flex-direction: column;
    display: flex;
    align-items: center;
    margin-right: auto;
  }
}

.homepage__column--secondary {
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 70%;
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.homepage__column-description {
  gap: var(--space-2xl);
  display: flex;
  width: 82%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
    display: flex;
  }
}

.homepage__text--lead {
  color: var(--neutral_colors_headings_black) !important;
  text-align: center;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    width: 100%;
    font-size: 36px;
    display: flex;
  }
}

.homepage__text--detail {
  color: var(--black_900) !important;
  text-align: center;
  font-weight: 500 !important;
  line-height: 120%;
}

.homepage__image {
  height: 650px;
  object-fit: cover;
  width: 85%;
  @media only screen and (max-width: 1050px) {
    height: auto;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.homepage__column--expandable {
  margin-bottom: 16px;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.column_four {
  margin-top: -500px;
  position: relative;
}

.seccion {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--neutral_colors_white);
  @media only screen and (max-width: 1050px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

.content-section {
  gap: 64px;
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
    align-items: center;
  }

  @media only screen and (max-width: 550px) {
    gap: 32px;
  }
}

.content-section__column--intro {
  margin-left: 140px;
  margin-right: 140px;
  gap: var(--space-md);
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 700px;
    text-align: center;
  }

  @media only screen and (max-width: 550px) {
    width: 80%;
  }
}

.content-section__description {
  color: var(--black_900) !important;
  text-align: center;
  align-self: stretch;
  line-height: 153%;
  @media only screen and (max-width: 550px) {
    font-size: 16px;
    font-weight: 500;
  }
}

.content-section__column--features {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-6xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }

  @media only screen and (max-width: 550px) {
    width: 60%;
  }
}

.content-section__features-row {
  width: 86%;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.content-section__features-grid {
  width: 100%;
  display: grid;
  gap: var(--space-6xl);
  row-gap: var(--space-6xl);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
  @media only screen and (max-width: 1050px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media only screen and (max-width: 550px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.educational-video-feature {
  width: 100%;
  display: block;
  @media only screen and (max-width: 1050px) {
    width: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.content-section__features-row--icons {
  margin-left: 144px;
  margin-right: 144px;
  gap: var(--space-6xl);
  display: flex;
  width: 80%;
  justify-content: center;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content-section__feature-block {
  gap: var(--space-lg);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 250px;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.content-section__feature-block-1 {
  gap: var(--space-lg);
  align-self: center;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 250px;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.content-section__column--download {
  margin-left: 140px;
  margin-right: 140px;
  gap: var(--space-xs);
  display: flex;
  background-color: var(--gray_50_01);
  flex-direction: column;
  align-items: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-3xl);
  border: 0.7px solid var(--gray_300);
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content-section__download-button {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--green_a700) !important;
  height: 42px;
  min-width: 240px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.seccion-1 {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--neutral_colors_white);
  border-radius: var(--radius-xs);
  @media only screen and (max-width: 1050px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

.column_five {
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
}

.row {
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column_three {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columnvideothum {
  padding-left: 56px;
  padding-right: 56px;
  gap: var(--space-5xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 70%;
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.columnvideothum__columnheading {
  gap: 10px;
  display: flex;
  width: 92%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.columnvideothum__heading {
  color: var(--neutral_colors_headings_black) !important;
  text-align: center;
  align-self: stretch;
  line-height: 120%;
}

.columnvideothum__quote {
  color: var(--black_900) !important;
  font-style: italic;
}

.columnvideothum__youtubeplayer {
  margin-left: 150px;
  margin-right: 150px;
  background-color: var(--gray_600);
  display: flex;
  border-radius: var(--radius-lg);
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.columnvideothum__thumbnail {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.columnheading {
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.column-container {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  gap: var(--space-6xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    align-items: center;
  }
}

.column-container__list {
  gap: 16px;
  display: flex;
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    display: grid;
  }

  @media only screen and (max-width: 550px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.column-container__cta {
  margin-left: 120px;
  margin-right: 120px;
  gap: var(--space-xs);
  display: flex;
  background-color: var(--gray_100);
  flex-direction: column;
  align-items: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-3xl);
  border: 0.7px solid var(--gray_300);
  @media only screen and (max-width: 1050px) {
    width: 80%;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.column-container__button {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--green_a700) !important;
  height: 42px;
  min-width: 242px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.exameneslibres {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white_a700_cc);
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

.rowheading {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    gap: 40px;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.rowheading__image {
  height: 550px;
  width: 46%;
  object-fit: contain;
  border-radius: var(--radius-2xl);
  @media only screen and (max-width: 1050px) {
    height: 500px;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.rowheading__column {
  gap: var(--space-md);
  display: flex;
  width: 46%;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.rowheading__button--reserve {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--green_a700) !important;
  height: 42px;
  min-width: 244px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.rowheading__button--inquire {
  color: var(--neutral_colors_headings_black) !important;
  padding-left: 33px;
  padding-right: 33px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-xs);
  height: 42px;
  min-width: 196px;
  border-radius: 20px !important;
  border: 1px solid var(--neutral_colors_headings_black) !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.seccion-2 {
  background: linear-gradient(270deg, #4c2985, #723ec4);
  display: flex;
  justify-content: center;
}

.homepage__section {
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.homepage__section__row {
  padding-left: var(--space-2xl);
  padding-right: var(--space-2xl);
  width: 100%;
  display: flex;
  align-items: end;
  @media only screen and (max-width: 1050px) {
    flex-direction: row;
    padding-top: 60px;
    justify-content: center;
    align-items: flex-end;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.homepage__section__content {
  margin-bottom: 108px;
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-6xl);
  gap: var(--space-6xl);
  display: flex;
  flex: 1;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }

  @media only screen and (max-width: 550px) {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

.homepage__section__title {
  color: var(--neutral_colors_white) !important;
  line-height: 120%;
}

.homepage__section__buttons {
  gap: 17px;
  display: flex;
}

.homepage__section__button--whatsapp {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--green_a700) !important;
  height: 42px;
  min-width: 168px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.homepage__section__button--telegram {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--blue_500) !important;
  height: 42px;
  min-width: 168px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.homepage__section__image {
  height: 524px;
  margin-top: 80px;
  width: 44%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}
