@charset "UTF-8";
/* Font  */
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-Light.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 600;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Roboto;
  src: url("../font/Roboto-ExtraBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 800;
  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: 85px;
  margin-top: 50px;
}
div.menu .container {
  max-width: 1700px;
}
div.menu img {
  max-width: 154px;
  margin: 26px 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;
  overflow-y: auto;
}
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: 12px 7px;
  width: 40px;
  height: 40px;
  margin: 8px 0 0 auto;
}
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: #fff;
  margin-bottom: 5px;
  border-radius: 2px;
  width: 35px;
  height: 4px;
  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: #FF6634;
}
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: hidden; /* Evita la segunda barra cuando el menú está cerrado */
  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: roboto;
  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: #FF6634;
  zoom: 1.1;
}
div.menu .btn, div.menu .btnbr, div.menu input.hs-button.primary.large, div.menu a.btn.btnbr {
  background-color: #FF6634;
  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: #FF6634;
  color: black;
}
div.menu .menu .container {
  max-width: 1560px;
}

@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: 150px;
    margin: 30px auto;
    display: block;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  div.menu .hamburger {
    top: 7px;
  }
  div.menu {
    min-height: 70px;
    padding: 20px 5px 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;
    position: relative;
    width: 105.515px;
    margin: 12px auto 8px;
    margin: 0 0;
  }
  div.menu .hamburger {
    padding: 4px 8px;
  }
  div.menu img {
    top: 0px;
    position: relative;
    width: 100px;
    margin: 12px auto 8px;
    margin: 16px auto;
  }
  .menu .col-md-2.col-2.d-lg-block {
    display: none;
  }
}
html {
  width: 100%;
  overflow-x: hidden !important;
  margin: 0;
}

body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

section {
  padding: 100px 0;
}

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

p b {
  font-weight: 700;
}

h1 {
  color: #EEEADE;
  font-family: Roboto;
  font-size: 44.837px;
  font-style: normal;
  font-weight: 700;
  line-height: 47.554px; /* 106.061% */
}

.banner p {
  color: #EEEADE;
  font-family: Roboto;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.483px; /* 107.062% */
}

h2 {
  color: #EEEADE;
  font-family: Roboto;
  font-size: 55px;
  font-style: normal;
  font-weight: 800;
  line-height: 53px;
}
h2 span {
  font-style: italic;
}

h4 {
  color: var(--3, #EEEADE);
  font-family: Roboto;
  font-size: 18.629px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.178px; /* 119.048% */
}

p {
  color: #EEEADE;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 116.667% */
}

.btn, .btnbr, input.hs-button.primary.large, a.btn.btnbr {
  padding: 10px 40px 4px;
  border-radius: 5px;
  background: white;
  max-width: -moz-max-content;
  max-width: max-content;
  border: 1.5px solid #FFF;
  color: #010101;
  text-align: center;
  font-family: Roboto;
  font-size: 17.104px;
  font-style: normal;
  font-weight: 700;
  margin: 8px 15px;
  line-height: auto;
}
.btn:hover, .btnbr:hover, input.hs-button.primary.large:hover, a.btn.btnbr:hover {
  background-color: #000;
  color: #fff;
  border: 1px #000 solid;
}

a {
  text-decoration: none;
}

.hiddenD {
  display: none;
}

.swiper {
  padding-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .hiddenDL {
    display: block;
  }
  .hiddenD {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block;
  }
  .hiddenM {
    display: none !important;
  }
  h1 {
    font-size: 40px;
    line-height: 50px;
  }
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
  h2 br {
    display: none;
  }
}
section.banner {
  background-image: url("../imagenes/header.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 400px 0 220px;
  min-height: 920px;
}
section.banner .container {
  max-width: 1450px;
}
section.banner .container h1 {
  margin-bottom: 25px;
}
section.banner .container p {
  max-width: 560px;
  line-height: 24px;
}
section.banner .row {
  display: block;
}

@media screen and (max-width: 992px) {
  section.banner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    background-image: url(../imagenes/header.jpg);
    background-position: 80% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 300px 15px 150px;
    min-height: 700px;
  }
}
section.nosotros {
  background-color: #000;
  padding: 350px 0;
  position: relative;
}
section.nosotros::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  width: 444.757px;
  height: 183.016px;
  background-image: url("../imagenes/quienesM1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.nosotros::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 444.757px;
  height: 183.016px;
  background-image: url("../imagenes/quieneM2.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.nosotros .container {
  max-width: 850px;
}
section.nosotros p {
  max-width: 470px;
  line-height: 23px;
}

@media screen and (max-width: 992px) {
  section.nosotros::after {
    top: 40px;
    content: "";
    width: 200.757px;
  }
  section.nosotros::before {
    bottom: 40px;
    content: "";
    width: 200.757px;
  }
}
@media screen and (max-width: 767px) {
  section.nosotros {
    padding: 200px 15px;
  }
  section.nosotros::after {
    top: 10%;
    left: 0;
    width: 170px;
    height: 80px;
  }
  section.nosotros::before {
    bottom: 10%;
    top: initial;
    right: 0;
    width: 170px;
    height: 80px;
  }
}
section.galeria {
  padding: 30px 0 30px;
  background-color: #000;
}
section.galeria h2 {
  color: #FF6634;
}
section.galeria h2 {
  text-align: center;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: 90%;
}

.swiper-pagination-bullet-active {
  background: white;
}

.swiper-pagination2.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;
}
.swiper-pagination2.swiper-pagination-fraction.swiper-pagination-horizontal span.swiper-pagination-current {
  font-weight: 700;
}

/* 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. */
.swiper.mySwiper2 {
  padding-bottom: 90px;
  padding-top: 40px;
}

.swiper-slide img {
  cursor: pointer;
  transition: all 0.3s linear;
}

.swiper-slide.swiper-slide-active img {
  opacity: 1;
}

.btnSlider {
  display: block;
  position: relative;
  top: 60px;
  margin: 0 auto;
  width: 160px;
}

.swiper-pagination2.swiper-pagination-fraction.swiper-pagination-horizontal {
  text-align: center;
  position: relative;
  margin: 29px auto;
}

.swiper-pagination2.swiper-pagination-fraction.swiper-pagination-horizontal, span.swiper-pagination-current, span.swiper-pagination-total {
  font-size: 16px;
  font-family: Thunder;
}

section.galeria .container-fluid {
  padding: 0;
}
section.galeria .swiper-pagination2.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100%;
  text-align: center;
}
section.galeria .swiper-pagination-bullet {
  background-color: #FFF;
  width: 12px;
  height: 12px;
  border-radius: 0;
}

@media screen and (max-width: 992px) {
  section.galeria {
    padding: 50px 0;
  }
  section.galeria .contGale {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .swiper.mySwiper2 {
    padding-bottom: 30px;
    padding-top: 40px;
  }
  section.galeria .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  section.galeria h2 {
    margin-bottom: -10px;
  }
}
section.distintivo {
  background: #EEEADE;
  padding: 300px 0;
  position: relative;
}
section.distintivo::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 300px;
  height: 119.336px;
  background-image: url("../imagenes/distiM1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.distintivo::before {
  content: "";
  position: absolute;
  top: 60%;
  right: -40px;
  width: 455.46px;
  height: 434px;
  background-image: url(../imagenes/distM2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.distintivo .cont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
section.distintivo h2 {
  color: #FF6634;
  margin-bottom: 20px;
}
section.distintivo h2 span {
  display: block;
}
section.distintivo p {
  color: #000;
  max-width: 470px;
}

@media screen and (max-width: 992px) {
  section.distintivo::after {
    width: 150px;
  }
  section.distintivo::before {
    right: 0px;
    width: 200.46px;
  }
  section.distintivo .cont {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  section.distintivo h2 {
    color: #FF6634;
    margin-bottom: 20px;
  }
  section.distintivo h2 span {
    display: block;
  }
  section.distintivo p {
    color: #000;
    max-width: 470px;
  }
}
@media screen and (max-width: 767px) {
  section.distintivo {
    padding: 150px 15px;
  }
  section.distintivo::after {
    top: 20px;
    left: 0;
    width: 170px;
    height: 80px;
  }
  section.distintivo::before {
    bottom: 0;
    top: initial;
    right: 0;
    width: 120px;
    height: 120px;
  }
}
section.beneficios {
  background: #EEEADE;
  padding-bottom: 300px;
  padding-top: 0;
}
section.beneficios h2 {
  color: #FF6634;
  text-align: center;
}
section.beneficios p {
  text-align: center;
  margin-bottom: 40px;
  color: #010101;
  text-align: center;
  font-family: Roboto;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 114.286% */
  margin-bottom: 50px;
}
section.beneficios .row.dos {
  border-top: 1px solid #FF6634;
  border-bottom: 1px solid #FF6634;
  padding: 20px;
}
section.beneficios .cardbene {
  padding: 60px;
}
section.beneficios .cardbene figure img {
  width: 80px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
section.beneficios .cardbene p {
  text-align: center;
  font-weight: 400;
}
section.beneficios .cardbene figure img {
  width: 80px;
  height: 50px;
  margin: 0 auto;
  display: block;
}
section.beneficios .cardbene.centro {
  border-left: 1px solid #FF6634;
  border-right: 1px solid #FF6634;
}

@media screen and (max-width: 992px) {
  section.beneficios .cardbene {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios {
    padding: 50px 15px;
    padding-bottom: 50px;
  }
  section.beneficios .row.dos {
    border: 0;
  }
  section.beneficios .cardbene.centro {
    border: 1px solid #FF6634;
    border-left: 0;
    border-right: 0;
  }
}
section.pasos {
  padding: 200px 0;
  background: #25221A;
  position: relative;
}
section.pasos::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -50px;
  width: 450px;
  height: 200px;
  background-image: url("../imagenes/pasosM2.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.pasos::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 455.46px;
  height: 434px;
  background-image: url(../imagenes/pasosM1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.pasos .container {
  max-width: 1160px;
}
section.pasos .cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.pasos .cont h2 {
  margin: 0;
}
section.pasos .int .title {
  min-height: 170px;
}
section.pasos .int img {
  width: 30px;
  height: 30px;
}
section.pasos h2 {
  line-height: 60px;
}
section.pasos h2 span {
  display: block;
}

@media screen and (max-width: 992px) {
  section.pasos {
    padding: 200px 15px;
  }
  section.pasos .cont h2 {
    margin-bottom: 30px;
  }
  section.pasos::before {
    content: "";
    position: absolute;
    top: 80%;
    right: 0;
    width: 370px;
    height: 64px;
  }
  section.pasos::after {
    top: 80%;
    left: -30px;
    width: 250px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  section.pasos {
    background-color: #000;
    padding: 150px 15px;
  }
  section.pasos::after {
    top: 0;
    left: 0;
    width: 170px;
    height: 80px;
  }
  section.pasos::before {
    bottom: 0;
    top: initial;
    right: 0;
    width: 170px;
    height: 80px;
  }
  section.pasos h2 span {
    display: inline;
  }
  section.pasos p {
    margin-bottom: 40px;
  }
}
section.pasos2 {
  padding: 300px 0 200px;
  background: #EEEADE;
}
section.pasos2 .container {
  max-width: 1450px;
}
section.pasos2 h2 {
  text-align: center;
  color: #FF6634;
  line-height: 60px;
  margin-bottom: 20px;
}
section.pasos2 .cardPasos {
  background-color: #000;
  padding: 50px 80px;
  max-width: 540px;
  border-radius: 8px;
  border: 2px solid var(--2, #010101);
  background: #000;
  margin: 0 auto;
}
section.pasos2 .swiper-button-next:after, section.pasos2 .swiper-rtl .swiper-button-prev:after,
section.pasos2 .swiper-button-prev:after, section.pasos2 .swiper-rtl .swiper-button-next:after {
  font-size: 15px;
}
section.pasos2 .swiper-button-next, section.pasos2 .swiper-button-prev {
  color: white;
  background-color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 45%;
}
section.pasos2 .swiper-button-prev, section.pasos2 .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 90px);
  right: auto;
}
section.pasos2 .swiper-button-next, section.pasos2 .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 90px);
  left: auto;
}

@media screen and (max-width: 992px) {
  section.pasos2 img {
    display: block;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  section.pasos2 {
    padding: 100px 0 5px;
    background: #EEEADE;
  }
  section.pasos2 h2 {
    font-size: 40px;
    line-height: 50px;
  }
  section.pasos2 img {
    max-width: 90%;
  }
  section.pasos2 .cardPasos {
    max-width: 90%;
  }
  section.pasos2 .swiper-button-next, section.pasos2 .swiper-button-prev {
    top: 95%;
  }
  section.pasos2 .swiper-button-prev {
    left: 38%;
  }
  section.pasos2 .swiper-button-next {
    right: 38%;
  }
  section.pasos2 .cardPasos {
    padding: 50px 40px;
    min-height: 210px;
  }
  section.pasos2 .cardPasos br {
    display: none;
  }
}
.bannerFooter {
  padding: 200px 0 100px;
  background: #EEEADE;
  text-align: center;
  position: relative;
}
.bannerFooter::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 320px;
  height: 200px;
  background-image: url("../imagenes/footerM1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.bannerFooter::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 300px;
  height: 434px;
  background-image: url(../imagenes/footerM2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.bannerFooter img {
  width: 236.383px;
  height: 59.557px;
  margin-bottom: 30px;
}
.bannerFooter h2 {
  color: var(--2, #010101);
  text-align: center;
  font-family: Roboto;
  font-size: 21px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 114.286% */
  margin-bottom: 20px;
}
.bannerFooter p {
  text-align: center;
  color: #000;
}
.bannerFooter a.btn.btnbr {
  border-radius: 6px;
  background: #FF6634;
  color: white;
  margin: 30px auto 0;
  text-transform: uppercase;
}

footer {
  background-color: #000;
  padding: 20px;
}
footer p {
  text-align: center;
  color: white;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .bannerFooter::after {
    width: 200px;
  }
  .bannerFooter::before {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .bannerFooter {
    padding: 200px 15px;
  }
  .bannerFooter img {
    width: 130.182px;
    height: 32.8px;
  }
  .bannerFooter::before {
    width: 150px;
    bottom: 0;
    right: 0;
    position: absolute;
    top: inherit;
    height: 50px;
  }
  footer p {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */