@charset "UTF-8";
/* Font  */
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-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);
  }
}
/* Header  */
.menu .container {
  max-width: 1720px;
}

.menu {
  position: absolute;
  width: 100%;
  top: 20px;
  padding: 0px;
}
.menu img {
  width: 230px;
  margin: 14px 0;
}
.menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  background: transparent !important;
  border-radius: 15px;
  padding: 2px 20px;
}
.menu .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.menu a.nav-link {
  padding: 34px 30px !important;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.8;
  color: var(--Negro, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  text-transform: uppercase;
}
.menu a.nav-link:hover {
  font-weight: 700;
  opacity: 1;
}
.menu .btn {
  margin: 19px 18px !important;
  color: var(--Blanco, #FFF);
  text-align: center;
  font-family: "Barlow Semi Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 137.5% */
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid var(--Beige, #E5DFD0);
}
.menu li.nav-item.logom a {
  padding: 0 23px !important;
}
.menu figure {
  margin: 0;
  padding: 10px;
}
.menu .logoH {
  transition: transform 0.3s ease;
  width: 180px;
}
.menu .logoH:hover {
  animation: heartBeat 0.5s forwards; /* Cambia "bounce" por cualquier otra animación */
}
.menu svg.bi.bi-arrow-right-short {
  width: 56px;
  font-size: 50px;
  height: 40px;
  color: #000;
  background: #0060AB;
  border-radius: 13px;
  margin: 0;
  margin-top: -6px;
  margin-left: 12px;
}
.menu .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.menu button.btn {
  margin: 19px 8px 0;
  padding: 7px 25px;
}
.menu li.nav-item {
  position: relative;
}

button.navbar-toggler {
  border: none;
}

button.navbar-toggler img {
  max-width: 30px !important;
}

.btnheader {
  display: none;
}

.hiddenD {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu img {
    padding: 0px 0;
    margin: 0;
    height: 25px;
  }
  .hiddenD {
    display: block;
  }
  .btnheader {
    display: block;
    margin: 12px auto;
  }
  .menu .navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
    display: flex !important;
    text-align: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
  li.nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 0;
    padding: 5px 0;
  }
  li.nav-item a {
    text-align: center;
  }
  .menu a.nav-link {
    margin: 3px 10px;
    padding: 10px !important;
    color: var(--Blanco, #555);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  li.nav-item.active:first-child {
    padding-top: 30px;
  }
  button.navbar-toggler {
    box-shadow: none;
  }
  .menu li a {
    text-decoration: none;
  }
  .menu li a button {
    width: 70%;
    margin: 0 auto;
    display: block;
    margin-top: 24px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  }
  div#navbarSupportedContent {
    background: #F2EDDF;
    border: 1px solid #8a8a8a;
  }
  .logom {
    display: none;
  }
  .menu .logoH {
    transition: transform 0.3s ease;
    width: 150px;
  }
  .menu li.nav-item a {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid;
    padding: 10px !important;
    border: navajowhite;
  }
  .menu button img {
    width: 100%;
    padding: 0px 0;
    margin-top: 0;
  }
  div#navbarSupportedContent {
    background: #fff;
    border: 0;
    border-radius: 1px;
  }
  .menu li.nav-item:after {
    display: none;
  }
  .menu {
    padding: 10px;
  }
  .menu .btn {
    margin: 0 auto !important;
  }
  .menu li.nav-item a.btnbr {
    padding: 8px 30px !important;
    color: #FFF;
    font-family: Raleway;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .menu .logoH {
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .menu img {
    max-width: 160px;
    padding: 0 10px;
  }
  .menu figure img {
    max-width: 200px;
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .menu .logoH {
    transition: transform 0.3s ease;
    width: 140px;
  }
  nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    display: flex;
    flex-direction: row;
    align-content: center;
  }
  a.navbar-brand.hiddenl {
    margin-right: 25px;
  }
  .menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    padding: 2px 0;
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

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

h1 {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 71px; /* 131.481% */
}

.banner p {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h2 {
  color: #0060AB;
  font-family: Poppins;
  font-size: 39px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h4 {
  color: #0060AB;
  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h5 {
  color: #777;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h6 {
  color: #777;
  text-align: center;
  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.89px;
}

p {
  color: #777;
  font-family: Poppins;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn, .btnbr, input.hs-button.primary.large {
  border-radius: 15px;
  background: #0060AB;
  padding: 8px 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 30px auto;
  border: 0;
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.btn:hover, .btnbr:hover, input.hs-button.primary.large:hover {
  background-color: #fff;
  color: #0060AB;
  opacity: 0.7;
}
.btn img, .btnbr img, input.hs-button.primary.large img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

.hiddenD, .hiddenl {
  display: none;
}

.hiddenS {
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .hiddenl {
    display: block;
  }
  .hiddenD {
    display: block;
  }
  .hiddenS {
    display: none;
  }
  h1 {
    font-size: 48px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  h1 {
    font-size: 25px;
    line-height: 36px;
  }
  h1 br {
    display: none;
  }
  .banner p {
    font-size: 18px;
    line-height: normal;
  }
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
  p {
    font-size: 17px;
    line-height: normal;
  }
  h6 {
    font-size: 15px;
    line-height: normal;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
}
.banner {
  min-height: 1100px;
  background-image: url(../imagenes/header.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 330px 0 0;
  text-align: center;
}
.banner .row {
  display: block;
}
.banner p {
  max-width: 50%;
  text-align: center;
  display: block;
  margin: 60px auto 20px;
}

@media screen and (max-width: 992px) {
  .banner {
    padding: 250px 0 0;
  }
  .banner p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    background-image: url(../imagenes/movil/header.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 250px 15px 0;
    min-height: 900px;
  }
}
section.nosotros .container {
  max-width: 1340px;
}
section.nosotros .cont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
section.nosotros h2 {
  text-align: left;
  max-width: 100%;
  margin-bottom: 60px;
}
section.nosotros p {
  max-width: 600px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  section.nosotros h2 {
    text-align: center;
  }
  section.nosotros p {
    text-align: center;
    margin-bottom: 40px;
  }
}
section.beneficios .container {
  max-width: 1740px;
}
section.beneficios h2 {
  text-align: center;
  margin-bottom: 150px;
}
section.beneficios .cardbene {
  border-radius: 11px;
  background: #F4FBFF;
  padding: 40px;
  min-height: 540px;
  transition: all 0.3s ease;
}
section.beneficios .cardbene:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
section.beneficios .cardbene span {
  color: #0060AB;
  font-family: Poppins;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section.beneficios .cardbene img {
  width: 108px;
  height: auto;
  margin: 10px 0 10px auto !important;
  display: block;
}
section.beneficios .cardbene h4 {
  margin-top: 100px;
  margin-bottom: 30px;
}
section.beneficios .cardbene p {
  color: #777;
  font-size: 19px;
}
section.beneficios .d-md-block {
  display: flex !important;
}

.galeriaMobil {
  display: none !important;
}

@media screen and (max-width: 1540px) {
  section.beneficios {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 992px) {
  section.beneficios .cardbene {
    margin-bottom: 30px;
  }
  .d-md-block {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios .d-md-block {
    display: none !important;
  }
  section.beneficios h2 {
    text-align: center;
    margin-bottom: 90px;
  }
  section.beneficios .swiper {
    padding-bottom: 70px;
  }
  section.beneficios span.swiper-pagination-bullet {
    border: 1px solid #0060AB !important;
    width: 12px;
    height: 12px;
    background: transparent;
    opacity: 1;
    transition: linear 0.3s all;
  }
  section.beneficios span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: #0060AB;
    margin: -4px 2px;
  }
  section.beneficios .cardbene p {
    color: #777;
    font-size: 17px;
  }
  .d-md-block {
    display: none !important;
  }
}
html body section.form {
  padding: 150px 0;
}
html body section.form .container {
  max-width: 1500px;
}
html body section.form .cont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
html body section.form h6 {
  text-align: left;
}
html body section.form h2 {
  margin-bottom: 100px;
}
html body section.form p {
  max-width: 75%;
}
html body section.form input.hs-button.primary.large {
  margin: 0;
  display: block;
}
html body section.form form {
  max-width: 700px;
  margin: 0 auto;
  margin-left: 50px;
}
html body section.form button, html body section.form input, html body section.form optgroup, html body section.form select, html body section.form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  border-radius: 0;
  color: var(--Negro, #000);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
html body section.form button::-moz-placeholder, html body section.form input::-moz-placeholder, html body section.form optgroup::-moz-placeholder, html body section.form select::-moz-placeholder, html body section.form textarea::-moz-placeholder {
  color: #000;
}
html body section.form button::placeholder, html body section.form input::placeholder, html body section.form optgroup::placeholder, html body section.form select::placeholder, html body section.form textarea::placeholder {
  color: #000;
}
html body section.form .hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field input,
html body section.form .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field input {
  width: 100%;
}
html body section.form fieldset {
  border: 0;
  padding: 0;
  margin: 0 auto !important;
  max-width: 700px !important;
}
html body section.form .form-columns-1 .hs-input {
  width: 100%;
}
html body section.form .actions {
  text-align: center;
}
html body section.form input.hs-button.primary.large {
  padding: 10px 70px;
  text-transform: uppercase;
  width: 100%;
  min-width: 100%;
  border: 1px solid #0060AB;
}
html body section.form .hs_submit.hs-submit {
  max-width: 100%;
  margin: 28px auto 20px;
}

.hiddenF {
  display: none;
}

@media screen and (max-width: 1540px) {
  html body section.form {
    padding-left: 7%;
    padding-right: 7%;
  }
}
@media screen and (max-width: 992px) {
  html body section.form {
    padding-left: 3%;
    padding-right: 3%;
  }
  html body section.form h2 br {
    display: none;
  }
  html body section.form p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body section.form {
    padding: 100px 15px;
  }
  html body section.form h2 {
    margin-bottom: 50px;
  }
  html body section.form form {
    margin-left: 0;
  }
}
section.datos {
  padding: 120px 15px 150px;
  background-image: url("../imagenes/datos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 1150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.datos h2 {
  text-align: center;
  color: #FFF;
  margin-bottom: 100px;
  font-size: 54px;
}
section.datos p {
  text-align: center;
  color: #FFF;
  font-size: 25px;
  max-width: 60%;
  margin: 0 auto;
}
section.datos .container {
  max-width: 1450px;
}

@media screen and (max-width: 992px) {
  section.datos h2 {
    margin-bottom: 70px;
  }
  section.datos p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.datos {
    padding: 180px 20px 150px;
    background-image: url("../imagenes/movil/datos.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 900px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  section.datos h2 {
    font-size: 29px;
    line-height: 35px;
  }
  section.datos p {
    font-size: 17px;
    line-height: normal;
  }
}
.video {
  padding-top: 150px;
  padding-bottom: 200px;
}
.video h2 {
  text-align: center;
  margin-bottom: 100px;
}
.video .contVideo {
  width: 100%;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.video .contVideo iframe {
  width: 100%;
  height: 680px;
  padding-left: 70px;
}

@media screen and (max-width: 992px) {
  .video .contVideo iframe {
    width: 100%;
    height: 430px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .video {
    padding: 100px 10px;
  }
  .video .contVideo {
    width: 100%;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  .video .contVideo iframe {
    padding: 0;
    width: 100%;
    height: 330px;
  }
}
.galeria {
  position: relative;
  margin-bottom: 100px;
}
.galeria .container {
  max-width: 1500px;
}
.galeria .container .col-md-4 {
  padding: 0;
}
.galeria h6 {
  text-align: left;
  padding-top: 70px;
}
.galeria h2 {
  margin-bottom: 145px;
}
.galeria figure {
  margin: 0;
}
.galeria figure img {
  padding: 5px;
}
.galeria .seis figure img {
  height: 558px;
}
.galeria .swiper-horizontal > .swiper-pagination-bullets, .galeria .swiper-pagination-bullets.swiper-pagination-horizontal, .galeria .swiper-pagination-custom, .galeria .swiper-pagination-fraction {
  top: 84%;
}
.galeria .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  border: 1px solid white;
  z-index: 9;
}
.galeria .swiper-pagination-bullet-active {
  background: white;
}
.galeria .swiper {
  padding: 0;
  position: relative;
}
.galeria .botones {
  position: relative;
  top: -7.5%;
  right: 10%;
}
.galeria .botones div {
  border-radius: 36px;
  background: #FFF;
  width: 50px;
}
.galeria .botones svg {
  width: 15px;
}

.hiddenD1 {
  display: none;
}

@media screen and (max-width: 1540px) {
  section.galeria {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 992px) {
  .galeria .imgGale.img {
    display: none;
  }
  .galeria .swiper-horizontal > .swiper-pagination-bullets, .galeria .swiper-pagination-bullets.swiper-pagination-horizontal, .galeria .swiper-pagination-custom, .galeria .swiper-pagination-fraction {
    top: 92%;
  }
  .galeria .swiper.mySwiper2 {
    max-height: 410px;
  }
  .galeria .text h2, .galeria .text h6 {
    font-size: 37px;
    font-weight: 400;
    line-height: 34px;
  }
  .galeria .swiper {
    padding-bottom: 70px;
  }
  .galeria span.swiper-pagination-bullet {
    border: 1px solid #0060AB !important;
    width: 12px;
    height: 12px;
    background: transparent;
    opacity: 1;
  }
  .galeria span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: #0060AB;
    margin: -4px 2px;
  }
}
@media screen and (max-width: 767px) {
  .galeria h2 {
    margin-bottom: 80px;
  }
  .galeria .galeriaMobil {
    padding: 0;
  }
  .galeria .col-md-12.col-lg-4 {
    padding-left: 30px;
  }
  .galeriaMobil {
    display: block !important;
  }
}
section.diferencial {
  padding: 120px 15px 150px;
  background-image: url("../imagenes/fondoG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 1300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.diferencial h2 {
  color: #FFF;
  font-family: Poppins;
  font-size: 69px;
  font-style: normal;
  font-weight: 700;
  line-height: 84px;
  text-align: center;
  margin-bottom: 150px;
}
section.diferencial p {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.diferencial p b {
  display: block;
}
section.diferencial .swiper-slide {
  border: 3px solid #0060AB;
  transition: 0.3s linear all;
  padding: 30px 35px 20px !important;
  border-bottom: 0;
  border-top: 0;
  opacity: 0.5;
  transform: scale(0.9);
}
section.diferencial .swiper-slide.swiper-slide-active {
  border: 3px solid white;
  border-bottom: 0;
  border-top: 0;
  opacity: 1;
  transform: scale(1);
}
section.diferencial .swiper.mySwiper3 {
  padding-bottom: 100px !important;
}
section.diferencial .swiper-horizontal > .swiper-pagination-bullets, section.diferencial .swiper-pagination-bullets.swiper-pagination-horizontal, section.diferencial .swiper-pagination-custom, section.diferencial .swiper-pagination-fraction {
  top: 270px;
  left: 0;
}
section.diferencial .swiper-horizontal > .swiper-pagination-bullets span.swiper-pagination-bullet, section.diferencial .swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet, section.diferencial .swiper-pagination-custom span.swiper-pagination-bullet, section.diferencial .swiper-pagination-fraction span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #FFF;
}
section.diferencial .swiper-button-next, section.diferencial .swiper-button-prev {
  color: #ffffff;
  margin-top: -70px;
}
section.diferencial .swiper-button-next:after, section.diferencial .swiper-button-prev:after {
  font-size: 25px;
}

@media screen and (max-width: 992px) {
  section.diferencial h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  section.diferencial {
    background-image: url(../imagenes/movil/FondoG.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 900px;
    padding: 150px 15px;
  }
  section.diferencial h2 {
    font-size: 29px;
    line-height: normal;
  }
  section.diferencial h2 br {
    display: none;
  }
  section.diferencial .swiper-button-next, section.diferencial .swiper-button-prev {
    display: none;
  }
  section.diferencial p {
    font-size: 18px;
  }
  section.diferencial .swiper-horizontal > .swiper-pagination-bullets, section.diferencial .swiper-pagination-bullets.swiper-pagination-horizontal, section.diferencial .swiper-pagination-custom, section.diferencial .swiper-pagination-fraction {
    top: 230px;
    left: 0;
  }
}
section.pasos h6 {
  text-align: left;
}
section.pasos .cont {
  padding: 180px 0 0 130px;
}
section.pasos .cardPasos {
  border-radius: 11px;
  background: #F4FBFF;
  padding: 50px 50px 20px;
  min-height: 625px;
}
section.pasos .cardPasos span {
  color: #0060AB;
  font-family: Poppins;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section.pasos .cardPasos h4 {
  color: #0060AB;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 80px;
  min-height: 74px;
}
section.pasos .cardPasos h5 {
  margin-bottom: 30px;
}
section.pasos .cardPasos p {
  font-size: 18px;
}
section.pasos .swiper {
  padding-bottom: 70px;
}
section.pasos span.swiper-pagination-bullet {
  border: 1px solid #0060AB !important;
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
}
section.pasos span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background: #0060AB;
  margin: -4px 2px;
}
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 {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 35%;
}
section.pasos .swiper-slide.swiper-slide-active .cardPasos {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 992px) {
  section.pasos h2 {
    margin-bottom: 40px;
  }
  section.pasos .cont {
    padding: 20px 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos .cont {
    padding: 20px 0 0 30px;
  }
  section.pasos .cardPasos {
    padding: 30px 30px 20px;
  }
  section.pasos .cardPasos h4 {
    margin-bottom: 60px;
  }
  section.pasos .cardPasos p {
    font-size: 17px;
  }
  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 {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
  }
}
section.preguntas {
  padding-top: 0;
}
section.preguntas .cardPrenguntas {
  margin-bottom: 80px;
  min-height: 300px;
}
section.preguntas .cardPrenguntas img {
  width: 24px;
}
section.preguntas .cardPrenguntas .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
}
section.preguntas .cardPrenguntas .title img {
  margin-right: 20px;
}
section.preguntas .cardPrenguntas p {
  margin-top: 20px;
  padding-left: 50px;
  max-width: 90%;
}
section.preguntas h4 {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  section.preguntas {
    padding: 80px 15px;
  }
  section.preguntas h4 {
    font-size: 17px;
    line-height: normal;
  }
  section.preguntas p {
    font-size: 16px;
  }
  section.preguntas .cardPrenguntas {
    margin-bottom: 40px;
    min-height: initial;
    padding-bottom: 40px;
    border-bottom: 1px solid #777;
  }
}
section.footer {
  background: #F4FBFF;
  text-align: center;
  padding-bottom: 60px;
}
section.footer h2 {
  margin-bottom: 40px;
}

footer p {
  text-align: center;
  margin: 0;
  padding: 15px 0;
  font-size: 14px;
  color: #0060AB;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 20px 20px 0;
  }
  footer figure {
    margin: 10px 0;
  }
  footer p {
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */