@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


*,
*::before,
*::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: 'Poppins';
}

/* Generales */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  color: #07326b;
  overflow-x: hidden;
  min-height: 100vh;
  max-width: 100%;
}

.full-height-grow {
  display: flex;
  flex-direction: column;
}

.azul {
  color: #07326b;
}

.naranja {
  color: #FF6B00;
}

h1,
h2 {
  font-weight: 300;
}

h2 {
  font-size: 1.3em;
}

h3,
h4 {
  font-weight: 600;
}

h3 {
  font-size: 1.1em;
}

hr {
  border: 2px solid white;
}

#hrfooter {
  width: 100%;
  border: 2px solid #FF6B00;
  opacity: 100%;
}



/* Navbar */

.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  left: 2%;
  right: 2%;
  margin-left: -2vw;
  margin-right: -2vw;
  padding: 1vh 3vw;
  background: linear-gradient(180deg, rgba(239, 239, 239, 0.4) 0%, rgb(255, 255, 255) 0.01%, rgb(242, 244, 248) 80.35%);
  box-shadow: 0px 2px 19px -4px rgba(0, 0, 0, 0.25);
  transition: 0.6s;
}

body {
  padding-top: 6.5rem;
}

.sticky {
  background: linear-gradient(180deg, rgba(239, 239, 239, 0.4) 0%, rgb(255, 255, 255) 0.01%, rgb(242, 244, 248) 80.35%)!important;
  padding: 1vh 3vw;
  box-shadow: 0px 2px 19px -4px rgba(0, 0, 0, 0.25);
}

.logo-nav {
  display: flex;
  align-items: center;
  width: 260px;
  margin-left: 20px;
}

@media all and (max-width: 1222px) {
  .main-header {
    height: 4rem;
  }

  .logo-nav img {
    height: 3rem;
    width: auto;
  }
}

.main-nav ul {
  display: flex;
  margin-right: 15px;
  padding: 0;
  list-style: none;
  align-items: center;
}

.main-nav a {
  color: #07326b;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .95em;
  padding: .6rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: #FF6B00;
}

.btn-iniciar {
  color: white;
  background: #07326b;
  padding: .8em 1em;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 1em;
  cursor: pointer;
  transition: .4s;
}

.btn-iniciar:hover {
  background: #044dac;
}

.btn-intranet {
  color: white;
  background: #33CCCC;
  padding: .8em 1em;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 1em;
  cursor: pointer;
  transition: .4s;
}

.btn-intranet:hover {
  background: #17e2d8;
}

.btn-registrar-1 {
  color: white;
  background: #FF6B00;
  padding: 0.8em 1em;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 1em;
  cursor: pointer;
  transition: .4s;
}

.btn-registrar-1:hover {
  background: #07326B;
}

/* Animación hover NavBar*/

.main-nav a {
  display: inline-block;
  position: relative;
}

.main-nav a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #FF6B00;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.main-nav a:hover:after {
  width: 70%;
  left: 15%;
}

@media screen and (max-width: 1227px) {
  .main-nav {
    display: none;
  }

  .btn-iniciar {
    color: white;
    background: #044dac;
    padding: .8em 1em;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: 400;
    margin-left: 1em;
    cursor: pointer;
    transition: .4s;
  }

  .btn-iniciar:hover {
    background: #075ccc;
  }
}

/* Menú hamburgesa*/

.sidenav {
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #07326b;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-top: 60px;
  transition: 0.5s;
  font-size: 0.7em;
}

.menu-resp-abajo {
  margin-left: 2em;
}

.logo-menu-resp {
  margin-top: -4rem;
  padding: 0 0 3rem 0;
  text-align: center;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: white;
  display: block;
  text-transform: uppercase;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #a0c6ef;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 36px;
}

/* Barras hamburger */

.hamburger-icon {
  position: relative;
  cursor: pointer;

}

.bar1 {
  width: 40px;
  height: 5px;
  background-color: #FF6B00;
  margin: 6px 20px 0 20px;
  transition: 0.4s;
  border-radius: 5rem;
}

.bar2 {
  width: 60px;
  height: 5px;
  background-color: #FF6B00;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 5rem;
}

.bar3 {
  width: 25px;
  height: 5px;
  background-color: #FF6B00;
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 5rem;
}

@media screen and (min-width: 1227px) {
  .menu-responsive {
    display: none;
  }
}

.cambio-color {
  color: #FF6B00;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  list-style: none;
  text-align: left;
  margin-right: 10px;
}


.cambio-color-1 {
  color: #FF6B00;
  font-weight: 600;
  text-decoration: none;
  font-size: 2em;
  list-style: none;
  text-align: left;
  margin-right: 10px;
}

/*Seccion Banner */
.seccion-1{
  padding: 0 60px;
  background-image: url(..//img/banner-inicio.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 700px;
}

.contenido-secc-1{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contenido-secc-1 h3{
  font-size: 30px;
  padding: 12vh 0px 0px 0px;
}

@media screen and (max-width: 1180px) {
  .seccion-1{
    padding: 0px 10px;
  }

  .contenido-secc-1 h3 {
    padding-left: 3vw;
  }

  .divider-banner{
    margin-left: 3vw;
  }

  .contenido-secc-1 p {
    margin-left: 3vw;
  }

  .contenido-secc-1 .boton-conocenos {
    margin-left: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .seccion-1{
    height: 680px;
    padding: 0px 10px;
  }

  .contenido-secc-1 h3 {
    padding-left: 3vw;
  }

  .contenido-secc-1 h3 span{
    font-size: 24px !important;
    line-height: 50% !important;
  }

  .divider-banner{
    margin-left: 3vw;
    width: 230px !important;
  }

  .contenido-secc-1 p {
    margin-left: 3vw;
  }

  .contenido-secc-1 .boton-conocenos {
    margin-left: 3vw;
  }
}

.contenido-secc-1 h3 span{
  color: #002A6F;
  font-weight: 600;
  font-size: 30px;
  line-height: 168%;
}

.divider-banner{
    width: 280px;
    height: 6px;
    background-color: #FF6900;
    margin-top: 16px;
    border-radius: 2px;
}

.contenido-secc-1 p{
  margin-right: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #002A6F;
  padding-bottom: 20px;
  padding-top: 20px;
}

.boton-conocenos-link{
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #FF6900;
    border-radius: 6px;
    padding: 12px 30px 12px 30px;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.boton-conocenos-link:hover{
  background-color: #B84C00;
}


/* Sección Nacionales*/



@media all and (min-width: 200px) and (max-width:1227px) {

  .cambio-color {
    color: #FF6B00;
    text-decoration: none;
    list-style: none;
    text-align: center;
    margin-right: 10px;
  }

  .cambio-color-1 {
    color: #FF6B00;
    font-weight: 600;
    text-decoration: none;
    font-size: 40px;
    list-style: none;
    text-align: center;
    margin-right: 15px;
  }

  .contenedor-nacionales {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 20px;
  }

  .img-nacionales {
    width: 90%;
    display: flex;
    padding: 60px 15px 0 15px;
  }

  .contenido-nacionales {
    width: 100%;
    text-align: center;
    padding: 0 15px;
  }

}

/* Seccion Plataforma y herramientas */
/*Seccion-2*/
.seccion-2{
  background-image: url(../img/why-choose-bg-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
  height: 100%;
}

@media screen and (max-width: 768px){
  .seccion-2{
    padding: 30px 0;
    height: 2600px;
  }
  
  .titulo-principal{
    margin-bottom: 26px !important;
    margin-top: 14px !important;
  }

  .principal{
    font-size: 18px !important;
    line-height: 6vh !important;
  }

  .operacion{
    font-size: 20px !important;
  }

  .tarjetas{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tarjeta .front h2{
    font-size: 18px !important;
  }

  .tarjeta .back h2{
    font-size: 16px !important;
  }
}

.titulo-principal{
  display: flex;
  justify-content: center;
  text-align:center;
  margin-bottom: 40px;
  margin-top: 20px;
}

.principal{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2vh;
  line-height: 9vh; 
}

.operacion{
  color: #FF6B00;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
}

.tarjeta{
  position: relative;
  width: 300px;
  height: 350px;
  margin: 20px;
}

.tarjetas{
  display: flex;
  justify-content: space-between;
}

.tarjeta .face{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  transition: .5s;
}

.tarjeta .front{
  transform: perspective(600px) rotateY(0deg);
  
  color: transparent;
}

.tarjeta .icon{
    padding-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta .front h2{
  position: absolute;
  bottom: 40 vh;
  text-align: center;
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.tarjeta .back{
  transform: perspective(600px) rotateY(180deg);
  background: #FF6B00;
  padding: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 5px 10px #000;
}

.tarjeta .back h2{
  font-size: 18px;
  margin-top: 5px;
  letter-spacing: 1px;
}

.tarjeta .back p{
  font-size: 14px;
  text-align: justify;
}

.tarjeta:hover .front{
  transform: perspective(600px) rotateY(180deg);
}

.tarjeta:hover .back{
  transform: perspective(600px) rotateY(360deg);
}


/* Seccion Tu mejor opcion */

.seccion-titulo{
  padding: 60px 0 10px;
}

.seccion-3{
  padding: 12px 0;
}

@media screen and (max-width: 768px) {
  .titulo-central{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 24px;
  }
}

.titulo-central{
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  color: #002A6F;
}

.mayor{
  display: flex;
  justify-content: center;
}

.divider-opcion{
  width: 180px;
    height: 6px;
    background-color: #FF6900;
    margin-top: 6px;
    border-radius: 2px;
}

.text-opcion p{
  font-size: 15px;
  color: #002A6F;
  font-weight: 600;
  margin-top: 15px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  line-height: 28px;
}

.wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5vh;
}

@media screen and (max-width: 768px){
  .container-mejoropcion{
    height: 235px !important;
    width: 95%;
  }
  .carta > .row-general{
    display: flex;
    flex-direction: column;
  }
  .description a{
    font-size: 16px !important;
    margin-left: 15px;
  }
  .description p{
    font-size: 11px !important;
    margin-left: 14px;
  }
  .carta > .row-general > .icon{
    height: 50px;
  }
  .wrapper{
    height: 100%;
  }
}

.container-mejoropcion{
  height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.carta{
  width: 80px;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28, -0.03, 0, .99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

.carta > .row-general{
  color: white;
  display: flex;
  flex-wrap: nowrap;
  --bs-gutter-x: none;
}

.carta > .row-general > .icon{
  background: #FF6B00;
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.carta > .row-general > .description{
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: .3s;
  transition: all .3s ease;
}

.description p{
  color: #e6eaf0;
  padding-top: 2px;
  font-size: 13px;
  font-weight: 500;
}

.description a{
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.description a:hover{
  font-size: 18px;
  font-weight: 600;
  color: #0044b1;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.entrada{
  display: none;
}

.entrada:checked + label{
  width: 600px;
}

.entrada:checked + label .description{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.carta[for="card1"]{
  background-image: url(..//img/zonas-extendidas.jpg)
}

.carta[for="card2"]{
  background-image: url(../img/formas-de-pago.jpg);
}

.carta[for="card3"]{
  background-image: url(../img/api.jpg);
  background-position: center;
}

.carta[for="card4"]{
  background-image: url(..//img/protege.jpg);
  background-position: center;
}



@media screen and (max-width: 1366px) {
  .izquierda-s2 {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1227px) {
  .grid-padre {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
  }

  .grid-padre img {
    max-width: 99%;
  }

  .izquierda-s2 {
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    min-width: 85%;
    padding-bottom: 7rem;
  }

  .box-1 {
    text-align: center;
  }

  .derecha-s2 {
    padding-left: 5rem;
  }
  
}

/* Seccion Slider Asociados */

.titulo-s4 {
  margin-top: -100px;
  padding: 3em 0;
  text-align: center; 
}  

.subtitulo-s3{
  font-size: 32px;
  font-weight: 600;
  color: #002A6F;
}

@media screen and (max-width: 768px) {
  .subtitulo-s3{
    font-size: 24px;
  }
  .titulo-s4{
    padding: 35px 4px;
  }

}

.slider-logos {
  margin: 6rem 0 6rem 0;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Seccion Numeros operaciones */

.seccion-6{
  background-image: url(../img/fondo-azul.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 90px;
  padding-bottom: 100px;
}

.counter-card {
  z-index: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 290px;
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .counter-card{
    display: flex;
    flex-direction: column;
    grid-gap: 70px;
  }
}


.titulo-uno{
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
}

@media screen and (max-width: 768px) {
  .titulo-uno{
    text-align: center;
    font-size: 28px;
  }
}

.padre {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-orange{
    /* display: grid;
    place-items: center; */
    width: 170px;
    height: 6px;
    background-color: #FF6900;
    margin-top: 16px;
    border-radius: 2px;
}

.counter-item{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.number{
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  color: #FB8533;
}

.text{
  font-size: 16px;
  font-weight: 500;
  color: white;
}

/*Novedades*/

.novedades{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -16px;
}

.titulo-novedades{
  display: flex;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.seccion-7 {
  background-color: #ffe53b;
  background-image: linear-gradient(147deg, #ffe53b 0%, #fd3838 74%);
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-wrap: wrap;
}

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: 2px auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
 }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 180px auto;
 }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
 }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
 }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}

.blog-slider__content #readMore1 {
  border: none;
}

.fed {
  color: #4e158d;
}

.ex {
  color: #ff6701;
}

.modal-title {
  color: #07326b;
}

.info-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #07326b;
}

.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
 }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
 }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
 }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
 }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
 }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #002A6F;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #385686;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
 }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
 }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
 }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
 }
}

/* Seccion Paypal*/
.paypal {
  margin-top: 80px;
}

.contenedor-paypal {
  background: #f1f1f1;
  border-radius: .5em;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1),
    -6px -6px 20px #fff;
  transition: .4s;
}

.contenedor-paypal:hover {
  background-color: #f7f7f7;
  box-shadow: 18px 18px 25px rgba(0, 0, 0, 0.1),
    -18px -18px 25px #fff;
}

.logo-pp,
.info-pp {
  width: 100%;
}

.logo-pp {
  margin-top: 25px;
}

.logo-pp img {
  width: 90%;
}

.btn-paypal {
  height: 220px;
  background: #FF6B00;
  border-radius: 1em;
  color: white;
  font-size: .6em;
  font-weight: 600;
  text-decoration: none;
  padding: 2em;
  text-transform: uppercase;
  transition: .4s;
}

.btn-paypal:hover {
  background: #07326B;
}


@media all and (min-width:200px) and (max-width: 960px) {

      .btn-paypal {
        color: white;
        background-color: #FF6B00;
        padding: 1em 1em;
        border: none;
        border-radius: 0.5em;
        text-decoration: none;
        font-size: .6em;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        transition: .4s;
        }

      .btn-paypal:hover {
          background: #07326B;
        }

        .logo-pp img {
          width: 100%;
        }
 

}

/* Seccion Comentarios */

.comentarios {
  width: 100%;
}

.contenedor-comentarios {
  display: flex;
}

.box-comentario {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 33%;
}

.img-comentario-cliente {
  margin-right: 2em;
}

.img-comentario-cliente img {
  width: 5em;
  height: 5em;
  border-radius: 100%;
}

.rating {
  color: #FF6B00;
  font-size: xx-large;
}

.social-logo {
  width: 15%;
  padding-top: 15px;
}

@media screen and (max-width: 900px) {
  .contenedor-comentarios {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0;
    margin-top: 3em;
  }

  .box-comentario {
    padding-top: 3rem;
  }


}



.mas-comentarios {
  margin-top: 3em;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.btn-comentarios {
  color: white;
  background: #07326b;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 0.5rem;
  margin-right: 1.4rem;
  cursor: pointer;
  transition: .3s;
}

.btn-comentarios:hover {
  background: #044dac;
}

/* Footer */

#footer-intranet{
  background: white;
  color: #07326b;
  padding: 7px;
  border-radius: 7px;
  transition: .4s;
  margin-right: 13px;
}

#footer-intranet:hover{
  background: #0077ee;
}

.btn-footer {
  z-index: 1;
  border-radius: 7px;
  background: white;
  color: #07326b;
  padding: 7px;
  transition: .4s;
  margin-right: 13px;
  text-align: center;
  align-items: center;
}

.btn-footer:hover {
  background: #E6F1FC;
}

.bg-footer {
  margin-top: 3rem;
  padding-top: 3rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  z-index: 10;
  margin-left: -50vw;
  margin-right: -50vw;
  /* background-color: 
  linear-gradient( 180deg, rgba(239.06, 239.06, 239.06, 0.4) 0%,
    rgba(213, 222, 235, 1) 0.01%,
    rgba(191, 204, 224, 1) 83%
    ); */

    background: linear-gradient(#FFFFFF, #BFCCE0);
}

.info-links {
  display: flex;
  justify-content: space-evenly;
  line-height: 1.7em;
}

.bg-footer a,
ul,
li {
  font-size: 14px;
  font-weight: 200;
  list-style: none;
}

.recursos,
.empresas,
.contacto {
  padding: 3rem 3rem;
}

.recursos h3,
.empresas h3,
.contacto h3 {
  color: #FB8533;
}

.recursos a,
.empresas a,
.contacto a {
  color: #002A6F;
  text-decoration: none;
  font-weight: 400;
}

.recursos a:hover,
.empresas a:hover,
.contacto a:hover {
  color: #a0c6ef;
}

.recursos ul,
.empresas ul,
.conacto ul {
  list-style: none;
}

.domicilios {
  margin: 0rem 2rem; /*cambio*/
  color: #002A6F;
  text-align: center;
  font-size: .8em;
  line-height: 2.1em;
}

.domicilios a {
  color: #002A6F;
  text-decoration: none;
}

.domicilios a:hover {
  color: #FF6B00;
}

@media screen and (max-width: 900px) {
  .info-links {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .empresas,
  .recursos,
  .contacto {
    margin-top: -3em;
    padding: 4rem 3rem 1rem;
  }

}

/* To top button */

#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: .4em;
  left: .4em;
  font-size: 30px;
  width: 55px;
  height: 55px;
  background-color: rgba(237, 126, 0, 0.4);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
  z-index: 3000;
}

#back-to-top-btn:hover,
#back-to-top-btn:focus {
  background-color: #FF6B00;
  color: #fff
}

@media screen and (max-width: 992px) {
  .container {
    padding: 20px 100px;
  }

  .seccion-2 .container {
    padding: 0px !important;
  }

  #back-to-top-btn {
    font-size: 40px;
    width: 50px;
    height: 50px;
    bottom: .5em;
    right: .5em;
  }
}

/* Animations */
.btnEntrance {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: btnEntrance;
}

/* zoomIn */
/* @keyframes btnEntrance { 
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }    
} */

/* fadeInUp */
@keyframes btnEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.btnExit {
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: btnExit;
}

/* zoomOut */
/* @keyframes btnExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
} */

/* fadeOutDown */
@keyframes btnExit {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.social {
  position: fixed;
  text-align: right;
  padding: .2em;
  bottom: .5em;
  right: -6.5em;
  z-index: 5000;
  display: flex;
  flex-direction: column;
}

.social a {
  color: white;
  text-decoration: none;
}

.social img {
  width: 2.8em;
}

#divWhatsapp {
  transition: all 0.8s ease;
}

.whatsapp {
  border-radius: 10px 0px 0px 10px;
  padding: .7em;
  display: flex;
  flex-direction: row;
  transition: all .8s ease;
  transition-property: transform;
  cursor: pointer;
  color: transparent;
}


#divWhats2 {
  height: 100%;
  font-size: 16px;
}

.whatsapp-extend {
  border: 1px solid rgb(136, 136, 136);
  border-radius: 30px;
  width: 28vw;
  height: 40vh;
  transform: translateX(-6.6em);
  box-shadow: 3px 3px 3px rgb(0 0 0 / 36%) !important;

}

.whatsapp-extend .whats-header {
  height: 25%;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #008f81;
  color: white;
  text-align: left;
}

.whatsapp-extend .whats-header .tit-1 {
  margin-left: 0.5vw;
  font-weight: 500;
}

.whatsapp-extend .whats-header img {
  margin-left: 1.5vw;
  width: 1.8em;
}

.whatsapp-extend .whats-header .cls-btn {
  margin-right: 2vw;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
  border-radius: 100px;
  width: 7%;
  height: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.whatsapp-extend .whats-header .cls-btn:hover {
  background-color: rgba(0, 0, 0, 0.433);
}

.whatsapp-extend .whats-body {
  height: 75%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: white;
  display: flex;
  flex-direction: column;
}

.whatsapp-extend .whats-body .msg-div {
  height: 60%;
  display: flex;
}

.whatsapp-extend .whats-body .msg-div .mn-msg {
  border: 1px solid rgb(208, 208, 208);
  box-shadow: 3px 3px 3px rgb(0 0 0 / 36%) !important;
  border-radius: 25px;
  width: 77%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  color: #717071;
  padding-left: 1.5vw;
  margin-left: 1vw;
  margin-top: 2.5vh;
}

.whatsapp-extend .whats-body .snd-btn-div {
  height: 40%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  justify-content: end;

}

.whatsapp-extend .whats-body .snd-btn-div .snd-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #008f81;
  border-radius: 30px;
  height: 60%;
  width: 55%;
  margin-right: 1vw;
  padding-left: 1vw;
  padding-right: 1vw;
  background-color: #008f81;
  color: white;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 2px 2px 3px rgb(0 0 0 / 36%) !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.whatsapp-extend .whats-body .snd-btn-div .snd-btn .btn-img {
  width: 14%;
  filter: brightness(0) invert(1);
  transition: all 0.2s ease;
}

.whatsapp-extend .whats-body .snd-btn-div .snd-btn:hover {
  color: black;
}

.whatsapp-extend .whats-body .snd-btn-div .snd-btn:hover .btn-img {
  filter: none;
  transform: rotateX(360deg);
}

@media (max-width: 1179px) {
  .whatsapp-extend {
    width: 35vw;
  }
}

@media (max-width: 970px) {
  .whatsapp-extend {
    width: 39vw;
  }

  #divWhats2 {
    font-size: 14px;
  }

  .whatsapp-extend .whats-body .snd-btn-div .snd-btn { 
    font-size: 12px;
  }
}

@media ( max-width: 775px) {
  .whatsapp-extend {
    width: 45vw;
  }

  #divWhats2 {
    font-size: 13px;
    font-weight: 500;
  }

  .whatsapp-extend .whats-body .snd-btn-div .snd-btn { 
    font-size: 11px;
    font-weight: 500;
  }
}

@media ( max-width: 510px) {
  .whatsapp-extend {
    width: 50vw;
  }

  #divWhats2 {
    font-size: 11px;
    font-weight: 500;
  }

  .whatsapp-extend .whats-body .snd-btn-div .snd-btn { 
    font-size: 9px;
    font-weight: 500;
  }
}

/* .whatsapp:hover {
  border-radius: 10px 0px 0px 10px;
  background: RGBA(37, 211, 102, 0.6);
  transform: translateX(-6.1em);
  color: white;
} */

.whatsapp-active {
  color: white;
  border-radius: 10px 0px 0px 10px;
  background: RGBA(37, 211, 102, 0.6);
  transform: translateX(-6.1em);
}

.fbmsg {
  border-radius: 10px 0px 0px 10px;
  padding: .7em;
  display: flex;
  flex-direction: row;
  transition: .8s;
  transition-property: transform;
}

.fbmsg:hover {
  border-radius: 10px 0px 0px 10px;
  background: RGBA(244, 33, 134, 0.6);
  transform: translateX(-6.1em);
}

.globi-chat {
  z-index: 126000;
}

/* Sección pagos */

.formas-gris {
  width: auto;
  height: auto;
  margin: 14px;
  padding: 24px 31px 25px;
  border-radius: 35px;
  background-color: #ececec;
  display: flexbox;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1),
  -2px -2px 10px #fff;;
}

/* STP Diseño */

.stp-imagen {
  width: 100%;
  height: auto;
  flex-grow: 0;
  margin: 0 99px 0 0;
  vertical-align: middle;
  position: relative;
}

img.tema2 {
  float: left;
  display: flexbox;

}

p .texto-tema {
  display: flexbox;
  text-align: justify;

}

/* HSBC Diseño */

img.tema3 {
  float: right;
  vertical-align: middle;

}

/* Prueba */

.texto-cuenta-stp {
  width: auto;
  height: auto;
  margin: auto 1.7px 99px;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #07326b;
}
.texto-cuenta-stp .text-style-1 {
  font-weight: normal;
}

.Rectangle {
  float: left;
  width: auto;
  height: auto;
  margin: 0 0px 0 0;
}

.w3-button {
  height: 120px;
  border-radius: 2em;
}

/* Fort - Formulario Inicio */

.Rectangle-9 {
  display: flex;
  justify-content: center;
  height: 950px;
  align-items: center;
  background-color: white;
}

.Component1 {
  position: absolute;
  width: 31px;
  height: 280px;
  left: 46px;
  top: px;
  background-image: linear-gradient(to top, #000 0%, #fff 100%);
}

img.fortinetcomponent {
  position: absolute;

  width: 162.94px;
  height: 237.57px;
  left: 70.06px;
  top: 2400px;
}

.squares2 {
  position: absolute;
  width: 147.67px;
  height: 119.54px;
  left: 87%;
  top: 2400px;
}

.formrectangle {
  display: flex;
  position: relative;
  width: 480px;
  height: 600px;
  border-radius: 27px;
  border: solid 1px #c4c4c4;
  background: white;
}

.nmelast {
  display: flex;
  width: 208px;
  height: 29px;
  margin: 10% 3px 10px 5%;
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.graylastnme {
  width: 181px;
  height: 22px;
  margin: 10% 3px 0 5%;
  font-family: Inter;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #929292;
}

.rectangleform1 {
  display: flex;
  width: auto;
  height: 2px;
  margin: 15px;
  background-color: #c4c4c4;
}

.form {
  background-color: #fff;
  margin: auto;
  width: 90%;
  max-width: 400px;
  padding: 4.5em 3em;
  text-align: center;

}

.form--title {
  font-size: 1.5rem;
  margin-bottom: .5em;
  color: #4275FA;
}

.form--title2 {
  font-size: .99rem;
  margin-bottom: .5em;
  color: #606060;
}

.form--paragraph {
  font-weight: 300;
}

.form--link {
  font-weight: 400;
  color: #000;
}

.form--container {
  margin-top: 3em;
  display: grid;
  gap: 2.5em;
}

.form--group {
  position: relative;
  --color: #5757577e;
}

.form--input {
  width: 100%;
  background: none;
  color: #706c6c;
  font-size: 1rem;
  padding: .6em .3em;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--color);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.form--input:focus + .form--label,
.form--input:not(:placeholder-shown) + .form--label {
  transform: translateY(-12px) scale(.7);
  transform-origin: left top;
  color:#4275FA;
}

.form--label {
  color: var(--color);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 5px;
  transform: translateY(10px);
  transition: transform .5s, color .3s;
}

.form--submit {
  background-color: #4275fa;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: .8em 0;
  border: none;
  border-radius: .5em;
}

.form--line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4275FA;
  transform: scale(0);
  transform: left bottom;
  transition: transform .4s;
}

.form--input:focus ~ .form--line,
.form--input:not(:placeholder-shown) ~ .form--line {
  transform: scale(1);

}

/* FIN FORT - FORMULARIO */

.img-secc-1 img {
  height: 670px;
  width: auto;
}

/* .img-secc-1-2 img{
  width: 50%;
  width: auto;
  margin-top: 150px;
  margin-right: 150px;
  
}*/

@media all and (min-width:200px) and (max-width: 960px) {

  /*.seccion-1-2-3 {
    position: absolute;
  }*/

  .grid-secc-1-2 {
    position: absolute;
  }

  .img-secc-1-2 {
    top: 300px;
  }

  /*.img-secc-1-2 img {
    display: flex;
    width: 220%;
    height: auto;
    top: 110px;
  }*/
  
}

@media screen and (min-width: 200px) and (max-width: 1227px) {
  .img-secc-1 img {
    width: 100%;
    height: auto;
  }
  

  .btn-banner {
    color: white;
    background-color: #FF6B00;
    padding: 1em 1em;
    border: none;
    border-radius: 0.5em;
    text-decoration: none;
    font-size: .8em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
    margin-left: -1%;
  }
  
  .btn-banner:hover {
    background: #07326B;
  }

}

/*.cambio-color-azul {
  color: #07326b;
}*/

.elementos-apertura {
  align-content: center;
  justify-content: center;
  width: 10px;
}

/* POPUP INICIO */

.modal{
  width: 100%;
  height: 100vh;
  background: rgb(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;

  animation: modal 1s 1s forwards;
  visibility: hidden;
  opacity: 0;
}

.content{
  margin: auto;
  width: 60%;
  height: 60%;
  background: transparent;
  border-radius: 10px;
  flex-flow: column;
  align-items: center;
}

.content img {
  position: relative;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

.content p {
  display: flex;
  position: relative;
  flex-direction: column;
}

.img-popup {
  margin-left: 70px;
  margin-top: 10%;
}


#cerrar{
  display: none;
}

#cerrar + label{
  position: absolute;
  color: #ff6b00;
  font-size: 2px;
  z-index: 5;
  background: #fff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  right: 17%;
  top: 104px;
  font-size: x-large;
  font-weight: 900;
  cursor: pointer;

  animation: modal 1s 1s forwards;
  visibility: hidden;
  opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal{
  display: none;
}

@keyframes modal{
  100% {
  visibility: visible;
  opacity: 1;
  }
}

@media screen and (min-width: 200px) and (max-width: 800px) {
  .modal{
      width: 100%;
      height: 100vh;
      background: rgb(0,0,0,0.3);
  
      position: absolute;
      top: 0;
      left: 0;
  
      display: flex;
  
      animation: modal 1s 1s forwards;
      visibility: hidden;
      opacity: 0;
  }
  
  .content{
      width: 90%;
      height: 40%;
      background: transparent;
      border-radius: 10px;
      text-align: center;
  }
  
  .content img {
      position: relative;
      width: 91%;
      align-content: center;
      margin-left: -5%;
  }
  
  
  #cerrar{
      display: none;
  }
  
  #cerrar + label{
      position: absolute;
      color: #ff6b00;
      font-size: 2px;
      z-index: 5;
      background: #fff;
      height: 40px;
      width: 40px;
      line-height: 40px;
      border-radius: 50%;
      right: 10px;
      top: 105px;
      font-size: x-large;
      font-weight: 900;
      cursor: pointer;
  
      animation: modal 1s 1s forwards;
      visibility: hidden;
      opacity: 0;
  }
  
  #cerrar:checked + label, #cerrar:checked ~ .modal{
      display: none;
  }
  
  @keyframes modal{
      100% {
      visibility: visible;
      opacity: 1;
      }
  }
}

/* POPUP FIN */

.div-cotizador {
  width: 100%;
  margin-top: 6vh;
  /* padding: 3vh 2vw; */
  border: 1px solid rgb(136, 136, 136);
  border-radius: 7px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.565);
  display: flex;
  flex-direction: column;
}

.div-cotizador .div-cotizador-title {
  margin-top: 3vh;
  margin-left: 2vw;
  color: #002A6F;
  font-size: 2rem;
  font-weight: 700;
}

.div-cotizador .div-cotizador-title .sec-text {
  color: #FF6900;
}

.div-cotizador .div-cotizador-body {
  display: flex;
  justify-content: center;
  margin-bottom: 3vh;
}

input[type=number] {
  -moz-appearance: textfield; 
  appearance: textfield; 
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}

.div-cotizador .div-cotizador-body .cotizador-body-div-1 {
  display: flex;
}

.div-cotizador .div-cotizador-body .prim-div {
  margin-right: 2vw;
}

.div-cotizador .div-cotizador-body .div-envio-title {
  color: #3a435e;
  font-weight: 600;
  font-size: 1.4rem;
}

.div-cotizador .div-cotizador-body .div-envio {
  display: flex;
}

.div-cotizador .div-cotizador-body .div-input-cotizador {
  display: flex;
  flex-direction: column;
  margin-right: 1vw;
}

.div-cotizador .div-cotizador-body .div-input-cotizador input {
  width: 6.5vw;
  height: 4vh;
  border-radius: 5px;
  padding: 5px;
}

.div-cotizador .div-cotizador-body .div-input-cotizador #email {
  width: 13vw;
  height: 4vh;
  border-radius: 5px;
  padding: 5px;
}

.div-cotizador .div-cotizador-body .div-input-cotizador #tel {
  width: 13vw;
}

.div-cotizador .div-cotizador-body .div-input-cotizador input:disabled {
  cursor: not-allowed;
}

.div-cotizador .div-btns {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.div-cotizador .div-btns #cotizarBtn {
  margin-bottom: 1vh;
}

@media screen and (max-width: 1015px) {
  .div-cotizador .div-cotizador-body .div-envio-title {
    font-size: 1.2rem;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador label {
    font-size: .8rem;
  }
}

@media screen and (max-width: 850px) {

  .div-cotizador .div-cotizador-body .prim-div {
    margin-right: 1vw;
  }

  .div-cotizador .div-cotizador-body .div-envio-title {
    font-size: 1rem;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador label {
    font-size: .7rem;
    font-weight: bold;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador input {
    width: 7.5vw;
  }
}

@media screen and (max-width: 730px) {
  
  .seccion-1{
    height: 790px;
  }

  .div-cotizador .div-cotizador-body {
    flex-direction: column;
  }

  .div-cotizador .div-cotizador-body .cotizador-body-div-1 {
    justify-content: center;
    margin-bottom: 2vh;
  }

  .div-cotizador .div-cotizador-body .div-envio-title {
    font-size: 1.2rem;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador label {
    font-size: .9rem;
    font-weight: 400;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador input {
    width: 11.5vw;
  }

  .div-cotizador .div-seguro {
    display: flex;
  }
  
  .div-cotizador .div-seguro .div-seguro-title {
    margin-right: 2vw;
  }

  .div-cotizador .div-seguro .div-input-cotizador .label-seguro {
    margin-top: 4vh;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #email {
    width: 17vw;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #tel {
    width: 17vw;
  }

  .div-cotizador .div-btns {
    width: 15%;
  }
}

@media screen and (max-width: 500px) {
  .div-cotizador .div-cotizador-body .div-envio-title {
    font-size: 1rem;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador label {
    font-size: .7rem;
    font-weight: bold;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #email {
    width: 19vw;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #tel {
    width: 19vw;
  }
  
  .div-cotizador .div-btns {
    width: 20%;
  }
}

@media screen and (max-width: 415px) {
  .div-cotizador .div-cotizador-body .div-envio-title {
    font-size: 1rem;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador span {
    font-size: .7rem;
    font-weight: bold;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador span {
    font-size: .7rem;
    font-weight: bold;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #email {
    width: 19vw;
  }

  .div-cotizador .div-cotizador-body .div-input-cotizador #tel {
    width: 19vw;
  }
  
  .div-cotizador .div-btns {
    width: 30%;
  }
}


.content-input input,
.content-select select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
 
.content-input input{
	visibility: hidden;
	position: absolute;
	right: 0;
}


.content-input{
	position: relative;
	/* margin-bottom: 30px; */
	padding:3.5vh 2vw; 
	/* display: block; */
  width: 9.1vw;
}
 
.content-input input + i{
       background: #f0f0f0;
       border:2px solid rgba(0,0,0,0.2);
       position: absolute; 
       left: 0;
       top: 0;
}
 
.content-input input[type=checkbox ] + i{
	width: 52px;
	height: 30px;
	border-radius: 15px;
	transition: all 0.5s ease ;
  cursor: pointer;
  margin-top: 1vh;
}

.content-input input[type=checkbox] + i:before{
	content: ''; /* No hay contenido */
	width: 26px;
	height: 26px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	-webkit-box-shadow: 3px 0 3px 0 rgba(0,0,0,0.2);
	box-shadow: 3px 0 3px 0 rgba(0,0,0,0.2);
	transition: all 0.5s ease ;
}


.content-input input[type=checkbox]:checked + i:before{
	left: 22px;
	-webkit-box-shadow: -3px 0 3px 0 rgba(0,0,0,0.2);
	box-shadow: 3px 0 -3px 0 rgba(0,0,0,0.2);
}

.content-input input[type=checkbox]:checked + i{
  background: #2AC176;
}


.content-input input[type=checkbox] + i:after{
	content: '';
	position: absolute;
	font-size: 10px;
	color: rgba(255,255,255,0.6);
	top: 8px;
	left: 4px;
	opacity: 0 /* Ocultamos este elemento */;
	transition: all 0.25s ease 0.25s;
}
 
.content-input input[type=checkbox]:checked + i:after{
 opacity: 1;
}

.cotizador-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/loader.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(128, 128, 128, 0.345);
  display: none;
  font-weight: bold;
  font-size: 3rem;
  color: red;
}

.cotizacion-modal {
  position: fixed;
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(128, 128, 128, 0.345);
  overflow: hidden;
}

.cotizacion-modal .cotizacion-modal-body {
  width: 80%;
  height: 80%;
  border: 1px solid rgb(136, 136, 136);
  border-radius: 8px;
  box-shadow: 3px 3px 3px rgb(0 0 0 / 36%) !important;
  background-color: rgb(255 255 255 / 94%);
  overflow-y: auto;
}

.cotizacion-modal .cotizacion-modal-body .th-tables {
  white-space: nowrap;
}

.cotizacion-modal .cotizacion-modal-body .div-cotizacion-title {
  height: 9vh;
  padding-top: 1vh;
  padding-left: 2vw;
}

.cotizacion-modal .cotizacion-modal-body .cotizacion-title {
  font-weight: 700;
  font-size: 2rem;
  margin: 2vh 2vw;
  color: #002A6F;
}

.cotizacion-modal .cotizacion-modal-body .cotizacion-title .orange-title {
  color: #FF6900;
}

.cotizacion-modal .cotizacion-modal-body .table-cotizacion-modal .th-title {
  color: #3a435e;
}

.cotizacion-modal .cotizacion-modal-body .table-cotizacion-modal .th-articulo {
  text-align: left;
}

.cotizacion-modal .modal-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotizacion-modal .modal-footer .modal-footer-text{
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #002A6F;
}

.cls-btn-modal {
  float: right;
}

/* .cotizacion-modal .cotizacion-modal-body .table-cotizacion-modal thead{
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border: 1px solid red;
} */

/* Aqui hay que descomentar cuando quede el slider de videos */

/* Seccion Testimonios */
.video-testimonios{
  background: #002A6F;
}

@media screen and (max-width: 768px){
  .contenedor_principal{
    display: flex;
    align-items: center;
    
  }

  .lado-a{
    margin-left: 10px !important;
  }

  .title-a{
    font-size: 18px !important;
  }

  .divider-color{
    margin-bottom: 18px;
  }
}

.lado-a{
  display: flex !important;
  width: 35%;
  flex-direction: column;
  padding: 2vh 0px 2vh 4vw;
}

.title-a{
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-top: 22px;
}

.divider-color{
  width: 180px;
  height: 6px;
  background-color: #FF6900;
  margin-top: 6px;
  border-radius: 2px;
}

.parrafo-test{
  margin-top: 40px;
  color: white;
  font-size: 14px;
  line-height: 26px;
}

.btn-ver{
  margin-top: 25px;
}

.btn-vermas{
  background-color: #FF6900;
  color: white;
  border: solid 2px #FF6900;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-vermas:hover{
  background-color: #002A6F;
  color: white;
  border: solid 2px #FF6900;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.Regis{
  margin-top: 45px;
  margin-bottom: 4vh;
}

.title-registrate{
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 32px;
}

.div-flotante {
  position: absolute;
  right: 4vw;
  /* top: 65vh; */
  display: flex;
  flex-direction: column;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  background:rgba(191, 182, 247, 0.566);
  backdrop-filter: blur(10px);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
  padding: 2vh 2.5vw;
  border-radius: 18px;
}

.texto-flotante{
  color: #002A6F;
  font-weight: 550;
  margin-bottom: 1vh;
  text-align: center;
}

.boton-flotante {
  background-color: #FF6900;
  color: #fff;
  border: solid 2px #002A6F;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
}

.boton-flotante:hover{
  background-color: #002A6F;
  color: white;
  border: solid 2px #FF6900;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width:1025px) {
  .seccion-titulo{
    padding: 110px 0 10px;
  }
}

.btn-registrateahora{
  background-color: #002A6F;
  color: white;
  border: solid 2px #FF6900;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-registrateahora:hover{
  background-color: #FF6900;
  color: white;
  border: solid 2px #FF6900;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  text-transform: uppercase;
  text-decoration: none;
}

.video-popup-card{
  position: relative;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  width: 80%;
}

.video-popup-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-t1{
  border-radius: 12px ;
}


.video-testimonios .contenedor_principal {
  display: flex;
}

.video-slider-div{
  width: 65%;
  height: 100%;
  flex: 0 0 auto;
}

.video-slider-div .video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  min-height: 70vh;
  margin-top: 3vh;
  margin-bottom: 3vh;
}

.video-slider-div .video-container .video {
  height: 370px;
  width: 400px;
  border: 5px solid #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  overflow: hidden;
}

.video-slider-div .video-container .video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.video-slider-div .video-container .video .arrow-img {
  position: absolute;
  z-index: 10000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}

.arrow-img {
  filter: contrast(40%) sepia(1) hue-rotate(350deg) saturate(1000%);
  /* transition: all 0.1s ease; */
}


.video-slider-div .video-container .video:hover video {
  transform: scale(1.2);
}

.video-slider-div .video-container .video:hover .arrow-img {
  filter: contrast(100%) sepia(1) hue-rotate(189deg) saturate(1000%);
}


.video-slider-div .popup-video {
  position: fixed;
  top: 0; left: 0;
  z-index: 1000000;
  background: rgba(0, 0, 0, .8);
  height: 100%;
  width: 100%;
  display: none;
}

.video-slider-div .popup-video video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  border-radius: 5px;
  border: 3px solid #fff;
  object-fit: cover;
}

.video-slider-div .popup-video span {
  position: absolute;
  top: 5px; right: 20px;
  font-size: 50px;
  color: #fff;
  font-weight: bolder;
  z-index: 1000001;
  cursor: pointer;
}

@media (max-width:768px) {
  .video-testimonios .contenedor_principal {
    flex-direction: column;
  }

  .lado-a {
    width: 70%;
    margin-bottom: 2vh;
  }

  .video-slider-div {
    width: 95%;
  }

  .video-slider-div .video-container .video {
    height: 320px;
    width: 320px;
  }

  .video-slider-div .popup-video video {
    width: 70%;
  }
}

/* Aqui hay que descomentar cuando quede el slider de videos */

/* .video-section {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .navigation {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video-section .navigation li {
  list-style: none;
  cursor: pointer;
  margin: 10px 0px;
  border-radius: 4px;
  background: #fff;
  padding: 3px 3px;
  opacity: 0.7;
  transition: 0.5s;
}

.video-section .navigation li:hover{
  opacity: 1;
}

.video-section .navigation li img {
  width: 100px;
  transition: 0.5s;
}

.video-section .navigation li img:hover {
  width: 130px;
} */