:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --blue: #3591A0;
  --green: #8DC997;
  --yellow: #fdce01;
  --grey: #E1EAE3;
  --archivo: "Archivo", sans-serif;
  --dm-sans: "DM Sans", sans-serif;

  /**
   * tipografia
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


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

li {
  list-style: none;
}

a,
img,
time,
input,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
  font-family: var(--dm-sans);
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}




.container {
  padding-inline: 16px;
}

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.navbar.active {
  background-color: var(--blue);
}

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
  background-color: var(--blue);
}

.header * {
  font-family: var(--archivo);
}

.navbar-subscribe {
  background-color: var(--yellow);
  border-radius: 1.5rem;
  padding-inline: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.navbar-subscribe:hover {
  background-color: #e0b700;
}

@keyframes subscribeBtnAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.navbar-subscribe a {
  color: var(--white);
  font-size: 1.5rem;
}

.header.active {
  position: fixed;
  background-color: var(--blue);
  animation: headerActive 0.5s ease forwards;
}

.logo img {
  width: 30rem;
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
  transition: all 500ms ease;
  font-size: 1.5rem;
}

.navbar-link:hover {
  color: var(--green);
  text-decoration: underline;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

/*-----------------------------------*\
  #BODY
\*-----------------------------------*/

.hero-banner {
  width: 100%;
  height: fit-content;
}

.hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30rem;
}

.img-hero-container {
  position: relative;
  width: 50%;
  height: 100%;
}

.hero-banner-img {
  width: 120rem;
  position: relative;
  left: -70%;
  margin-top: 10rem;
}

.hero-banner-flag-img {
  width: 25rem;
  position: absolute;
  top: 72%;
  left: 95%;
}

.text-hero-container {
  width: 70%;
  height: 100%;
  position: relative;
  margin-top: 15rem;
}

.text-hero-container h1 {
  color: var(--blue);
  font-size: 5rem;
  position: relative;
  width: 60rem;
  white-space: pre-line;
  line-height: 6rem;
  font-family: var(--archivo);
}

.text-hero-container a {
  background-color: var(--yellow);
  width: fit-content;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--archivo);
  padding: 2rem 4rem;
  margin-inline: auto;
  margin-top: 8rem;
  border-radius: 1.3rem;
  transition: all 500ms ease;
  animation-name: subscribeBtnAnimation;
  animation-iteration-count: infinite;
  animation-duration: 2.5s;
}

.text-hero-container a:hover {
  background-color: #e0b700;
}

.aprende-section {
  background-color: var(--blue);
}

.aprende-section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.img-aprende-container {
  width: fit-content;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 100%;
}

.img-aprende-container img {
  width: 15rem;
}

.text-aprende-container {
  position: relative;
}

.text-aprende-container h2 {
  color: var(--white);
  font-size: 4.4rem;
  line-height: 5.5rem;
  white-space: pre-line;
  font-family: var(--archivo);
}

.text-aprende-container img {
  position: absolute;
  width: 55%;
  top: 40%;
  right: -1%;
}

.que-es-medbruck-section {
  padding-block: 0;
}

.incluye-section section {
  background-color: var(--white);
}

.incluye-section h2 {
  text-align: center;
  color: var(--blue);
  font-size: 4rem;
  white-space: pre-line;
  line-height: 5rem;
  font-family: var(--archivo);
}

.incluye-section h3 {
  text-align: center;
  color: var(--green);
  font-size: 3rem;
  margin-top: 3rem;
}

.icono-incluye {
  width: 14rem;
  z-index: 2;
}

.incluye-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flecha {
  width: 20rem;
  position: absolute;
  left: 69%;
  z-index: 1;
}

.incluye-section-elements-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 5rem;
}

.incluye-elemento p {
  text-align: center;
  color: var(--blue);
  font-size: 1.8rem;
  margin-top: 3rem;
}

.confiar-section {
  background-color: var(--grey);
  color: var(--blue);
  position: relative;
}

.confiar-section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.text-icons-confiar-container {
  text-align: center;
  width: 60%;
}

.text-icons-confiar-container h2 {
  font-size: 4rem;
  font-family: var(--archivo);
}

.text-icons-confiar-container p {
  font-size: 2rem;
  line-height: 3rem;
  margin-top: 3rem;
  white-space: pre-line;
}

.icons-confiar-container {
  width: fit-content;
  background-color: var(--green);
  padding: 5rem 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 5rem;
  margin-inline: auto;
  margin-top: 5rem;
  border-radius: 6rem;
}

.icons-confiar-container img {
  width: 22rem;
}

.img-confiar-container {
  width: 40%;
}

.img-confiar-container img {
  width: 70rem;
  position: absolute;
  bottom: 0;
}

.como-empezar-section h2 {
  text-align: center;
  color: var(--blue);
  font-size: 4rem;
  font-family: var(--archivo);
}

.elemento-empezar {
  background-color: var(--blue);
  width: 28%;
  padding-inline: 3rem;
  height: 10rem;
  font-size: 1.8rem;
  line-height: 2rem;
  color: var(--white);
  border-radius: 10rem;
  white-space: pre-line;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.elemento-empezar-absolute {
  position: absolute;
  background-color: var(--black);
  padding: 2rem 6rem;
  border-radius: 10rem;
  top: -40%;
  right: -15%;
}

.como-empezar-elementos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7rem 7rem;
  margin-top: 13rem;
}

.como-empezar-section a {
  text-align: center;
  background-color: var(--yellow);
  width: fit-content;
  margin-inline: auto;
  margin-top: 10rem;
  padding: 2rem 7rem;
  font-size: 1.8rem;
  color: var(--white);
  border-radius: 2.5rem;
  transition: all 500ms ease;
}

.como-empezar-section a:hover {
  background-color: #e0b700;
}

.testimonios-section h2 {
  text-align: center;
  color: var(--blue);
  font-size: 4rem;
  font-family: var(--archivo);
}

.testimonios-section h3 {
  text-align: center;
  color: var(--green);
  font-size: 3rem;
  margin-top: 2rem;
}

.videos-testimonios-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  margin-top: 6rem;
}

.testimonio {
  width: 33%;
}

.video-testimonio-container {
  width: 100%;
  height: 50rem;
  background-color: var(--blue);
  border-radius: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-testimonio-container svg {
  width: 13rem;
  filter: invert(1);
  opacity: .8;
}

.text-testimonio-container p {
  text-align: center;
  color: var(--blue);
  font-size: 2rem;
  white-space: pre-line;
  line-height: 3rem;
  margin-top: 2rem;
}

.text-testimonio-container span {
  font-weight: bold;
}

.swiper-container {
  width: 90rem;
  margin-inline: auto;
  margin-top: -10rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--green) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 7rem !important;
}

.swiper-slide {
  text-align: center;
  color: var(--blue);
  white-space: pre-line;
  font-size: 1.8rem;
  margin-top: 17rem;
}

.swiper-slide>.text-testimonio-container {
  margin-top: -4rem;
}

.inscribete-section {
  background-color: var(--blue);
}

.text-inscribete-container h2 {
  color: var(--white);
  font-size: 4rem;
  line-height: 5rem;
  font-family: var(--archivo);
  white-space: pre-line;
}

.text-inscribete-container p {
  color: var(--white);
  font-size: 3rem;
  line-height: 4rem;
  font-family: var(--archivo);
  white-space: pre-line;
  margin-top: 3rem;
}

.green-text-inscribete {
  color: var(--green) !important;
  font-size: 3rem;
  line-height: 4rem;
  font-family: var(--archivo);
  white-space: pre-line;
  margin-top: 3rem;
  font-weight: bold;
}

.form-inscribete-container {
  background-color: var(--white);
}

.inscribete-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-inscribete-container {
  width: 50%;
}

.form-inscribete-container {
  width: 50%;
  padding: 5rem;
  border-radius: 5rem;
}

.form-inscribete-container h3 {
  color: var(--blue);
  font-size: 3rem;
  line-height: 4rem;
  font-family: var(--archivo);
  white-space: pre-line;
}

form {
  margin-top: 1rem;
  position: relative;
}

label {
  color: var(--blue);
  font-size: 2.3rem;
}

input {
  border: 1px solid var(--blue);
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.submit-btn {
  background-color: var(--yellow);
  border: none;
  width: 60%;
  color: var(--white);
  font-size: 2.5rem;
  border-radius: 10rem;
  padding-block: 1rem;
  position: absolute;
  bottom: -31%;
  left: 0;
  right: 0;
  margin-inline: auto;
  transition: all 500ms ease;
}

.submit-btn:hover {
  background-color: #e0b700;
}

.faq-section h2 {
  color: var(--blue);
  font-size: 4rem;
  line-height: 5rem;
  font-family: var(--archivo);
  white-space: pre-line;
  text-align: center;
}

.faq-section h3 {
  color: var(--green);
  font-size: 3rem;
  line-height: 4rem;
  font-family: var(--archivo);
  white-space: pre-line;
  text-align: center;
  margin-top: 3rem;
}

.preguntas-section {
  width: 70%;
  color: var(--blue);
  margin-inline: auto;
}

.accordion {
  color: var(--light-brown);
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-inline: auto;
  margin-top: 5px;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion svg {
  width: 3rem;
  transition: all 300ms ease;
}

.active

/* , .accordion:hover */
  {
  border-bottom: none;
  font-weight: 500;
}

.panel {
  width: 100%;
  margin-inline: auto;
  padding: 0 1.5rem;
  padding-bottom: .3rem;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--light-brown);
  border-bottom: solid var(--green) 0.5px;
  font-size: 1.5rem;
  text-align: justify;
}

.blue-bar {
  background-color: var(--blue);
  width: 100%;
  height: 5rem;
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.logo-container-footer img {
  width: 30rem;
}

.footer p,
.footer a {
  white-space: pre-line;
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-top: 1rem;
  margin-bottom: -1rem;
}

.contacto-container-footer {
  text-align: center;
}

.links-container-footer {
  text-align: end;
}

.flex-container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20%;
}

.powered-by-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: calc(50% - 2rem);
  margin-top: 7rem;
}

.powered-by-container svg {
  width: 6rem;
  height: fit-content;
  margin-top: 1.5rem;
}

.powered-by-container p {
  margin-top: 0;
}

.footer {
  color: var(--blue);
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}

/*-----------------------------------*\
  #CALENDARIO
\*-----------------------------------*/
.calendar-custom{
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background-color: white;
  display: flex;
  color: black;
  flex-direction: row-reverse;
}
.rig-cal{
  width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
}
.left-cal{
  width: 50%;
    height: 400px;
    border-radius: 20px 0px 0px 20px;
    background-color: #8DC997;
    color: white;
}


.calendar-base {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  background-color: white;
  position: relative;
  z-index: -1;
  color: black;
}


.year {
  color: #E8E8E8;
  font-size: 30px;
  float: right;
  position: absolute;
  right: 75px;
  top: 20px;
  font-weight: bold;
  display: flex;
  gap: 10px;
}

.ysel{
  color: #cdcbcb;
}

.month:hover,.month:focus,.month::selection {
  color: #27AE60;
  font-weight: 600;
}


.months {
  color: #AAAAAA;
    display: flex;
    gap: 15px;
    margin-left: 20px;
    word-spacing: 10px;
}
.month-select{
  color: #27AE60;
  font-weight: 600;
}
.month-line {
  border-color: #E8E8E8;
  width: 70%;
}
.semanas{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.gris{
  color: #AAAAAA;
}
.dia{
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}

.dia-select{
  background-color: #46ab71;
  color: #fff;
}
.disableday{
  background-color: #46ab716a;
  color: #ffffff;
}
.days {
  color: #AAAAAA;
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
    word-spacing: 35px;
    font-weight: 600;
}

.num-dates {
  float: left;
    margin-left: 30px;
}


.calendar-left {
  width: 300px;
  height: 500px;
  border-radius: 20px 0px 0px 20px;
  background-color: #8DC997;
  position: relative;
  z-index: -1;
  bottom: 500px;
  color: white;
}

.hamburger {
  position: relative;
  top: 25px;
  left: 25px;
}



.burger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 15%;
  margin-bottom: 3px;
}
.selectdia{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -50px;
  height: 250px;
  line-height: 1.5;
  
}
.num-date {
  font-size: 150px;
  font-weight: 700;
}

.day {
  font-size: 30px;
  position: relative;
  bottom: 60px;
}

.horario{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.hoe{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.l1l{
  text-align: center;
}
.horad{
  width: 90px;
  background-color: #46ab71;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  padding: 7px;
  margin: 7px;
  color: #fff;

}
.horad:focus,.horad:hover{
  background-color: #3b9160;
}
.hsel{
  background-color: #3b9160;
}
.current-events {
  font-size: 15px;
  position: relative;
  margin-left: 25px;
  bottom: 30px;
}

.posts {
  text-decoration: underline dotted;
}
.posts:hover{
  color:#27e879 !important;
}

.create-event {
  font-size: 18px;
  position: relative;
  margin-top: 30px;
  margin-left: 25px;
}

.event-line {
  width: 90%;
}

.add-event {
  width: 20px;
  height: 20px;
  padding: 0px;
  border-radius: 50%;
  border: solid white 2px;
  position: relative;
  bottom: 42px;
  left: 260px;
}

.add {
  font-size: 25px;
  position: relative;
  left: 4px;
  bottom: 10px;
}

.add:hover, .create-event:hover, .add-event:hover{
  color:#27e879 !important;
  border-color: #27e879 !important;
}

@media (max-width: 999px) {
  .calendar-custom {
    flex-direction: column-reverse;
    height: 88vh;
  }
   .rig-cal {
    width: 100%;
    height: 50vh;
  }
   .year {
    font-size: 23px;
    right: 15px;
    top: 5px;
  }
   .months {
    gap: 5px;
    font-size: 1.8rem;
    margin-left: 0px;
  }
   .month-line {
    width: 90%;
  }
   .days {
    margin-left: -4px;
    word-spacing: 26px;
  }
   .num-dates {
    margin-left: 0;
  }
    .dia {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
   .left-cal {
    width: 100%;
    height: 40vh;
    border-radius: 20px 20px 0px 0px;
  }
   .selectdia {
    margin-bottom: 25px;
    height: 49px;
    line-height: 1.3;
    margin-top: 30px;

  }
    .num-date {
    font-size: 85px;
  }
    .day {
    font-size: 30px;
    bottom: 30px;
  }
}
@media (max-width: 600px) {
  .calendar-custom {
    flex-direction: column-reverse;
    height: 88vh;
  }
  .rig-cal {
    width: 100%;
    height: 50vh;
  }
    .year {
    font-size: 23px;
    right: 15px;
    top: 5px;
  }
    .months {
    gap: 5px;
    font-size: 1.2rem;
    margin-left: 0px;
    width: 90%;
    overflow: auto;
  }
  .month-line {
    width: 90%;
  }
    .days {
    margin-left: 2px;
    word-spacing: 5px;
  }
    .num-dates {
    margin-left: 0;
  }
  .dia {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
  }
    .left-cal {
    width: 100%;
    height: 40vh;
    border-radius: 20px 20px 0px 0px;
  }
  .d5 {
    font-size: 35px;
  }
    .selectdia {
    margin-bottom: 25px;
    height: 49px;
    line-height: 1.3;
  }
   .num-date {
    font-size: 85px;
  }
    .day {
    font-size: 30px;
    bottom: 30px;
  }
}
/*-----------------------------------*\
  #FIN CALENDARIO
\*-----------------------------------*/



/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/

@media (min-width: 300px) and (max-width: 400px) {

  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .section {
    overflow: hidden;
  }

  body {
    overflow: hidden;
  }

  .container {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }

  .navbar-subscribe {
    width: 90%;
    margin-inline: auto;
  }

  .logo img {
    width: 20rem;
  }

  .hero-banner {
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-banner-img {
    width: 227%;
    position: relative;
    left: -13%;
    margin-top: 0rem;
  }

  .hero-banner-flag-img {
    width: 10rem;
    position: absolute;
    top: 70%;
    left: 140%;
  }

  .text-hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 5rem;
  }

  .text-hero-container h1 {
    color: var(--blue);
    font-size: 2.6rem;
    position: relative;
    width: 60rem;
    white-space: pre-line;
    line-height: 3rem;
    font-family: var(--archivo);
    text-align: center;
    width: 100%;
  }

  .text-hero-container a {
    background-color: var(--yellow);
    width: fit-content;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: bold;
    font-family: var(--archivo);
    padding: 2rem 4rem;
    margin-inline: auto;
    margin-top: 4rem;
    border-radius: 1.3rem;
    transition: all 500ms ease;
    animation-name: subscribeBtnAnimation;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
  }

  .aprende-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
  }

  .img-aprende-container img {
    width: 15rem;
  }

  .text-aprende-container h2 {
    color: var(--white);
    font-size: 2.8rem;
    line-height: 3.5rem;
    white-space: pre-line;
    font-family: var(--archivo);
    text-align: center;
  }

  .text-aprende-container img {
    position: absolute;
    width: 100%;
    top: 38%;
    right: -1%;
  }

  .incluye-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 2rem;
    white-space: pre-line;
    line-height: 2.5rem;
    font-family: var(--archivo);
  }

  .incluye-section h3 {
    text-align: center;
    color: var(--green);
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .flecha {
    display: none;
  }

  .incluye-section-elements-container {
    display: block;
    margin-top: 0;
  }

  .icono-incluye {
    width: 14rem;
    z-index: 2;
    margin-top: 4rem;
  }

  .incluye-elemento p {
    text-align: center;
    color: var(--blue);
    font-size: 1.8rem;
    margin-top: 3rem;
    line-height: 2rem;
  }

  .confiar-section-content {
    display: block;
  }

  .text-icons-confiar-container {
    text-align: center;
    width: 100%;
  }

  .img-confiar-container {
    width: 40%;
    height: 20rem;
  }

  .img-confiar-container img {
    width: 28rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -13.57rem;
  }

  .icons-confiar-container {
    gap: 5rem;
  }

  .como-empezar-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 3rem;
    font-family: var(--archivo);
    line-height: 4rem;
  }

  .como-empezar-elementos-container {
    flex-direction: column;
    margin-top: 7rem;
    gap: 3rem;
  }

  .elemento-empezar {
    width: 100%;
  }

  .elemento-empezar-absolute {
    position: absolute;
    background-color: var(--black);
    padding: 1rem 4rem;
    border-radius: 10rem;
    top: -21%;
    right: -4%;
  }

  .elemento-empezar {
    height: 8rem;
    font-size: 1.5rem;
  }

  .como-empezar-section a {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 6rem;
  }

  .testimonios-section h2 {
    line-height: 5rem;
  }

  .testimonios-section h3 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .videos-testimonios-container {
    flex-direction: column;
    gap: 5rem;
  }

  .testimonio {
    width: 100%;
  }

  .swiper-container {
    width: 90%;
  }

  /* .swiper-slide {
    white-space: initial;
    font-size: 1.5rem;
    line-height: 2rem;
    width: 24rem !important;
  } */

  .text-testimonio-container p {
    font-size: 1.8rem;
    white-space: pre-line;
    line-height: 2rem;
    margin-top: 3rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 3rem !important;
  }

  .swiper-slide {
    text-align: center;
    color: var(--blue);
    white-space: initial;
    font-size: 1.5rem;
  }

  .swiper-slide .text-testimonio-container p {
    font-size: 1.5rem;
    margin-top: 6rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 0;
    top: unset !important;
  }

  /* .swiper-wrapper {
    gap: 7rem;
  } */

  .inscribete-section-content {
    flex-direction: column;
    gap: 4rem;
  }

  .text-inscribete-container {
    width: 100%;
    text-align: center;
  }

  .text-inscribete-container h2 {
    font-size: 4rem;
    line-height: 4rem;
    white-space: initial;
  }

  .text-inscribete-container p {
    line-height: 3.5rem;
    white-space: initial;
  }

  .form-inscribete-container {
    width: 100%;
    padding: 5rem 3rem;
    border-radius: 2rem;
  }

  .form-inscribete-container h3 {
    font-size: 2.2rem;
  }

  label {
    font-size: 2rem;
  }

  .submit-btn {
    width: 80%;
    font-size: 2.2rem;
    padding-block: .6rem;
  }

  .faq-section h2 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .faq-section h3 {
    font-size: 2rem;
  }

  .preguntas-section {
    width: 100%;
  }

  .accordion {
    font-size: 1.5rem;
  }

  .preguntas-section {
    margin-top: 4rem;
  }

  .flex-container-footer {
    flex-direction: column;
    gap: 4rem;
  }

  .inscribete-section {
    overflow: hidden;
  }

  .footer * {
    text-align: center;
  }

  .powered-by-container {
    margin-inline: auto;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }
}

@media (min-width: 370px) and (max-width: 400px) {
  .text-aprende-container img {
    position: absolute;
    width: 100%;
    top: 46%;
    right: -1%;
  }
}

@media (min-width: 401px) and (max-width: 768px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .section {
    overflow: hidden;
  }

  body {
    overflow: hidden;
  }

  .container {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }

  .navbar-subscribe {
    width: 90%;
    margin-inline: auto;
  }

  .logo img {
    width: 20rem;
  }

  .hero-banner {
    overflow: hidden;
    height: fit-content;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-banner-img {
    width: 250%;
    position: relative;
    left: -25%;
    margin-top: 0rem;
  }

  .hero-banner-flag-img {
    width: 10rem;
    position: absolute;
    top: 70%;
    left: 140%;
  }

  .text-hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 5rem;
  }

  .text-hero-container h1 {
    color: var(--blue);
    font-size: 2.6rem;
    position: relative;
    width: 60rem;
    white-space: pre-line;
    line-height: 3rem;
    font-family: var(--archivo);
    text-align: center;
    width: 100%;
  }

  .text-hero-container a {
    background-color: var(--yellow);
    width: fit-content;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: bold;
    font-family: var(--archivo);
    padding: 2rem 4rem;
    margin-inline: auto;
    margin-top: 4rem;
    border-radius: 1.3rem;
    transition: all 500ms ease;
    animation-name: subscribeBtnAnimation;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
  }

  .aprende-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
  }

  .img-aprende-container img {
    width: 15rem;
  }

  .text-aprende-container h2 {
    color: var(--white);
    font-size: 2.8rem;
    line-height: 3.5rem;
    white-space: pre-line;
    font-family: var(--archivo);
    text-align: center;
  }

  .text-aprende-container img {
    position: absolute;
    width: 100%;
    top: 46%;
    right: -1%;
  }

  .incluye-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 2.1rem;
    white-space: pre-line;
    line-height: 2.5rem;
    font-family: var(--archivo);
  }

  .incluye-section h3 {
    text-align: center;
    color: var(--green);
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .flecha {
    display: none;
  }

  .incluye-section-elements-container {
    display: block;
    margin-top: 0;
  }

  .text-icons-confiar-container p {
    white-space: initial;
  }

  .icono-incluye {
    width: 10rem;
    z-index: 2;
    margin-top: 4rem;
  }

  .incluye-elemento p {
    text-align: center;
    color: var(--blue);
    font-size: 1.8rem;
    margin-top: 3rem;
    line-height: 2rem;
  }

  .confiar-section-content {
    display: block;
  }

  .text-icons-confiar-container {
    text-align: center;
    width: 100%;
  }

  .img-confiar-container {
    width: 40%;
    height: 20rem;
  }

  .img-confiar-container img {
    width: 28rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -13.57rem;
  }

  .icons-confiar-container {
    gap: 5rem;
  }

  .como-empezar-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 3rem;
    font-family: var(--archivo);
    line-height: 4rem;
  }

  .como-empezar-elementos-container {
    flex-direction: column;
    margin-top: 7rem;
    gap: 3rem;
  }

  .elemento-empezar {
    width: 100%;
  }

  .elemento-empezar-absolute {
    position: absolute;
    background-color: var(--black);
    padding: 1rem 4rem;
    border-radius: 10rem;
    top: -21%;
    right: -4%;
  }

  .elemento-empezar {
    height: 8rem;
    font-size: 1.5rem;
  }

  .como-empezar-section a {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 6rem;
  }

  .testimonios-section h2 {
    line-height: 5rem;
  }

  .testimonios-section h3 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .videos-testimonios-container {
    flex-direction: column;
    gap: 5rem;
  }

  .testimonio {
    width: 100%;
  }

  .swiper-container {
    width: 90%;
  }

  .text-icons-confiar-container h2 {
    line-height: 5rem;
  }

  /* .swiper-slide {
    white-space: initial;
    font-size: 1.5rem;
    line-height: 2rem;
    width: 24rem !important;
  } */

  .text-testimonio-container p {
    font-size: 1.8rem;
    white-space: pre-line;
    line-height: 2rem;
    margin-top: 3rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 3rem !important;
  }

  .swiper-slide {
    text-align: center;
    color: var(--blue);
    white-space: initial;
    font-size: 1.5rem;
  }

  .swiper-slide .text-testimonio-container p {
    font-size: 1.5rem;
    margin-top: 6rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 0;
    top: unset !important;
  }

  /* .swiper-wrapper {
    gap: 7rem;
  } */

  .inscribete-section-content {
    flex-direction: column;
    gap: 4rem;
  }

  .text-inscribete-container {
    width: 100%;
    text-align: center;
  }

  .text-inscribete-container h2 {
    font-size: 4rem;
    line-height: 4rem;
    white-space: initial;
  }

  .text-inscribete-container p {
    line-height: 3.5rem;
    white-space: initial;
  }

  .form-inscribete-container {
    width: 100%;
    padding: 5rem 3rem;
    border-radius: 2rem;
  }

  .form-inscribete-container h3 {
    font-size: 2.2rem;
  }

  label {
    font-size: 2rem;
  }

  .submit-btn {
    width: 80%;
    font-size: 2.2rem;
    padding-block: .6rem;
  }

  .faq-section h2 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .faq-section h3 {
    font-size: 2rem;
  }

  .preguntas-section {
    width: 100%;
  }

  .accordion {
    font-size: 1.5rem;
  }

  .preguntas-section {
    margin-top: 4rem;
  }

  .flex-container-footer {
    flex-direction: column;
    gap: 4rem;
  }

  .inscribete-section {
    overflow: hidden;
  }

  .footer * {
    text-align: center;
  }

  .powered-by-container {
    margin-inline: auto;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }
}


@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .section {
    overflow: hidden;
  }

  body {
    overflow: hidden;
  }

  .container {
    max-width: 768px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }

  .navbar-subscribe {
    width: 90%;
    margin-inline: auto;
  }

  .logo img {
    width: 20rem;
  }

  .hero-banner {
    overflow: hidden;
    height: fit-content;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-banner-img {
    width: 225%;
    position: relative;
    left: -12%;
    margin-top: 0rem;
  }

  .hero-banner-flag-img {
    width: 13rem;
    position: absolute;
    top: 70%;
    left: 157%;
  }

  .text-hero-container {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 5rem;
  }

  .text-hero-container h1 {
    color: var(--blue);
    font-size: 3.6rem;
    position: relative;
    width: 60rem;
    white-space: pre-line;
    line-height: 4rem;
    font-family: var(--archivo);
    text-align: center;
    width: 100%;
  }

  .text-hero-container a {
    background-color: var(--yellow);
    width: fit-content;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: bold;
    font-family: var(--archivo);
    padding: 2rem 4rem;
    margin-inline: auto;
    margin-top: 4rem;
    border-radius: 1.3rem;
    transition: all 500ms ease;
    animation-name: subscribeBtnAnimation;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
  }

  .aprende-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
  }

  .img-aprende-container img {
    width: 15rem;
  }

  .text-aprende-container h2 {
    color: var(--white);
    font-size: 2.8rem;
    line-height: 3.5rem;
    white-space: pre-line;
    font-family: var(--archivo);
    text-align: center;
  }

  .text-aprende-container img {
    position: absolute;
    width: 55%;
    top: 46%;
    right: -1%;
  }

  .incluye-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 2.1rem;
    white-space: pre-line;
    line-height: 2.5rem;
    font-family: var(--archivo);
  }

  .incluye-section h3 {
    text-align: center;
    color: var(--green);
    font-size: 1.6rem;
    margin-top: 3rem;
  }

  .flecha {
    display: none;
  }

  .incluye-section-elements-container {
    display: flex;
    margin-top: 0;
  }

  .text-icons-confiar-container p {
    white-space: initial;
  }

  .icono-incluye {
    width: 10rem;
    z-index: 2;
    margin-top: 4rem;
  }

  .incluye-elemento p {
    text-align: center;
    color: var(--blue);
    font-size: 1.7rem;
    margin-top: 3rem;
    line-height: 2rem;
  }

  .flecha {
    display: block;
    width: 13rem;
    top: 55%;
  }

  .confiar-section-content {
    display: block;
  }

  .text-icons-confiar-container {
    text-align: center;
    width: 100%;
  }

  .img-confiar-container {
    width: 40%;
    height: 20rem;
  }

  .img-confiar-container img {
    width: 28rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -13.57rem;
  }

  .icons-confiar-container {
    gap: 5rem;
  }

  .como-empezar-section h2 {
    text-align: center;
    color: var(--blue);
    font-size: 3rem;
    font-family: var(--archivo);
    line-height: 4rem;
  }

  .como-empezar-elementos-container {
    flex-direction: row;
    margin-top: 7rem;
    gap: 3rem;
  }

  .elemento-empezar {
    width: 40%;
  }

  .elemento-empezar-absolute {
    position: absolute;
    background-color: var(--black);
    padding: 1rem 4rem;
    border-radius: 10rem;
    top: -21%;
    right: -4%;
  }

  .elemento-empezar {
    height: 8rem;
    font-size: 1.5rem;
  }

  .como-empezar-section a {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 6rem;
  }

  .testimonios-section h2 {
    line-height: 5rem;
  }

  .testimonios-section h3 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .videos-testimonios-container {
    flex-direction: row;
    gap: 5rem;
  }

  .video-testimonio-container {
    height: 35rem;
  }

  .testimonio {
    width: 100%;
  }

  .swiper-container {
    width: 90%;
  }

  .text-icons-confiar-container h2 {
    line-height: 5rem;
  }

  /* .swiper-slide {
    white-space: initial;
    font-size: 1.5rem;
    line-height: 2rem;
    width: 24rem !important;
  } */

  .text-testimonio-container p {
    font-size: 1.8rem;
    white-space: pre-line;
    line-height: 2rem;
    margin-top: 3rem;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 3rem !important;
  }

  .swiper-slide {
    text-align: center;
    color: var(--blue);
    white-space: initial;
    font-size: 1.5rem;
  }

  .swiper-slide .text-testimonio-container p {
    font-size: 1.5rem;
    margin-top: 6rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    bottom: 0;
    top: unset !important;
  }

  /* .swiper-wrapper {
    gap: 7rem;
  } */

  .inscribete-section-content {
    flex-direction: column;
    gap: 4rem;
  }

  .text-inscribete-container {
    width: 100%;
    text-align: center;
  }

  .text-inscribete-container h2 {
    font-size: 4rem;
    line-height: 4rem;
    white-space: initial;
  }

  .text-inscribete-container p {
    line-height: 3.5rem;
    white-space: initial;
  }

  .form-inscribete-container {
    width: 100%;
    padding: 5rem 3rem;
    border-radius: 2rem;
  }

  .form-inscribete-container h3 {
    font-size: 2.2rem;
  }

  label {
    font-size: 2rem;
  }

  .submit-btn {
    width: 80%;
    font-size: 2.2rem;
    padding-block: .6rem;
  }

  .faq-section h2 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .faq-section h3 {
    font-size: 2rem;
  }

  .preguntas-section {
    width: 100%;
  }

  .accordion {
    font-size: 1.5rem;
  }

  .preguntas-section {
    margin-top: 4rem;
  }

  .flex-container-footer {
    flex-direction: column;
    gap: 4rem;
  }

  .inscribete-section {
    overflow: hidden;
  }

  .footer * {
    text-align: center;
  }

  .powered-by-container {
    margin-inline: auto;
  }

  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }
}




@media (min-width: 830px) and (max-width: 1199px) {


  .container {
    max-width: 940px;
  }

  .hero-banner-img {
    width: 235%;
    position: relative;
    left: -17%;
    margin-top: 0rem;
  }

  .hero-banner-flag-img {
    width: 17rem;
    position: absolute;
    top: 70%;
    left: 157%;
  }


}



@media (min-width: 1200px) and (max-width: 1766px) {

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section {
    padding-block: 7rem;
  }

  .hero-banner-img {
    width: 66vw;
    position: relative;
    left: -9vw;
    margin-top: 3rem;
  }

  .hero-banner-flag-img {
    width: 20rem;
    position: absolute;
    top: 70%;
    left: 103%;
  }

  .text-hero-container h1 {
    color: var(--blue);
    font-size: 3rem;
    position: relative;
    width: 36rem;
    white-space: pre-line;
    line-height: 4rem;
    font-family: var(--archivo);
  }

  .text-hero-container a {
    background-color: var(--yellow);
    width: fit-content;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    font-family: var(--archivo);
    padding: 2rem 4rem;
    margin-inline: auto;
    margin-top: 5rem;
    border-radius: 1.3rem;
    transition: all 500ms ease;
    animation-name: subscribeBtnAnimation;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 27rem;
  }

  .text-hero-container {
    width: 70%;
    height: 100%;
    position: relative;
    margin-top: 4rem;
  }

  .img-aprende-container img {
    width: 13rem;
  }

  .text-aprende-container h2 {
    color: var(--white);
    font-size: 4rem;
    line-height: 5.5rem;
    white-space: pre-line;
    font-family: var(--archivo);
  }

  .icons-confiar-container img {
    width: 19rem;
  }

  .text-icons-confiar-container {
    text-align: center;
    width: 50%;
  }

  .img-confiar-container img {
    width: 58rem;
    position: absolute;
    bottom: 0;
  }

  .confiar-section {
    background-color: var(--grey);
    color: var(--blue);
    position: relative;
    overflow: hidden;
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 1rem;
  }

  .logo img {
    width: 20rem;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }


  /**
   * FOOTER
   */

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }

}

@media (min-width: 1420px) and (max-width: 1766px) {
  .hero-banner-img {
    width: 66vw;
    position: relative;
    left: -12vw;
    margin-top: 3rem;
  }
}

@media (min-width: 1767px) {

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-banner {
    height: fit-content;
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 24px;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }


  /**
   * FOOTER
   */

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }
}