/* Font  */
@font-face {
  font-family: Jost;
  src: url("../font/Jost-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Jost;
  src: url("../font/Jost-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Jost;
  src: url("../font/Jost-BoldItalic.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: italic;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
div.menu {
  position: absolute;
  background-color: transparent;
  width: 100%;
  min-height: 85px;
  max-height: 85px;
  margin-top: 20px;
  z-index: 4;
}
div.menu .container {
  max-width: 1700px;
  position: relative;
}
div.menu .container::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--negro, #000);
  z-index: -1;
}
div.menu figure {
  margin: 0;
}
div.menu img {
  max-width: 80px;
  margin: 0 auto;
  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;
  right: 0px;
  top: 14px;
  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;
  user-select: none;
  padding: 13px 9px;
  width: 50px;
  height: 45px;
  margin: 3px 0 0 auto;
  border-radius: 8px;
}
div.menu .hamburger.is-active {
  background-color: none;
}
div.menu .hamburger.is-active {
  position: fixed;
  background-color: transparent;
  left: initial;
  top: 20px;
  height: 20px;
  width: 20px;
  padding: 10px 30px;
  right: 10%;
}
div.menu ._layer {
  background: #fff;
  margin-bottom: 5px;
  border-radius: 2px;
  width: 30px;
  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: #03D8FC;
}
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.98);
  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: Jost;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  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.btnbr {
  color: white;
}
div.menu .menuppal ul li a.btnbr:hover {
  background-color: #000;
  color: #fff;
}
div.menu .menuppal ul li a:hover {
  text-decoration: none;
  color: #03D8FC;
  zoom: 1.1;
}
div.menu .btn,
div.menu .btnbr,
div.menu input.hs-button.primary.large,
div.menu a.btn.btnbr {
  background-color: #03D8FC;
  text-transform: uppercase;
}
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: #03D8FC;
  color: black;
}
div.menu .menu .container {
  max-width: 1560px;
}

@media screen and (max-width: 1540px) {
  div.menu .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 992px) {
  div.menu .container {
    max-width: 760px;
  }
  div.menu .menuppal ul li {
    font-size: 1.2rem;
    line-height: 2em;
    height: 3em;
  }
  div.menu .hamburger {
    top: 10px;
  }
  div.menu img {
    max-width: 70px;
    margin: 0 auto;
    display: block;
    z-index: 1;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden !important;
}

section {
  padding: 100px 0;
}

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

p b {
  font-weight: 700;
}

h1 {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 52px; /* 171.429% */
}

.banner p {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 181.818% */
}

h6 {
  /* CLAVE 1: Recortar el fondo al texto */
  -webkit-background-clip: text;
  background-clip: text;
  /* CLAVE 2: Hacer el texto transparente para ver el fondo */
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background: #121fcf;
  background-image: linear-gradient(90deg, #03d8fc 0%, #03d8fc 25%, #9a31ff 60%, #9a31ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-max-content;
  width: max-content;
}

h2 {
  color: #fff;
  font-family: Jost;
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 56px; /* 133.333% */
  text-transform: uppercase;
}

h4 {
  color: var(--celeste, #03d8fc);
  font-family: Jost;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 181.818% */
}

p {
  color: #fff;
  font-family: Jost;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
}

.btn,
.btnbr,
input.hs-button.primary.large,
a.btn.btnbr {
  padding: 6px 40px 6px;
  border: 2px solid #03d8fc;
  color: #fff;
  font-family: Jost;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 285.714% */
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  border-radius: 40px;
  border: 2px solid transparent;
  background-image: linear-gradient(#550085, #550085), linear-gradient(to right, #03d8fc, #9a31ff);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-color: #9a31ff;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover,
a.btn.btnbr:hover {
  opacity: 0.5;
}

a {
  text-decoration: none;
}

.hiddenD {
  display: none;
}

.swiper {
  padding-bottom: 50px;
  padding: 30px;
}

.linea2 figure {
  margin: -2px 0 0;
}

.linea1 {
  margin-bottom: -10px;
}

.linea2 {
  margin-top: -10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  width: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 992px) {
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
  h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .banner p {
    font-size: 20px;
    line-height: 28px;
  }
  h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .swiper {
    padding: 0;
  }
}
section.banner {
  background-image: url("../imagenes/header.jpg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 250px 0 100px;
}
section.banner figure img {
  max-width: 1029px;
  display: block;
  margin: 0 auto;
}
section.banner .flecha img {
  max-width: 40px;
  margin: 50px auto 0;
  display: block;
}

@media screen and (max-width: 767px) {
  section.banner {
    padding: 170px 15px 10px;
  }
  section.banner figure img {
    margin-top: 60px;
  }
}
.bg2 {
  background-image: url("../imagenes/back1.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

section.nosotros {
  padding: 150px 0;
}
section.nosotros .container {
  max-width: 1240px;
}
section.nosotros img {
  max-width: 90%;
}
section.nosotros .cont {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
}

@media screen and (max-width: 992px) {
  section.nosotros {
    padding: 150px 15px;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 100px 15px;
  }
  section.nosotros img {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .bg2 {
    background-image: url("../imagenes/movil/back1.png");
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
section.beneficios {
  padding-bottom: 200px;
}
section.beneficios .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 240px;
}
section.beneficios .cardbene {
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 40px;
  min-height: 326px;
}
section.beneficios .cardbene img {
  width: 75px;
}
section.beneficios .btnslider {
  display: flex;
  justify-content: space-between;
  width: 140px;
  flex-direction: row;
  align-content: center;
  padding: 42px 20px;
}
section.beneficios .btnslider img {
  width: 50px;
}

@media screen and (max-width: 992px) {
  section.beneficios {
    padding-left: 15px;
  }
  section.beneficios .cont {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios {
    padding: 80px 25px 200px;
  }
  section.beneficios .col-md-7 {
    padding: 0;
    margin-top: 20px;
  }
  section.beneficios h4 {
    text-transform: none;
    line-height: normal;
    margin-bottom: 15px;
  }
  section.beneficios .btnslider {
    display: flex;
    justify-content: space-between;
    width: 140px;
    flex-direction: row;
    align-content: center;
    padding: 42px 20px;
    margin: 0 auto;
  }
}
section.form {
  padding: 200px 0;
}
section.form h6 {
  margin: 0 auto 10px;
}
section.form h2 {
  color: #000;
  text-align: center;
}
section.form p {
  color: #000;
  text-align: center;
  margin-bottom: 50px;
}
section.form .contForm {
  max-width: 1000px;
  margin: 0 auto;
}
section.form form {
  background-size: contain;
  background-position: bottom left;
  background-repeat: repeat-x;
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
}
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: 5px 0 5px;
  border-radius: 0;
  color: #000;
  font-family: jost;
  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 .actions {
  text-align: center;
  display: block;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
section.form input.hs-button.primary.large {
  margin: 40px 0 0 !important;
  padding: 10px 100px;
  display: block;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #03d8fc, #9a31ff);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-color: #fff;
  color: #000;
  margin: 0 auto;
  text-transform: uppercase;
}
section.form input.hs-button.primary.large:hover {
  opacity: 0.5;
}
section.form fieldset {
  max-width: 900px;
}
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;
}
section.form .input .hs-input {
  width: 100% !important;
}
section.form .hs-fieldtype-intl-phone.hs-input input {
  width: 68% !important;
  float: right;
}
section.form .hs-fieldtype-intl-phone.hs-input select {
  float: left;
  width: 30% !important;
}

@media screen and (max-width: 992px) {
  section.form {
    padding: 100px 15px;
  }
  section.form h6 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  section.form {
    padding: 100px 15px 150px;
    position: relative;
    background-image: url("../imagenes/movil/Fondo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  section.form .container .bgBlack {
    max-width: 92%;
    padding: 50px 30px;
  }
}
section.datos {
  padding-bottom: 150px;
}
section.datos .row.bg {
  background-image: url(../imagenes/back_datos.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 150px 200px 100px 270px;
}
section.datos .container {
  max-width: 1700px;
}
section.datos .carddatos {
  margin: 40px 0;
}
section.datos .carddatos figure {
  margin: 10px auto;
  max-width: 43px;
}
section.datos .carddatos h4 {
  color: var(--celeste, #03d8fc);
  font-family: Jost;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 86.667% */
}
section.datos .carddatos p {
  color: white;
}
section.datos .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
}

.linea1 figure {
  margin: 0 0 -2px;
}

@media screen and (max-width: 992px) {
  section.datos .row.bg {
    padding: 150px 40px 100px 40px;
  }
}
@media screen and (max-width: 767px) {
  section.datos {
    padding: 50px 0;
  }
  section.datos .row.bg {
    background-image: url(../imagenes/movil/back_datos.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 1%;
    width: 98%;
    padding: 80px 20px;
  }
  section.datos .carddatos figure {
    margin: 10px auto;
    max-width: 113px;
    width: 32px;
  }
}
.bg3 {
  background-image: url(../imagenes/back.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}

section.galeria {
  padding-top: 60px;
}
section.galeria h6,
section.galeria h2,
section.galeria p {
  text-align: center;
  margin: 5px auto;
}
section.galeria p {
  margin-bottom: 40px;
}
section.galeria .swiper-pagination-bullet-active {
  background-color: #000;
}
section.galeria .swiper-pagination2.swiper-pagination-bullets.swiper-pagination-horizontal {
  max-width: 70%;
  text-align: center;
  margin-top: 40px;
}
section.galeria .btnslider {
  display: flex;
  justify-content: space-between;
  width: 120px;
  flex-direction: row;
  align-content: center;
  padding: 30px 0;
  margin: 0 auto;
}
section.galeria .btnslider img {
  width: 50px;
}

@media screen and (max-width: 992px) {
  section.galeria .cont {
    height: auto;
    padding: 0 30px;
  }
  section.galeria .swiper-pagination2.swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col-md-12.col-lg-7.contGale {
    padding: 0;
  }
  section.galeria {
    padding: 60px 15px;
  }
  section.galeria figure img {
    border-radius: 10px;
  }
}
section.distintivo {
  padding: 150px 0;
}
section.distintivo .container {
  max-width: 1240px;
}
section.distintivo img {
  max-width: 90%;
}
section.distintivo .cont {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-content: flex-start;
}

@media screen and (max-width: 992px) {
  section.distintivo {
    padding: 150px 15px;
  }
}
@media screen and (max-width: 767px) {
  section.distintivo {
    padding: 100px 15px;
  }
  section.distintivo figure img {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
section.video {
  padding-top: 60px;
}
section.video h6,
section.video h2,
section.video p {
  text-align: center;
  margin: 5px auto;
}
section.video p {
  margin-bottom: 40px;
}
section.video iframe {
  padding: 0 !important;
  width: 80%;
  height: 480px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 992px) {
  section.video {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  section.video {
    padding: 100px 15px;
  }
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 400px;
    border-radius: 0;
  }
}
section.pasos .container {
  max-width: 1550px;
}
section.pasos .cardPasos {
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 40px;
  margin: 36px 15px;
  min-height: 290px;
}
section.pasos .cardPasos span.number {
  color: var(--fucsia, #f91f6d);
  font-family: Jost;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
  margin-bottom: 15px;
  display: block;
}
section.pasos .cardPasos h4 {
  text-transform: none;
  line-height: normal;
}
section.pasos .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
}

@media screen and (max-width: 1540px) {
  section.pasos {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 992px) {
  section.pasos .cardPasos {
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 26px;
    margin: 36px 5px;
    min-height: 290px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.pasos .cardPasos {
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 26px;
    margin: 36px 5px 0;
    min-height: 290px;
    position: relative;
    display: block;
  }
}
.bannerFooter {
  padding: 140px 0;
}
.bannerFooter h2,
.bannerFooter p {
  text-align: center;
  margin: 5px auto;
  color: #000;
}
.bannerFooter p {
  margin-bottom: 25px;
}
.bannerFooter a.btnbr {
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #03d8fc, #9a31ff);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-color: #fff;
  color: #000;
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
}

footer p {
  background-color: #000;
  text-align: center;
  color: #fff;
  padding: 15px;
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 14px;
  font-style: normal;
}/*# sourceMappingURL=styles.css.map */