@font-face {
  font-family: "League-h";
  src: url("../../assets/fonts/LeagueSpartan-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League-m";
  src: url("../../assets/fonts/LeagueSpartan-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "League";
  src: url("../../assets/fonts/LeagueSpartan-Light.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("../../assets/fonts/Arimo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "mano-negra-bold";
  src: url("../../assets/fonts/wc-mano-negra-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.communibuddy-header {
  position: sticky !important;
  top: 0;
  width: 100%;
  min-height: 140px;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
}
.communibuddy-header .cb-container {
  height: 140px;
}
.communibuddy-header .header-content,
.communibuddy-header .site-branding,
.communibuddy-header .logo-container,
.communibuddy-header .logo-link {
  height: 100%;
}
.communibuddy-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  margin: 0px 2rem;
}
.communibuddy-header .fondo-header {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
  right: 5%;
  z-index: 10;
}
.communibuddy-header .fondo-header img {
  height: 300px;
}
.communibuddy-header .logo-container .logo-link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 600;
}
.communibuddy-header .logo-container .logo-link:hover {
  opacity: 0.7;
  scale: 1.05;
}
.communibuddy-header .logo-container .custom-logo {
  min-height: auto;
  height: 100%;
  width: 292px;
  margin-left: 17%;
  transition: opacity 0.3s ease;
  zoom: 2;
}
@media screen and (max-width: 930px) and (min-width: 769px) {
  .communibuddy-header .logo-container .custom-logo {
    width: 14vw;
  }
}
.communibuddy-header .logo-container .cb-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1b1464;
  display: block;
}
.communibuddy-header .logo-container .cb-subtitle {
  font-size: 0.9rem;
  color: #ff1616;
  display: block;
  font-weight: normal;
}
.communibuddy-header .botonera-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}
.communibuddy-header .botonera-header .hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.communibuddy-header .botonera-header .hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1b1464;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.communibuddy-header .botonera-header .hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.communibuddy-header .botonera-header .hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.communibuddy-header .botonera-header .hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.communibuddy-header .botonera-header .menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.communibuddy-header .botonera-header .menu-overlay.active {
  display: block;
}
.communibuddy-header .botonera-header .main-navigation {
  width: 50%;
  height: 100%;
  display: inline-flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  position: relative;
  left: 40px;
}
.communibuddy-header .botonera-header .main-navigation .primary-menu {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  -moz-column-gap: 0.5vw;
  column-gap: 0.5vw;
}
.communibuddy-header .botonera-header .main-navigation .primary-menu li {
  width: 121px;
  height: 31px;
}
.communibuddy-header .botonera-header .main-navigation .primary-menu li:hover {
  height: 35px;
  transition: all 0.3s ease;
}
.communibuddy-header .botonera-header .main-navigation .primary-menu .menu-link {
  width: 93px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 5px 25px 3px;
  border-radius: 25px;
  z-index: 1000;
  background-color: white;
  color: #1b1464;
  border: 1px solid #1b1464;
  text-decoration: none;
}
.communibuddy-header .botonera-header .main-navigation .primary-menu .menu-link:hover {
  background-color: #ff1616;
  color: #ffffff;
  border: 1px solid #ffffff;
  height: 105%;
  transition: all 0.3s ease;
}
.communibuddy-header .botonera-header .login-lms {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.communibuddy-header .botonera-header .login-lms .login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.communibuddy-header .botonera-header .login-lms .login-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.communibuddy-header .botonera-header .login-lms .login-link img {
  width: 107px;
  height: 148px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .communibuddy-header .header-content {
    flex-direction: row;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  .communibuddy-header .logo-container .logo-link {
    flex-direction: row;
    text-align: left;
    gap: 0.5rem;
  }
  .communibuddy-header .logo-container .cb-subtitle {
    font-size: 0.8rem;
  }
  .communibuddy-header .logo-container .custom-logo {
    width: 39vw;
    max-width: 269px;
    margin-left: 0;
    zoom: 1;
  }
  .communibuddy-header .botonera-header {
    position: relative;
    align-items: center;
    gap: 1rem;
  }
  .communibuddy-header .botonera-header .hamburger-btn {
    display: flex;
    order: 2;
  }
  .communibuddy-header .botonera-header .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 2rem 2rem;
  }
  .communibuddy-header .botonera-header .main-navigation.active {
    right: 0;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    gap: 1rem;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu li {
    width: 100%;
    height: auto;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu li:hover {
    height: auto;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu .menu-link {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    font-size: 16px;
    justify-content: flex-start;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu .menu-link:hover {
    height: auto;
  }
  .communibuddy-header .botonera-header .login-lms {
    order: 1;
    margin-bottom: 0;
    display: none;
  }
  .communibuddy-header .botonera-header .login-lms .login-link img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .communibuddy-header .botonera-header .main-navigation {
    width: 85%;
  }
  .communibuddy-header .botonera-header .main-navigation .primary-menu .menu-link {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.hero-content .hero-frase {
  text-align: left;
  color: black;
  font-size: 22px;
  font-family: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.svg-logo {
  width: 150px;
  height: auto;
  max-height: 60px;
}

/* Para que el SVG sea responsive */
.custom-logo.svg-logo {
  display: block;
}

.login-lms-mobile {
  display: none;
  width: 100%;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 20, 100, 0.1);
}
.login-lms-mobile .login-link-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.login-lms-mobile .login-link-mobile:active {
  transform: scale(0.8);
  opacity: 0.8;
  background-color: rgba(27, 20, 100, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.login-lms-mobile .login-link-mobile img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.login-lms-mobile .login-link-mobile span {
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 768px) {
  .botonera-header .main-navigation.active .login-lms-mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  .communibuddy-header {
    min-height: 80px;
    height: 80px;
  }
  .communibuddy-header .cb-container {
    height: 80px;
  }
  .communibuddy-header .cb-container .site-branding .custom-logo {
    width: 120px;
    zoom: 1.5;
  }
  .login-lms-mobile .login-link-mobile {
    padding: 10px 15px;
  }
  .login-lms-mobile .login-link-mobile img {
    width: 180px;
    height: 180px;
  }
  .login-lms-mobile .login-link-mobile span {
    font-size: 14px;
  }
}
.cb-hero {
  background-color: #1b1464;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.cb-hero .hero-intro,
.cb-hero .hero-experiencia {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}
.cb-hero .hero-intro {
  height: 70vh;
  align-items: center;
}
.cb-hero .hero-experiencia {
  height: auto;
  align-items: flex-start;
}
.cb-hero .hero-background-video {
  width: 32%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.cb-hero .hero-video-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 30vw;
  z-index: 1;
  overflow: hidden;
}
.cb-hero .hero-experiencia-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.cb-hero .cb-container,
.cb-hero .cb-container--exp {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cb-hero .cb-container {
  width: 67%;
}
.cb-hero .cb-container--exp {
  width: 43%;
}
.cb-hero .hero-svg-manchas {
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translate(48%, 36%);
  width: 700px;
  zoom: 3;
}
.cb-hero .hero-svg-rayas {
  position: absolute;
  right: 0px;
  transform: translate(51%, 56%);
  width: 700px;
  zoom: 3;
  z-index: 100;
}
@media screen and (max-width: 1100px) {
  .cb-hero .hero-svg-rayas {
    transform: translate(51%, 7vw);
    zoom: 2;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1900px) {
  .cb-hero .hero-svg-rayas {
    transform: translate(51%, 9vw);
    zoom: 2;
  }
}
.cb-hero .hero-txt {
  font-size: min(1.6vw, 20px);
}
.cb-hero .hero-txt,
.cb-hero .hero-txt-exp,
.cb-hero .hero-txt-exp--aprendemos {
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: 1.4;
  z-index: 100;
}
.cb-hero .hero-txt-aprende {
  max-width: 690px;
}
.cb-hero .hero-content {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.cb-hero .hero-content .hero-title,
.cb-hero .hero-content .hero-txt {
  color: white;
  margin: 0;
}
.cb-hero .hero-content .hero-title {
  font-family: "League-h";
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
.cb-hero .hero-content .hero-word-container {
  position: relative;
  display: inline-block;
}
.cb-hero .hero-content .hero-word-container .hero-svg-decoration {
  transform: translate(-50%, -50%);
  width: 222px;
}
.cb-hero .hero-content .hero-word-container .hero-svg-estrategia {
  transform: translate(-50%, -45.5%);
  width: 180px;
}
.cb-hero .hero-content .hero-word-container .hero-svg-decoration,
.cb-hero .hero-content .hero-word-container .hero-svg-estrategia {
  position: absolute;
  top: -45%;
  left: 51%;
  height: 222px;
  opacity: 1;
  margin-top: 0.2em;
  zoom: 5;
  z-index: -1;
}
.cb-hero .hero-content .hero-word-container .hero-svg-experiencia {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  opacity: 1;
  z-index: -1;
}
.cb-hero .hero-content .hero-word-container .hero-word-decorated {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cb-hero .hero-content .hero-txt {
  margin-top: 5rem;
}
.cb-hero .hero-content .hero-txt-exp,
.cb-hero .hero-content .hero-txt-exp--aprendemos {
  margin-top: 2rem;
  font-size: min(1.4vw, 20px);
}
.cb-hero .hero-content .hero-txt-exp--aprendemos {
  margin-top: 1rem;
}
.cb-hero .hero-content .hero-title-exp {
  position: relative;
  z-index: 2;
  font-size: 2.5vw;
}
.cb-hero .hero-content .hero-title-exp .hero-word-container .hero-svg-experiencia {
  transform: translate(-50%, -34%) scale(13.2);
  width: 140%;
  max-width: 176px;
}
.cb-hero .hero-content .hero-title-aprendermos {
  margin-top: 1.3rem;
  font-size: 2.5vw;
}
.cb-hero .hero-separador {
  width: 100vw;
  height: 20vh;
  background-color: #1b1464;
}
.cb-hero .conatiner-lbl-cursos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12vw;
}
.cb-hero .conatiner-lbl-cursos .hero-txt {
  color: #ffffff;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 193px;
  align-items: flex-end;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .lbl-nivelacion {
  position: absolute;
  transform: translate(-41%, 32%);
  font-family: "mano-negra-bold";
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion {
  position: absolute;
  opacity: 1;
  z-index: 100;
  transform: translate(38%, 29%) scale(1.1);
  width: 541px;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion .flecha-curva {
  display: block;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion .flecha-recta {
  display: none;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-button-nivelacion {
  width: 22%;
  min-width: 302px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 200px;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-button-nivelacion .button-nivelacion {
  position: relative;
  bottom: 1rem;
  margin-top: 2rem;
  padding: 12px 30px;
  border-radius: 36px;
  height: 72px;
  font-size: 1rem;
  font-weight: 700;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: #ffffff;
  color: #1b1464;
  transition: all 0.3s ease;
  z-index: 100;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-button-nivelacion .button-nivelacion:hover {
  background-color: #ff1616;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.cb-hero .conatiner-lbl-cursos .test-nivelacion .box-relleno-nivelacion {
  width: 33%;
}
.cb-hero .hero-word-container {
  position: relative;
  display: inline-block;
}
.cb-hero .hero-word-container .hero-svg-espacio,
.cb-hero .hero-word-container .hero-svg-objetivos,
.cb-hero .hero-word-container .hero-svg-comenza {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 140%;
  opacity: 1;
  z-index: 100;
}
.cb-hero .hero-word-container .hero-svg-espacio {
  transform: translate(-51%, -8%) scale(5.1);
  width: 115%;
}
.cb-hero .hero-word-container .hero-svg-objetivos {
  transform: translate(-53%, 73%) scale(7.1);
  width: 115%;
}
.cb-hero .hero-word-container .hero-svg-comenza {
  transform: translate(-50%, 22%) scale(5);
  width: 130%;
  opacity: 1;
}
.cb-hero .hero-word-container .hero-word-decorated {
  position: relative;
  z-index: 1;
  display: inline-block;
}

@media (min-width: 1500px) {
  .cb-hero .hero-intro {
    height: 87vh;
  }
  .cb-hero .hero-background-video {
    width: 22%;
  }
  .cb-hero .hero-title {
    zoom: 1.3;
  }
  .cb-hero .hero-txt {
    font-size: 1.5vw;
  }
  .cb-hero .hero-content .hero-title-exp,
  .cb-hero .hero-content .hero-title-aprendermos {
    zoom: 1;
    font-size: 38px;
  }
  .cb-hero .conatiner-lbl-cursos .hero-txt {
    zoom: 1.3;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion {
    position: relative;
    left: 2.5%;
    margin-top: 2rem;
    zoom: 1.3;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .lbl-nivelacion {
    transform: translate(-44%, -69%);
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion {
    transform: translate(38%, -16%) scale(1.1);
  }
}
@media (max-width: 1200px) {
  .cb-hero .hero-into {
    height: 60vh;
  }
  .cb-hero .hero-content {
    width: 80%;
  }
  .cb-hero .hero-content .hero-title {
    font-size: 30.5px;
  }
  .cb-hero .hero-content .hero-title .hero-svg-decoration {
    width: 191px;
  }
  .cb-hero .hero-content .hero-word-container .hero-svg-estrategia {
    transform: translate(-50%, -46.5%);
    width: 140px;
  }
  .cb-hero .hero-content .hero-title-exp {
    font-size: 2.4vw;
  }
  .cb-hero .hero-content .hero-txt-exp,
  .cb-hero .hero-content .hero-txt-exp--aprendemos {
    font-size: 13px;
  }
  .cb-hero .hero-content .hero-txt-exp .br,
  .cb-hero .hero-content .hero-txt-exp--aprendemos .br {
    display: none;
  }
  .cb-hero .hero-content .hero-title-aprendermos {
    font-size: 2.4vw;
  }
  .cb-hero .hero-separador {
    height: 10vh;
  }
  .cb-hero .hero-svg-rayas {
    transform: translate(51%, 11vw);
    zoom: 1.5;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .lbl-nivelacion {
    transform: translate(-25%, 86%);
    font-size: 15px;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion {
    transform: translate(43%, 38%) scale(0.8);
  }
}
@media (max-width: 768px) {
  .cb-hero {
    height: auto;
    min-height: auto;
  }
  .cb-hero .hero-intro,
  .cb-hero .hero-experiencia {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }
  .cb-hero .hero-background-video {
    width: 100%;
    height: 50vh;
  }
  .cb-hero .hero-video-container {
    position: relative;
    width: 100%;
    height: 54vw;
    margin-top: 2rem;
    order: 2;
  }
  .cb-hero .hero-experiencia-video {
    width: 100%;
    height: 100%;
  }
  .cb-hero .cb-container {
    width: 90%;
    margin: 0 auto;
    order: 1;
  }
  .cb-hero .hero-content {
    width: 100%;
    text-align: center;
  }
  .cb-hero .hero-content .hero-title {
    font-size: 1.5rem;
  }
  .cb-hero .hero-content .hero-txt-aprende {
    font-size: 13px;
  }
  .cb-hero .cb-container--aprende {
    margin-top: 3rem;
  }
  .cb-hero .cb-container--aprende .hero-word-container .hero-svg-decoration {
    zoom: 3;
    transform: translate(-50%, -49%);
    width: 262px;
  }
  .cb-hero .cb-container--aprende .hero-word-container .hero-svg-estrategia {
    zoom: 3;
    transform: translate(-50%, -44%);
    width: 186px;
  }
  .cb-hero .hero-svg-manchas {
    transform: translate(48%, 371%);
    zoom: 0.7;
  }
  .cb-hero .hero-svg-rayas {
    top: 50%;
    transform: translate(51%, 37vw);
    zoom: 1;
  }
  .cb-hero .conatiner-lbl-cursos {
    margin-top: 4rem;
  }
  .cb-hero .conatiner-lbl-cursos .hero-txt {
    font-size: 1rem;
  }
  .cb-hero .conatiner-lbl-cursos button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .cb-hero .hero-word-container .hero-svg-espacio {
    transform: translate(-43%, 15%) scale(7.1);
  }
  .cb-hero .hero-word-container .hero-svg-objetivos {
    transform: translate(-53%, 39%) scale(6);
  }
  .cb-hero .hero-word-container .hero-svg-comenza {
    transform: translate(-50%, 40%) scale(5);
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .lbl-nivelacion {
    transform: translate(6%, 86%);
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion {
    transform: translate(46%, 38%) scale(0.8);
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-relleno-nivelacion {
    display: none;
  }
}
@media (max-width: 480px) {
  .cb-hero .cb-container--aprende .hero-word-container .hero-svg-decoration {
    width: 226px;
  }
  .cb-hero .cb-container--aprende .hero-word-container .hero-svg-estrategia {
    transform: translate(-50%, -44.5%);
    width: 170px;
  }
  .cb-hero .hero-content .hero-title {
    font-size: 1.3rem;
  }
  .cb-hero .hero-content .hero-txt,
  .cb-hero .hero-content .hero-txt-exp {
    font-size: 0.9rem;
  }
  .cb-hero .hero-content .hero-title-aprendermos {
    margin-top: 3.5rem;
  }
  .cb-hero .hero-video-container {
    margin: 3rem 0rem;
  }
  .cb-hero .conatiner-lbl-cursos {
    margin-top: 2rem;
  }
  .cb-hero .conatiner-lbl-cursos .hero-txt {
    font-size: 0.9rem;
  }
  .cb-hero .conatiner-lbl-cursos button {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  .cb-hero .hero-svg-rayas {
    top: 50%;
    transform: translate(51%, 119%);
    zoom: 0.8;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion {
    flex-direction: column;
    margin-top: 2.5rem;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion {
    width: 100%;
    height: 200px;
    align-items: center;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .lbl-nivelacion {
    position: relative;
    transform: none;
    margin-bottom: 9px;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion {
    position: relative;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 120px;
    scale: 1.3;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion .flecha-curva {
    display: none;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-lbl-nivelacion .hero-svg-nivelacion .flecha-recta {
    display: block;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-button-nivelacion {
    width: 100%;
    height: auto;
    align-items: flex-start;
  }
  .cb-hero .conatiner-lbl-cursos .test-nivelacion .box-button-nivelacion .button-nivelacion {
    margin-top: 1rem;
  }
}
.communibuddy-footer {
  background: #ffffff;
  color: #1b1464;
  padding: 3rem 0 1rem;
}
.communibuddy-footer .footer-content {
  display: grid;
  grid-template-columns: 20% 25% 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  margin-left: 5%;
}
@media (max-width: 1024px) {
  .communibuddy-footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .communibuddy-footer .footer-content .footer-scheduling {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media (max-width: 768px) {
  .communibuddy-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .communibuddy-footer .footer-content .footer-scheduling {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.communibuddy-footer .footer-column .footer-title {
  font-family: "mano-negra-bold";
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1b1464;
}
.communibuddy-footer .footer-column .footer-description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.5;
}
.communibuddy-footer .fondo-footer {
  position: absolute;
  height: 268px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-content: center;
  left: 2%;
  transform: translate(0, -3rem);
  z-index: 10;
}
.communibuddy-footer .fondo-footer img {
  height: 435px;
}
.communibuddy-footer .footer-social .social-icons {
  display: flex;
  flex-direction: column;
}
.communibuddy-footer .footer-social .social-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #1b1464;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.communibuddy-footer .footer-social .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}
.communibuddy-footer .footer-social .social-icon svg {
  color: #ff1616;
  flex-shrink: 0;
  opacity: 0.9;
}
.communibuddy-footer .footer-social .social-icon span {
  font-weight: 500;
}
.communibuddy-footer .footer-contact .contact-info-simple {
  display: flex;
  flex-direction: column;
}
.communibuddy-footer .footer-contact .contact-item-simple {
  padding: 0;
}
.communibuddy-footer .footer-contact .contact-item-simple:last-child {
  border-bottom: none;
}
.communibuddy-footer .footer-contact .contact-item-simple a {
  color: #1b1464;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.communibuddy-footer .footer-contact .contact-item-simple a:hover {
  color: #ff1616;
}
.communibuddy-footer .footer-contact .contact-item-simple:not(:has(a)) {
  color: #1b1464;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}
.communibuddy-footer .footer-contact .no-contact-message {
  text-align: center;
  padding: 1rem;
  background: rgba(27, 20, 100, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(27, 20, 100, 0.2);
}
.communibuddy-footer .footer-contact .no-contact-message p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}
.communibuddy-footer .footer-scheduling .scheduling-widget {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.communibuddy-footer .footer-scheduling .booking-placeholder {
  text-align: center;
}
.communibuddy-footer .footer-scheduling .booking-placeholder p {
  margin-bottom: 1rem;
  opacity: 0.8;
}
.communibuddy-footer .footer-scheduling .booking-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.communibuddy-footer .footer-scheduling .booking-placeholder ul li {
  padding: 0.25rem 0;
  opacity: 0.8;
}
.communibuddy-footer .footer-scheduling .booking-placeholder .booking-btn {
  display: inline-block;
  background: #1b1464;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}
.communibuddy-footer .footer-scheduling .booking-placeholder .booking-btn:hover {
  background: rgb(15.525, 11.5, 57.5);
}
.communibuddy-footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: center;
}
.communibuddy-footer .footer-bottom .footer-bottom-content p {
  margin: 0px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .communibuddy-footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.communibuddy-footer .footer-bottom .footer-legal {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .communibuddy-footer .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.communibuddy-footer .footer-bottom .footer-legal a {
  color: #1b1464;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}
.communibuddy-footer .footer-bottom .footer-legal a:hover {
  opacity: 1;
}

.footer-legal-menu {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-legal-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer-legal-menu a {
  color: #1b1464;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}
.footer-legal-menu a:hover {
  opacity: 1;
}

.booking-placeholder {
  text-align: center;
  padding: 1rem;
}
.booking-placeholder p {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 0.9rem;
}
.booking-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}
.booking-placeholder ul li {
  padding: 0.25rem 0;
  opacity: 0.8;
  font-size: 0.85rem;
}

.no-socials-message {
  text-align: center;
  padding: 1rem;
  background: rgba(27, 20, 100, 0.05);
  border-radius: 8px;
  border: 1px dashed rgba(27, 20, 100, 0.2);
}
.no-socials-message p {
  margin: 0.5rem 0;
  opacity: 0.8;
  font-size: 0.9rem;
}
.no-socials-message small {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .communibuddy-footer {
    padding: 2rem 0 1rem;
  }
  .communibuddy-footer .footer-content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .communibuddy-footer {
    padding: 1.5rem 0 1rem;
  }
  .communibuddy-footer .footer-content {
    grid-template-columns: 1fr;
    margin: 2rem 5%;
  }
  .communibuddy-footer .footer-content .fondo-footer img {
    height: auto;
  }
  .communibuddy-footer .footer-social .social-icon {
    justify-content: center;
    text-align: center;
  }
  .communibuddy-footer .footer-contact .contact-info-simple {
    text-align: center;
  }
}
.cta-button {
  background: #1b1464;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-button:hover {
  filter: brightness(90%);
  transform: translateY(-2px);
}
.cta-button.large {
  padding: 15px 30px;
  font-size: 1.1rem;
}
.cta-button.secondary {
  background: #ff1616;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.cta-button.secondary:hover {
  filter: brightness(90%);
  transform: translateY(-2px);
}

.cursos-carousel-section {
  padding: 80px 0;
  background: #1b1464;
  position: relative;
}
.cursos-carousel-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
}
.cursos-carousel-section .carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cursos-carousel-section .cursos-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 10px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
}
.cursos-carousel-section .cursos-carousel::-webkit-scrollbar {
  display: none;
}
.cursos-carousel-section .carousel-arrow {
  background: white;
  border: 2px solid #1b1464;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1b1464;
  flex-shrink: 0;
}
.cursos-carousel-section .carousel-arrow:hover {
  background: #1b1464;
  color: white;
  transform: scale(1.1);
}
.cursos-carousel-section .carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cursos-carousel-section .carousel-arrow:disabled:hover {
  background: white;
  color: #1b1464;
  transform: none;
}
.cursos-carousel-section .carousel-arrow svg {
  width: 20px;
  height: 20px;
}
.cursos-carousel-section .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.cursos-carousel-section .carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cursos-carousel-section .carousel-dots .dot.active {
  background: #1b1464;
}
.cursos-carousel-section .carousel-dots .dot:hover {
  background: rgb(4.05, 3, 15);
}
.cursos-carousel-section .curso-card {
  flex: 0 0 auto;
  width: 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cursos-carousel-section .curso-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cursos-carousel-section .curso-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cursos-carousel-section .curso-image .curso-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cursos-carousel-section .curso-image .curso-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1464 0%, #779daf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.cursos-carousel-section .curso-image .curso-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1b1464;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cursos-carousel-section .curso-image:hover .curso-img {
  transform: scale(1.05);
}
.cursos-carousel-section .curso-content {
  padding: 25px;
}
.cursos-carousel-section .curso-content .curso-title {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
}
.cursos-carousel-section .curso-content .curso-desc {
  margin: 0 0 20px 0;
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}
.cursos-carousel-section .curso-content .curso-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.cursos-carousel-section .curso-content .curso-meta .meta-item {
  font-size: 0.85rem;
  color: #888;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 12px;
}
.cursos-carousel-section .curso-content .curso-btn {
  display: inline-block;
  background: #1b1464;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
}
.cursos-carousel-section .curso-content .curso-btn:hover {
  background: rgb(15.525, 11.5, 57.5);
}

.no-cursos-message {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.no-cursos-message p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .cursos-carousel-section {
    padding: 50px 0;
  }
  .cursos-carousel-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .cursos-carousel-section .carousel-container {
    gap: 10px;
  }
  .cursos-carousel-section .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .cursos-carousel-section .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
  .cursos-carousel-section .cursos-carousel {
    gap: 20px;
    padding: 15px 10px;
  }
  .cursos-carousel-section .curso-card {
    width: 280px;
  }
  .cursos-carousel-section .curso-content {
    padding: 20px;
  }
  .cursos-carousel-section .curso-content .curso-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .cursos-carousel-section {
    padding: 40px 0;
  }
  .cursos-carousel-section .section-title {
    font-size: 1.8rem;
  }
  .cursos-carousel-section .carousel-arrow {
    display: none;
  }
  .cursos-carousel-section .curso-card {
    width: 260px;
  }
}
.nosotros-page {
  background: #1b1464;
}
.nosotros-page .pizarron-section {
  padding: 2rem 0;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.nosotros-page .pizarron-section .cb-container {
  width: 100%;
}
.nosotros-page .pizarron-section .cb-container .pizarron-container {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
}
@media (max-width: 1024px) {
  .nosotros-page .pizarron-section .cb-container .pizarron-container {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .cb-container .pizarron-container {
    height: 74vw;
  }
}
@media screen and (max-width: 1200px) {
  .nosotros-page .pizarron-section .cb-container .pizarron-container {
    scale: 0.7;
  }
}
.nosotros-page .pizarron-section .pizarron-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nosotros-page .pizarron-section .pizarron-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 15px;
}
.nosotros-page .pizarron-section .pizarron-items {
  width: 85%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  grid-template-areas: "valores metodo equipo" ". . ." "comunidad . historia";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  padding: 4rem;
}
@media screen and (max-width: 1200px) {
  .nosotros-page .pizarron-section .pizarron-items {
    width: 1025px;
  }
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-items {
    width: 81%;
    padding: 2rem;
    grid-template-areas: "valores equipo" "metodo metodo" "comunidad historia";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 380px) {
  .nosotros-page .pizarron-section .pizarron-items {
    min-width: 300px;
  }
}
.nosotros-page .pizarron-section .pizarron-items .lineas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .nosotros-page .pizarron-section .pizarron-items .lineas-container {
    width: 1190px;
    left: unset;
    transform: translate(0vw, 0px);
  }
}
@media (max-width: 1024px) {
  .nosotros-page .pizarron-section .pizarron-items .lineas-container {
    display: none;
  }
}
.nosotros-page .pizarron-section .pizarron-items .linea-1,
.nosotros-page .pizarron-section .pizarron-items .linea-2,
.nosotros-page .pizarron-section .pizarron-items .linea-3,
.nosotros-page .pizarron-section .pizarron-items .linea-4 {
  position: absolute;
  background: #ff1616;
  z-index: 80;
  transition: all 0.3s ease;
  height: 3px;
}
@media (max-width: 1024px) {
  .nosotros-page .pizarron-section .pizarron-items .linea-1,
  .nosotros-page .pizarron-section .pizarron-items .linea-2,
  .nosotros-page .pizarron-section .pizarron-items .linea-3,
  .nosotros-page .pizarron-section .pizarron-items .linea-4 {
    height: 2.5px;
  }
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-items .linea-1,
  .nosotros-page .pizarron-section .pizarron-items .linea-2,
  .nosotros-page .pizarron-section .pizarron-items .linea-3,
  .nosotros-page .pizarron-section .pizarron-items .linea-4 {
    height: 2px;
  }
}
.nosotros-page .pizarron-section .pizarron-items .linea-1 {
  top: 43%;
  left: 9.5%;
  width: 35%;
  transform: rotate(69deg);
}
.nosotros-page .pizarron-section .pizarron-items .linea-2 {
  top: 43%;
  left: 22.5%;
  width: 36%;
  transform: rotate(114deg);
}
.nosotros-page .pizarron-section .pizarron-items .linea-3 {
  top: 38%;
  left: 41.7%;
  width: 38%;
  transform: rotate(47deg);
}
.nosotros-page .pizarron-section .pizarron-items .linea-4 {
  top: 41.5%;
  left: 63.6%;
  width: 25%;
  transform: rotate(101deg);
}
@media (max-width: 480px) {
  .nosotros-page .pizarron-section .pizarron-items .linea-1,
  .nosotros-page .pizarron-section .pizarron-items .linea-2,
  .nosotros-page .pizarron-section .pizarron-items .linea-3,
  .nosotros-page .pizarron-section .pizarron-items .linea-4 {
    opacity: 0.8;
  }
}
@media (max-width: 360px) {
  .nosotros-page .pizarron-section .pizarron-items .linea-1,
  .nosotros-page .pizarron-section .pizarron-items .linea-2,
  .nosotros-page .pizarron-section .pizarron-items .linea-3,
  .nosotros-page .pizarron-section .pizarron-items .linea-4 {
    opacity: 0.6;
  }
}
.nosotros-page .pizarron-section .pizarron-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1b1464;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 480px) {
  .nosotros-page .pizarron-section .pizarron-item {
    scale: 0.8;
  }
}
@media (max-width: 380px) {
  .nosotros-page .pizarron-section .pizarron-item {
    scale: 0.6;
  }
}
.nosotros-page .pizarron-section .pizarron-item img {
  position: absolute;
  transition: all 0.4s ease;
  filter: brightness(1) saturate(1);
}
.nosotros-page .pizarron-section .pizarron-item:hover {
  transform: scale(0.95);
}
.nosotros-page .pizarron-section .pizarron-item:hover img {
  filter: brightness(1.2) saturate(1.3) contrast(1.1);
}
.nosotros-page .pizarron-section .pizarron-item:hover::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  z-index: -1;
  animation: glow 1.5s ease-in-out infinite alternate;
}
.nosotros-page .pizarron-section .pizarron-item .nota__pizarron-item {
  width: 194px;
  height: 200px;
  max-width: none;
  bottom: -40px;
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item .nota__pizarron-item {
    width: 124px;
    height: 130px;
  }
}
.nosotros-page .pizarron-section .pizarron-item .pin__pizarron-item {
  width: 20px;
  z-index: 100;
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item .pin__pizarron-item {
    width: 15px;
  }
}
.nosotros-page .pizarron-section .pizarron-item .item-text {
  font-family: "mano-negra-bold";
  font-weight: 700;
  font-size: 33px;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 100;
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item .item-text {
    font-size: 1rem;
  }
}
.nosotros-page .pizarron-section .pizarron-item[data-section=valores] {
  grid-area: valores;
  justify-self: start;
  align-self: start;
  right: 50px;
  top: 15px;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=valores] .pin__pizarron-item {
  top: -60px;
  right: -3px;
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=valores] .pin__pizarron-item {
    top: -40px;
    right: -10px;
  }
}
.nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] {
  grid-area: comunidad;
  justify-self: center;
  align-self: end;
  top: 39px;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] .nota__pizarron-item {
  transform: rotate(23deg);
}
.nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] .pin__pizarron-item {
  top: -32px;
  right: -23px;
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] {
    justify-self: left;
    top: -52px;
  }
  .nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] .pin__pizarron-item {
    top: -22px;
  }
}
@media (max-width: 480px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=comunidad] {
    right: 26%;
  }
}
.nosotros-page .pizarron-section .pizarron-item[data-section=metodo] {
  grid-area: metodo;
  justify-self: center;
  align-self: end;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=metodo] span.item-text {
  top: 20px;
  position: relative;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=metodo] .nota__pizarron-item {
  transform: rotate(45deg);
}
.nosotros-page .pizarron-section .pizarron-item[data-section=metodo] .pin__pizarron-item {
  top: -85px;
  right: 64px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=metodo] {
    align-self: center;
  }
  .nosotros-page .pizarron-section .pizarron-item[data-section=metodo] .pin__pizarron-item {
    top: -55px;
    right: 30px;
  }
}
.nosotros-page .pizarron-section .pizarron-item[data-section=historia] {
  grid-area: historia;
  justify-self: center;
  align-self: center;
  top: 22px;
  right: 30px;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=historia] .nota__pizarron-item {
  transform: rotate(-5deg);
}
.nosotros-page .pizarron-section .pizarron-item[data-section=historia] .pin__pizarron-item {
  top: -58px;
  right: 16px;
  transform: rotate(26deg);
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=historia] {
    justify-self: right;
  }
  .nosotros-page .pizarron-section .pizarron-item[data-section=historia] .pin__pizarron-item {
    top: -44px;
    right: -17px;
  }
}
@media (max-width: 480px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=historia] {
    right: -19%;
  }
}
.nosotros-page .pizarron-section .pizarron-item[data-section=equipo] {
  grid-area: equipo;
  justify-self: end;
  align-self: end;
  bottom: 10px;
  left: 58px;
}
.nosotros-page .pizarron-section .pizarron-item[data-section=equipo] .nota__pizarron-item {
  transform: rotate(349deg);
}
.nosotros-page .pizarron-section .pizarron-item[data-section=equipo] .pin__pizarron-item {
  top: -32px;
  right: 134px;
  transform: rotate(31deg);
}
@media (max-width: 768px) {
  .nosotros-page .pizarron-section .pizarron-item[data-section=equipo] .pin__pizarron-item {
    top: -49px;
    right: -6px;
  }
}
@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
  }
  to {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
  }
}
.nosotros-page .secciones-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}
.nosotros-page .secciones-content .papel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.nosotros-page .secciones-content .papel-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
@media screen and (max-width: 1480px) {
  .nosotros-page .secciones-content .papel-background img {
    -o-object-fit: fill;
    object-fit: fill;
  }
}
.nosotros-page .cb-container--2-parte {
  width: 85%;
  min-width: 797px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 797px) {
  .nosotros-page .cb-container--2-parte {
    min-width: auto;
  }
}
.nosotros-page .seccion-nosotros {
  margin-top: 78px;
}
.nosotros-page .seccion-nosotros h2 {
  font-family: "League-h", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2rem;
  color: #1b1464;
  margin-bottom: 1rem;
}
.nosotros-page .seccion-nosotros#valores .seccion-content {
  display: grid;
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  grid-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "v-multi titulo-valores v-innovacion" "v-colaboracion v-personalizacion v-competencia";
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores .seccion-content {
    width: 90vw;
    padding: 0 1rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto;
    grid-template-areas: "titulo-valores v-personalizacion" "v-multi v-innovacion" "v-colaboracion v-competencia";
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#valores .seccion-content {
    width: 90vw;
    padding: 0 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "titulo-valores" "v-multi" "v-colaboracion" "v-personalizacion" "v-innovacion" "v-competencia";
  }
}
.nosotros-page .seccion-nosotros#valores h3 {
  font-family: "mano-negra-bold";
  text-align: center;
  font-size: 36px;
  margin-bottom: 6px;
  color: #ff1616;
}
@media screen and (max-width: 1130px) {
  .nosotros-page .seccion-nosotros#valores h3 {
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores h3 {
    font-size: 3.2vw;
    line-height: 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#valores h3 {
    font-size: 23px;
  }
}
.nosotros-page .seccion-nosotros#valores p {
  font-family: "Arimo";
  text-align: center;
  line-height: 25px;
  color: #1b1464;
}
@media screen and (max-width: 1130px) {
  .nosotros-page .seccion-nosotros#valores p {
    font-size: 1.5vw;
    line-height: 2vw;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores p {
    font-size: 1.9vw;
    line-height: 2.7vw;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#valores p {
    width: 80%;
    min-width: 250px;
    font-size: 14px;
    line-height: 20px;
  }
}
.nosotros-page .seccion-nosotros#valores .cabecera {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nosotros-page .seccion-nosotros#valores .cabecera .cont-arrow {
  position: absolute;
}
.nosotros-page .seccion-nosotros#valores .cabecera .cont-arrow .arrow-valores {
  width: 74px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores .cabecera .cont-arrow .arrow-valores {
    display: none;
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] {
  grid-area: titulo-valores;
  justify-self: center;
  align-self: center;
}
.nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] h2 {
  font-size: 90px;
}
.nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] .cont-subrayado {
  position: absolute;
}
.nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] .cont-subrayado .subrayado {
  position: relative;
  bottom: 50px;
  width: 300px;
}
@media screen and (max-width: 1130px) {
  .nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] h2 {
    font-size: 6vw;
  }
  .nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] .cont-subrayado .subrayado {
    bottom: 50px;
    width: 20vw;
    margin-top: 10px;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] .cont-subrayado .subrayado {
    bottom: 5vw;
    width: 20vw;
    margin-top: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] h2 {
    font-size: 51px;
  }
  .nosotros-page .seccion-nosotros#valores [data-section=titulo-valores] .cont-subrayado .subrayado {
    bottom: 20px;
    width: 186px;
    margin-top: -22px;
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=v-multi] {
  grid-area: v-multi;
  justify-self: start;
  align-self: start;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-multi] .cabecera {
  flex-direction: row-reverse;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-multi] .cabecera .arrow-valores {
  right: -192px;
  bottom: 42px;
  width: 91px;
  transform: scalex(-1);
}
@media screen and (max-width: 1130px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-multi] .cabecera .arrow-valores {
    right: -165px;
    bottom: 11px;
    width: 67px;
    transform: scalex(-1) rotate(327deg);
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=v-colaboracion] {
  grid-area: v-colaboracion;
  justify-self: start;
  align-self: start;
  position: relative;
  left: 10%;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-colaboracion] .cabecera {
  flex-direction: row-reverse;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-colaboracion] .cabecera .arrow-valores {
  right: -175px;
  bottom: 27px;
  width: 87px;
  transform: rotate(141deg);
}
@media screen and (min-width: 1480px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-colaboracion] .cabecera .arrow-valores {
    right: -265px;
    transform: rotate(126deg);
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-colaboracion] {
    left: 0;
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=v-personalizacion] {
  grid-area: v-personalizacion;
  justify-self: start;
  align-self: start;
  position: relative;
  top: 100px;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-personalizacion] .cabecera {
  flex-direction: column;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-personalizacion] .cabecera .arrow-valores {
  bottom: 80px;
  width: 64px;
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-personalizacion] {
    top: 0;
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=v-competencia] {
  grid-area: v-competencia;
  justify-self: start;
  align-self: start;
  position: relative;
  bottom: 50px;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-competencia] .cabecera {
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-competencia] .cabecera .arrow-valores {
  right: 230px;
}
@media screen and (min-width: 1480px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-competencia] .cabecera .arrow-valores {
    right: 17vw;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-competencia] {
    bottom: 67px;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-competencia] {
    bottom: 0px;
  }
}
.nosotros-page .seccion-nosotros#valores [data-section=v-innovacion] {
  grid-area: v-innovacion;
  justify-self: start;
  align-self: start;
  position: relative;
  bottom: 50px;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-innovacion] .cabecera {
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#valores [data-section=v-innovacion] .cabecera .arrow-valores {
  right: 179px;
}
@media screen and (min-width: 1480px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-innovacion] .cabecera .arrow-valores {
    right: 14vw;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#valores [data-section=v-innovacion] {
    bottom: 0px;
  }
}
.nosotros-page .seccion-nosotros#metodo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12rem;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo,
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo,
.nosotros-page .seccion-nosotros#metodo .parte1,
.nosotros-page .seccion-nosotros#metodo .parte2,
.nosotros-page .seccion-nosotros#metodo .cabecera__parte2,
.nosotros-page .seccion-nosotros#metodo .sub-cont {
  display: flex;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2rem;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo div {
  width: 50%;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo p {
  width: 50%;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo {
  display: flex;
  justify-content: flex-end;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .sub-cont-titulo {
  width: 200px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .sub-cont-titulo h2 {
  position: relative;
  text-align: center;
  right: 57px;
  font-size: 59px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .cont-ovalo2 {
  position: absolute;
  width: 329px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .cont-ovalo2 .ovalo2 {
  position: relative;
  width: 100%;
  bottom: 17px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .cont-arrow {
  position: absolute;
  width: 74px;
}
.nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .cont-arrow .arrow-metodo {
  position: relative;
  width: 74px;
  left: 50px;
  bottom: 49px;
}
@media screen and (max-width: 1270px) {
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo {
    scale: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo {
    flex-direction: column;
  }
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo,
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo p {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    line-height: 21px;
  }
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .sub-cont-titulo,
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo p .sub-cont-titulo {
    width: 100%;
  }
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-tiulo .sub-cont-titulo h2,
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo p .sub-cont-titulo h2 {
    right: 0px;
  }
  .nosotros-page .seccion-nosotros#metodo .cabecera__metodo .cont-arrow {
    display: none;
  }
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo {
  flex-direction: row;
  justify-content: center;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 {
  width: 68%;
  flex-direction: column;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 p {
  text-align: center;
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 1.5rem;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 .cont-llave {
  width: 100%;
  height: auto;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 .cont-llave .llave {
  width: 100%;
  height: auto;
  -o-object-fit: fill;
  object-fit: fill;
}
@media screen and (max-width: 1270px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 p {
    font-size: 1.8vw;
  }
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 {
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont {
  flex-direction: column;
  align-items: center;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont h3 {
  font-size: 23px;
  text-align: center;
  margin-bottom: 0;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont .subrayado2 {
  width: 80%;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont p {
  font-size: 16px;
  text-align: center;
  margin-top: 7px;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .logo-suma {
  width: 47px;
}
@media screen and (max-width: 1270px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont h3 {
    font-size: 1.7vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont p {
    font-size: 1vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .logo-suma {
    width: 3vw;
  }
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 {
  width: 32%;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 50px;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 .nota2 {
  position: absolute;
  width: 30vw;
  z-index: 1;
}
.nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 p {
  width: 90%;
  position: relative;
  top: 45px;
  left: 29px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  z-index: 100;
}
@media screen and (min-width: 1400px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 p {
    margin: 1.5vw 20px 5px;
    font-size: 1vw;
  }
}
@media screen and (max-width: 1270px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo {
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 {
    width: 85vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 p {
    line-height: 2.3vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont h3 {
    font-size: 2vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont .subrayado2 {
    width: 60%;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont p {
    font-size: 1.8vw;
    line-height: 2vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 {
    width: 50vw;
    height: 22vw;
    padding-top: 6vw;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 .nota2 {
    width: 50vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 p {
    font-size: 1.8vw;
    top: 6vw;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo {
    row-gap: 2rem;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 p {
    font-size: 14px;
    line-height: 21px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 .cont-llave {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte1 .cont-llave .llave {
    width: 85%;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont h3 {
    font-size: 18px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont .subrayado2 {
    width: 31vw;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .sub-cont p {
    font-size: 13px;
    line-height: 15px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte1 .cabecera__parte2 .logo-suma {
    width: 24px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 {
    width: 80vw;
    max-width: 300px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 .nota2 {
    width: 80vw;
    max-width: 300px;
  }
  .nosotros-page .seccion-nosotros#metodo .cuerpo__metodo .parte2 p {
    top: 35px;
    font-size: 11px;
    line-height: 16px;
  }
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#metodo {
    margin-top: 5rem;
  }
}
.nosotros-page .seccion-nosotros#historia .seccion-content {
  margin-top: 4rem;
  max-width: 1000px;
  width: 85vw;
  height: 62vw;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
}
.nosotros-page .seccion-nosotros#historia .camino {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  z-index: -1;
}
.nosotros-page .seccion-nosotros#historia .camino img {
  position: relative;
  max-width: 710px;
  width: 51vw;
  left: 5vw;
  top: -2rem;
}
.nosotros-page .seccion-nosotros#historia .txt-oculto {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  transform: translateY(-10px);
  pointer-events: none;
}
.nosotros-page .seccion-nosotros#historia .txt-oculto.activo {
  opacity: 1;
  max-height: 500px;
  transform: translateY(0);
  pointer-events: all;
}
.nosotros-page .seccion-nosotros#historia .cont-subtitulo-camino {
  cursor: pointer;
  transition: all 0.3s ease;
}
.nosotros-page .seccion-nosotros#historia .cont-subtitulo-camino:hover {
  transform: scale(1.02);
}
.nosotros-page .seccion-nosotros#historia .cont-subtitulo-camino .subtitulo-camino {
  position: relative;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nosotros-page .seccion-nosotros#historia .cont-subtitulo-camino .subtitulo-camino:hover {
  background: rgba(255, 22, 22, 0.1);
}
.nosotros-page .seccion-nosotros#historia .txt-historia1,
.nosotros-page .seccion-nosotros#historia .txt-historia2,
.nosotros-page .seccion-nosotros#historia .txt-historia3,
.nosotros-page .seccion-nosotros#historia .txt-historia4,
.nosotros-page .seccion-nosotros#historia .txt-historia5,
.nosotros-page .seccion-nosotros#historia .txt-historia6,
.nosotros-page .seccion-nosotros#historia .txt-historia7,
.nosotros-page .seccion-nosotros#historia .txt-historia8,
.nosotros-page .seccion-nosotros#historia .txt-historia9 {
  z-index: 100;
  transition: opacity 0.3s ease 0.2s;
}
.nosotros-page .seccion-nosotros#historia .historia-2020,
.nosotros-page .seccion-nosotros#historia .a2023,
.nosotros-page .seccion-nosotros#historia .a2024,
.nosotros-page .seccion-nosotros#historia .a2025,
.nosotros-page .seccion-nosotros#historia .a2026 {
  display: flex;
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 h3,
.nosotros-page .seccion-nosotros#historia .a2023 h3,
.nosotros-page .seccion-nosotros#historia .a2024 h3,
.nosotros-page .seccion-nosotros#historia .a2025 h3,
.nosotros-page .seccion-nosotros#historia .a2026 h3 {
  color: #1b1464;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 {
  width: 100%;
  display: flex;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia {
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia h2 {
  position: relative;
  text-align: center;
  font-size: 59px;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia .recuadro,
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia .flecha-roja {
  position: absolute;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia .recuadro {
  width: 328px;
  transform: translate(-67px, -15px);
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia .flecha-roja {
  width: 50px;
  transform: translate(202px, -89px) rotate(-125deg);
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia p {
  position: absolute;
  transform: translate(267px, -85px);
  margin: 0px;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
  z-index: 100;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 {
  width: 40%;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .subtitulo-camino {
  position: absolute;
  width: 346px;
  transform: translate(9vw, 0vw);
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto {
  position: absolute;
  overflow: visible !important;
  transform: translate(10vw, 99px);
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 {
  position: relative;
  display: flex;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow {
  position: absolute;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow .arrow-hisotria1 {
  width: 58px;
  position: relative;
  /* left: 269px; */
  /* top: 85px; */
  transform: translate(264px, 83px) rotate(45deg);
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 {
  position: relative;
  display: flex;
  margin-top: 2rem;
  left: 8vw;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow2 {
  position: absolute;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2 {
  width: 40px;
  position: relative;
  left: 130px;
  top: 103px;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 p {
  width: 243px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 {
  position: relative;
  display: flex;
  margin-top: 4rem;
  left: 8vw;
}
.nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 p {
  width: 270px;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
}
@media screen and (max-width: 1462px) {
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 {
    left: 3vw;
  }
}
.nosotros-page .seccion-nosotros#historia .a2023 .cont-subtitulo-camino .subtitulo-camino {
  position: absolute;
  width: 270px;
  transform: translate(103%, 61px);
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-20%, 77px);
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .papel__a2023 {
  display: none;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .papel__a2023 img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 {
  position: relative;
  display: flex;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 .cont-arrow3 {
  position: absolute;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3 {
  width: 32px;
  position: relative;
  left: 133px;
  top: 82px;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 {
  margin-top: 3rem;
  position: relative;
  display: flex;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 ul {
  list-style: none;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 ul li {
  width: 300px;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
}
.nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 ul li img {
  position: absolute;
  width: 22px;
  left: 29px;
}
.nosotros-page .seccion-nosotros#historia .a2024 .cont-subtitulo-camino .subtitulo-camino {
  position: absolute;
  width: 357px;
  transform: translate(114%, 220px);
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto {
  height: 269px;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transform: translate(79%, 325px);
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 {
  position: relative;
  display: flex;
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 .cont-arrow4 {
  position: absolute;
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 .cont-arrow4 .arrow-hisotria4 {
  width: 41px;
  position: relative;
  left: 313px;
  top: 82px;
  transform: rotate(320deg);
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia7 {
  display: flex;
  position: relative;
  margin-top: 3rem;
  top: 6vw;
}
.nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia7 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .a2025 .cont-subtitulo-camino .subtitulo-camino {
  position: absolute;
  width: 326px;
  transform: translate(85%, 469px);
}
.nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: translate(210%, 510px);
}
.nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia8 {
  display: flex;
  position: relative;
}
.nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia8 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
.nosotros-page .seccion-nosotros#historia .a2026 .cont-subtitulo-camino .subtitulo-camino {
  position: absolute;
  width: 346px;
  transform: translate(54%, 606px);
}
.nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  transform: translate(186%, 597px);
}
.nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia9 {
  display: flex;
  position: relative;
}
.nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia9 p {
  width: 300px;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
}
@media screen and (max-width: 1340px) {
  .nosotros-page .seccion-nosotros#historia .seccion-content {
    max-height: auto;
  }
  .nosotros-page .seccion-nosotros#historia .camino img {
    min-width: 675px;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 {
    width: 76vw;
  }
  .nosotros-page .seccion-nosotros#historia .a2023 {
    z-index: 100;
  }
  .nosotros-page .seccion-nosotros#historia .a2023 .cont-subtitulo-camino .subtitulo-camino {
    transform: translate(93%, 51px);
  }
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto {
    padding: 4rem 4rem 2rem;
    transform: translate(-7%, 141px);
  }
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .papel__a2023 {
    display: block;
  }
  .nosotros-page .seccion-nosotros#historia .a2024 {
    position: absolute;
    transform: translate(-5vw, 62px);
  }
  .nosotros-page .seccion-nosotros#historia .a2025 {
    position: absolute;
    transform: translate(-6vw, 68px);
  }
  .nosotros-page .seccion-nosotros#historia .a2026 {
    position: absolute;
    transform: translate(-2vw, 59px);
  }
}
@media screen and (max-width: 1250px) {
  .nosotros-page .seccion-nosotros#historia .seccion-content {
    height: 69vw;
  }
  .nosotros-page .seccion-nosotros#historia .titulo__historia {
    position: relative;
    left: 6vw;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 {
    position: absolute;
    transform: translate(133%, 77px);
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .subtitulo-camino {
    transform: translate(7vw, 0vw);
  }
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto {
    height: 410px;
    flex-direction: column;
    transform: translate(205%, 312px);
  }
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 .cont-arrow4 .arrow-hisotria4 {
    width: 39px;
    left: 267px;
    top: 136px;
    transform: rotate(356deg);
  }
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia7 {
    top: 0px;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1100px) {
  .nosotros-page .seccion-nosotros#historia .seccion-content {
    margin-top: 7rem;
    height: 73vw;
  }
  .nosotros-page .seccion-nosotros#historia .camino {
    justify-content: center;
    opacity: 0.3;
  }
  .nosotros-page .seccion-nosotros#historia .camino img {
    width: 67vw;
    min-width: auto;
    left: 0px;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .titulo__historia {
    scale: 0.7;
    left: 0px;
    bottom: 3rem;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .a2023 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .a2024 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .a2025 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .a2026 .cont-subtitulo-camino .subtitulo-camino {
    font-size: 22px;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia4 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia5 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia6 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia7 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia8 ul li,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia9 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia1 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia2 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia3 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia6 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia7 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia8 ul li,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia9 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia1 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia2 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia3 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia4 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia5 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia7 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia8 ul li,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia9 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia1 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia2 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia3 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia4 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia5 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia6 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia7 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia8 ul li,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .a2025 .txt-oculto .txt-historia9 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia1 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia2 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia3 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia4 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia5 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia6 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia7 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia8 ul li,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .a2026 .txt-oculto .txt-historia9 ul li {
    font-size: 13px;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 {
    transform: translate(124%, -22px);
    z-index: 150;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto {
    background-color: white;
    border-radius: 10px;
    transform: translate(7vw, 80px);
    padding: 1rem;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 {
    width: 86%;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow .arrow-hisotria1 {
    transform: translate(154px, 83px) rotate(72deg);
  }
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .historia-2020 .cont-2020 .txt-oculto .txt-historia3 {
    left: 0px;
  }
  .nosotros-page .seccion-nosotros#historia .a2023 {
    transform: translate(2%, -51px);
  }
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3 {
    top: 67px;
  }
  .nosotros-page .seccion-nosotros#historia .a2023 .txt-oculto .txt-historia5 ul li {
    width: 268px;
  }
  .nosotros-page .seccion-nosotros#historia .a2024 {
    transform: translate(-12vw, 28px);
  }
  .nosotros-page .seccion-nosotros#historia .a2024 .txt-oculto .txt-historia6 .cont-arrow4 .arrow-hisotria4 {
    top: 108px;
  }
  .nosotros-page .seccion-nosotros#historia .a2025 {
    transform: translate(-19vw, -7px);
  }
  .nosotros-page .seccion-nosotros#historia .a2026 {
    transform: translate(-15vw, 39px);
  }
}
@media screen and (max-width: 920px) {
  .nosotros-page .seccion-nosotros#historia .seccion-content {
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .camino {
    display: none;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 {
    width: 100%;
    position: initial;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .cont-subtitulo-camino .subtitulo-camino,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .cont-subtitulo-camino .subtitulo-camino {
    position: initial;
    transform: none;
    width: 100%;
    text-align: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto {
    width: 100%;
    position: initial;
    transform: none;
    background-color: transparent;
    padding: 0px;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 {
    width: 100%;
    position: initial;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow3 {
    width: 100%;
    position: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 .cont-arrow3 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow2 .arrow-hisotria3,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria2,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 .cont-arrow3 .arrow-hisotria3 {
    top: 0px;
    left: 0px;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .cont-subtitulo-camino {
    position: initial;
    transform: none;
    cursor: default !important;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .cont-subtitulo-camino:hover {
    transform: none !important;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .cont-subtitulo-camino .subtitulo-camino:hover {
    background: transparent !important;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .cont-subtitulo-camino .subtitulo-camino::after {
    display: none !important;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .txt-oculto {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    pointer-events: all !important;
    display: block !important;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 {
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia {
    justify-content: center;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .recuadro {
    transform: none;
    bottom: 10px;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .flecha-roja {
    transform: translate(-96px, -92px) rotate(-125deg);
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia p {
    transform: translate(35px, -97px);
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-historia2 p {
    margin-bottom: 1rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-historia3 {
    margin-top: 1rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .papel__a2023 {
    display: none;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 p {
    margin-bottom: 1rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 {
    margin-top: 1rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 ul {
    margin-right: 2rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 ul li {
    width: 100%;
    line-height: 17px;
    margin-bottom: 10px;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 ul li img {
    left: auto;
    transform: translate(-26px, 0px);
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 {
    margin-top: 2rem;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto {
    height: auto;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow4 .arrow-hisotria4 {
    left: 127px;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .titulo__historia .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2023 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2025 .txt-oculto .txt-historia9 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia1 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia2 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia3 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia4 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia5 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia6 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia7 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia8 p,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2026 .txt-oculto .txt-historia9 p {
    width: auto;
  }
  .nosotros-page .seccion-nosotros#historia .seccion-content .historia-2020 .cont-2020 .txt-oculto .txt-historia1 .cont-arrow,
  .nosotros-page .seccion-nosotros#historia .seccion-content .a2024 .txt-oculto .txt-historia6 .cont-arrow4 .arrow-hisotria4 {
    display: none;
  }
}
.nosotros-page .seccion-nosotros#equipo {
  margin-top: 7rem;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo {
  display: flex;
  flex-direction: column;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo {
  position: relative;
  display: flex;
  flex-direction: column;
  bottom: 6vw;
  left: 2vw;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo h2 {
  font-size: 90px;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo .cont-subrayado {
  position: absolute;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo .cont-subrayado .subrayado {
  position: relative;
  top: 88px;
  width: 300px;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-arrow {
  position: absolute;
  right: 49vw;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-arrow .arrow-equipo {
  width: 74px;
  position: relative;
  top: 5vw;
  transform: scalex(-1);
}
@media screen and (max-width: 980px) {
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-arrow .arrow-equipo {
    display: none;
  }
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo {
  width: 70%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo p {
  text-align: center;
  font-size: 16px;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos {
  position: absolute;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto1,
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto2,
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto3,
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto4 {
  position: relative;
  width: 18%;
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto1 {
  width: 22%;
  left: 17%;
  top: -2.8vw;
  transform: rotate(1deg);
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto2 {
  left: 42%;
  top: 0.5vw;
  transform: rotate(-3deg);
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto3 {
  left: -24%;
  top: 14vw;
  transform: rotate(-13deg);
}
.nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto4 {
  left: 1%;
  top: 18vw;
  transform: rotate(1deg);
}
@media screen and (max-width: 1250px) {
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo h2 {
    font-size: 59px;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-titulo-equipo .cont-subrayado .subrayado {
    top: 59px;
    width: 230px;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-arrow {
    right: 51vw;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .cont-arrow .arrow-equipo {
    top: 1vw;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo p {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 920px) {
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo {
    min-width: 40vw;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo {
    margin-left: 11vw;
    margin-right: initial;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo {
    scale: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#equipo .seccion-content {
    flex-direction: column;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo {
    width: 70vw;
    min-width: 200px;
    margin-left: 0px;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-izq__equipo .txt-equipo p {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto3 {
    top: 25vw;
  }
  .nosotros-page .seccion-nosotros#equipo .seccion-content .box-der__equipo .fotos .foto4 {
    top: 31vw;
  }
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-rayitos {
  width: 100px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-rayitos .rayitos {
  width: 63px;
  position: relative;
  bottom: 44px;
  left: 10px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-titulo h2 {
  position: relative;
  text-align: center;
  font-size: 49px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-ovalo3 {
  position: absolute;
  width: 329px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-ovalo3 .ovalo3 {
  position: relative;
  width: 100%;
  bottom: 17px;
  left: 59px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-megafono {
  width: 120px;
}
.nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-megafono .megafono {
  width: 120px;
  position: relative;
  bottom: 70px;
  left: 52px;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 p {
  font-size: 22px;
  color: #1b1464;
  margin: 0px;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-arrow .arrow-comunidad {
  width: 74px;
  position: relative;
  top: -50px;
  right: 16px;
  transform: scalex(-1) rotate(128deg);
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-subrayado3 {
  position: absolute;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-subrayado3 .subrayado3 {
  position: relative;
  top: 20px;
  width: 260px;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
  bottom: 31px;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .cont-flecha__comunidad {
  width: 100px;
  margin: 1rem;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .cont-flecha__comunidad .flecha {
  width: 100px;
  position: relative;
  top: 25px;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .sub-cont-txt__comunidad {
  width: 62%;
  margin: 0rem 1rem 1rem 0rem;
}
.nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .sub-cont-txt__comunidad p {
  font-size: 17px;
  line-height: 24px;
}
.nosotros-page .seccion-nosotros#comunidad .parte3__Comunidad {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0rem 10rem;
}
.nosotros-page .seccion-nosotros#comunidad .parte3__Comunidad p {
  font-family: "mano-negra-bold";
  font-size: clamp(13px, 2.5vw, 35px);
  line-height: clamp(16px, 3.2vw, 46px);
  color: #1b1464;
  transform: rotate(-5deg);
  text-align: center;
  width: 78%;
}
.nosotros-page .seccion-nosotros#comunidad .parte3__Comunidad .cont-subrayado4 .subrayado4 {
  position: relative;
  width: 45vw;
  rotate: -3deg;
}
@media screen and (max-width: 1050px) {
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad {
    scale: 0.8;
    justify-content: flex-start;
    width: 120%;
    max-width: none;
    position: relative;
    right: 10%;
    top: 30px;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-arrow .arrow-comunidad {
    width: 57px;
    top: -33px;
    right: 6px;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 p {
    font-size: clamp(13px, 2vw, 22px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-subrayado3 .subrayado3 {
    top: 1.7vw;
    width: clamp(100px, 23vw, 244px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .cont-flecha__comunidad {
    width: 9.2vw;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .cont-flecha__comunidad .flecha {
    width: clamp(46px, 8vw, 90px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .sub-cont-txt__comunidad p {
    font-size: clamp(11px, 1.9vw, 16px);
    line-height: clamp(14px, 2.6vw, 22px);
  }
}
@media screen and (max-width: 768px) {
  .nosotros-page .seccion-nosotros#comunidad .seccion-content {
    max-width: 100vw;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad {
    scale: 0.6;
    width: 100%;
    min-height: auto;
    position: unset;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-megafono .megafono {
    width: clamp(50px, 20vw, 120px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad {
    flex-direction: column;
    align-items: center;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 {
    width: 55%;
    position: relative;
    bottom: 26px;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-arrow .arrow-comunidad {
    width: 40px;
    top: -26px;
    right: 2px;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 .cont-subrayado3 .subrayado3 {
    top: 1.5vw;
    width: clamp(145px, 27vw, 170px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-txt__parte2 .cont-txt__comunidad .cont-flecha__comunidad .flecha {
    top: -20px;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte3__Comunidad p {
    width: 63%;
  }
}
@media screen and (max-width: 480px) {
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-rayitos,
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-megafono {
    position: absolute;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-rayitos {
    transform: translate(-170px, 0px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-megafono {
    transform: translate(180px, 0px);
  }
  .nosotros-page .seccion-nosotros#comunidad .parte1__Comunidad .cont-ovalo3 .ovalo3 {
    left: unset;
  }
  .nosotros-page .seccion-nosotros#comunidad .parte2__Comunidad .cont-titulo__parte2 {
    width: 75%;
  }
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "League-h", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  font-family: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: auto;
}

h1 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

.hero-title {
  font-family: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
}

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

#primary {
  margin: 0px !important;
}
/*# sourceMappingURL=main.css.map */
