@charset "UTF-8";
:root {
  --blanco: #fff;
  --negro: #000;
  --azul: #6AAAE4;
  --backGrisC: #f0f1f3;
  --avenirR: 'Avenir-Roman';
  --avenirBo: 'Avenir-Book';
  --avenirMe: 'Avenir-Medium';
  --avenirBl: 'Avenir-Black';
  --avenirH: 'Avenir-Heavy';
}

body, h1, h2, h3, h4, h5, h6, p {
  font-family: var(--avenirR);
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@font-face {
  font-family: 'Avenir-Roman';
  src: url(fonts/AvenirLTProRoman.otf);
}

@font-face {
  font-family: 'Avenir-Book';
  src: url(fonts/AvenirLTProBook.otf);
}

@font-face {
  font-family: 'Avenir-Medium';
  src: url(fonts/AvenirLTProMedium.otf);
}

@font-face {
  font-family: 'Avenir-Heavy';
  src: url(fonts/AvenirLTProHeavy.otf);
}

@font-face {
  font-family: 'Avenir-Black';
  src: url(fonts/AvenirLTProBlack.otf);
}
.section.section-with-shape-divider .shape-divider svg{
    top: 20px;
}
.z-index-999{
    z-index: 999;
}
/*Menu
**************************************/

html.sticky-header-active #header.header-effect-shrink .header-body {
  padding: 0;
}

#header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active {
  color: var(--azul);
}

#header .header-nav.header-nav-line nav > ul li:hover > a {
  color: var(--azul);
}

#header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active:before {
  background: var(--azul);
}

#header .header-nav.header-nav-line nav > ul li:hover > a:before {
  background: var(--azul);
}

#header .header-nav-main.header-nav-main-square nav > ul > li > a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: normal;
}

.header-nav-main {
  text-transform: none; /* o text-transform: initial; */
}
.header-nav-main a.nav-link {
  text-transform: lowercase !important;
}

.mayus{
  text-transform: uppercase !important;
}

.img-fluid{
  width: 200px;
}

.imgMpos1{
  width: 100%;
  max-width: 540px;
}

.imgMpos3{
  width: 100%;
  max-width: 400px;
}

.prox{
  font-size: 56px;
  color: #5e98d6;
  font-family: var(--avenirBl);
  margin-top: 10%;
  margin-bottom: 10px;
}

.text1{
  font-size: 30px;
  color: rgb(61, 57, 53);
  font-family: var(--avenirBl);
  margin-bottom: 10px;
  margin-top: 16px;
}

.text2{
  font-size: 30px;
  color: rgb(61, 57, 53);
  font-family: var(--avenirBl);
  margin-bottom: 20px;
}

.text3{
  font-size: 19px;
  color: rgb(61, 57, 53);
  margin-bottom: 20px;
}


.fontMenu{
  color: #5e97d7;
}

@media (max-width: 1199px){
  .prox{
    font-size: 47px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .text1{
    font-size: 26px;
    margin-bottom: 8px;
    margin-top: 8px;
  }
  
  .text2{
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .text3{
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 799px){
  .prox{
    font-size: 30px;
  }
  
  .text1, .text2{
    font-size: 15px;
  }

  .text1{
    margin-bottom: 0;
    margin-top: 0;
  }

  .text2{
    margin-bottom: 0;
  }
  
  .text3{
    font-size: 13px;
  }

  .imgMpos1{
    width: 300px;
    text-align: center;
    margin-left: 5%;
    margin-bottom: 3%;
    margin-top: 3%;
  }

}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .header-logo {
    max-width: 170px;
  }
}
/*
@media screen and (max-width: 599px) {
  .header-logo {
    width: 170px;
  }
}
.header-logo{
    min-width: 180px!important;
}*/

/*Buttons
**************************************/

.btn-azul {
  color: #fff;
  background: #5e98d6;
  border-radius: 40px;
  padding: 8px 50px;
  font-size: 20px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  font-style: var(--avenirBl);
}

.btn-azul:hover {
  background: transparent;
  color: #5e98d6;
  border: solid 1px #5e97d7;
}

.btn-blanco{
  color: var(--azul);
  background: #fff;
  border-radius: 40px;
  padding: 8px 50px;
  font-size: 20px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  font-family: var(--avenirBl);
}

.btn-white {
  color: var(--azul);
  background: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 8px 30px;
  font-size: 20px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  font-family: var(--avenirBl);
}

.btn-white:hover {
  background: var(--azul);
  color: #fff;
}

.btn-azul.whitehover:hover {
  background: transparent;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .btn-azul {
    color: #fff;
    background: var(--azul);
    border-radius: 40px;
    padding: 8px 30px;
    font-size: 18px;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    margin-bottom: 8%;
  }
}

/*Socials Float desktop
**************************************/
.socialFloat {
  position: fixed;
  top: 50%;
  right: 5px;
  z-index: 999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/*
@media screen and (max-width: 599px) {
  .socialFloat {
    display: none;
  }
}

.socialFloat a {
  margin: 8px 0;
  display: block;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.socialFloat a:hover {
  opacity: .8;
}

.socialFloat a.whats {
  background: #1ad741;
  border: 1px solid #1ad741;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.socialFloat a.insta {
  background: #c319b6;
  border: 1px solid #c319b6;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.socialFloat a.face {
  background: #3a5898;
  border: 1px solid #3a5898;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.socialFloat a.youtube {
  background: #c4302b;
  border: 1px solid #c4302b;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
*/
/*Heading
**************************************/
.heading, .title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 1919px) {
  .heading .title{
      font-size: 50px;
      line-height: 60px;
  }
}
@media screen and (max-width: 599px) {
  .heading .title{
      font-size: 35px;
      line-height: 45px;
  }
}
.heading .description {
  font-size: 30px;
  line-height: normal;
}
@media screen and (min-width: 1919px) {
  .heading .description{
      font-size: 30px;
  }
}
@media screen and (max-width: 599px) {
  .heading .description{
      font-size: 20px;
  }
}
.heading .smallTitle {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 18px;
}

/*Slide
**************************************/


#home {
  background-image: url("../archivos/imagenes/back1.png");
  background-position: center;
  background-size: cover;
  background-repeat:no-repeat;
  max-width: 100%;
  height: 720px;
  position: relative;
}

/*#home .gifBanner {*/
/*  position: absolute;*/
/*    width: 350px;*/
/*    height: 350px;*/
/*    top: 50%;*/
/*    right: 30px;*/
/*    -webkit-transform: translate(0%, -40%);*/
/*        transform: translate(0%, -40%);*/
/*}*/

/*@media screen and (max-width: 599px) {*/
/*  #home .gifBanner {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    right: 15px;*/
/*  }*/
/*}*/

/*@media screen and (min-width: 900px) and (max-width: 1199px) {*/
/*  #home .gifBanner {*/
/*    width: 200px;*/
/*    height: 200px;*/
/*  }*/
/*}*/

/*@media screen and (min-width: 1400px) and (max-width: 1799px) {*/
/*  #home .gifBanner {*/
/*    right: 10%;*/
/*  }*/
/*}*/

/*@media screen and (min-width: 1800px) {*/
/*  #home .gifBanner {*/
/*    right: 15%;*/
/*  }*/
/*}*/
.slideHome .custom-section-svg{
    padding-top: 6rem!important;
}
.slideHome .title {
  font-size: 50px;
  line-height: normal;
  color: #000;
  font-family: var(--avenirH);
  margin-bottom: 15px;
  white-space: pre-line;
}

@media screen and (max-width: 599px) {
  .slideHome .title {
    font-size: 30px;
    line-height: 30px;
    max-width: 50%;
  }
}

.slideHome .title span {
  font-weight: 400;
  font-size: 45px;
}

@media screen and (max-width: 599px) {
  .slideHome .title span {
    font-size: 30px;
  }
}

.slideHome .subtitle {
  font-size: 30px;
  line-height: normal;
  color: #000;
  margin-bottom: 20px;
  font-family: var(--avenirMe);
}

@media screen and (max-width: 599px) {
  .slideHome .custom-section-svg > svg {
    left: 320px;
  }
  .custom-section-svg > .container{
    top: 50%;
  }
}

html path.custom-svg-fill-color-secondary, html circle.custom-svg-fill-color-secondary {
  fill: #ff9e19 !important;
}

html path.custom-svg-fill-color-primary, html circle.custom-svg-fill-color-primary {
  fill: var(--azul) !important;
}

/*Lograr
*************************************/
#lograr {
  padding: 70px 0 60px;
}

#lograr .heading .title {
  text-align: center;
}

#lograr .heading .description {
  color: #000;
  text-align: center;
  white-space: normal;
}

#lograr .rowIcons .colIcons {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  width: 20%;
  max-width: 20%;
  text-align: center;
}

@media screen and (max-width: 599px) {
  #lograr .rowIcons .colIcons {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  #lograr .rowIcons .colIcons .box-content {
    padding-left: 0;
    padding-right: 0;
  }
}

#lograr .rowIcons .colIcons .imgIcon {
  width: 130px;
  height: auto;
  margin: 0 auto 10px;
}

#lograr .rowIcons .colIcons h4 {
  font-size: 25px;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  #lograr .rowIcons .colIcons h4 {
    font-size: 18px;
  }
}

/* Elige la mejor
**************************************/
#elegirMejor{
  background-image: url("../archivos/imagenes/back4.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -4%;
}

#elegirMejor .contText{
 margin-top: 8%;
}

.mejorOpcion{
  font-size: 56px;
  color: #fff;
  font-family: var(--avenirBl);
  margin-bottom: 15px;
}

.mejorOpcion2{
  font-size: 36px;
  color: rgb(61, 57, 53);
  font-family: var(--avenirBl);
  margin-top: 5px;
}

@media screen and (max-width: 996px){
  .mejorOpcion{
    font-size: 46px;
    margin-bottom: 15px;
  }
  
  .mejorOpcion2{
    font-size: 30px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 599px){
  .mejorOpcion{
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .mejorOpcion2{
    font-size: 24px;
    margin-top: 5px;
  }
}

/*Video Home
**************************************/

#lleva-a-tu-negocio {
  background-image: url("../archivos/imagenes/back1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0; /* Esto elimina el margen predeterminado del cuerpo para asegurar que la imagen cubra toda la pantalla */
  height: 780px;
}

.linea-azul{
  width: 100%;
  height: 18px;
  background: var(--azul);
  
}

/*
#lleva-a-tu-negocio .contentBx{
  border: solid 1px #000;
}*/

#videoHome .contentBx {
  position: relative;
  padding: 70px 15px 60px;
  z-index: 1;
}

#videoHome .contentBx .title {
  font-size: 35px;
  margin-bottom: 0;
  color: var(--azul);
  text-align: right;
  white-space: pre-line;
}

#videoHome .contentBx .text {
  margin-bottom: 0;
  text-align: right;
  color: var(--azul);
  font-size: 30px;
  margin-top: 50px;
}

#videoHome .contentBx .imgFloat {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: auto;
  z-index: -1;
}

@media screen and (max-width: 599px) {
  #videoHome .contentBx .imgFloat {
    width: 225px;
    opacity: .7;
  }
  #lleva-a-tu-negocio {
    background-image: url("../archivos/imagenes/back6.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0; /* Esto elimina el margen predeterminado del cuerpo para asegurar que la imagen cubra toda la pantalla */
    height: auto;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #videoHome .contentBx .imgFloat {
    width: 280px;
  }
}

#videoHome .contentBx .imgVideo {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/*Que incluye
**************************************/
#que-incluye {
  padding: 70px 0;
}

#que-incluye .heading .title {
  color: var(--azul);
  white-space: pre-line;
}

@media screen and (max-width: 599px) {
  #que-incluye .heading .title {
    margin-top: 30px;
    white-space: normal;
  }
}

#que-incluye .contentBx .imgPaquete {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

#que-incluye .contentBx .list {
  list-style: none;
  padding-left: 15px;
  margin-top: 50px;
}

@media screen and (max-width: 599px) {
  #que-incluye .contentBx .list {
    margin-top: 30px;
  }
}

#que-incluye .contentBx .list li {
  color: var(--negro);
  margin-bottom: 5px;
  font-size: 25px;
  line-height: normal;
}

@media screen and (max-width: 599px) {
  #que-incluye .contentBx .list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#que-incluye .contentBx .list li span {
  color: var(--azul);
  font-weight: 800;
  margin-right: 5px;
}

@media screen and (max-width: 599px) {
  #que-incluye .contentBx .list li span {
    margin-right: 15px;
  }
}

#que-incluye .contentBx .list li:last-child {
  margin-bottom: 0;
}

/*Clientes Home
**************************************/
#clientesHome {
  padding: 70px 0;
}

#clientesHome .heading .title {
  text-align: center;
  color: var(--azul);
  white-space: pre-line;
}

@media screen and (max-width: 599px) {
  #clientesHome .heading .title {
    white-space: normal;
  }
}

#clientesHome .heading .description {
  text-align: center;
  color: var(--negro);
  font-size: 30px;
  margin: 30px 0 60px;
}

#clientesHome .owl-clients img {
  max-width: 150px;
  margin: 0 auto;
}

#clientesHome .owl-clients .owl-nav button {
  background: transparent;
  color: var(--azul) !important;
  font-size: 50px;
}

#clientesHome .owl-clients .owl-nav button.owl-prev {
  left: -35px;
}

#clientesHome .owl-clients .owl-nav button.owl-prev::before {
  content: "\f060";
}

#clientesHome .owl-clients .owl-nav button.owl-next {
  right: -10px;
}

#clientesHome .owl-clients .owl-nav button.owl-next::before {
  content: "\f061";
}

#clientesHome .owl-clients .owl-nav button.owl-next:before, #clientesHome .owl-clients .owl-nav button.owl-prev:before {
  font-size: 35px;
}

/*Separador Título
**************************************/
.bandTitle {
  padding: 40px 0;
  background: var(--azul);
}

.bandTitle .heading .title {
  text-align: center;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
}

/*Servicios exclusivos
**************************************/
#servicios-exclusivos .contentBx .title {
  white-space: pre-line;
  font-size: 40px;
  color: var(--negro);
  line-height: normal;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentBx .title{
    white-space: normal;
  } 
}
#servicios-exclusivos .col-half-section{
    max-width: 590px;
}
#servicios-exclusivos .contentBx .title.left {
  text-align: left;
}

@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentBx .title.left {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

#servicios-exclusivos .contentBx .title.right {
  text-align: right;
}

@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentBx .title.right {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

#servicios-exclusivos .contentBx .title span {
  font-weight: 600;
}

#servicios-exclusivos .contentImgRight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

#servicios-exclusivos .contentImgRight .imgFirst {
  margin: 0 50px;
  -webkit-transform: rotate(-20deg) translateY(-30px);
          transform: rotate(-20deg) translateY(-30px);
}

@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentImgRight .imgFirst {
    margin: 0 10px;
  }
}

#servicios-exclusivos .contentImgRight .imgSecond {
  margin: 0 50px;
  -webkit-transform: rotate(20deg) translateY(30px);
          transform: rotate(20deg) translateY(30px);
}

@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentImgRight .imgSecond {
    margin: 0 10px;
  }
}

#servicios-exclusivos .contentImgLeft {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

@media screen and (max-width: 599px) {
  #servicios-exclusivos .contentImgLeft {
    display: block;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #servicios-exclusivos .contentImgLeft {
    display: block;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
  }
}

#servicios-exclusivos .contentImgLeft img {
  margin: 0 20px;
}

#servicios-exclusivos .parallax:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 158, 25, 0.6);
  z-index: 1;
}

/*Como pagar
*************************************/
#como-pagar {
  background-image: url("../archivos/imagenes/back2.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -6.1%;
  height: 901px;
}

.mpos-duo{
  width: 100%;
  max-width: 500px;
  margin-top: 4%;
  margin-bottom: 5%;
}

#como-pagar .heading .title {
  color: var(--azul);
  font-family: var(--avenirBl);
  text-align: center;
  font-size: 50px;
  margin-bottom: 5%;
}

#como-pagar .heading .description {
  color: #000;
  text-align: center;
  white-space: pre-line;
}

#como-pagar .rowIcons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#como-pagar .rowIcons .colIcons {
  text-align: center;
}

#como-pagar .rowIcons .colIcons .imgIcon {
  width: 130px;
  height: auto;
  margin: 0 auto 10px;
}

#como-pagar .rowIcons .colIcons h4 {
  font-size: 30px;
  font-weight: 600;
}

.slide{
  width: 100%;
  max-width: 100px;
}

@media screen and (max-width: 1400px) {
  #como-pagar .heading .title {
    font-size: 39px;
  }
}

@media screen and (max-width: 599px) {
  
  .mpos-duo{
    width: 100%;
    max-width: 300px;
  }
  #como-pagar .heading .title {
    font-size: 30px;
  }
  #como-pagar {
    margin-top: -1%;
    height: 735px;
  }
  
}

/*También Conoce
*************************************/

#tambien-conoce{
  background-image: url("../archivos/imagenes/back3.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -3.95%;
}

#tambien-conoce .heading .title{
  color: var(--azul);
  font-family: var(--avenirBl);
  text-align: center;
  margin-top: 7%;
  margin-bottom: 5%;
}

.titleT{
  font-size: 40px;
  color: var(--azul);
  font-family: var(--avenirBl);
  margin-top: 20px;
  margin-bottom: 20px;
}

.textSys1{
  font-size: 28px;
  font-family: var(--avenirBl);
  color: rgb(61, 57, 53);
  margin-bottom: 10px;
  margin-top: 15px;
}

.textSys2{
  font-size: 20px;
  color: rgb(61, 57, 53);
  margin-bottom: 30px;
}

.logoSystienda{
  width: 100%;
  max-width: 400px;
}

.sliderSystienda{
  width: 100%;
  max-width: 360px;
}

.slider21{
  width: 80%;
}

@media screen and (max-width: 1200px) {
  #tambien-conoce .heading .title {
    font-size: 39px;
  }
}

@media screen and (max-width: 599px) {
  #tambien-conoce .heading .title {
    font-size: 30px;
  }
  .logoSystienda{
    width: 280px;
    margin-left: 8%;
  }
  .textSys1{
    font-size: 14px;
  }
  .textSys2{
    font-size: 12px;
  }
  #tambien-conoce{
    background-image: url("../archivos/imagenes/back6.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
  }
}


/*Sobre nosotros
*************************************/
#sobre-nosotros {
  padding: 70px 0;
  background: #fff;
}

#sobre-nosotros .heading .title {
  color: var(--azul);
  text-align: right;
}

@media screen and (max-width: 599px) {
  #sobre-nosotros .heading .title {
    text-align: center;
  }
}

#sobre-nosotros .contentBx .text {
  text-align: right;
  color: #000;
  font-size: 25px;
}

@media screen and (max-width: 599px) {
  #sobre-nosotros .contentBx .text {
    text-align: center;
  }
}

#sobre-nosotros .content-grid-item {
  padding: 10px 25px;
}

#sobre-nosotros .box1 {
  background: var(--azul);
}

@media screen and (max-width: 599px) {
  #sobre-nosotros .box2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#sobre-nosotros .counter .number {
  color: var(--azul);
}

#sobre-nosotros .counter .number.white {
  color: #fff;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #sobre-nosotros .counter .number {
    font-size: 35px;
    line-height: 40px;
  }
}

#sobre-nosotros .counter label {
  color: var(--azul);
  font-size: 25px;
  line-height: normal;
}

#sobre-nosotros .counter label.white {
  color: #fff;
}

/*Contacto y Footer
*************************************/
#footer {
  background: var(--backGrisC);
}

#footer .title {
  color: var(--azul);
}

#footer .subtitle {
  color: #000;
  font-size: 30px;
  line-height: normal;
}

#footer .colInfo .textInfo {
  color: #000;
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
}

#footer .colInfo a.textInfo:hover {
  color: var(--azul) !important;
}

#footer form .alert{
    font-size: 20px;
}

@media screen and (max-width: 599px) {
  #footer .form-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

#footer .footer-copyright {
  background: var(--azul);
  padding: 30px 0;
}

#footer .footer-copyright .contentCopyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer .footer-copyright .contentCopyright p, #footer .footer-copyright .contentCopyright a, #footer .footer-copyright .contentCopyright span {
  color: #fff;
  margin: 0;
  font-size: 15px;
}

#footer .footer-copyright .contentCopyright span {
  margin: 0 30px;
}

/*Banner Secciones
*************************************/
#headerSection {
  margin-bottom: 0;
}

#headerSection .heading .titleSection {
  color: var(--azul);
  font-size: 65px;
  list-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  #headerSection .heading .titleSection {
    margin-bottom: 25px;
    font-size: 40px;
  }
}

#headerSection .heading .titleSection.white {
  color: #fff;
}

#headerSection .heading .subtitleSection {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
}


@media screen and (max-width: 599px) {
  #headerSection.paquetes {
    background-position-x: 30%;
  }
}

@media screen and (max-width: 599px) {
  #headerSection.descargables {
    background-position-x: 30%;
  }
}

/*Planes
*************************************/
#planes {
  position: relative;
  background: var(--backGrisC);
}

#planes .heading .smallTitle {
  color: #000;
  font-size: 20px;
}

#planes .heading .title {
  color: var(--azul);
  margin-bottom: 10px;
}
#planes .flexPackageRow{
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
}
#planes .boxPackage {
    flex: 0 0 20%;
    width: 20%;
    max-width: 20%;
}

@media screen and (max-width: 599px) {
  #planes .boxPackage {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

#planes .heading .description {
  margin-bottom: 60px;
  color: #000;
}

@media screen and (max-width: 599px) {
  #planes .pricing-table {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px;
  }
}

#planes .pricing-table .planSelected {
  background: var(--azul);
}

#planes .pricing-table .plan {
  min-height: 540px;
  margin: 0;
}

@media screen and (max-width: 599px) {
  #planes .pricing-table .plan h3 {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px !important;
  }
}

@media screen and (max-width: 599px) {
  #planes .pricing-table .plan {
    min-height: auto;
    margin-bottom: 40px;
  }
}

#planes .pricing-table .plan .price {
  font-size: 34px;
}

#planes .pricing-table .plan .price.small-option{
    font-size: 24px;
    margin-top: 15px;
}

#planes .pricing-table .plan .price.small-option .price-unit{
    margin-left: 10px;
}

#planes .plan .plan-price{
    min-height: 170px;
}

#planes .plan .plan-price .disclaimer{
    color: var(--azul);
    font-size: 15px;
    line-height: normal;
    margin-top: 10px;
}

#planes .pricing-table .plan .price-label {
  font-family: var(--avenirR);
  margin-top: 10px;
}

#planes .pricing-table .plan .price-label.small-option {
  font-size: 20px;
}

#planes .pricing-table .plan .plan-image{
    max-width: 250px;
    padding: 10px;
    margin: 0 auto;
}

#planes .pricing-table .plan .plan-features{
    padding-top: 0;
}

#planes .pricing-table .plan .plan-features ul li {
  font-size: 22px !important;
  margin-top: 20px;
  line-height: 25px;
  padding: 0 15px;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  #planes .pricing-table .plan .plan-features ul li {
    line-height: normal;
    padding: 0 20px;
  }
}

#planes .pricing-table .plan .plan-features ul li:first-child {
  margin-top: 0px;
}

/*Phrase band
*************************************/
#phraseBand {
  padding: 40px 0;
}

#phraseBand .heading {
  text-align: center;
}

#phraseBand .heading .title {
  color: var(--azul);
  font-size: 33px;
  line-height: 38px;
}

#phraseBand .heading .description {
  color: #000;
  font-size: 30px;
  white-space: pre-line;
  margin-bottom: 0;
}

/*Descargables
*************************************/
@media screen and (max-width: 599px) {
  #descargables {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  #descargables .parallax {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  #descargables .contentBx {
    margin-bottom: 40px;
  }
}

#descargables .contentBx .title {
  white-space: pre-line;
  font-size: 35px;
  color: var(--negro);
  line-height: normal;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #descargables .contentBx .title{
    font-size: 28px;
  }
}

#descargables .contentBx .title.left {
  text-align: left;
}

#descargables .contentBx .title.right {
  text-align: right;
}

#descargables .contentBx .title span {
  font-weight: 600;
}

#descargables .contentBx .btn-azul.btn-right {
  margin: 30px 0 0 auto;
  display: table;
}

#descargables .contentBx .btn-azul.btn-left {
  margin: 30px auto 0 0;
  display: table;
}

#descargables .contentImgRight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 599px) {
  #descargables .contentImgRight {
    position: relative;
  }
}

#descargables .contentImgRight img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 599px) {
  #descargables .contentImgRight img {
    width: 100%;
    height: auto;
  }
}

#descargables .contentImgLeft {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 599px) {
  #descargables .contentImgLeft {
    position: relative;
  }
}

#descargables .contentImgLeft img {
  width: auto;
  height: auto;
}

/*Promoción de productos
*************************************/
#promocion-productos {
  background: url(../archivos/imagenes/promocion-de-productos-exclusivos-systienda.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media screen and (max-width: 599px) {
  #promocion-productos {
    background-position-x: 80%;
  }
}

#promocion-productos .heading {
  text-align: center;
}

#promocion-productos .heading .title {
  color: #fff;
  white-space: pre-line;
}

@media screen and (max-width: 599px) {
  #promocion-productos .heading .title {
    font-size: 30px;
    line-height: 35px;
  }
}

#promocion-productos .heading .description {
  color: #fff;
  margin-bottom: 50px;
}

#promocion-productos .btn-azul {
  display: table;
  margin: 20px auto 0;
}

@media screen and (max-width: 599px) {
  #promocion-productos .btn-azul {
    margin: 20px auto 40px;
  }
}

/*Galería
*************************************/
#galeria {
  padding: 70px 0;
}

#galeria iframe {
  margin-bottom: 40px;
}

/*Mapa sucursales
*************************************/
#mapSucursal {
  padding: 70px 0;
}

.container_input {
  margin-top: 70px;
}
/*Mailchimper CSS
*************************************/
/*
#callToActionMailchimp {
    padding: 50px 0;
    background: var(--azul);
}

#callToActionMailchimp .alignRow {
    align-items: center;
}

#callToActionMailchimp .contentLeft .title {
    font-size: 50px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    line-height: normal;
}

#callToActionMailchimp .contentLeft .subtitle {
    font-size: 23px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

#callToActionMailchimp .contentRight {
    text-align: right;
}

#subscribe .title {
    margin-bottom: 10px;
    font-size: 30px;
    color: #212529;
    text-align: center;
    font-family: var(--avenirR);
    line-height: normal;
    font-weight: 600;
}

#subscribe .smallT{
    margin-bottom: 15px;
    font-size: 25px;
    color: #212529;
    text-align: center;
    font-family: var(--avenirR);
    line-height: normal;
    font-weight: 600;
}

#subscribe .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: normal;
    text-align: center;
}

#subscribe .text {
    margin-bottom: 0;
    font-size: 20px;
}

#subscribe #mc_embed_signup .button {
  color: #fff;
  background: var(--azul);
  border-radius: 5px;
  border: 1px solid var(--azul);
  padding: 8px 30px;
  font-size: 20px;
  height: auto;
  border: 1px solid var(--azul);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#subscribe #mc_embed_signup .button:hover {
  background: transparent;
  color: var(--azul);
}
.mc-field-group{
    width: 100%;
}
#mc_embed_signup .foot{
    grid-template-columns: 0fr 0fr!important;
}
.modal-body{
    padding: 0 0 1rem 0!important;
}
.closeAbsolute{
    z-index: 9;
    position: absolute;
    right: 5px;
    top: 4px;
    font-weight: 900!important;
    font-size: 25px;
    color: #fff!important;
    background: #000;
    opacity: 1;
    border-radius: 50%;
}
*/
/*# sourceMappingURL=custom.css.map */

/* Conoce Más */

#conoce-mas{
  background-image: url("../archivos/imagenes/back2.1.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 810px;
}

.conoce2 img{
  width: 100%;
  max-width: 820px;
}

.conoce1 img{
  width: 98.7%;
  max-width: 820px;
  margin-top: .4%;
}

.titleConoce{
  font-size: 50px;
  color: var(--azul);
  margin-top: 10px;
  font-family: var(--avenirBl);
}

@media screen and (max-width: 599px) {
  .titleConoce{
    font-size: 30px;
    margin: 0;
  }


}

/* Descubre
******************************************/

#descubre{
  background-image: url("../archivos/imagenes/back5.1.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 15%;
  padding-top: 80px;
  margin-top: -3.7%;
}

#descubre .heading .title{
  font-size: 50px;
  color: var(--azul);
  margin-top: 10px;
  font-family: var(--avenirBl);
}

.mpos1{
  width: 100%;
  max-width: 820px;
}

@media screen and (max-width: 599px) {
  #descubre .heading .title{
    font-size: 30px;
    margin-top: 10px;    
  }
}

/*CONTRATA
*********************************************/
#contrata{
  background-image: url("../archivos/imagenes/back6.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 1600px;
}

#contrata .heading .title{
  font-size: 50px;
  color: var(--azul);
  margin-top: 10px;
  font-family: var(--avenirBl);
}

.formulario-contrata{
  width: 70%;
  height: 620px;
  border: solid 1px #000;
  margin: auto;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.titleFormContrata{
  font-size: 30px;
  color: var(--azul);
  margin-top: 20px;
  font-family: var(--avenirBl);
  margin-bottom: 5px;
}

.titleFormContrata2{
  font-size: 30px;
  color: var(--azul);
  margin-top: 9px;
  font-family: var(--avenirBl);
}

.ubicado{
  margin: auto; 
  margin-top: 30px;   
}

.ubicado p{
  color: #6AAAE4;
  font-weight:600;
  font-size: 19px;
}

/* Reset de estilos predeterminados del select */
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

/* Estilos personalizados para el contenedor del select */
.custom-select {
  position: relative;
  display: inline-block;
  width: 30%; /* Ajusta el ancho según tus necesidades */
}

/* Estilos para la apariencia del select */
.custom-select select {
  width: 100%;
  padding: 10px;
  border: 0px;
  background-color: #fff;
  cursor: pointer;
}

/* Estilos para la flecha desplegable */
.custom-select::after {
  content: '\25BC'; /* Código unicode para el triángulo */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none; /* Evita que la flecha afecte a la interacción del select */
}

/* Estilos adicionales para resaltar el select al pasar el ratón sobre él */
.custom-select:hover select {
  border-color: #555;
}

.terminos{
  color: var(--azul);
}

/* Estilos para el Checkbox
************************************************************/

@media screen and (max-width: 1065px) {
  .btn-login, .btn-enviar-enlace, .btn-crear{
    width: 42%;
    font-size: 16px;
  }
}

@media screen and (max-width: 666px) {
  #contrata{
    background-image: url("../archivos/imagenes/back6.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 1300px;
  }
  
  #contrata .heading .title{
    font-size: 30px;
    color: var(--azul);
    margin-top: 10px;
    font-family: var(--avenirBl);
  }
  
  .form-sesion{
    width: 90%;
    height: auto;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
  }
  
  .titleFormSesion{
    font-size: 20px;
    margin-top: 5%;
    font-family: var(--avenirBl);
    margin-bottom: 5px;
  }
  
  .titleFormSesion2{
    font-size: 20px;
  }

  .label-login{
    font-size: 13px;
  }

  .olvidasteContr{
    margin-top: 30px; 
    color: #6AAAE4;
    font-weight:600;
    font-size: 13px;
  }
  
  .btn-login, .btn-enviar-enlace, .btn-crear{
    width: 42%;
    font-size: 14px;
  }

  .creaCuenta{
    font-size: 13px;
  }
  .custom-select::after {
    content: '\25BC'; /* Código unicode para el triángulo */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none; /* Evita que la flecha afecte a la interacción del select */
  }
}

/* Iniciar Sesión
*******************************************/

#iniciar-sesion{
  background-image: url("../archivos/imagenes/back6.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 1600px;
}

#iniciar-sesion .heading .title{
  font-size: 55px;
  color: var(--azul);
  margin-top: 10px;
  font-family: var(--avenirBl);
}

.form-sesion{
  width: 70%;
  height: auto;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  background: #fff;
}

.titleFormSesion{
  font-size: 30px;
  color: var(--azul);
  margin-top: 5%;
  font-family: var(--avenirBl);
  margin-bottom: 7px;
}

.titleFormSesion2{
  font-size: 30px;
  color: var(--azul);
  font-family: var(--avenirBl);
}

.form-login{
  width: 60%;
  margin: auto;
}

.label-login{
  font-weight:600;
  margin-top: 5px;
  margin-bottom: 6px;
  font-size: 19px;
}

.form__input{
	width: 95%;
  margin: auto;
	border:0px solid transparent;
	border-radius: 0;
	border-bottom: 3px solid;
	outline:none;
	transition: all .5s ease;
  border-bottom-color: var(--azul);
}
.form__input:focus{
	border-bottom-color: var(--azul);
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}
.olvidasteContr{
  margin: auto; 
  text-align: center; 
  margin-top: 30px; 
  color: #6AAAE4;
  font-weight:600;
  font-size: 19px;
}

.btn-login, .btn-enviar-enlace, .btn-crear{
	transition: all .5s ease;
	width: 34%;
	border-radius: 30px;
	color: var(--blanco);
	background-color: var(--azul);
	border: 1px solid var(--azul);
	margin: auto;
  font-family: var(--avenirBl);
  font-size: 20px;
}
.btn-enviar-enlace:hover, .btn-enviar-enlace:focus, .btn-login:hover, .btn-login:focus, .btn-crear:hover, .btn-crear:focus{
	background-color: #fff;
	color: var(--azul);
}

.creaCuenta{
  margin: auto; 
  text-align: center; 
  margin-top: 10px; 
  font-weight:600;
  font-size: 19px;
}

@media screen and (max-width: 1065px) {
  .btn-login, .btn-enviar-enlace, .btn-crear{
    width: 42%;
    font-size: 16px;
  }
}

@media screen and (max-width: 666px) {
  #iniciar-sesion{
    background-image: url("../archivos/imagenes/back6.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 900px;
  }
  
  #iniciar-sesion .heading .title{
    font-size: 30px;
    color: var(--azul);
    margin-top: 10px;
    font-family: var(--avenirBl);
  }
  
  .form-sesion{
    width: 90%;
    height: auto;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
  }
  
  .titleFormSesion{
    font-size: 20px;
    margin-top: 5%;
    font-family: var(--avenirBl);
    margin-bottom: 5px;
  }
  
  .titleFormSesion2{
    font-size: 20px;
  }
  
  .form-login{
    width: 96%;
    margin: auto;
  }

  .label-login{
    font-size: 13px;
  }

  .olvidasteContr{
    margin-top: 30px; 
    color: #6AAAE4;
    font-weight:600;
    font-size: 13px;
  }
  
  .btn-login, .btn-enviar-enlace, .btn-crear{
    width: 42%;
    font-size: 14px;
  }

  .creaCuenta{
    font-size: 13px;
  }
}

/* Crear cuenta
********************************************/
.custom-checkbox span {
  font-size: 11px;
  font-family: var(--avenirBl);
}

/* Restablecer contraseña
********************************************/


