:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: #282828;
  --blue: #031d8c;
  --red: #ea3129;
  --grey: #d9e2ff;
  --blue-light: #3591a0;

  /**
   * tipografia
   */

  --montserrat: "Montserrat", 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;
  color: #031d8c;
}

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(--montserrat);
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}




.container {
  padding-inline: 16px;
  margin-inline: auto;
}

.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
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 40;
  border-bottom: 2px solid var(--blue);
}

.header.active {
  position: fixed;
  background-color: var(--white);
  animation: headerActive 0.5s ease forwards;
  border-bottom: 2px solid var(--blue);
  z-index: 40;
}

@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: 39;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

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

.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(--blue);
  text-transform: uppercase;
  padding: 10px 24px;
  font-size: 1.3rem;
  transition: all 500ms ease;
}

.navbar-link:hover {
  background-color: var(--blue);
  color: var(--white);
}

.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: 38;
}

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

.logo {
  position: relative;
}

.logo img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40rem;
}

.md-logo-nav {
  width: 5rem;
}

/* Estilos globales del boton de MedBruck del navbar */
.nv-item-mb {
  background-color: var(--blue-light);
  transition: all 500ms ease;
}

/* Codigo Lair */

/* SECCION HERO */
.hero {
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  flex-direction: row;
}

.hero_contenido {
  width: 45%;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.hero_contenido img {
  width: 150px;
  margin-left: 55%;
}

.hero_contenido h2 {
  color: #031d8c;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}


.boton_hero_wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.boton_hero {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  color: white;
  font-weight: bold;
  background-color: #001489;
  overflow: hidden;
  text-decoration: none;
  z-index: 0;
}

.boton_hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #282828;
  border-top-left-radius: 100%;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
  z-index: -1;
  transition: all 0.5s ease;
}

.boton_hero:hover::before {
  width: 1000px;
  height: 1000px;
  bottom: -500px;
  right: -500px;
  border-radius: 0;
  clip-path: none;
}

.boton_hero:hover {
  color: white;
}

.hero_item_mb p {
  font-family: "Montserrat", sans-serif;
  z-index: 3;
  color: white;
  padding-block: 15px;
  padding-inline: 15px;
  font-weight: 500;
  font-size: small;
}

.hero_item_mb {
  background-color: #282828;
  transition: all 500ms ease;
  position: absolute;
  margin-top: 30px;
  width: 30%;
  max-width: 300px;
  margin-inline: 9%;
  left: 0;
  right: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@keyframes animationBtn {
  100% {
    transform: translate(-100%, -100%);
  }
}

@keyframes animationBtnBack {
  0% {
    transform: translate(-100%, -100%);
  }

  100% {
    transform: translate(10%, 10%);
  }
}

.animation-btn {
  animation: animationBtn .8s;
}

.animation-btn-back {
  animation: animationBtnBack .8s;
}


.hover_bg_hero {
  position: absolute;
  background-color: #031d8c;
  width: 150%;
  height: 200%;
  border-bottom-right-radius: 200%;
  z-index: 2;
  transform: translate(10%, 10%);
}



.hero_imagenes img {
  width: 300px;
  height: auto;
  border-radius: 20px;
}

.borde1 {
  border: 2px solid #ea3129;
}

.borde2 {
  border: 2px solid #282828;
}

.borde3 {
  border: 2px solid #031d8c;
}

.hero_imagenes {
  width: 60%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.imagen_hero {
  margin-block: auto;
  position: absolute;
  width: 280px;
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 400ms ease;
  z-index: 1;
}

.imagen1 {
  margin-right: 5%;
  margin-top: -20%;
  z-index: 2;
}

.imagen2 {
  margin-top: -45%;
  margin-right: 30%;
  z-index: 1;
}

.imagen3 {
  margin-top: 12%;
  margin-left: 30%;
  z-index: 2;
}

.imagen4 {
  margin-right: 45%;
  z-index: 3;
}

.imagen5 {
  margin-top: -35%;
  margin-left: 25%;
  z-index: 0;
}

.imagen6 {
  margin-top: 25%;
  margin-right: 8%;
  z-index: 2;
}

.imagen_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.imagen_hero:hover {
  transform: scale(1.1);
  z-index: 7;
}

/* SECCION CRECIMIENTO */
.crecimiento {
  width: 100%;
  height: auto;
  background-color: #d9e2ff;
}

.crecimiento_contenido {
  color: #031d8c;
  width: 95%;
  margin-inline: auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}

.crecimiento_contenido h1{
  font-weight: 400;
}

.elementos_crecimiento {
  margin-top: 60px;
  margin-bottom: 20px;
  width: 70%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.elementos_crecimiento h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.imagen_texto {
  display: flex;
  flex-direction: row;
}

.imagen_texto img {
  width: 30px;
  height: 30px;
}

.elementos_crecimiento img {
  width: 30px;
  margin-right: 10px;
}

/* SECCION CLASES */
.clases_seccion {
  width: 90%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-top: -100px;
  gap: 0px;
  font-family: "Montserrat", sans-serif;
}

.clases_seccion img {
  width: 150px;
  height: 150px;
  border-radius: 40%;
  margin-inline: auto;
}

.clase_card {
  margin-top: 50px;
  width: 350px;
  margin-inline: auto;
}

.clase_idioma {
  background-color: #ffffff;
  margin-top: 20px;
  border: 2px solid #031d8c;
  border-radius: 20px;
  text-align: center;
  padding-block: 15px;
  width: 70%;
  margin-inline: auto;
  font-family: "Montserrat", sans-serif;
  color: #031d8c;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.clase_idioma h2{
  font-weight: 500;
  font-size: 1.5rem;
}

.descripcion_idioma {
  width: 92%;
  height: 300px;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-top: -30px;
  margin-inline: auto;
  background-color: #031d8c;
  border-radius: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: white;
  font-family: "Montserrat", sans-serif;
  position: relative;
  z-index: 1;
  font-weight: 500;
  line-height: 1.5;
}

.descripcion_idioma h3 {
  width: 75%;
  font-weight: 400;
  margin-inline: auto;
}

.imagenes_extra {
  width: 100px;
  margin-top: -30px;
  margin-left: 190px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
}

.imagenes_extra img {
  width: 30px;
  height: 30px;
  margin-inline: 2px;
}

.boton_clases {
  margin-top: -100px;
  margin-bottom: 100px;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.hero_item_mb2 p {
  font-family: "Montserrat", sans-serif;
  z-index: 3;
  color: white;
  padding-block: 15px;
  padding-inline: 15px;
  font-weight: 500;
  font-size: small;
}

.hero_item_mb2 {
  background-color: #282828;
  transition: all 500ms ease;
  position: absolute;
  margin-top: 20px;
  margin-top: 50px;
  width: 30%;
  max-width: 300px;
  margin-inline: auto;
  left: 0;
  right: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@keyframes animationBtn2 {
  100% {
    transform: translate(-100%, -100%);
  }
}

@keyframes animationBtnBack2 {
  0% {
    transform: translate(-100%, -100%);
  }

  100% {
    transform: translate(10%, 10%);
  }
}

.animation-btn2 {
  animation: animationBtn2 .8s;
}

.animation-btn-back2 {
  animation: animationBtnBack2 .8s;
}


.hover_bg_hero2 {
  position: absolute;
  background-color: #031d8c;
  width: 150%;
  height: 200%;
  border-bottom-right-radius: 200%;
  z-index: 2;
  transform: translate(10%, 10%);
}


/* SECCION PROGRAMA */
.programa_seccion {
  width: 90%;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #031d8c;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.programa_seccion img {
  width: 200px;
  border-radius: 0px;
  margin-inline: auto;
  height: auto;
  margin-block: 50px;
}

.pasos_programa {
  width: 95%;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.paso {
  color: black;
  background-color: #ffffff;
  width: 260px;
  font-size: 1.4rem;
  padding-block: 15px;
  border: 2px solid #031d8c;
  border-radius: 20px;
  transition: transform 0.6s ease;
  z-index: 2;
}

.paso:hover {
  transform: scale(1.1);
}

.flecha img {
  width: 80px;
  margin-right: 10px;
  height: auto;
  object-fit: cover;

}

.hero_item_mb3 p {
  font-family: "Montserrat", sans-serif;
  z-index: 3;
  color: white;
  padding-block: 14px;
  padding-inline: 15px;
  font-weight: 500;
  font-size: small;
}

.hero_item_mb3 {
  background-color: #282828;
  transition: all 500ms ease;
  position: absolute;
  margin-top: 20px;
  margin-inline: auto;
  left: 0;
  right: 0;
  width: 260px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@keyframes animationBtn3 {
  100% {
    transform: translate(-100%, -100%);
  }
}

@keyframes animationBtnBack3 {
  0% {
    transform: translate(-100%, -100%);
  }

  100% {
    transform: translate(10%, 10%);
  }
}

.animation-btn3 {
  animation: animationBtn3 .8s;
}

.animation-btn-back3 {
  animation: animationBtnBack3 .8s;
}


.hover_bg_hero3 {
  position: absolute;
  background-color: #031d8c;
  width: 150%;
  height: 200%;
  border-bottom-right-radius: 200%;
  z-index: 2;
  transform: translate(10%, 10%);
}

/* SECCION NEGOCIOS */
.fondo_negocios{
  background-color: #d9e2ff;
  width: 100%;
}

.negocios_section{
  width: 98%;
  height: auto;
  color: #031d8c;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.imagen_negocios{
  width: 50%;
  margin-inline: auto;
}

.imagen_negocios img{
  width: 100%;
  margin-block: auto;
  left: 0;
}

.contenido_negocios{
  width: 35%;
  margin-inline: auto;
}

.adorno_negocios{
  background-color: #031d8c;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.contenido_negocios h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.3;
}

.contenido_negocios b{
  font-size: 4rem;
}

.texto_negocios p{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.5;
}

.nv-item-mb-a-negocios {
  background-color: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: .8rem 3rem;
  margin-inline: 0;
  margin-top: 3rem;
}

.nv-item-mb-a-negocios:hover>.hover-bg-mb-negocios {
  transform: translate(-100%, -100%);
}

.hover-bg-mb-negocios {
  width: 200%;
  height: 200%;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: -50%;
  transition: all 1.5s ease;
  border-bottom-right-radius: 40rem;
  z-index: 2;
}

.nv-item-mb-a-negocios p {
  z-index: 3;
  position: relative;
}

/*SECCION CAPACITACION */
.capacitacion_section {
  width: 95%;
  color: #031d8c;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contenido_capacitacion {
  width: 35%;
  margin-top: -20px;
}

.contenido_capacitacion h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1.3;
}

.contenido_capacitacion b{
  font-size: 4rem;
}

.texto_capacitacion p{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}

.texto_capacitacion b{
  font-size: 1.8rem;
}

.texto_capacitacion li{
  font-size: 1.4rem;
  font-weight: 500;
  list-style-type: disc;
  margin-left: 40px;
}

.imagen_capacitacion {
  width: 50%;
  margin-left: 10%;
  margin-right: -5%;
}

.imagen_capacitacion img {
  width: 100%;
  margin-block: auto;
}

/* SECCION ALIANZAS */
.fondo_alianzas {
  background-color: #031d8c;
  width: 100%;
  height: auto;
}

.alianzas {
  position: relative;
  width: 90%;
  height: 550px;
  margin: auto;
  text-align: center;
}

.alianzas p {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: white;
  font-weight: 500;
  margin-top: -50px;
}

.linea_tiempo {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  width: 90%;
  margin-inline: auto;
  height: 3px;
  background-color: #ffffff;
  transform: translateY(-50%);
}

.objeto_linea {
  position: absolute;
  width: 120px;
  text-align: center;
}

.punto_linea_arriba {
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -105px;
  z-index: 2;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.punto_linea_abajo {
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95px;
  z-index: 2;
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.linea_tiempo_conector {
  width: 2px;
  height: 100px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo_contenedor {
  width: 100px;
  height: auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.logo_contenedor img {
  width: 150px;
  height: auto;
}

.linea_tiempo [data-reveal="bottom"] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  transition-delay: 0s;
}

.linea_tiempo [data-reveal="top"] {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  transition-delay: 0s;
}

.linea_tiempo [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.linea_tiempo [data-reveal][data-delay="0"].revealed { transition-delay: .7s; }
.linea_tiempo [data-reveal][data-delay="1"].revealed { transition-delay: 1.4s; }
.linea_tiempo [data-reveal][data-delay="2"].revealed { transition-delay: 2.1s; }
.linea_tiempo [data-reveal][data-delay="3"].revealed { transition-delay: 2.8s; }
.linea_tiempo [data-reveal][data-delay="4"].revealed { transition-delay: 3.5s; }
.linea_tiempo [data-reveal][data-delay="5"].revealed { transition-delay: 4.2s; }
/*----------------------------------*\
  #RESEÑA SECTION
\*----------------------------------*/

.resena_container{
  margin-bottom: -20px;
  width: 95%;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
}

.imagen_resena img{
  width: 50rem;
  height: auto;
}

.texto_resena{
  width: 40%;
  margin-left: 10rem;
}

.texto_resena h3{
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  font-weight: 400;
}

.texto_resena p{
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}



/*-----------------------------------*\
  #EQUIPO SECTION
\*-----------------------------------*/

.equipo-section h2 {
  text-align: center;
  color: var(--blue);
  font-size: 3rem;
  font-weight: 500;
}

.equipo-section h2 span {
  font-weight: 700;
}

.equipo-section h3 {
  text-align: center;
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 1.7rem;
}

.equipo-section h3 span {
  font-weight: 500;
  font-style: italic;
}

.card-equipo {
  border-radius: 4rem;
  overflow: hidden;
  width: 40rem;
  height: 40rem;
  border: 2px solid var(--blue);
  margin-top: 7rem;
  position: relative;
}

.card-equipo img {
  width: 100%;
}

.text-card-equipo-container {
  position: absolute;
  bottom: -35%;
  background-color: var(--blue);
  color: var(--white);
  text-align: center;
  transition: all 500ms ease;
}

.text-card-equipo-container h3 {
  font-size: 2.5rem;
  margin-top: 1.1rem;
}

.text-card-equipo-container p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 1rem 5rem 2rem 5rem;
}

.card-equipo:hover>.text-card-equipo-container {
  bottom: 0;
}

.cards-imgs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  height: 55px;
}

.carousel-text {
  font-size: 25px;
  color: var(--blue);
  font-weight: 500;
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 1s ease;
}

.carousel-text img {
  position: absolute;
  width: 36rem;
  height: 1rem;
  top: 85%;
  left: 42%;
}

.carousel-text.active {
  left: 0;
  opacity: 1;
}

.carousel-text.exit {
  left: -100%;
  opacity: 0;
}

.nuestros-section h2 {
  text-align: center;
  color: var(--blue);
  font-weight: 500;
}

.first-container-pattern-nuestros {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.el-container-1 {
  width: 27rem;
  height: 15rem;
  background-color: var(--blue);
  border-radius: 2rem;
}

.nuestros-elements-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: scroll;
  width: 100%;
  height: 33rem;
  margin-top: 4rem;
  scrollbar-color: rebeccapurple transparent;
  padding-bottom: 1rem;
}

.nuestros-elements-section>div:first-of-type {
  margin-left: 9rem;
}

.nuestros-elements-section>div:last-of-type {
  margin-right: 9rem;
}

.second-container-pattern-nuestros {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.third-container-pattern-nuestros {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.fourth-container-pattern-nuestros {
  width: 100%;
  height: 100%;
}

.el-container-2,
.el-container-3 {
  width: 27rem;
  height: 29rem;
  background-color: var(--blue);
  border-radius: 2rem;
}

.el-container-4 {
  width: 27rem;
  height: 32rem;
  background-color: var(--blue);
  border-radius: 2rem;
}

.accordion {
  color: var(--black);
  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 p {
  font-size: 1.4rem;
  font-weight: 500;
}

.active

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

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

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

.preguntas-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--blue);
  font-weight: 500;
}

.contact-bg-modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 50;
  opacity: .3;
  bottom: -100%;
  background-color: var(--black);
  transition: all 300ms ease;
}

.form-container {
  width: 57.8rem;
  height: 38.5rem;
  position: fixed;
  background-color: var(--white);
  border: 2px solid var(--blue);
  z-index: 51;
  top: 0;
  right: 0;
  bottom: -200%;
  left: 0;
  margin: auto;
  padding: 3rem 0;
  border-radius: 3rem;
  transition: all 300ms ease;
  overflow: hidden;
}

form {
  position: relative;
  height: 100%;
}


.first-form-part {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  transition: all 500ms ease;
}

.second-form-part-aleman {
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 500ms ease;
}

.second-form-part-ingles {
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 500ms ease;
}

.slide-aleman {
  display: none;
}

.slide-ingles {
  display: none;
}

.second-form-part-aleman h2,
.second-form-part-ingles h2,
.third-form-part-ingles h2 {
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}

.nivel-aleman,
.nivel-ingles {
  outline: 2px solid var(--blue);
  width: 50%;
  margin-top: 2rem;
  padding-block: .3rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue);
  border-radius: 2rem;
  margin-inline: auto;
  transition: all 500ms ease;
}

.nivel-aleman-selected {
  background-color: var(--blue);
  color: var(--white);
}

.first-form-part h2 {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.language-option img {
  width: 13rem;
  border-radius: 1rem;
  /* border: 2px solid var(--blue); */
}

.languageSelected {
  outline: 2px solid var(--blue);
}

.language-option p {
  text-align: center;
  margin-top: .8rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.language-options-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  margin-top: 3rem;
}

.next-button {
  background-color: var(--blue);
  color: var(--white);
  height: fit-content;
  display: flex;
  margin-inline: auto;
  padding: 1.5rem 5rem;
  margin-top: 3rem;
  transition: all 500ms ease;
  position: absolute;
  bottom: -600px;
  top: 0;
  left: 0;
  right: 0px;
  margin: auto;
  width: fit-content;
}

.next-button:hover {
  background-color: var(--black);
}

.next-button p {
  font-size: 1.3rem;
  font-weight: 500;
}

.next-button img {
  filter: invert(1);
  width: 1.5rem;
}

.back-btn {
  width: 3rem;
  transform: rotate(180deg);
  position: absolute;
  top: -9%;
  left: -20%;
  transition: all 500ms ease;
}

.back-btn svg {
  color: var(--blue);
}

.nv-item-mb-a-equipo {
  background-color: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 1rem 3rem;
  margin-inline: auto;
  margin-top: 3rem;
}

.nv-item-mb-a-equipo:hover>.hover-bg-mb-equipo {
  transform: translate(-100%, -100%);
}

.hover-bg-mb-equipo {
  width: 200%;
  height: 200%;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: -50%;
  transition: all 1.5s ease;
  border-bottom-right-radius: 40rem;
  z-index: 2;
}

.nv-item-mb-a-equipo p {
  z-index: 3;
  position: relative;
}

/* Código del SWIPER */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next {
  top: 90% !important;
  left: 0 !important;
  right: 0 !important;
  margin-inline: auto !important;
  background-color: var(--blue);
  color: var(--white) !important;
  padding: 2rem 10rem;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
}


.send-form-btn {
  position: absolute;
  width: 20rem;
  height: fit-content;
  top: 120%;
  left: 0;
  right: 0;
  margin-inline: auto;
  background-color: var(--blue);
  color: var(--white);
  padding: 1rem;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.send-form-btn:hover {
  background-color: var(--black);
}

.arrow-container-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-button-next svg {
  width: 2rem !important;
  height: 2rem !important;
  color: var(--white);
}

.swiper-button-next:hover {
  background-color: var(--black);
}

.swiper-button-next::after {
  content: "" !important;
}

.swiper-button-prev {
  top: 6% !important;
  left: 10% !important;
  transition: all 500ms ease;
}

.swiper-button-prev::after {
  content: "" !important;
}

.swiper-button-prev svg {
  width: 3rem !important;
  height: 3rem !important;
  color: var(--blue);
  transform: rotate(180deg);
}

.third-form-part-ingles input {
  border: 2px solid var(--blue);
  margin-bottom: 1.5rem;
  width: 65%;
  margin-inline: auto;
  border-radius: 4rem;
  padding: .5rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.third-form-part-ingles input::placeholder {
  color: var(--blue);
}

.third-form-part-ingles input:first-of-type {
  margin-top: 4rem;
}

/* SECCION MOVIL */
.app_section {
  margin-block: 50px;
  width: 98%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.app_contenido h2 {
  margin-inline: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #031d8c;
}

.app_contenido p {
  width: 90%;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  margin: 0 auto 2rem;
  color: #031d8c;
}

.store_buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;  
  flex-direction: row;
  margin-top: 20px;
}

.store_btn{
  width: 200px;
  display: flex;
  flex-direction: row;
  font-family: "Montserrat", sans-serif;
  color: #031d8c;
  align-items: center;
  background-color: #d9e2ff;
  padding: 1rem 3rem;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 10px;
  transition: all 0.6s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.store_btn img {
  width: 30px;
  height: auto;
  margin-right: 5px;
}

.store_btn:hover {
  transform: scale(1.1);
}

.app_imagen {
  margin-inline: auto;
  margin-top: 3rem;
}

.app_imagen img {
  
  margin-inline: auto;
  max-width: 200px;
  width: 100%;
  height: auto;
}



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

.flex-container-footer {
  display: flex;
  gap: 10rem;
}

.iconos-social-footer-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.iconos-social-footer-container img {
  width: 3.5rem;
  margin-top: 1.5rem;
}

.logo-container img {
  width: 35rem;
}

.navigation-container h2,
.contacto-container-footer h2 {
  font-size: 2rem;
  font-weight: 400;
  width: fit-content;
}

.logo-container p {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-block: 3rem;
  white-space: pre-line;
}

.logo-container a {
  font-size: 1.4rem;
  font-weight: 500;
  width: fit-content;
}

.logo-container a:hover {
  text-decoration: underline;
}

.links-navigation-container {
  line-height: 2rem;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.contacto-container-footer p {
  white-space: pre-line;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.navigation-container a {
  width: fit-content;
}

.navigation-container a:hover {
  text-decoration: underline;
}

.navigation-container a:last-of-type {
  font-size: 1.4rem;
}

.powered-container {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-inline: auto;
  margin-top: 5rem;
}

.powered-container img {
  width: 5rem;
}

.footer {
  color: var(--white);
  background-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;
}





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

@media (min-width: 1400px) {
  .nv-item-contact {
    margin-right: 15rem;
  }

  .nv-item-mb {
    width: 25rem;
  }
}

@media (min-width: 300px) and (max-width: 399px) {
  .logo img{
    width: 25rem;
    
  }

  .container{
    padding-inline: 4px;
  }

  .nv-item-mb{
    background-color: #031d8c;
    padding-block: 20px;
    width: 250px;
    margin-inline: auto;
    padding-block: 10px;
    padding-inline: 10px;
  }

  .nv-item-mb img{
    width: 75px;
    margin-inline: auto;
  }
  /* SECCION HERO */
  .hero {
    position: relative;
    margin-top: 80px;
    flex-direction: column-reverse;
    height: auto;
    padding: 1rem;
    gap: 2rem;
    margin-block: 80px;
  }

  .hero_contenido {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero_contenido h2 {
    font-size: 1.6rem;
  }

  .hero_contenido p {
    font-size: 1.3rem;
  }

  .hero_contenido img {
    margin-left: 60%;
    width: 110px;
    height: 20px;
  }

  .hero_item_mb {
    position: relative;
    margin: 20px auto;
    width: 80%;
  }

  .hero_imagenes {
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .imagen_hero {
    width: 180px;
    height: 130px;
    transition: transform 0.3s ease, z-index 0.3 ease;
  }

  .imagen1 {
    top: 40%;
    left: 25%;
  }

  .imagen2 {
    top: 45%;
    left: 10%;
  }

  .imagen3 {
    top: 35%;
    left: 18%;
  }

  .imagen4 {
    top: 38%;
    left: 3%;
  }

  .imagen5 {
    top: 46%;
    right: 10%;
  }

  .imagen6 {
    top: 45%;
    left: 30%;
  }

  .imagen_hero {
    position: absolute
  }

  .imagen_hero:hover {
    transform: scale(1.15);
    z-index: 10;
  }

  /* SECCION CRECIMIENTO */
  .crecimiento_contenido {
    font-size: 1.8rem;
    padding-top: 60px;
    width: 90%;
    height: auto;
  }

  .elementos_crecimiento {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .elementos_crecimiento h3 {
    font-size: 1.5rem;
  }

  .imagen_texto {
    justify-content: left;
    text-align: left;
  }

  .imagen_texto img {
    width: clamp(24px, 4vw, 30px);
    height: auto;
    flex-shrink: 0;
  }

  /* SECCION CLASES */
  .clases_seccion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .clase_card {
    width: 280px;
    margin-inline: auto;
  }

  .descripcion_idioma {
    font-size: 1.5rem;
    width: 98%;
    height: 300px;
    text-align: center;
  }

  .clase_idioma h2{
    font-size: 1.6rem;
    font-weight: 500;
  }

  .descripcion_idioma h3 {
    width: 80%;
    font-size: 1.4rem;
  }

  .imagenes_extra {
    margin-left: 200px;
  }


  .hero_item_mb2 {
    width: 100%;
    position: absolute;
    margin-top: 20px;
    margin-left: auto;
    right: 0;
    left: 0;
    margin-right: auto;
    width: 260px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  } 

  /* SECCION PASOS */ 

  .programa_seccion {
    width: 98%;
  }

  .pasos_programa {
    display: flex;
    flex-direction: column;
  }

  .pasos_programa img {
    transform: rotate(90deg);
  }

  .flecha img {
    margin-right: 10px;
    margin-top: 30px;
  }

  .hero_item_mb3 {
    width: 230px;
    margin-top: 50px;
    margin-inline: 0;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
  }

  .boton_programa{
    margin-bottom: 50px;
  }

  /* SECCION NEGOCIOS */
  .negocios_section {
    display: flex;
    flex-direction: column;
  }

  .imagen_negocios {
    width: 98%;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  .imagen_negocios img {
    margin-inline: auto;
  }

  .contenido_negocios {
    width: 90%;
    margin-top: 50px;
    margin-inline: auto;
    text-align: center;
  }

  .contenido_negocios h2{
    font-size: 2.5rem;
  }

  .contenido_negocios b{
    font-size: 3rem;
  }

  .texto_negocios p {
    text-align: center;
    font-size: 1.4rem;
  }


  .nv-item-mb-a-negocios{
    margin-inline: auto;
  }
  /* SECCION CAPACITACION */
  .capacitacion_section{
    display: flex;
    flex-direction: column;
  }

  .imagen_capacitacion{
    width: 98%;
    margin-inline: auto;
  }

  .imagen_capacitacion img{
    width: 100%;
    margin-inline: auto;
  }

  .contenido_capacitacion {
    width: 95%;
    margin-bottom: 60px;
    text-align: center;
  }

  .contenido_capacitacion h2{
    font-size: 2.5rem;
  }

  .contenido_capacitacion b{
    font-size: 3rem;
  }

  .contenido_capacitacion li{
    text-align: left;
  }

  .texto_capacitacion p{
    text-align: center;
    font-size: 1.4rem;
  }

  .texto_capacitacion b {
    font-size: 2rem;
    font-weight: 500;
  }
  
  /* SECCION LINEA DEL TIEMPO */
  .alianzas {
    height: 900px;
  }

  .linea_contenedor {
    position: relative;
    width: 100%;
    height: 90%;
  }

  .linea_tiempo {
    margin-top: 10px;
    transform: rotate(90deg);
    width: 200%;
    margin-inline: -50%;
  }

  .logo_contenedor {
    transform: rotate(-90deg);
    width: 100px;
  }

  .punto_linea_abajo {
    top: 100px;
  }

  .punto_linea_arriba {
    top: -100px;
  }

  .linea_tiempo_conector {
    height: 100px;
    width: 2px;
  }

  .logo_contenedor img {
    width: 130px;
  }

  .izquierda {
    margin-left: -30px;
    margin-top: 60px;
  }

  .derecha {
    margin-left: -30px;
    margin-top: -50px;
  }

  /* SECCION RESEÑA */
  .resena_container{
    width: 98%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
  }

  .imagen_resena img{
    width: 95%;
    height: auto;
    margin-inline: auto;
  }

  .texto_resena{
    margin-top: 20px;
    width: 85%;
    margin-inline: auto;
  }

  .texto_resena h3{
    font-size: 1.7rem;
    text-align: center;
  }

  .texto_resena p{
    margin-left: 0px;
    text-align: center;
  }

  /* SECCION EQUIPO */
  .equipo-section{
    margin-block: 50px;
  }
  .carousel-wrapper{
    height: 150px;
  }
  
  .nv-item-mb-a-equipo{
    width: 90%;
    font-size: 1.4rem;
  }

  .carousel-text img{
    margin-top: 10px;
    width: 70%;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  /* SECCION ESTUDIANTES */
  .nuestros-elements-section{
    height: auto;
  }

  .el-container-1{
    width: 25rem;
    height: 13rem;
  }
  
  .el-container-2 {
    width: 25rem;
    height: 27rem;
  }

  .el-container-3{
    width: 25rem;
    height: 24rem;
  }

  .el-container-4{
    width: 25rem;
    height: 30rem;
  }

  .nuestros-elements-section>div:first-of-type {
    margin-left: 2rem;
  }

  .nuestros-elements-section {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nuestros-elements-section::-webkit-scrollbar {
    display: none;
  }


  /* SECCION PREGUNTAS */
  .preguntas-container{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-inline: auto;
  }

  .preguntas-container p{
    font-size: 1.5rem;
    text-align: left;
    margin-left: 0px;
  }

  /* SECCION FOOTER */
  .flex-container-footer{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-inline: auto;
    gap: 5rem;
  }


  .logo-container p{
    text-align: left;
    white-space: normal;
    width: 95%;
    margin-left: 0px;
  }

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

  .navigation-container h2{
    margin-inline: auto;
  }

  .navigation-container a{
    margin-inline: auto;
    text-align: center;
  }

  .contacto-container-footer h2, p{
    margin-inline: auto;
    text-align: center;
  }

  .iconos-social-footer-container{
    width: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
  }

  /* FORMULARIO */
  .form-container{
    width: 95%;
    height: 50rem;
    margin-inline: auto;
  }

  .first-form-part h2{
    width: 80%;
    margin-inline: auto;
  }

  .swiper-button-prev svg{
    width: 2rem !important;
    height: 2rem !important;
    margin-left: -35px;
  }

  .language-options-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .second-form-part-aleman h2{
    width: 80%;
    margin-inline: auto;
    font-size: 1.8rem;
  }

  .second-form-part-ingles h2{
    width: 80%;
    margin-inline: auto;
    font-size: 1.8rem;
  }

  .nivel-aleman, .nivel-ingles{
    padding-block: .6rem;
  }

  .third-form-part-ingles h2{
    width: 80%;
    margin-top: 5px;
    margin-inline: auto;
    font-size: 1.8rem;
  }

  .third-form-part-ingles input{
    width: 80%;
    margin-block: 30px;
  }

}

@media (min-width: 400px) and (max-width: 767px){
  .logo img{
    width: 25rem;
    
  }

  .container{
    padding-inline: 4px;
  }

  .nv-item-mb{
    background-color: #031d8c;
    padding-block: 20px;
    width: 80%;
    margin-inline: auto;
    padding-block: 15px;
    padding-inline: 10px;
  }

  .nv-item-mb img{
    width: 90px;
    margin-inline: auto;
  }
  
  /* SECCION HERO */
  .hero {
    position: relative;
    margin-top: 80px;
    flex-direction: column-reverse;
    height: auto;
    padding: 1rem;
    gap: 0px;
    margin-block: 80px;
  }

  .hero_contenido {
    width: 100%;
    position: relative;
    margin-top: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero_contenido h2 {
    font-size: 1.7rem;
  }

  .hero_contenido p {
    font-size: 1.5rem;
  }

  .hero_contenido img {
    left: 0;
    right: 0;
    width: 120px;
    height: auto;
  }

  .hero_item_mb {
    position: relative;
    margin: 20px auto;
    width: 80%;
  }

  .hero_imagenes {
    width: 90%;
    margin-inline: 8%;
    height: 400px;
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .imagen_hero {
    width: 220px;
    height: 150px;
    transition: transform 0.3s ease, z-index 0.3 ease;
  }
  
  .imagen_hero {
    position: absolute
  }

  .imagen_hero:hover {
    transform: scale(1.15);
    z-index: 10;
  }

  /* SECCION CRECIMIENTO */
  .crecimiento_contenido {
    font-size: 1.8rem;
    padding-top: 60px;
    width: 90%;
    height: auto;
  }

  .elementos_crecimiento {
    width: 98%;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .elementos_crecimiento h3 {
    font-size: 1.6rem;
  }

  .imagen_texto {
    justify-content: left;
    text-align: left;
  }

  .imagen_texto img {
    width: clamp(24px, 4vw, 30px);
    height: auto;
    flex-shrink: 0;
  }

  /* SECCION CLASES */
  .clases_seccion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .clase_card {
    width: 360px;
    margin-inline: auto;
  }

  .descripcion_idioma {
    font-size: 1.6rem;
    width: 98%;
    height: 300px;
    text-align: center;
  }

  .clase_idioma h2{
    font-size: 1.8rem;
    font-weight: 500;
  }

  .descripcion_idioma h3 {
    width: 80%;
    font-size: 1.6rem;
  }

  .imagenes_extra {
    margin-left: 200px;
  }


  .hero_item_mb2 {
    width: 100%;
    position: absolute;
    margin-top: 20px;
    margin-left: auto;
    right: 0;
    left: 0;
    margin-right: auto;
    width: 300px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  } 

  .hero_item_mb2 p{
    font-size: 1.5rem;
  }

  /* SECCION PASOS */ 

  .programa_seccion {
    width: 98%;
  }

  .pasos_programa {
    display: flex;
    flex-direction: column;
  }

  .pasos_programa img {
    transform: rotate(90deg);
  }

  .flecha img {
    margin-right: 10px;
    margin-top: 30px;
  }

  .hero_item_mb3 {
    width: 230px;
    margin-top: 50px;
    margin-inline: 0;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
  }

  .boton_programa{
    margin-bottom: 50px;
  }

   /* SECCION NEGOCIOS */
  .negocios_section {
    display: flex;
    flex-direction: column;
  }

  .imagen_negocios {
    width: 98%;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  .imagen_negocios img {
    margin-inline: auto;
  }

  .contenido_negocios {
    width: 90%;
    margin-top: 50px;
    margin-inline: auto;
    text-align: center;
  }

  .contenido_negocios h2{
    font-size: 2.5rem;
  }

  .contenido_negocios b{
    font-size: 3rem;
  }

  .texto_negocios p {
    text-align: center;
    font-size: 1.5rem;
  }


  .nv-item-mb-a-negocios{
    margin-inline: auto;
  }
  /* SECCION CAPACITACION */
  .capacitacion_section{
    display: flex;
    flex-direction: column;
  }

  .imagen_capacitacion{
    width: 98%;
    margin-inline: auto;
  }

  .imagen_capacitacion img{
    width: 100%;
    margin-inline: auto;
  }

  .contenido_capacitacion {
    width: 95%;
    margin-bottom: 60px;
    text-align: center;
  }

  .contenido_capacitacion h2{
    font-size: 2.7rem;
  }

  .contenido_capacitacion b{
    font-size: 3.2rem;
    font-weight: 500;
  }

  .contenido_capacitacion ul{
    margin-top: 10px;
  }

  .contenido_capacitacion li{
    text-align: left;
    font-size: 1.5rem;
  }

  .texto_capacitacion p{
    text-align: center;
    font-size: 1.5rem;
  }

  .texto_capacitacion b {
    font-size: 2.3rem;
  }
  
  
  /* SECCION LINEA DEL TIEMPO */
  .titulo_alianzas p{
    font-size: 2.5rem;
  }

  .alianzas {
    height: 110vh;
    max-height: 1250px;
    min-height: 700px;
  }

  .linea_contenedor {
    position: relative;
    width: 100%;
    height: 90%;
  }

  .linea_tiempo {
    margin-top: 10px;
    transform: rotate(90deg);
    width: 160%;
    margin-inline: -30%;
  }

  .logo_contenedor {
    transform: rotate(-90deg);
    width: 120px;
  }

  .punto_linea_abajo {
    top: 100px;
  }

  .punto_linea_arriba {
    top: -100px;
  }

  .linea_tiempo_conector {
    height: 100px;
    width: 2px;
  }

  .logo_contenedor img {
    width: 140px;
  }

  .izquierda {
    margin-left: -40px;
    margin-top: 40px;
  }

  .derecha {
    margin-left: -40px;
    margin-top: -40px;
  }

    /* SECCION RESEÑA */
  .resena_container{
    width: 98%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
  }

  .imagen_resena img{
    width: 95%;
    height: auto;
    margin-inline: auto;
  }

  .texto_resena{
    margin-top: 20px;
    width: 80%;
    margin-inline: auto;
    text-align: center;
  }

  .texto_resena h3{
    font-size: 1.8rem;
  }

  .texto_resena p{
    margin-left: 0px;
    text-align: center;
  }

  /* SECCION EQUIPO */
  .equipo-section{
    margin-block: 50px;
  }
  .carousel-wrapper{
    height: 150px;
  }
  
  .nv-item-mb-a-equipo{
    width: 90%;
    max-width: 300px;
    font-size: 1.4rem;
  }

  .carousel-text{
    width: 100%;
    font-size: 2.8rem;
    margin-inline: auto;
  }



  .carousel-text img{
    margin-top: 10px;
    width: 70%;
    max-width: 400px;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  /* SECCION ESTUDIANTES */
  .nuestros-elements-section{
    height: auto;
  }

  .el-container-1{
    width: 28rem;
    height: 16rem;
  }
  
  .el-container-2 {
    width: 28rem;
    height: 30rem;
  }

  .el-container-3{
    width: 28rem;
    height: 27rem;
  }

  .el-container-4{
    width: 28rem;
    height: 33rem;
  }

  .nuestros-elements-section>div:first-of-type {
    margin-left: 2rem;
  }

  .nuestros-elements-section {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nuestros-elements-section::-webkit-scrollbar {
    display: none;
  }


  /* SECCION PREGUNTAS */
  .preguntas-container{
    display: flex;
    flex-direction: column;
    width: 85%;
    margin-inline: auto;
  }

  .preguntas-container p{
    font-size: 1.6rem;
    text-align: left;
    margin-left: 0px;
  }

  /* SECCION FOOTER */
  .flex-container-footer{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-inline: auto;
    gap: 5rem;
  }


  .logo-container p{
    text-align: center;
    white-space: normal;
    width: 90%;
    margin-inline: auto;
  }

  .logo-container img{
    width: 30rem;
    margin-inline: auto;
  }

  .logo-container a{
    margin-inline: auto;
  }

  .navigation-container h2{
    margin-inline: auto;
  }

  .navigation-container a{
    margin-inline: auto;
    text-align: center;
  }

  .contacto-container-footer h2, p{
    margin-inline: auto;
    text-align: center;
  }

  .iconos-social-footer-container{
    width: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
  }

    /* FORMULARIO */
  .form-container{
    width: 95%;
    height: 50rem;
    margin-inline: auto;
  }

  .swiper-button-prev svg{
    width: 2rem !important;
    height: 2rem !important;
    margin-left: -35px;
  }

  .first-form-part h2{
    width: 80%;
    margin-inline: auto;
  }

  .language-options-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .second-form-part-aleman h2{
    width: 80%;
    margin-inline: auto;
    font-size: 2rem;
  }

  .second-form-part-ingles h2{
    width: 80%;
    margin-inline: auto;
    font-size: 2rem;
  }

  .nivel-aleman, .nivel-ingles{
    padding-block: .6rem;
  }

  .third-form-part-ingles h2{
    width: 80%;
    margin-top: 5px;
    margin-inline: auto;
    font-size: 2rem;
  }

  .third-form-part-ingles input{
    width: 80%;
    margin-block: 30px;
  }
  
}

@media (min-width: 768px) and (max-width: 1099px){
  
  .nv-item-mb{
    background-color: #031d8c;
    padding-block: 20px;
    width: 80%;
    margin-inline: auto;
    padding-block: 15px;
    padding-inline: 10px;
  }

  .nv-item-mb img{
    width: 90px;
    margin-inline: auto;
  }

  .navbar-top img{
    width: 25rem;
    margin-left: 0px;
  }

  /* SECCION HERO */
  .hero {
    position: relative;
    margin-top: 80px;
    flex-direction: column-reverse;
    height: auto;
    padding: 1rem;
    gap: 6rem;
    margin-block: 150px;
  }

  .hero_contenido {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero_contenido p {
    font-size: 1.5rem;
  }

  .hero_contenido img {
    margin-left: 55%;
    width: 90px;
  }

  .hero_item_mb {
    position: relative;
    margin: 20px auto;
    width: 80%;
  }

  .hero_imagenes {
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .imagen_hero {
    width: 300px;
    height: 200px;
    transition: transform 0.3s ease, z-index 0.3 ease;
  }

  .imagen1 {
    top: 65%;
    left: 28%;
  }

  .imagen2 {
    top: 105%;
    left: 15%;
  }

  .imagen3 {
    top: 25%;
    left: 28%;
  }

  .imagen4 {
    top: 40%;
    left: 10%;
  }

  .imagen5 {
    top: 90%;
    right: 15%;
  }

  .imagen6 {
    top: 5%;
    left: 30%;
  }

  .imagen_hero {
    position: absolute
  }

  .imagen_hero:hover {
    transform: scale(1.15);
    z-index: 10;
  }

  .hero_item_mb {
    width: 40%;
  }

  /* SECCION CRECIMIENTO */ 

  .crecimiento_contenido {
    font-size: 2.2rem;
    padding-top: 60px;
    width: 95%;
    height: auto;
  }

  .elementos_crecimiento {
    width: 90%;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .elementos_crecimiento p {
    font-size: 1.8rem;
  }

  .imagen_texto {
    justify-content: left;
    text-align: left;
  }

  .imagen_texto img {
    width: clamp(24px, 4vw, 30px);
    height: auto;
    flex-shrink: 0;
  }

  .elementos_crecimiento img {
    margin-right: 10px;
  }

  /* SECCION CLASES */ 
  
  .clases_seccion {
    width: 98%;
    margin-inline: auto;
    overflow: hidden;
    gap: 0px;
  }

  .clase_card {
    width: 95%;
    margin-inline: auto;
  }

  .descripcion_idioma{
    width: 100%;
  }

  .imagenes_extra {
    margin-left: 140px;
  }

  .descripcion_idioma p {
    font-size: 1.2rem;
  }

  .hero_item_mb2 {
    margin-top: 50px;
    width: 35%;
    margin-inline: auto;
    left: 0;
    right: 0;
  }

  .programa_seccion {
    width: 100%;
  }

  /* SECCION PASOS */
  .negocios_section{
    width: 96%;
  }

  .flecha img{
    width: 50px;
  }
  .paso{
    width: 280px;
    font-size: 1.3rem;
  }

  /* SECCION NEGOCIOS */
  .contenido_negocios{
    width: 42%;
  }
  .contenido_negocios h2 {
    font-size: 2.5rem;
  }

  .contenido_negocios b {
    font-size: 3rem;
  }

  .imagen_negocios {
    width: 55%;
  }

  .texto_negocios {
    width: 100%;
  }
  .texto_negocios p{
    font-size: 1.4rem;
  }

    /* SECCION CAPACITACION */
  .capacitacion_section{
    width: 90%;
  }
  
  .contenido_capacitacion{
    width: 40%;
  }
  .contenido_capacitacion h2 {
    font-size: 2.5rem;
  }

  .contenido_capacitacion b {
    font-size: 3rem;
  }

  .imagen_capacitacion {
    width: 55%;
  }

  .texto_capacitacion {
    width: 100%;
  }
  .texto_capacitacion p{
    font-size: 1.4rem;
  }

  .texto_capacitacion b{
    font-weight: 500;
    font-size: 2.4rem;
  }



  /* SECCION LINEA DEL TIEMPO */
  .logo_contenedor img {
    width: 130px;
  }
  
  /* SECCION RESEÑA */
  .resena_container{
    width: 98%;
  }

  .imagen_resena{
    width: 50%;
  }

  .imagen_resena img{
    width: 100%;
    height: auto;
    margin-inline: auto;
  }

  .texto_resena{
    width: 40%;
    margin-left: 2rem;
  }

  .texto_resena h3{
    font-size: 1.9rem;
  }

  .texto_resena p {
    text-align: left;
  }

  /* SECCION EQUIPO */
  .equipo-section{
    margin-block: 20px;
  }
  .carousel-wrapper{
    height: 100px;
  }
  
  .nv-item-mb-a-equipo{
    width: 90%;
    max-width: 300px;
    font-size: 1.4rem;
  }

  .carousel-text img{
    margin-top: 10px;
    width: 40%;
    max-width: 350px;
    margin-inline: auto;
    margin-left: 40%;
    left: 0;
    right: 0;
  }



  /* SECCION ESTUDIANTES */
  .nuestros-elements-section{
    height: auto;
  }

  .el-container-1{
    width: 30rem;
    height: 18rem;
  }
  
  .el-container-2 {
    width: 30rem;
    height: 32rem;
  }

  .el-container-3{
    width: 30rem;
    height: 29rem;
  }

  .el-container-4{
    width: 20rem;
    height: 35rem;
  }

  .nuestros-elements-section>div:first-of-type {
    margin-left: 2rem;
  }

  .nuestros-elements-section {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nuestros-elements-section::-webkit-scrollbar {
    display: none;
  }


  /* SECCION PREGUNTAS */

  .preguntas-container{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-inline: auto;
  }

  .preguntas-container p{
    font-size: 1.8rem;
    text-align: left;
    margin-left: 0px;
  }

  /* SECCION FOOTER */
  .flex-container-footer{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-inline: auto;
    gap: 5rem;
  }


  .logo-container p{
    text-align: center;
    white-space: normal;
    width: 90%;
    margin-inline: auto;
  }

  .logo-container img{
    width: 30rem;
    margin-inline: auto;
  }

  .logo-container a{
    margin-inline: auto;
  }

  .navigation-container h2{
    margin-inline: auto;
  }

  .navigation-container a{
    margin-inline: auto;
    text-align: center;
  }

  .contacto-container-footer h2, p{
    margin-inline: auto;
    text-align: center;
  }

  .iconos-social-footer-container{
    width: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
  }

    /* FORMULARIO */
  .form-container{
    width: 70rem;
    height: 60rem;
    margin-inline: auto;
  }

  .swiper-button-prev svg{
    width:3rem !important;
    height: 3rem !important;
    margin-left: -35px;
  }

  .language-options-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .language-option img{
    width: 18rem;
  }

  .first-form-part h2{
    font-size: 2.3rem;
    margin-top: 10px;
  }

  .second-form-part-aleman h2{
    width: 85%;
    margin-inline: auto;
    margin-top: 10px;
    font-size: 2.3rem;
  }

  .second-form-part-ingles h2{
    width: 85%;
    margin-inline: auto;
    margin-top: 10px;
    font-size: 2.3rem;
  }

  .nivel-aleman, .nivel-ingles{
    padding-block: 1rem;
    margin-block: 3rem;
  }

  .third-form-part-ingles h2{
    width: 80%;
    margin-top: 10px;
    margin-inline: auto;
    font-size: 2.3rem;
  }

  .third-form-part-ingles input{
    width: 65%;
    margin-block: 30px;
  }

}

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

  .container {
    max-width: 1200px;
    /* padding-inline: 0; */
  }


  /**
   * HEADER
   */

  .header {
    padding-block: 0px;
    position: relative;
  }

  .nv-item-contact {
    margin-right: 13rem;
  }

  /* Aquí empiezan los estilos del boton de MedBruck del navbar */

  .nv-item-mb {
    position: absolute;
    right: 0;
    width: 20rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .nv-item-mb img {
    width: 10rem;
    z-index: 3;
  }

  @keyframes animationMb {
    0%{
      transform: translate(10%, 10%);
    }
    100% {
      transform: translate(-100%, -100%);
    }
  }

  @keyframes animationMbBack {
    0% {
      transform: translate(-100%, -100%);
    }

    100% {
      transform: translate(10%, 10%);
    }
  }

  .animation-mb {
    animation: animationMb .6s forwards;
  }

  .animation-mb-back {
    animation: animationMbBack .6s forwards;
  }

  @keyframes idleMb {
    0%, 100% {
      transform: translate(10%, 10%);
    }
    50% {
      transform: translate(0%, 0%);
    }
  }

  .hover-bg-mb {
    position: absolute;
    background-color: var(--blue);
    width: 150%;
    height: 200%;
    border-bottom-right-radius: 200%;
    z-index: 2;
    transform: translate(10%, 10%);
  }

  /* Aquí terminan los estilos del boton de MedBruck del navbar */

  .nuestros-section {
    width: 100%;
    height: fit-content;
    background-color: var(--grey);
  }

  .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;
  }

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

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




  /**
   * 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: 1401px) {

  .container {
    max-width: 1400px;
    /* padding-inline: 0; */
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 0px;
    position: relative;
  }

  .nv-item-contact {
    margin-right: 13rem;
  }

  /* Aquí empiezan los estilos del boton de MedBruck del navbar */

  .nv-item-mb {
    position: absolute;
    right: 0;
    width: 22rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .nv-item-mb img {
    width: 10rem;
    z-index: 3;
  }

  @keyframes animationMb {
    0%{
      transform: translate(10%, 10%);
    }
    100% {
      transform: translate(-100%, -100%);
    }
  }

  @keyframes animationMbBack {
    0% {
      transform: translate(-100%, -100%);
    }

    100% {
      transform: translate(10%, 10%);
    }
  }

  .animation-mb {
    animation: animationMb .6s forwards;
  }

  .animation-mb-back {
    animation: animationMbBack .6s forwards;
  }

  @keyframes idleMb {
    0%, 100% {
      transform: translate(10%, 10%);
    }
    50% {
      transform: translate(0%, 0%);
    }
  }

  .hover-bg-mb {
    position: absolute;
    background-color: var(--blue);
    width: 150%;
    height: 200%;
    border-bottom-right-radius: 200%;
    z-index: 2;
    transform: translate(10%, 10%);
  }

  /* Aquí terminan los estilos del boton de MedBruck del navbar */

  .nuestros-section {
    width: 100%;
    height: fit-content;
    background-color: var(--grey);
  }

  .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;
    margin-right: 7rem;
  }

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

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




  /**
   * 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: 2000px){
  .navbar-list{
    margin-right: -15rem;
  }
}