@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root{
  --primary-color: #6B8E23 ;
  --secondary-color: #73e0a9;
  --lightgreen-color: #a8f4c9;
  --rgba-color: #e8f6f3;
  --background-color: #ecf0f1;
  --text-color: #121212; 
}

*{
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body{
  background: #fff;
  overflow-x: hidden;
  font-family: 'Inter',sans-serif;
}

/*Modal soporte*/
.help-modal-support{
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgba(52, 73, 94, .3);
  backdrop-filter: blur(5px);
  z-index: 301;
  display: none;
  flex-direction: column;
  top: 0;
}

.help-modal-support .bx{
  height: 98%;
  width: 500px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
}

.help-modal-support .bx .header{
  width: 90%;
  margin: auto;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.help-modal-support .bx .header h1{
  color: #0009;
  font-size: 15px;
}

.help-modal-support .bx .header h1 i{
  margin-right: 7px;
}

.help-modal-support .bx .header i{
  color: #0009;
  cursor: pointer;
}

.help-modal-support .bx .content{
  width: 90%;
  margin: auto;
  margin-top: 15px;
  height: 87%;
  overflow-x: hidden;
}

.help-modal-support .bx .content .title-for-form{
  width: 100%;
  margin-bottom: 5px;
}

.help-modal-support .bx .content .title-for-form p{
  font-size: 13px;
  color: #0009;
}

.help-modal-support .bx .content .support-input{
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  background: #f7f9f9;
  border-radius: 10px;
  margin: 0 0 15px 0;
}

.help-modal-support .bx .content .support-input input{
  width: 75%;
  border: none;
  outline: none;
  background: none;
  font-family: 'Inter',sans-serif;
  font-size: 13px;
  color: #0009;
  padding: 0 5%;
}

.help-modal-support .bx .content .support-input i{
  width: 15%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-modal-support .bx .content .support-text-area{
  width: 100%;
  height: 100px;
}

.help-modal-support .bx .content .support-text-area textarea{
  width: 90%;
  border: none;
  outline: none;
  background: none;
  font-family: 'Inter',sans-serif;
  font-size: 13px;
  color: #0009;
  padding: 18px 5%;
}

.help-modal-support .bx .content .support-input-help{
  width: 100%;
  margin-top: 15px;
  padding-bottom: 20px;
}

.help-modal-support .bx .content .support-input-help p{
  color: #839192;
  font-size: 13px;
}

.help-modal-support .bx .content .support-input-help p i{
  margin-right: 6px;
}

.help-modal-support .bx .content .support-submit{
  width: 100%;
  height: 40px;
}

.help-modal-support .bx .content .support-submit label{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
}

.help-modal-support .bx .content .support-submit label i{
  margin-right: 7px;
}

.help-modal-support .bx .content .support-submit #submitMsn{
  display: none;
}

.help-modal-support .bx .content .or-options{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 20px;
}

.help-modal-support .bx .content .or-options span{
  width: 46%;
  height: 1px;
  background: #0002;
}

.help-modal-support .bx .content .or-options p{
  font-size: 15px;
  color: #0006;
}

.help-modal-support .bx .content .support-email-send{
  width: 100%;
  height: 40px;
}

.help-modal-support .bx .content .support-email-send a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  background: var(--lightgreen-color);
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.help-modal-support .bx .content .support-email-send a i{
  margin-right: 7px;
}

/*Header*/
header{
  width: 100%;
  height: 70px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  position: fixed;
  top: 0;
  z-index: 1;
  background: #fff;
}

header .header-bx{
  margin: auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
}

header .header-bx ul{
  display: flex;
}

header .header-bx ul li{
  list-style: none;
  margin: 0 10px 0 0;
}

header .header-bx ul li a{
  background: #ccc2;
  color: #000;
  padding: 10px 10px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

header .header-bx ul li a i{
  margin-right: 7px;
}

header .header-bx .home{
  margin: auto 0;
}

header .header-bx .home i{
  font-size: 20px;
}

header .header-bx .logo{
  margin: auto 0;
}

header .header-bx .logo a{
  text-decoration: none;
  color: #000;
  display: flex;
}

header .header-bx .logo a img{
  width: 35px;
  height: 35px;
  margin-right: 4px;
}

header .header-bx .logo a h1{
  font-size: 27px;
}

header .header-bx .logo a h1 span{
  color: var(--primary-color);
}

header .header-bx .account{
  margin: auto 0;
}

header .header-bx .account i{
  font-size: 20px;
}



/*Contenedor*/
.container{
  width: 100%;
  margin-top: 70px;
}

.container .container-bx{
  width: 100%;
}

.container .container-bx .help-banner{
  width: 100%;
  height: 250px;
  margin-top: 70px;
  display: flex;
  background: 
  linear-gradient(200deg, rgba(255, 255, 255, 0.3) 18%, rgba(18, 18, 18, 0.67) 34%, rgba(18, 18, 18, 1) 71%),
  url(../img/bannerhelp.jpg);
  background-size: cover;
  background-position: center;
}

.container .container-bx .help-banner .bx{
  width: 95%;
  height: 250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .help-banner .bx .text{
  margin: auto 0;
  width: 50%;
}

.container .container-bx .help-banner .bx .text h1{
  font-size: 30px;
  color: #fff;
}

.container .container-bx .help-banner .bx .text p{
  font-size: 13px;
  color: #ccc;
  padding-bottom: 30px;
}

.container .container-bx .help-banner .bx .text a{
  font-size: 13.5px;
  color: var(--lightgreen-color);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--primary-color);
  font-weight: 600;
}

.container .container-bx .help-banner .bx .text a i{
  margin-right: 6px;
}

.container .container-bx .help-banner .bx .image{
  height: 100%;
  width: 50%;
  margin: auto 0;
}

.container .container-bx .help-banner .bx .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .container-bx .marquesina-wrapper{
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: #121212;
  border-bottom: 1px solid #0004;
}

.container .container-bx .marquesina{
  display: flex;
  width: max-content;
  animation: scroll 17s linear infinite;
}

.container .container-bx .slider {
  display: flex;
  gap: 0;
}

.container .container-bx .marquesina .card{
  height: 100%;
  height: 80px;
  display: flex;
  white-space: nowrap;
  padding: 0 20px;
  margin: auto 0;
}

.container .container-bx .marquesina .card .icon{
  width: 60px;
  height: 100%;
}

.container .container-bx .marquesina .card .icon img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.container .container-bx .marquesina .card .title{
  margin-left: 8px;
  height: 100%;
  display: flex;
  align-items: center;
}

.container .container-bx .marquesina .card .title h1{
  font-size: 23px;
  color: #f7f9f9;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*Fila 1*/
.container .container-bx .fila{
  width: 100%;
  height: 820px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0px;
}

.container .container-bx .fila .circle{
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(41% at 1% 52%);
}

.container .container-bx .fila .img{
  width: 35%;
  height: 820px;
  margin-left: -5%;
}

.container .container-bx .fila .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .container-bx .fila .txt{
  width: 60%;
  margin-top: 70px;
}

.container .container-bx .fila .txt h1{
  font-size: 32px;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 10px;
}

.container .container-bx .fila .txt .txt-p{
  width: 100%;
  background: #fbfcfc;
  border-radius: 15px 0px 0px 15px;
  padding: 22px 0;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.container .container-bx .fila .txt .hidden-on-load {
    display: none;
}

.container .container-bx .fila .txt .txt-p p{
  font-size: 15px;
  padding: 15px 35px;
  color: #000;
  text-align: left;
  width: 90%;
  display: flex;
}

.container .container-bx .fila .txt p i{
  margin-right: 15px;
  color: var(--primary-color);
}


.container .container-bx .fila .txt .stats-icons{
  width: 100%;
  height: 200px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.container .container-bx .fila .txt .stats-icons .card{
  width: 19%;
  height: 100px;
  border-radius: 10px;
}

.container .container-bx .fila .txt .stats-icons .card .image{
  width: 100%;
  height: 100px;
}

.container .container-bx .fila .txt .stats-icons .card .image img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.container .container-bx .fila .txt .stats-icons .card .text{
  width: 100%;
  text-align: left;
}

.container .container-bx .fila .txt .stats-icons .card .text h2{
  font-size: 13px;
}

.container .container-bx .fila .txt .stats-icons .card .text h3{
  font-size: 12px;
  color: #0008;
  font-weight: 400;
}

.container .container-bx .fila .txt .button-next{
  width: 100%;
  height: 90px;
}

.container .container-bx .fila .txt .button-next a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  border-radius: 15px 0px 0px 15px;
  background: var(--primary-color);
  color: var(--lightgreen-color);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: .3s;
}

.container .container-bx .fila .txt .button-next a i{
  margin-right: 7px;
}

.container .container-bx .fila .txt .button-next a:hover{
  background: var(--lightgreen-color);
  color: var(--primary-color);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/*Marquesina 2*/
.marquesina-2{
  width: 100%;
  height: 100px;
  background: #ccc2;
}

.marquesina-2 .bx{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.marquesina-2 .bx .card-icon{
  width: 20%;
  height: 100%;
}

.marquesina-2 .bx .card-icon img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/*Fila 2*/
.container .container-bx .fila-2{
  width: 100%;
  height: 740px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0px;
}

.container .container-bx .fila-2 .circle{
  width: 100%;
  height: 740px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(43.9% at 99% 54%);
}

.container .container-bx .fila-2 .img{
  width: 30%;
  height: 740px;
  margin-right: -5%;
}

.container .container-bx .fila-2 .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .container-bx .fila-2 .txt{
  width: 60%;
  margin-top: 70px;
}

.container .container-bx .fila-2 .txt h1{
  font-size: 32px;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 10px;
}

.container .container-bx .fila-2 .txt .txt-p{
  width: 100%;
  background: #fbfcfc;
  border-radius: 0px 15px 15px 0px;
  padding: 22px 0;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  padding-bottom: 30px;
}

.container .container-bx .fila-2 .txt .txt-p .question{
  width: 93%;
  padding: 0px 15px;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #ccc1;
  border-radius: 15px;
}

.container .container-bx .fila-2 .txt .txt-p .question .head{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt .txt-p .question .icon-number{
  width: 2%;
  margin: auto 0;
}

.container .container-bx .fila-2 .txt .txt-p .question .head .head-question{
  width: 98%;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt .txt-p .question .head .head-question p{
  font-size: 15px;
  padding: 15px 35px;
  color: #000;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt p i{
  margin-right: 15px;
  color: var(--primary-color);
}

.container .container-bx .fila-2 .txt .txt-p .question .solution{
  width: 90%;
  margin: 0 auto;
  margin-top: 0px;
  display: none;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution h1{
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: left;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution.active{
  display: flex;
}

.container .container-bx .fila-2 .txt .txt-p .question .bi-chevron-down{
  margin: auto 0;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution .change-pass{
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}

.container .container-bx .fila-2 .txt .button-next{
  width: 100%;
  height: 90px;
  margin-top: 40px;
}

.container .container-bx .fila-2 .txt .button-next a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  border-radius: 0px 15px 15px 0px;
  background: var(--primary-color);
  color: var(--lightgreen-color);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: .3s;
}

.container .container-bx .fila-2 .txt .button-next a i{
  margin-right: 7px;
}

.container .container-bx .fila-2 .txt .button-next a:hover{
  background: var(--lightgreen-color);
  color: var(--primary-color);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/*Más detalles*/
.container .container-bx .more-details{
  width: 100%;
  height: 400px;
  background: #121212;
  display: flex;
  flex-direction: column;
}

.container .container-bx .more-details .header{
  width: 95%;
  margin: 0 auto;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .container-bx .more-details .header h1{
  color: #fff;
}

.container .container-bx .more-details .header p{
  color: #ccc;
}

.container .container-bx .more-details .bx{
  width: 95%;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .more-details .bx .card{
  width: 24%;
  height: 150px;
  border-radius: 10px;
  background: #ccc9;
  display: flex;
  transition: .2s;
  cursor: pointer;
}

.container .container-bx .more-details .bx .card:hover{
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  background: #ccc8;
}

.container .container-bx .more-details .bx .card .text{
  width: 80%;
  margin: 0 auto;
  margin-top: 15px;
}

.container .container-bx .more-details .bx .card .text h1{
  color: #fff;
  font-size: 13px;
  transition: .3s;
}

.container .container-bx .more-details .bx .card .text h1 i{
  margin-right: 5px;
  color: var(--lightgreen-color);
}

.container .container-bx .more-details .bx .card .text p{
  color: #fff9;
  font-size: 12px;
}

.container .container-bx .more-details .bx .card .text a{
  width: 100%;
  margin-top: 18px;
  padding: 10px 0;
  background: var(--lightgreen-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.container .container-bx .more-details .bx .card .text a i{
  margin-right: 7px;
}

/*Políticas*/

.container .container-bx .policy{
  width: 95%;
  padding: 50px 0;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}

.container .container-bx .policy .circle{
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(25% at 50% 45%);
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container .container-bx .policy .bx{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.container .container-bx .policy .bx .card{
  width: 96%;
  padding: 0 2%;
  background: #fbfcfc;
  border-radius: 10px;
  margin: 0 0 25px 0;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  cursor: pointer;
  transition: .4s;
}

.container .container-bx .policy .bx .card .title{
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .container-bx .policy .bx .card:hover{
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.container .container-bx .policy .bx .card .title p{
  font-size: 17px;
}

.container .container-bx .policy .bx .card .title i{
  font-size: 17px;
}

.container .container-bx .policy .bx .card .content{
  width: 97%;
  margin: 0 auto;
  padding-bottom: 45px;
  display: none;

}

.container .container-bx .policy .bx .card .content.active{
  display: flex;
}

.container .container-bx .policy .bx .card .content p{
  font-size: 14px;
}



/*Pié de página*/
footer{
  width: 100%;
  height: 145px;
  background: #121212;
  display: flex;
}

footer .bx{
  width: 95%;
  margin: 0 auto;
  margin-top: 35px;
}

footer .bx .logo{
  width: 100%;
  display: flex;
  justify-content: center;
}

footer .bx .logo img{
  width: 40px;
  height: 40px;
}

footer .bx .logo h1{
  font-size: 20px;
  color: #fff;
  margin-left: 4px;
  margin-top: 8px;
}

footer .bx .options{
  width: 100%;
  margin-top: 5px;
  display: flex;
  justify-content: center;
}

footer .bx .options ul{
  display: flex;
}

footer .bx .options ul li{
  list-style: none;
  margin: 0 10px 0 0;
}

footer .bx .options ul li a{
  text-decoration: none;
  color: #fff9;
  font-size: 12px;
}


/*copy*/
.copy{
  width: 100%;
  height: 30px;
  background: #000;
  display: flex;
}

.copy p{
  color: #ccc;
  margin: auto;
  font-size: 13px;
}





@media only screen and (max-width: 1024px) {




/*Modal soporte*/
.help-modal-support{
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgba(52, 73, 94, .3);
  backdrop-filter: blur(5px);
  z-index: 301;
  display: none;
  flex-direction: column;
  top: 0;
}

.help-modal-support .bx{
  height: 98%;
  width: 500px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
}

.help-modal-support .bx .header{
  width: 90%;
  margin: auto;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.help-modal-support .bx .header h1{
  color: #0009;
  font-size: 15px;
}

.help-modal-support .bx .header h1 i{
  margin-right: 7px;
}

.help-modal-support .bx .header i{
  color: #0009;
  cursor: pointer;
}

.help-modal-support .bx .content{
  width: 90%;
  margin: auto;
  margin-top: 15px;
  height: 87%;
  overflow-x: hidden;
}

.help-modal-support .bx .content .title-for-form{
  width: 100%;
  margin-bottom: 5px;
}

.help-modal-support .bx .content .title-for-form p{
  font-size: 13px;
  color: #0009;
}

.help-modal-support .bx .content .support-input{
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  background: #f7f9f9;
  border-radius: 10px;
  margin: 0 0 15px 0;
}

.help-modal-support .bx .content .support-input input{
  width: 75%;
  border: none;
  outline: none;
  background: none;
  font-family: 'Inter',sans-serif;
  font-size: 13px;
  color: #0009;
  padding: 0 5%;
}

.help-modal-support .bx .content .support-input i{
  width: 15%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-modal-support .bx .content .support-text-area{
  width: 100%;
  height: 100px;
}


.help-modal-support .bx .content .support-text-area textarea{
  width: 90%;
  border: none;
  outline: none;
  background: none;
  font-family: 'Inter',sans-serif;
  font-size: 13px;
  color: #0009;
  padding: 18px 5%;
}

.help-modal-support .bx .content .support-input-help{
  width: 100%;
  margin-top: 15px;
  padding-bottom: 20px;
}

.help-modal-support .bx .content .support-input-help p{
  color: #839192;
  font-size: 13px;
}

.help-modal-support .bx .content .support-input-help p i{
  margin-right: 6px;
}

.help-modal-support .bx .content .support-submit{
  width: 100%;
  height: 40px;
}

.help-modal-support .bx .content .support-submit label{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
}

.help-modal-support .bx .content .support-submit label i{
  margin-right: 7px;
}

.help-modal-support .bx .content .support-submit #submitMsn{
  display: none;
}

.help-modal-support .bx .content .or-options{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 20px;
}

.help-modal-support .bx .content .or-options span{
  width: 46%;
  height: 1px;
  background: #0002;
}

.help-modal-support .bx .content .or-options p{
  font-size: 15px;
  color: #0006;
}

.help-modal-support .bx .content .support-email-send{
  width: 100%;
  height: 40px;
}

.help-modal-support .bx .content .support-email-send a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  background: var(--lightgreen-color);
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.help-modal-support .bx .content .support-email-send a i{
  margin-right: 7px;
}

/*Header*/
header{
  width: 100%;
  height: 58px;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  position: fixed;
  top: 0;
  z-index: 1;
  background: #fff;
}

header .header-bx{
  margin: auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
}

header .header-bx ul{
  display: none;
}

header .header-bx .home{
  margin: auto 0;
}

header .header-bx .home i{
  font-size: 20px;
}

header .header-bx .logo{
  margin: auto 0;
}

header .header-bx .logo a{
  text-decoration: none;
  color: #000;
  display: flex;
}

header .header-bx .logo a img{
  width: 30px;
  height: 30px;
  margin-right: 2px;
}

header .header-bx .logo a h1{
  font-size: 23px;
}

header .header-bx .logo a h1 span{
  color: var(--primary-color);
}

header .header-bx .account{
  margin: auto 0;
}

header .header-bx .account i{
  font-size: 20px;
}



/*Contenedor*/
.container{
  width: 100%;
  margin-top: 59px;
}

.container .container-bx{
  width: 100%;
}

.container .container-bx .help-banner{
  width: 100%;
  height: 250px;
  margin-top: 59px;
  display: flex;
  background: 
  linear-gradient(200deg, rgba(255, 255, 255, 0.3) 18%, rgba(18, 18, 18, 0.67) 34%, rgba(18, 18, 18, 1) 71%),
  url(../img/bannerhelp.jpg);
  background-size: cover;
  background-position: center;
}

.container .container-bx .help-banner .bx{
  width: 95%;
  height: 250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .help-banner .bx .text{
  margin: auto 0;
  width: 100%;
}

.container .container-bx .help-banner .bx .text h1{
  font-size: 27px;
  color: #fff;
}

.container .container-bx .help-banner .bx .text p{
  font-size: 12px;
  color: #ccc;
  padding-bottom: 30px;
}

.container .container-bx .help-banner .bx .text a{
  font-size: 12.5px;
  color: var(--lightgreen-color);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--primary-color);
  font-weight: 600;
}

.container .container-bx .help-banner .bx .text a i{
  margin-right: 6px;
}

.container .container-bx .help-banner .bx .image{
  display: none;
}

.container .container-bx .marquesina-wrapper{
  width: 100%;
  height: 70px;
  overflow: hidden;
  background: #121212;
  border-bottom: 1px solid #0004;
}

.container .container-bx .marquesina{
  display: flex;
  width: max-content;
  animation: scroll 17s linear infinite;
}

.container .container-bx .slider {
  display: flex;
  gap: 0;
}

.container .container-bx .marquesina .card{
  height: 100%;
  height: 70px;
  display: flex;
  white-space: nowrap;
  padding: 0 20px;
  margin: auto 0;
}

.container .container-bx .marquesina .card .icon{
  width: 60px;
  height: 100%;
}

.container .container-bx .marquesina .card .icon img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.container .container-bx .marquesina .card .title{
  margin-left: 8px;
  height: 100%;
  display: flex;
  align-items: center;
}

.container .container-bx .marquesina .card .title h1{
  font-size: 20px;
  color: #f7f9f9;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*Fila 1*/
.container .container-bx .fila{
  width: 100%;
  height: 850px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0px;
}

.container .container-bx .fila .circle{
  background: var(--secondary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(41% at 1% 52%);
}

.container .container-bx .fila .img{
  display: none;
}

.container .container-bx .fila .txt{
  width: 95%;
  margin: 0 auto;
  margin-top: 57px;
}

.container .container-bx .fila .txt h1{
  font-size: 27px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

.container .container-bx .fila .txt .txt-p{
  width: 100%;
  background: #fbfcfc;
  border-radius: 15px;
  padding: 22px 0;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.container .container-bx .fila .txt .hidden-on-load {
    display: none;
}

.container .container-bx .fila .txt .txt-p p{
  font-size: 13.5px;
  padding: 15px 35px;
  color: #000;
  text-align: left;
  width: 90%;
  display: flex;
}

.container .container-bx .fila .txt p i{
  margin-right: 15px;
  color: var(--primary-color);
}


.container .container-bx .fila .txt .stats-icons{
  width: 100%;
  height: 190px;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow-y: hidden;
}

.container .container-bx .fila .txt .stats-icons .card{
  width: 42%;
  height: 100px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.container .container-bx .fila .txt .stats-icons .card .image{
  width: 100%;
  height: 100px;
}

.container .container-bx .fila .txt .stats-icons .card .image img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.container .container-bx .fila .txt .stats-icons .card .text{
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.container .container-bx .fila .txt .stats-icons .card .text h2{
  font-size: 13px;
}

.container .container-bx .fila .txt .stats-icons .card .text h3{
  font-size: 12px;
  color: #0008;
  font-weight: 400;
}

.container .container-bx .fila .txt .button-next{
  width: 100%;
  height: 75px;
}

.container .container-bx .fila .txt .button-next a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  background: var(--primary-color);
  color: var(--lightgreen-color);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: .3s;
}

.container .container-bx .fila .txt .button-next a i{
  margin-right: 7px;
}

.container .container-bx .fila .txt .button-next a:hover{
  background: var(--lightgreen-color);
  color: var(--primary-color);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/*Marquesina 2*/
.marquesina-2{
  width: 100%;
  height: 100px;
  background: #ccc2;
}

.marquesina-2 .bx{
  width: 100%;
  height: 100%;
  display: flex;
  overflow-y: hidden;
  justify-content: space-between;
}

.marquesina-2 .bx .card-icon{
  width: 20%;
  height: 100%;
  flex: 0 0 auto;
}

.marquesina-2 .bx .card-icon img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/*Fila 2*/
.container .container-bx .fila-2{
  width: 100%;
  height: 950px;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 0px;
}

.container .container-bx .fila-2 .circle{
  width: 100%;
  height: 740px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(43.9% at 99% 54%);
}

.container .container-bx .fila-2 .img{
  width: 60%;
  height: 600px;
  position: absolute;
  right: 0;
}

.container .container-bx .fila-2 .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .container-bx .fila-2 .txt{
  width: 95%;
  margin-top: 250px;
  margin-right: 2.5%;
  margin-left: 2.5%;
  position: absolute;
  z-index: 1;
}

.container .container-bx .fila-2 .txt h1{
  font-size: 27px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 10px;
}

.container .container-bx .fila-2 .txt .txt-p{
  width: 100%;
  background: #fbfcfc;
  border-radius: 15px;
  padding: 22px 0;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  padding-bottom: 30px;
}

.container .container-bx .fila-2 .txt .txt-p .question{
  width: 85%;
  padding: 0px 15px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #ccc1;
  border-radius: 15px;
}

.container .container-bx .fila-2 .txt .txt-p .question .head{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt .txt-p .question .icon-number{
  width: 2%;
  margin: auto 0;
}

.container .container-bx .fila-2 .txt .txt-p .question .head .head-question{
  width: 98%;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt .txt-p .question .head .head-question p{
  font-size: 15px;
  padding: 15px 35px;
  color: #000;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.container .container-bx .fila-2 .txt p i{
  margin-right: 15px;
  color: var(--primary-color);
}

.container .container-bx .fila-2 .txt .txt-p .question .solution{
  width: 90%;
  margin: 0 auto;
  margin-top: 0px;
  display: none;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution h1{
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: left;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution.active{
  display: flex;
}

.container .container-bx .fila-2 .txt .txt-p .question .bi-chevron-down{
  margin: auto 0;
}

.container .container-bx .fila-2 .txt .txt-p .question .solution .change-pass{
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}

.container .container-bx .fila-2 .txt .button-next{
  width: 100%;
  height: 75px;
  margin-top: 40px;
}

.container .container-bx .fila-2 .txt .button-next a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  background: var(--primary-color);
  color: var(--lightgreen-color);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: .3s;
}

.container .container-bx .fila-2 .txt .button-next a i{
  margin-right: 7px;
}

.container .container-bx .fila-2 .txt .button-next a:hover{
  background: var(--lightgreen-color);
  color: var(--primary-color);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/*Más detalles*/
.container .container-bx .more-details{
  width: 100%;
  height: 620px;
  background: #121212;
  display: flex;
  flex-direction: column;
}

.container .container-bx .more-details .header{
  width: 95%;
  margin: 0 auto;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .container-bx .more-details .header h1{
  color: #fff;
  font-size: 27px;
}

.container .container-bx .more-details .header p{
  color: #ccc;
  font-size: 13.5px;
  text-align: center;
}

.container .container-bx .more-details .bx{
  width: 95%;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container .container-bx .more-details .bx .card{
  width: 49%;
  height: 200px;
  border-radius: 10px;
  background: #ccc9;
  display: flex;
  transition: .2s;
  cursor: pointer;
  margin: 0 0 10px 0;
}

.container .container-bx .more-details .bx .card:hover{
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  background: #ccc8;
}

.container .container-bx .more-details .bx .card .text{
  width: 80%;
  margin: 0 auto;
  margin-top: 15px;
}

.container .container-bx .more-details .bx .card .text h1{
  color: #fff;
  font-size: 13px;
  transition: .3s;
}

.container .container-bx .more-details .bx .card .text h1 i{
  margin-right: 5px;
  color: var(--lightgreen-color);
}

.container .container-bx .more-details .bx .card .text p{
  color: #fff9;
  font-size: 12px;
}

.container .container-bx .more-details .bx .card .text a{
  width: 100%;
  margin-top: 18px;
  padding: 10px 0;
  background: var(--lightgreen-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}

.container .container-bx .more-details .bx .card .text a i{
  margin-right: 7px;
}

/*Políticas*/

.container .container-bx .policy{
  width: 95%;
  padding: 50px 0;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 20px;
  position: relative;
}

.container .container-bx .policy .circle{
  background: radial-gradient(circle at 50% 50%, #a8f4c9, #a3c86d);
  clip-path: circle(25% at 50% 45%);
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container .container-bx .policy .bx{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.container .container-bx .policy .bx .card{
  width: 95%;
  padding: 0 2%;
  background: #fbfcfc;
  border-radius: 10px;
  margin: 0px auto;
  margin-top: 25px;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
  cursor: pointer;
  transition: .4s;
}

.container .container-bx .policy .bx .card .title{
  width: 90%;
  height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .container-bx .policy .bx .card:hover{
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.container .container-bx .policy .bx .card .title p{
  font-size: 15px;
}

.container .container-bx .policy .bx .card .title i{
  font-size: 17px;
}

.container .container-bx .policy .bx .card .content{
  width: 85%;
  margin: 0 auto;
  padding-bottom: 45px;
  display: none;

}

.container .container-bx .policy .bx .card .content.active{
  display: flex;
}

.container .container-bx .policy .bx .card .content p{
  font-size: 13px;
}



/*Pié de página*/
footer{
  width: 100%;
  height: 375px;
  background: #121212;
  display: flex;
}

footer .bx{
  width: 95%;
  margin: 0 auto;
  margin-top: 35px;
}

footer .bx .logo{
  width: 100%;
  display: flex;
  justify-content: center;
}

footer .bx .logo img{
  width: 40px;
  height: 40px;
}

footer .bx .logo h1{
  font-size: 21px;
  color: #fff;
  margin-left: 4px;
  margin-top: 8px;
}

footer .bx .options{
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

footer .bx .options ul{
  display: flex;
  flex-direction: column;
}

footer .bx .options ul li{
  list-style: none;
  margin: 0 0 20px 0;
  text-align: center;
}

footer .bx .options ul li a{
  text-decoration: none;
  color: #fff9;
  font-size: 13px;
}


/*copy*/
.copy{
  width: 100%;
  height: 30px;
  background: #000;
  display: flex;
}

.copy p{
  color: #ccc;
  margin: auto;
  font-size: 13px;
}



}




