/* Font  */
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
div.menu {
  position: relative;
  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::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  height: 1px;
  background-color: #f1cd17;
}
div.menu figure {
  margin: 0;
}
div.menu img {
  max-width: 220px;
  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: #f1cd17;
}
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: montserrat;
  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: #f1cd17;
  zoom: 1.1;
}
div.menu .btn,
div.menu .btnbr,
div.menu input.hs-button.primary.large,
div.menu a.btn.btnbr {
  background-color: #f1cd17;
  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: #f1cd17;
  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: 120px;
    margin: 0 auto;
    display: block;
    z-index: 1;
  }
  div.menu .hamburger {
    top: 0;
    padding-top: 3px;
  }
  div.menu {
    min-height: 55px;
    max-height: 85px;
    margin-top: 20px;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden !important;
  background: #000;
}

section {
  padding: 100px 0;
}

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

p b {
  font-weight: 700;
}

h1 {
  color: #fff;
  font-family: Montserrat;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.banner p {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}

h6 {
  color: #f1cd17;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h2 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 93.333% */
}

h4 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

p {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}

.btn,
.btnbr,
input.hs-button.primary.large,
a.btn.btnbr {
  border-radius: 10px;
  background: var(--rojo, #e02429);
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover,
a.btn.btnbr:hover {
  opacity: 0.5;
}

a {
  text-decoration: none;
}

.hiddenD {
  display: none;
}

.bg2 {
  background-image: url(../imagenes/back-video-pasos.jpg);
  background-size: cover;
  background-position: auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 992px) {
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  h6 {
    font-size: 14px;
  }
  h1 {
    font-size: 27px;
  }
  h2 {
    font-size: 24px;
  }
}
section.banner {
  position: relative;
  min-height: 900px;
  padding: 280px 0 100px;
}
section.banner .container {
  max-width: 1450px;
}
section.banner::before {
  content: "";
  position: absolute;
  top: -9%;
  right: 0;
  width: 970px;
  height: 970px;
  background-image: url(../imagenes/fotoheader.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
}
section.banner h6,
section.banner h1,
section.banner p {
  text-align: left;
  margin-bottom: 15px;
}
section.banner p {
  margin-bottom: 30px;
  max-width: 85%;
}

@media screen and (max-width: 1540px) {
  section.banner {
    min-height: 600px;
    padding: 150px 15px 100px;
  }
  section.banner::before {
    width: 830px;
    height: 880px;
  }
}
@media screen and (max-width: 992px) {
  section.banner::before {
    top: 10%;
    width: 400px;
    height: 460px;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    padding: 120px 0 60px;
  }
  section.banner::before {
    display: none;
  }
  section.banner .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}
section.nosotros h2 {
  margin-bottom: 30px;
}
section.nosotros p {
  max-width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  section.nosotros p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 60px 15px;
  }
}
section.beneficios {
  padding: 100px 15px 200px;
  background-image: url(../imagenes/back-beneficios.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
section.beneficios .cardbene {
  width: 461px;
  height: 314px;
  background-image: url(../imagenes/VectorBeneficios.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.beneficios .swiper.mySwiper2 {
  max-width: 875px;
}
section.beneficios .swiper-button-next:after,
section.beneficios .swiper-button-prev:after {
  display: none;
}

@media screen and (max-width: 767px) {
  section.beneficios {
    padding: 70px 15px 70px;
    background-image: url(../imagenes/movil/back-beneficios.png);
  }
  section.beneficios .cardbene {
    width: 100%;
    height: 314px;
    padding-top: 30px;
  }
}
section.form {
  padding: 150px 15px;
  background-image: url(../imagenes/back-form.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.form .container {
  max-width: 1240px;
  margin: 0 auto;
}
section.form .contForm {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.form .contForm h2 {
  text-align: left;
}
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 #fff;
  padding: 1px 0 5px;
  border-radius: 0;
  color: #fff;
  font-family: Montserrat;
  font-size: 12px;
  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: #fff;
}
section.form button::placeholder,
section.form input::placeholder,
section.form optgroup::placeholder,
section.form select::placeholder,
section.form textarea::placeholder {
  color: #fff;
}
section.form input.hs-button.primary.large {
  margin: 40px 0 0 !important;
  padding: 10px 100px;
  display: block;
  background-color: #e02429;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  color: #fff;
  border: 0;
  margin: 0;
}
section.form input.hs-button.primary.large:hover {
  opacity: 0.5;
}
section.form fieldset {
  max-width: 900px;
}
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 .contForm {
    padding-left: 30px;
  }
}
@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.form .contForm {
    padding-left: 10px;
    padding-top: 40px;
  }
}
section.datos {
  padding: 150px 0;
  background-image: url("../imagenes/logo-back.png");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}
section.datos .container {
  max-width: 1100px;
}
section.datos h2 {
  margin-bottom: 80px;
}
section.datos .cardDatos {
  text-align: center;
}
section.datos .cardDatos figure img {
  width: 38px;
}
section.datos .cardDatos h4 {
  color: #fff;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}
section.datos .cardDatos h4 b {
  display: block;
}

@media screen and (max-width: 767px) {
  section.datos {
    padding: 70px 15px;
  }
  section.datos .cardDatos {
    padding: 20px;
    margin: 20px 0;
  }
}
section.galeria {
  padding-top: 60px;
  min-height: 800px;
}
section.galeria .cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.galeria h2 {
  text-align: left;
  padding-left: 35%;
}
section.galeria .swiper-slide.swiper-slide-next {
  min-height: 580px;
}
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 .swiper-slide {
  opacity: 0.5;
  padding-top: 0.3%;
  transition: all 0.2s ease-in-out;
}
section.galeria .swiper-slide img {
  transform: scale(0.93);
}
section.galeria .swiper-slide img {
  border-radius: 10px;
}
section.galeria .swiper-slide-active {
  opacity: 1;
  padding-top: 0;
}
section.galeria .swiper-slide-active img {
  transform: scale(1);
}
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 .swiper-slide.swiper-slide-next {
    min-height: auto;
  }
  section.galeria h2 {
    text-align: left;
    padding-left: 10%;
  }
  section.galeria {
    padding-top: 60px;
    min-height: 550px;
  }
}
@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.galeria h2 {
    text-align: left;
    padding-left: 1%;
    margin-bottom: 35px;
  }
}
section.distintivo {
  padding: 0;
}
section.distintivo .vector {
  background-image: url(../imagenes/Vectordatos.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 1220px;
  height: 496px;
  margin: 0 auto;
  padding: 0 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.distintivo .vector h2 {
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
  section.distintivo .vector {
    width: 1220px;
    height: 456px;
    margin: 0 auto;
    padding: 0 60px;
  }
  section.distintivo .vector p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.distintivo {
    padding: 50px 45px;
  }
  section.distintivo .vector {
    padding: 0;
    background-image: none;
  }
  section.distintivo .vector h2 {
    margin-bottom: 30px;
  }
  section.distintivo .vector p {
    font-size: 16px;
    line-height: 24px;
  }
}
section.video {
  padding: 180px 0 100px;
}
section.video h2 {
  margin-bottom: 60px;
}
section.video iframe {
  padding: 0 !important;
  width: 100%;
  height: 680px;
  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: 70px 15px;
  }
  section.video iframe {
    padding: 0 !important;
    width: 100%;
    height: 300px;
    border-radius: 0;
  }
}
section.pasos {
  padding: 100px 0 250px;
  position: relative;
}
section.pasos::before {
  content: "";
  position: absolute;
  left: 0;
  width: 590px;
  height: 580px;
  background-image: url(../imagenes/foto-pasos+footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  bottom: -130px;
}
section.pasos .container {
  max-width: 1450px;
}
section.pasos h2 {
  text-align: left;
}
section.pasos .cardPasos {
  padding: 10px;
  margin: 16px 15px 0;
  min-height: 120px;
}
section.pasos .cardPasos p,
section.pasos .cardPasos h4 {
  text-align: left;
}
section.pasos .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: flex-start;
  padding-bottom: 100px;
}

@media screen and (max-width: 1540px) {
  section.pasos {
    padding-left: 25px;
    padding-right: 25px;
  }
  section.pasos .cont {
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  section.pasos h2 {
    margin-bottom: 50px;
  }
  section.pasos .cardPasos {
    margin: 0;
  }
  section.pasos .col-md-6 {
    padding: 0;
  }
  section.pasos::before {
    width: 320px;
    height: 360px;
    bottom: -100px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos .cardPasos {
    margin: 10px 0;
  }
  section.pasos::before {
    width: 250px;
    height: 250px;
    bottom: -20px;
  }
}
.bannerFooter {
  padding: 100px 0 120px;
}
.bannerFooter h2 {
  margin-bottom: 15px;
}
.bannerFooter .btn,
.bannerFooter .btnbr,
.bannerFooter input.hs-button.primary.large,
.bannerFooter a.btn.btnbr {
  padding: 7px 50px;
  margin: 30px auto;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
}

footer {
  position: relative;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  height: 1px;
  background-color: #f1cd17;
}
footer p {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 285.714% */
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .bannerFooter {
    padding: 100px 15px 80px;
  }
}/*# sourceMappingURL=styles.css.map */