@charset "UTF-8";
/* Font  */
@font-face {
  font-family: "Bakso Sapi";
  src: url("../font/BaksoSapi.otf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Liberation Sans";
  src: url("../font/LiberationSans-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Liberation Sans";
  src: url("../font/LiberationSans-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
div.menu {
  position: absolute;
  width: 100%;
  min-height: 100px;
}
div.menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: white;
}
div.menu img {
  max-width: 190px;
  margin: 35px auto 22px;
  display: block;
  z-index: 1;
}
div.menu .menuppal.is_active {
  transform: translate3d(0px, 0px, 0px);
  background-image: url(../imagenes/back-menu.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
div.menu .hamburger {
  position: relative;
  background-color: transparent;
  right: 0px;
  top: 25px;
  height: 30px;
  width: 30px;
  padding: 33px 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
  z-index: 1002;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  margin: 0 0 0 auto;
  user-select: none;
}
div.menu .hamburger.is-active {
  background-color: none;
}
div.menu .hamburger.is-active {
  position: fixed;
  background-color: transparent;
  left: initial;
  top: 20px;
  height: 30px;
  width: 30px;
  padding: 20px 20px;
  right: 10%;
}
div.menu ._layer {
  background: #000;
  margin-bottom: 5px;
  border-radius: 2px;
  width: 40px;
  height: 3px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}
div.menu .hamburger.is-active ._layer {
  background: #fcbc12;
}
div.menu .hamburger:hover .-top {
  transform: translateY(-100%);
}
div.menu .hamburger:hover .-bottom {
  transform: translateY(100%);
}
div.menu .hamburger.is-active .-top {
  transform: translateY(200%) rotate(45deg) !important;
}
div.menu .hamburger.is-active .-mid {
  opacity: 0;
}
div.menu .hamburger.is-active .-bottom {
  transform: translateY(-200%) rotate(135deg) !important;
}
div.menu .menuppal.is_active {
  transform: translate3d(0px, 0px, 0px);
}
div.menu .menuppal {
  background-color: rgba(255, 255, 255, 0.95);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transform: translate3d(0px, -100%, 0px);
  transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
  width: 100%;
  z-index: 1001;
}
div.menu .menuppal ul {
  margin: 0;
  padding: 0;
  padding-top: 40px;
}
div.menu .menuppal ul li {
  list-style: none;
  height: 3em;
  color: var(--negro, #212529);
  text-align: center;
  font-family: "Liberation Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
div.menu .menuppal ul li a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s linear;
}
div.menu .menuppal ul li a:hover {
  text-decoration: none;
  color: #fcbc12;
  zoom: 1.1;
}
div.menu .btn, div.menu .btnbr, div.menu input.hs-button.primary.large, div.menu a.btn.btnbr {
  background-color: #fcbc12;
}
div.menu .btn img, div.menu .btnbr img, div.menu input.hs-button.primary.large img, div.menu a.btn.btnbr img {
  display: inline-block;
  margin: 0;
}
div.menu .btn:hover, div.menu .btnbr:hover, div.menu input.hs-button.primary.large:hover, div.menu a.btn.btnbr:hover {
  background-color: #fcbc12;
  color: black;
}
div.menu .menu .container {
  max-width: 1560px;
}

@media screen and (max-width: 992px) {
  div.menu img {
    max-width: 140px;
    margin: 30px auto;
  }
  div.menu .menuppal ul li {
    font-size: 1.2rem;
    line-height: 2em;
    height: 3em;
  }
  div.menu .hamburger {
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  div.menu .hamburger {
    top: 7px;
  }
  div.menu {
    min-height: 70px;
    padding: 20px 0 5px;
  }
  div.menu img {
    top: 0;
    margin: 15px;
    position: relative;
  }
  div.menu .hamburger {
    padding: 0;
  }
  div.menu .menuppal ul li {
    font-size: 1.1rem;
    line-height: 2em;
    height: 3em;
  }
  div.menu .menuppal ul {
    margin: 0;
    padding: 0;
    padding-top: 70px;
  }
  div.menu ._layer {
    width: 24px !important;
    height: 3px !important;
  }
  div.menu .hamburger {
    padding: 8px 0;
  }
  div.menu .menuppal ul li a.btnbr {
    max-width: 70%;
    display: block;
    margin: 0 auto;
    padding: 4px;
  }
  div.menu img {
    top: 0px;
    margin: 15px;
    position: relative;
    width: 105.515px;
    margin: 12px auto 8px;
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 100px 0;
}

img {
  max-width: 100%;
  width: 100%;
}

p b {
  font-weight: 700;
}

h1 {
  color: var(--negro, #212529);
  font-family: "Liberation Sans";
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px; /* 125.926% */
}

.banner p {
  color: var(--negro, #212529);
  font-family: "Liberation Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}

h2 {
  color: var(--azul-bokita, #2D368F);
  text-align: center;
  font-family: "Liberation Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 123.077% */
}

h3 {
  color: var(--azul-bokita, #2D368F);
  text-align: center;
  font-family: "Bakso Sapi";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 123.077% */
}

h4 {
  color: #FFF;
  font-family: "Liberation Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

p {
  color: var(--negro, #212529);
  text-align: center;
  font-family: "Liberation Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.btn, .btnbr, input.hs-button.primary.large, a.btn.btnbr {
  padding: 5px 40px 5px;
  border: 0;
  border-radius: 50px;
  background: #FFF;
  max-width: -moz-max-content;
  max-width: max-content;
  color: var(--azul-bokita, #2D368F);
  text-align: center;
  font-family: "Liberation Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 177.778% */
}
.btn:hover, .btnbr:hover, input.hs-button.primary.large:hover, a.btn.btnbr:hover {
  background-color: #fff;
  color: #000;
}
.btn img, .btnbr img, input.hs-button.primary.large img, a.btn.btnbr img {
  width: 20px;
}

a {
  text-decoration: none;
}

.hiddenD {
  display: none;
}

.swiper {
  padding-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .banner p {
    font-size: 18px;
    line-height: 28px;
  }
  .btn, .btnbr, input.hs-button.primary.large, a.btn.btnbr {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  h1 {
    font-size: 25px;
    line-height: 33px;
  }
}
section.banner {
  background-image: url(../imagenes/header.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 250px 0 0;
}
section.banner .container {
  max-width: 1400px;
}
section.banner figure {
  margin: 0;
}
section.banner p {
  text-align: left;
  margin: 20px 0 50px;
}
section.banner .cont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  h1 {
    margin-top: -70px;
  }
  section.banner {
    padding: 200px 15px 0;
  }
  section.banner p {
    text-align: left;
    margin: 15px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    background-image: url(../imagenes/movil/back-header.jpg);
  }
  section.banner figure img {
    margin-top: 50px;
  }
}
section.nosotros {
  padding: 240px 0 50px;
}
section.nosotros h3 {
  margin-bottom: 20px;
}
section.nosotros p {
  max-width: 72%;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  section.nosotros {
    padding: 140px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 140px 15px 50px;
  }
  section.nosotros p {
    max-width: 100%;
    margin: 0 auto;
  }
}
section.beneficios {
  background: linear-gradient(360deg, #FFFCDA 0%, #FFF 56.23%);
}
section.beneficios h3 {
  margin-bottom: 50px;
}
section.beneficios .cardBenefios {
  border-radius: 10px;
  border: 3px solid var(--azul-bokita, #2D368F);
  background: #FFF;
  min-height: 300px;
}
section.beneficios .cardBenefios h4 {
  background-color: #2D368F;
  text-align: center;
  padding: 15px;
}
section.beneficios .cardBenefios p {
  padding: 24px;
}

@media screen and (max-width: 992px) {
  .cardBenefios {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios .cardBenefios {
    margin: 15px;
  }
}
section.form {
  background: var(--gris-clarito, #E9ECEF);
  padding-bottom: 0;
}
section.form figure {
  margin: 0;
}
section.form .container {
  max-width: 1400px;
}
section.form h2 {
  text-align: left;
}
section.form p {
  text-align: left;
}
section.form .cont {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}
section.form .contForm {
  max-width: 800px;
  margin: 0 auto;
}
section.form form {
  background-size: contain;
  background-position: bottom left;
  background-repeat: repeat-x;
  max-width: 800px;
  padding: 0;
  margin: 0;
}
section.form button, section.form input, section.form optgroup, section.form select, section.form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  border-radius: 0;
  color: var(--negro, #212529);
  font-family: "Liberation Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.form button::-moz-placeholder, section.form input::-moz-placeholder, section.form optgroup::-moz-placeholder, section.form select::-moz-placeholder, section.form textarea::-moz-placeholder {
  color: #000;
}
section.form button::placeholder, section.form input::placeholder, section.form optgroup::placeholder, section.form select::placeholder, section.form textarea::placeholder {
  color: #000;
}
section.form input.hs-button.primary.large {
  margin: 30px auto !important;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 50px;
  background-color: #FCBC12;
}
section.form input.hs-button.primary.large:hover {
  background-color: #FCBC12;
  color: #212529;
}
section.form fieldset {
  max-width: 800px;
}
section.form input.hs-button.primary.large {
  margin: 0 auto;
}
section.form .hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field input,
section.form .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field input {
  width: 90%;
}
section.form input.hs-button.primary.large {
  margin: 25px 0;
  display: block;
}
section.form .hs_submit.hs-submit {
  max-width: 93%;
}
section.form .btn, section.form .btnbr, section.form input.hs-button.primary.large {
  line-height: 15px;
}
section.form input.hs-button.primary.large {
  display: block !important;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  section.form .container {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  section.form .container {
    padding: 0 25px;
  }
  section.form h2 {
    margin-bottom: 15px;
  }
}
section.datos {
  margin: 0;
  padding: 200px 0 100px;
  background: linear-gradient(180deg, #FFFCDA 0%, #FFF 56.23%);
}
section.datos .container {
  max-width: 1050px;
}
section.datos .cont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 90px 30px 0;
}
section.datos h2, section.datos h3 {
  text-align: left;
  padding: 0 30px;
}
section.datos ul {
  padding: 0 50px;
}
section.datos ul li {
  color: #000;
  font-family: "Liberation Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 145.455% */
  padding: 10px 0px;
  list-style: none;
}
section.datos ul li {
  position: relative; /* Needed for positioning the custom bullet */
  padding-left: 20px; /* Adjust as needed for space between bullet and text */
}
section.datos ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 40%;
  width: 15px; /* Adjust the size of the bullet */
  height: 15px; /* Adjust the size of the bullet */
  background-color: #3f51b5; /* This is a dark blue, similar to the image */
  border-radius: 50%; /* Makes the bullet a circle */
}

@media screen and (max-width: 992px) {
  section.datos .cont {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  section.datos {
    padding: 100px 15px 20px;
  }
  section.datos .cont {
    padding: 40px 0px;
  }
  section.datos h2, section.datos h3, section.datos p {
    text-align: left;
    padding: 0 15px;
  }
  section.datos ul li {
    font-size: 18px;
  }
  section.datos ul {
    padding: 0 40px;
  }
  section.datos ul li {
    position: relative;
    padding-left: 15px;
  }
}
section.galeria {
  padding-bottom: 200px;
  /* Asegúrate de que tu contenedor principal (donde está el Swiper) tenga 'position: relative' si vas a posicionar elementos absolutos dentro de él.
  Si las flechas están fuera, puedes usar un contenedor específico para las flechas. */
  /* Estilo general para las flechas si aún no lo tienes (ajusta colores, tamaños, etc.) */
  /* Ajustes específicos para la flecha de 'prev' */
  /* Ajustes específicos para la flecha de 'next' */
  /* Es importante sobrescribir las reglas por defecto de Swiper que vienen con su JS y CSS */
  /* Usamos !important con cautela, solo si las reglas de Swiper están siendo más específicas */
  /* Si los iconos por defecto de Swiper no te gustan o no aparecen, puedes usar un icono personalizado: */
}
section.galeria h3 {
  margin-bottom: 60px;
}
section.galeria .swiper-horizontal > .swiper-pagination-bullets, section.galeria .swiper-pagination-bullets.swiper-pagination-horizontal, section.galeria .swiper-pagination-custom, section.galeria .swiper-pagination-fraction {
  top: 90%;
}
section.galeria .swiper-pagination-bullet-active {
  background: white;
}
section.galeria .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
  left: 0;
  width: -moz-max-content;
  width: max-content;
  color: white;
  color: var(--Blanco, #FFF);
  font-family: Oswald;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 68px;
  text-transform: uppercase;
}
section.galeria .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal span.swiper-pagination-current {
  font-weight: 700;
}
section.galeria .swiper-button-prev,
section.galeria .swiper-button-next {
  width: 60px; /* Tamaño del botón */
  height: 35px; /* Tamaño del botón */
  border-radius: 50%; /* Para que sean redondos */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute; /* Hacemos que se posicionen de forma absoluta */
  top: auto; /* Anulamos cualquier 'top' por defecto */
  bottom: 0; /* Posicionamos debajo del slider, ajusta este valor según la separación que quieras */
  z-index: 10; /* Para asegurar que estén por encima de otros elementos si hay superposiciones */
  transform: translateY(0); /* Anulamos transformaciones por defecto de Swiper */
  margin-top: 0; /* Anulamos márgenes por defecto */
  color: #333; /* Color del ícono de la flecha */
  font-size: 20px; /* Tamaño del ícono de la flecha */
}
section.galeria .swiper-button-prev {
  left: 0px; /* Ajusta este valor para la separación del borde derecho */
  right: auto; /* Anulamos 'left' por defecto */
}
section.galeria .swiper-button-next {
  left: 75px; /* Ajusta este valor para la separación con la flecha 'next' */
  right: auto; /* Anulamos 'left' por defecto */
}
section.galeria .swiper-button-prev:after,
section.galeria .swiper-button-next:after {
  font-family: swiper-icons; /* Mantén esto si estás usando los íconos por defecto de Swiper */
  font-size: 20px; /* Tamaño de la flecha dentro del botón */
  color: #333; /* Color de la flecha */
  content: "next"; /* O 'prev' si estás sobrescribiendo los iconos por defecto y no usando un ícono */
}
section.galeria .swiper-button-prev {
  background-image: none; /* Elimina la imagen de fondo por defecto */
}
section.galeria .swiper-button-prev:after {
  content: ""; /* O un Font Awesome: \f060 */
  font-family: "Arial", sans-serif; /* O 'Font Awesome 5 Free' si usas FA */
  font-weight: 900; /* Para Font Awesome */
}
section.galeria .swiper-button-next {
  background-image: none; /* Elimina la imagen de fondo por defecto */
}
section.galeria .swiper-button-next:after {
  content: ""; /* O un Font Awesome: \f061 */
  font-family: "Arial", sans-serif; /* O 'Font Awesome 5 Free' si usas FA */
  font-weight: 900; /* Para Font Awesome */
}
section.galeria .swiper.mySwiper2 {
  padding-bottom: 90px;
}
section.galeria .swiper-slide img {
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s linear;
}
section.galeria .swiper-slide img {
  transform: scale(0.95);
}
section.galeria .swiper-slide.swiper-slide-active img {
  opacity: 1;
  transform: scale(1.1);
}
section.galeria .btnSlider {
  display: block;
  position: relative;
  top: 80px;
  margin: 0 auto;
  width: 130px;
}

@media screen and (max-width: 992px) {
  section.galeria {
    padding: 50px 0;
  }
  section.galeria .contGale {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  section.galeria {
    padding: 50px 0;
  }
  section.galeria h2 {
    margin-bottom: 10px;
  }
  section.galeria h2 br {
    display: none;
  }
  section.galeria .contGale {
    padding: 0;
    padding-left: 0;
  }
  .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    top: 230px;
    padding: 0 20px;
  }
  section.galeria .btnSlider {
    display: block;
    position: relative;
    top: 60px;
    margin: 0 auto;
    width: 130px;
  }
}
section.distintivo {
  background-image: url("../imagenes/back-diferencial.jpg");
  padding: 150px 0 0;
}
section.distintivo h3 {
  margin-bottom: 30px;
}
section.distintivo figure {
  margin: 0;
}
section.distintivo figure img {
  width: 416px;
  margin: 0 auto;
  display: block;
}
section.distintivo p {
  max-width: 80%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
  section.distintivo {
    background-image: url("../imagenes/movil/back-diferencial.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 15px 0;
  }
  section.distintivo p {
    max-width: 100%;
    margin: 0 auto 20px;
  }
}
section.video {
  padding: 200px 0 100px;
}
section.video h3 {
  margin-bottom: 50px;
}
section.video iframe {
  padding: 0 !important;
  width: 100%;
  height: 700px;
  border-radius: 0;
}

@media screen and (max-width: 992px) {
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 0;
  }
}
section.pasos {
  background: linear-gradient(360deg, #FFFCDA 0%, #FFF 56.23%);
  padding: 150px 15px 320px;
  /* Asegúrate de que tu contenedor principal (donde está el Swiper) tenga 'position: relative' si vas a posicionar elementos absolutos dentro de él.
  Si las flechas están fuera, puedes usar un contenedor específico para las flechas. */
  /* Estilo general para las flechas si aún no lo tienes (ajusta colores, tamaños, etc.) */
  /* Ajustes específicos para la flecha de 'prev' */
  /* Ajustes específicos para la flecha de 'next' */
  /* Es importante sobrescribir las reglas por defecto de Swiper que vienen con su JS y CSS */
  /* Usamos !important con cautela, solo si las reglas de Swiper están siendo más específicas */
  /* Si los iconos por defecto de Swiper no te gustan o no aparecen, puedes usar un icono personalizado: */
}
section.pasos .container {
  max-width: 900px;
}
section.pasos .swiper {
  padding: 12px 12px 50px;
}
section.pasos h2, section.pasos h3 {
  text-align: left;
}
section.pasos .cont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
section.pasos .cardPasos {
  border-radius: 10px;
  border: 3px solid var(--azul-bokita, #2D368F);
  background: #FFF;
  min-height: 200px;
}
section.pasos .cardPasos h4 {
  background-color: #2D368F;
  text-align: left;
  padding: 15px;
  padding-left: 35px;
  line-height: 28px;
  text-transform: uppercase;
}
section.pasos .cardPasos p {
  padding: 15px 33px;
  text-align: left;
}
section.pasos .swiper-horizontal > .swiper-pagination-bullets, section.pasos .swiper-pagination-bullets.swiper-pagination-horizontal, section.pasos .swiper-pagination-custom, section.pasos .swiper-pagination-fraction {
  top: 90%;
}
section.pasos .swiper-pagination-bullet-active {
  background: white;
}
section.pasos .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
  left: 0;
  width: -moz-max-content;
  width: max-content;
  color: white;
  color: var(--Blanco, #FFF);
  font-family: Oswald;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 68px;
  text-transform: uppercase;
}
section.pasos .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal span.swiper-pagination-current {
  font-weight: 700;
}
section.pasos .swiper-button-prev,
section.pasos .swiper-button-next {
  width: 60px; /* Tamaño del botón */
  height: 35px; /* Tamaño del botón */
  border-radius: 50%; /* Para que sean redondos */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute; /* Hacemos que se posicionen de forma absoluta */
  top: auto; /* Anulamos cualquier 'top' por defecto */
  bottom: 0; /* Posicionamos debajo del slider, ajusta este valor según la separación que quieras */
  z-index: 10; /* Para asegurar que estén por encima de otros elementos si hay superposiciones */
  transform: translateY(0); /* Anulamos transformaciones por defecto de Swiper */
  margin-top: 0; /* Anulamos márgenes por defecto */
  color: #333; /* Color del ícono de la flecha */
  font-size: 20px; /* Tamaño del ícono de la flecha */
}
section.pasos .swiper-button-prev {
  left: 0px; /* Ajusta este valor para la separación del borde derecho */
  right: auto; /* Anulamos 'left' por defecto */
}
section.pasos .swiper-button-next {
  left: 75px; /* Ajusta este valor para la separación con la flecha 'next' */
  right: auto; /* Anulamos 'left' por defecto */
}
section.pasos .swiper-button-prev:after,
section.pasos .swiper-button-next:after {
  font-family: swiper-icons; /* Mantén esto si estás usando los íconos por defecto de Swiper */
  font-size: 20px; /* Tamaño de la flecha dentro del botón */
  color: #333; /* Color de la flecha */
  content: "next"; /* O 'prev' si estás sobrescribiendo los iconos por defecto y no usando un ícono */
}
section.pasos .swiper-button-prev {
  background-image: none; /* Elimina la imagen de fondo por defecto */
}
section.pasos .swiper-button-prev:after {
  content: ""; /* O un Font Awesome: \f060 */
  font-family: "Arial", sans-serif; /* O 'Font Awesome 5 Free' si usas FA */
  font-weight: 900; /* Para Font Awesome */
}
section.pasos .swiper-button-next {
  background-image: none; /* Elimina la imagen de fondo por defecto */
}
section.pasos .swiper-button-next:after {
  content: ""; /* O un Font Awesome: \f061 */
  font-family: "Arial", sans-serif; /* O 'Font Awesome 5 Free' si usas FA */
  font-weight: 900; /* Para Font Awesome */
}
section.pasos .swiper.mySwiper2 {
  padding-bottom: 90px;
}
section.pasos .swiper-slide img {
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s linear;
}
section.pasos .swiper-slide img {
  transform: scale(0.95);
}
section.pasos .swiper-slide.swiper-slide-active img {
  opacity: 1;
  transform: scale(1.1);
}
section.pasos .btnSlider {
  display: block;
  position: relative;
  top: 60px;
  margin: 0 auto;
  width: 130px;
}

@media screen and (max-width: 767px) {
  section.pasos h3 {
    font-size: 24px;
  }
  section.pasos .swiper {
    padding: 12px 0px 50px;
  }
  section.pasos .swiper h4 {
    font-size: 18px;
    line-height: 28px;
  }
  section.pasos .btnSlider {
    top: 40px;
  }
}
.bannerFooter {
  position: relative;
  background: var(--gris-clarito, #E9ECEF);
  padding-bottom: 0;
  margin: 0;
  padding-top: 120px;
}
.bannerFooter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 723px;
  height: 1000px;
  background-image: url(../imagenes/ilus-footer.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.bannerFooter img {
  width: 190px;
}
.bannerFooter h2, .bannerFooter p {
  text-align: left;
}
.bannerFooter p {
  margin: 10px 0 30px;
}
.bannerFooter a.btn.btnbr {
  border-radius: 50px;
  background: var(--amarillo-bokita, #FCBC12);
  margin-bottom: 100px;
}
.bannerFooter hr {
  background: var(--negro, #212529);
  width: 90%;
  margin: 0 auto;
  opacity: 1;
}
.bannerFooter p.copy {
  padding: 20px;
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Liberation Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 200% */
}

@media screen and (max-width: 1540px) {
  .bannerFooter::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 60%;
    width: 500px;
    height: 740px;
    background-image: url(../imagenes/ilus-footer.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
  }
}
@media screen and (max-width: 992px) {
  .bannerFooter::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 72%;
    width: 463px;
    height: 650px;
    background-image: url(../imagenes/ilus-footer.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .bannerFooter {
    padding-top: 150px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .bannerFooter::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 80%;
    width: 320px;
    height: 450px;
    background-image: url(../imagenes/ilus-footer.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .bannerFooter p.copy {
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */