body{
    font-family: 'Poppins';
    overflow-x: hidden;
}

h1{
    font-weight: bold;
}

main {
    margin-top: 0px; /* Ajusta según la altura del navbar en pantallas grandes */
}

/*Monster Banner*/
/*top Banner*/
.top-banner {
    backdrop-filter: blur(20px);
    background-color: rgba(97,1,246,.1);
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: height 0.3s ease, opacity 0.3s ease;
    z-index: 10000;
  }
.banner-title{
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;  
    min-height: 350px;
    background: rgb(147,118,245);
    background: linear-gradient(309deg, rgba(36,0,69,1) 1%, rgba(7,01,19,1) 40%);
}
.c-secondary{
    color: #51f87a!important;
}
.c-white{
    color: #ffffff!important;
}
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    margin: auto;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Asegura que el carrusel ocupe todo el espacio disponible */
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 25%; /* 4 elementos en escritorio */
    }
}

@media (max-width: 767px) {
    .carousel-item {
        flex: 0 0 100%; /* 1 elemento en móvil */
    }
}

.carousel-item {
    flex: 0 0 calc(25% - 20px); /* 4 items en desktop */
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
      width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

/* Ajuste para mobile */
@media (max-width: 767px) {
    .carousel-item {
        flex: 0 0 100%; /* 1 item en móvil */
    }
}
.carousel-container, .carousel, .carousel-item {
    border: 1px solid red; /* Solo para depuración */
}
.banner-title .txt-title-interna{
    color: #FAF8FF;
}
  .top-banner.hidden {
    height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
  }

  .close-button_top {
    background-color: transparent;
    color: white;
    border: none;
    border: 1px solid white;
    border-radius: 25px;
    height: 35px;
    width: 35px;
    cursor: pointer;
  }

  .menu-language {
    position: relative;
    display: inline-block;
  }
  .dropdown-arrow {
    border: solid #181821;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    margin-left: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    position: relative;
    top: -3px;
  }
  .dropdown-container.open .dropdown-arrow {
    transform: rotate(-135deg); /* Cambia la flecha para indicar "abierto" */
  }
  .language-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #181821;
    background-color: #faf6ff;
    border: 1px solid white;
    border-radius: 24px 6px 6px 24px;
    padding: 10px 20px;
    cursor: pointer;
    transition: .3s;
}
.language-button_image{
    width: 25px;
    border-radius: 16px;
    margin-right: 8px;
}
.language-button:hover {
    background-color: #1bd31b;
    border: 1px solid #17d841;
  }

  .dropdown {
    display: none;
    position: absolute;
    background-color: #faf6ff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    min-width: 150px;
    top: 55px; /* Ajustado para colocarse debajo del botón en el top */
    right: 0;
  }

  .dropdown a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown a:hover {
    background-color: #ddd;
  }
  nav.shrinked {
    padding: 10px;
  }
/*End top Banner*/
/* Estilos para el banner */
.monster-banner-container {
  position: relative;
  height: 950px; /* Ajusta la altura según sea necesario */
  /* overflow: hidden; Asegura que la imagen no se desborde del contenedor */
}
.text-title-level-1{
    font-size: 4.125rem;
    font-weight: 600;
    color: #3f0099;
    font-weight: 600;
}
.text-title-level-2{
    font-size: 1.175rem;
    font-weight: 500;
    margin-bottom: 12px;
}
.nav-wrapper .nav-mob{
    justify-content: space-around;
}
.board-product {
    display: flex;
  }

  .board-product {
    display: flex;
  }

  .board-paragraph {
    flex: 1;
  }

  .paragraph-item{
    height: 100vh; /* Cada sección ocupa el 100% del viewport */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 20px;
  }

  .animation {
    flex: 0 0 50%; /* Columna fija para la animación */
    position: sticky;
    width: 50%;
    top: 0; /* La animación permanece fija al hacer scroll */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #lottie-container {
    width: 700px;
    height: 700px;
  }
  .paragraph-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95); /* Se inicia con una posición ligeramente desplazada y más pequeña */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Transición suave */
}

.paragraph-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1); /* Se restaura a su posición y tamaño original */
}
@keyframes bounce {
  0% {
    transform: translateY(30px) scale(0.95);
  }
  50% {
    transform: translateY(-10px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.paragraph-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease;
}

.paragraph-item.visible {
  opacity: 1;
  animation: bounce 0.8s ease-out; /* Aplica el efecto de rebote al hacerse visible */
}
@media (min-width: 576px) {
    .container-nav {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .container-nav {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .container-nav{
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container-nav {
      max-width: 1140px;
    }
  }
  @media (min-width: 1400px) {
    .container-nav {
      max-width: 1320px;
    }
  }
.container-nav{

}
nav.down{
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 1);
}
.menu-hamb_item{
    fill: white;
    transition: .6s;
}
nav.down .menu-hamb_item{
    fill: #15151C;
}

nav.down.nav-wrapper{
    /* position: fixed; */
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
nav img{
   width: 35%;
   height: auto;
   transition: .6s;
}
nav.down img{
   width: 30%;
}
nav.down .nav-links{
   color: #15151C;
}
nav .btn-medium{
    margin-left: 9rem;
}
.text-subtitle{
    font-family: "Poppins";
    font-size: 1.35rem;
    color: #faf6ff;
}
.nav-wrapper{
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    transition: .7s;
}
.btn-primary{
    background-color: transparent;
    border-left: none;    
    border-right: none;    
    border-top: none;    
}

.nav-links{
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-left: 15px;
    font-size: .65rem;
    text-decoration: none;
    transition: .7s;
}
.nav-space{
    flex: 1;
    justify-content: flex-end;
}
.nav-links:hover{
    color: #75B846!important;
}
.btn-medium{
    background-color: #51f87a;
    color: #3f0099;
    border-radius:25px;
    padding: 15px 40px;
    font-size: .65rem;
    text-transform: uppercase;
    text-decoration: none;
    border:none;
    transition: .3s;
}
.btn-medium:hover{
    background-color: #C7E223;
    padding-left: 40px;
    color: #15151C!important;
}
.navbar-light .navbar-nav .nav-link{
    color: #faf6ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.navbar-light .navbar-nav .inactive{
    color: rgb(51, 51, 51)!important;
}
.navbar-nav {
    padding-top: 0px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
    width: 100%;
}
nav.down .btn-medium{
    color: #faf6ff;
    transition: .6s;
}
nav.down .brand{
    width: 130px;
    height: 60px;
    transition: .6s;
}
nav.down .brand-headerone{
    fill: #a59e72;
}
nav.down .brand-headertwo{
    fill: #3f0099;
}
.brand{
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    width: 170px;
    height: 60px;
    white-space: nowrap;
    color: #FAF6FF;
}
.brand .brand-headerone{
    fill: #ffffff;
    transition: .6s;
}
.brand .brand-headertwo{
    fill: #FAF6FF;
    transition: .6s;
}
.img-effect {
    transition: transform 0.7s ease-out, box-shadow 0.7s ease-out;
    transform: scale(0.7);
     transform-origin: center center;
     left: 0;
}

.img-effect.active {
    transform: scale(1.2); /* Crece progresivamente */
}
.monster-banner-image {
  background-image: url('../images/.png'); /* Reemplaza con la URL de tu imagen */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.monster-banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translateY(-50%); /* Centra verticalmente el texto */
  z-index: 1; /* Asegura que el texto esté encima de la imagen */
}
.bienvenido-bg{
    background: rgb(246, 160, 0);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255,255,255,0.01724439775910369) 67%, rgba(246, 160, 0, 1) 100%);
}
.bienvenido-wrapper{
    min-height: 1350px;
}
.services-board{
}
.services-board-carrusel{
    display: none;
}
.beneficios-wrapper{
    width: 100%;
    background: #000000;
    background: linear-gradient(307deg,rgba(0, 0, 0, 1) 15%, rgba(10, 0, 0, 1) 77%, rgba(117, 184, 70, 1) 124%);
    padding: 72px 0px;
}
.beneficios-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.beneficios-title{
    width: 100%;
}
.services-board-mod{
    display: flex;
    align-items: flex-start;
    justify-content: end;
    gap: 24px;
}
.bg-services-01,.bg-services-02,.bg-services-03,.bg-services-04{
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.services-board-mod .bg-services-01{
    background-image: url('../images/img-pagosinternacionales_cgm.png'); /* Reemplaza con la URL de tu imagen */
     background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.services-board-mod .bg-services-02{
    background-image: url('../images/img-cartera_cgm.png'); /* Reemplaza con la URL de tu imagen */
     background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.services-board-mod .bg-services-03{
    background-image: url('../images/img-custodia_cgm.png'); /* Reemplaza con la URL de tu imagen */
     background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.services-board-mod .bg-services-04{
    background-image: url('../images/img-emision_cgm.png'); /* Reemplaza con la URL de tu imagen */
     background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}
.beneficios-wrapper .txt-paragraph{
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.services-wrapper{
    padding: 50px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
    background: #000A00;
background: linear-gradient(320deg,rgba(0, 10, 0, 1) 7%, rgba(35, 35, 35, 1) 97%);
}
.services-item{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border-radius: 12px;
    min-height: 250px;
    background: #000A00;
    background: linear-gradient(320deg,rgba(0, 10, 0, 1) 7%, rgba(35, 35, 35, 1) 97%);
   border: 1px solid #30302F;
}
.services-item__text{
    display: block;
}
.services-item__text span{
    color: white;
}
.services-item__text .line{
    background-color: #78fd4c;
}
.services-item__point{
    font-size: 1.025rem!important;
    font-family: "Poppins";
    font-weight: 600;
    color:#ffffff;
    margin-bottom: 0;
    padding-right: 16px;
}

.services-item__deg{
    background: rgb(147,118,245);
    background: linear-gradient(309deg, rgba(147,118,245,1) 1%, rgba(97,1,246,1) 40%);
    color: #FAF8FF!important;
}
.services-item__deg p{
    color: #FAF8FF!important;
}
.swiper-container {
    width: 100%;
    padding-bottom: 30px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.swiper-button-next, .swiper-button-prev {
    color: #000; /* Ajusta color de flechas de navegación */
}

.swiper-pagination-bullet {
    background: #000; /* Ajusta color de los puntos de paginación */
}
.transactions-board{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 0;
    min-height: 800px;
}
.transactions-board img{
    margin: 0 auto;
    width: 75%;
    padding: 64px 0px;
}
.services-item img{
    width: 50%;
    margin-bottom: 20px;
}

.services-item span{
    font-family: "Poppins";
    text-align: left;
}
.inclusion-board{
    min-height: 900px;
    padding: 100px 0;
    background: rgb(246, 160, 0);
    background: linear-gradient(0deg, rgba(246, 160, 0, 1) 0%, rgba(255,255,255,0.01724439775910369) 67%, rgba(255,255,255,0) 100%);
}
.membresia-board{
    min-height: 900px;
    padding: 20px 100px;
}
.inclusion-title{
    padding-bottom: 50px;
}
.inclusion-wrapper{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.membresia-wrapper{
    padding: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.membresia-anim, .logos-anim{
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
.inclusion-item{
    background: #fff9ed;
    margin-bottom: 50px;
    padding: 24px;
    border: 1px solid #f6a000;
    border-radius: 24px;
    width: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inclusion-item img{
    width: 25%;
    padding-right: 15px;
}
.bienvenida-anim{
    position: absolute;
    left: 0;
    top: 15%;
    right: 0;
    bottom: 0;
    margin: auto;
}
.inclusion-item p{
    font-size: 2.125!important;
    font-family: "Poppins";
    font-weight: 800;
    line-height: 24px;
    color:#444444;
    margin-bottom: 10px!important;
}
.inclusion-item span{
    font-family: "Poppins";
    color:#444444;
    text-align: center;
}
.inclusion-paragraph{
    min-height: auto;
}
.card-big{
    margin-bottom: 50px;
    padding: 24px;
    border: 1px solid #f6a000;
    border-radius: 24px;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(246, 160, 0);
    background: linear-gradient(174deg, rgba(246, 160, 0, 0.3) 0%, rgba(255,255,255,1) 43%, rgba(255,255,255,1) 100%);
}
.card-list{
    padding-top: 24px;
    padding-left: 0;
}
.card-app{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 16px;
}
.card-app img{
    width: 30%;
}
.card-app :first-child{
    padding-right: 10px;
}
.card-list li{
    list-style: none;
}
.card-big-title{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f6a000;
    margin-bottom: 15px;
}
.card-big-paragraph p{
    text-transform: uppercase;
    font-weight: 800;
    font-family: "poppins";
    color:#444444;

}
.card-big-title p{
    font-weight: 800;
    line-height: 25px;
    color: #444444;
}
.card-big-title img{
   max-width: 120px;
   padding-right: 15px;
}
.card-big-list li{
    padding-bottom: 10px;
}
.deposito-wrapper{
    padding: 50px 0;
}
.deposito-wrapper img{
   width: 246px;
}
.txt-title{
    font-weight: 600;
    font-size: 2.36rem;
    line-height: 30px;
    color: #323A4E;
    margin-bottom: 1rem;
}
.wrapper-title{
    padding: 50px 15px;
    text-align: left;
}
.wrapper-info .line{
   margin: 20px auto!important;
}
.wrapper-img{
    position: relative;
    
}
.img-control{
    width: 250px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
}
.category-title{
    font-size: 2.36rem;
    color: #212529;
    font-weight: 600;
}
.txt-title-slider{
    font-weight: 900;
    text-align: center;
    font-size: 4.125rem;
    line-height: 90px;
    padding-top: 15px;
    color: #0e0e0e;
    margin-bottom: 1rem;
    margin: 0 auto;
}
.txt-title-interna{
    font-weight: 900;
    font-size: 3.125rem;
    line-height: 60px;
    color: black;
    margin-bottom: 1rem;
}
.img-slider{
    width: 70%;
}
.txt-title-mobile{
    font-weight: 900;
    font-size: 2.125rem;
    line-height: 40px;
    color: #0e0e0e;
    text-align: center;
}
.bienvenida-img-1{
    margin: auto;
}
.bienvenida-img-2{
    margin: auto;
}
.bienvenida-img-3{
    margin: auto;
}
.txt-subtitle{
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 21px;
    color: #323a4e;
}
.title-wrapper-slider{
    z-index: 2;
    margin: auto;
}
.board-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.board-column .txt-title{
     font-size: 4.125rem;
    line-height: 60px;
    color: white;
    margin-bottom: 1rem;
}
.board-column .txt-title strong{
    font-weight: 600;
    color: #51f87a;
}
.board-column_item:first-child{
    width: 100%;
    padding-bottom: 20px;
    height: 600px;
}
.board-column_item:last-child{
    text-align: center;
    z-index: 1;
}
.board-column_item{
    position: relative;
}
.image-absolut{
    position: absolute;
    width: 100%;
    max-width: 1000px; 
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
}
.board-twin{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    flex-wrap: nowrap;
    height: 80vh;
}
.board-twin .line{
   color: #51f87a;
}
.board-twin_item:first-child{
    margin-right: 40px;
}
.board-twin_item:first-child .txt-title{
    padding-bottom: 16px;
}
.board-twin_item:first-child .text-subtitle{
    padding-bottom: 16px;
}
.board-twin_item{
    width: 47%;
    padding-top: 0px;
    z-index: 1;
}
.board-twin_item img{
    width: 100%;
    display: block;
}
.txt-subtitle-slider{
    font-family: 'Poppins';
    font-weight: medium;
    text-align: center;
    font-size: 2.175rem;
    line-height: 20px;
    padding-top: 40px;
    box-shadow: #f5f5f5;
    color: #0e0e0e;
}
.txt-subtitle-level-1{
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 32px;
    padding-top: 16px;
    color: #15151C;
}
.txt-paragraph{
    color: #15151C;
    font-family: 'Inter';
    font-size: 1rem;
}
.txt-subtitle-level-2{
    font-family: 'Poppins';
    font-weight: medium;
    font-size: 1.175rem;
    line-height: 20px;
    padding-top: 16px;
    color: #444444;
}
.wallet-wrapper{
    min-height: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.wallet-wrapper__item{
    width: 68%;
}
.wallet-img{
    width: 100%;
}
.wallet-list{
    padding-top: 15px;
}
.wallet-list li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 15px;
    list-style-type: none;
    margin-right: 15px;
}
.wallet-list li :nth-child(1){
   width: 15px;
   height: 15px;
}
.wallet-list li :nth-child(2){
   width: 99%;
}
.wallet-list small{
    display: inline-block;
    content:"";
    width: 12px;
    height: 12px;
   background: #ffb400;
    margin-right: 10px;
}
.txt-subtitle-mobile{
    font-family: 'Arial';
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 24px;
}


.bg-cover-slider {
    background-image: url('../images/KubitPay-imagebanner_01.png');
    /* background-image: url('../images/masefe-slider_01.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}
.bg-cover-bienvenido {
    background-image: none;
    background-image: url('../../images/img-word_cgm.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* background: linear-gradient(148deg,rgba(7, 0, 19, 1) 0%, rgba(36, 0, 69, 1) 100%);
    height: 100vh; */
}


.bg-cover-beneficios {
    /*background-image: url('../images/.png'); /* Cambia la URL de la imagen de fondo */
    /* background-image: url('../images/bg-beneficios.png'); */
    background-size: cover;
    height: 850px;
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;]*/
}
.bg-cover-digital {
    background-size: cover;
    height: 768px;
    /*display: flex;
    flex-direction: column;
    justify-content: flex-end;]*/
}

.bg-cover-beneficios-02 {
    /* background-image: url('../images/kubit-brands.png'); */
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.bg-cover-tarjetahabiente {
    background-image: url('../images/masefe-beneficios_bgdesktop.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}
.bg-cover-cashback {
    background-image: url('../images/masefe-cashback_bgdesktop.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}
.cashback-board .cashback-offert{
    font-size: 2.1rem;
}
.cashback-board .cashback-offert strong{
    font-weight: 800;
    font-size: 2.1rem;
    display: block;
}
.monster-accordion__service{
    color: #f5f5f5;
}
.life-board{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 800px;
}
.card-left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.card-bottom__left{
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 900px;
}
.card-top__right{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    min-height: 900px;
}
.card-top__center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}
.card-top__right .card-item{
    background-color: rgba(222, 220, 216, 0.6);
}
.card-item{
    padding: 100px;
    border-radius: 16px;

}
.card-item .txt-subtitle-level-1{
    
}
.card-item .txt-paragraph{
    
}
.life-board__item{
    background-color: rgba(22,22,30,.5);
    padding: 32px;
    border-radius: 16px;
    color: #e7e7e7;
}
.life-board__item .txt-subtitle-level-1{
    color: #e7e7e7;
}
.life-board__item .txt-paragraph{
    color: #e7e7e7;
}
.bg-cover-crossborder, .bg-cover-control{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.bg-cover-soluciones{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0 100px;
    height: 80vh;
    margin: 0 auto;

}
.twin-board{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.line{
  width: 20%;            
  height: 2px;          
  background-color: white;
  margin: 20px 0;    
}
.bg-cover-soluciones {
    background-image: url('../images/img-word_cgm.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
   
}
.bg-cover-crossborder {
    background-image: url('../images/img-word_cgm.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
   
}
.bg-cover-control {
    background-image: url('../images/img-bgseguridad_cgm.png');
    /* background-image: url('../images/masefe-dispersion_bgdesktop.png'); */
 
}

.bg-cover-beneficios-03 {
    /* background-image: url('../images/.png'); */
    background-size: cover;
    background-color: #10100F;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

.bg-servicios-card{
    background-image: url('../images/.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1000px;
}

.bg-cover-servicios {
    background-image: url('../images/.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1300px;
}

.text-content {
    color: white; /* Cambia el color del texto si es necesario */
    padding-left: 10%;
    padding-top: 10%;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 2rem;
    line-height: 42px;
}

.sub-text-content{
    padding-left: 10%;
    margin-top: 60%;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 23px;
    font-family: 'Arial';
}

.image-content {
    text-align: center;
}
.image-content img {
    max-width: 100%; /* Asegura que la imagen no exceda el contenedor */
    height: auto;
}


.diamond-bullets {
  list-style: none;
  padding-left: 10px;
}

.diamond-bullets li {
  position: relative;
  padding-left: 40px;
}

.plus-bullets li::before {
  content: '';
  background-image: url('../images/list-plus.png');
  /* position: absolute; */
  left: 0;
  top: 50%;
  border-radius: 50%;
  width: 30px; /* Ajusta el tamaño del rombo */
  height: 30px;
  background-color: #FEC424; /* Color del rombo */
}
.diamond-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  width: 10px; /* Ajusta el tamaño del rombo */
  height: 10px;
  background-color: #FEC424; /* Color del rombo */
}

.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 90%; /* Centro verticalmente */
  left: 50%; /* Centro horizontalmente */
  transform: translate(-50%, -50%); /* Ajusta el centro en base a su propio tamaño */
  width: 90%; /* Ajusta el ancho en relación al contenedor */
  color: white;
  padding: 20px; /* Padding responsivo */
  box-sizing: border-box; /* Incluye el padding en el ancho total */
  border-radius: 5px;
  text-align: center; /* Centra el texto dentro del overlay */
}

.text-overlay p {
  margin: 10px 0 0;
  font-size: 16px; /* Tamaño del texto */
}
.list-item-footer{
    padding-top: 25px;
}

#Bienvenido, #Bene, #Serv, #Productos, #LifeStyle, #Wallet, #Inclusion, #Digital, #Aplicacion, #Tarjetahabiente, #Cashback, #Beneficios-02, #Beneficios-03, #Servicios{
    display: flex; /* Se muestra en pantallas grandes */
}

#Bienvenido-mobile, #ProductoMob, #TecMob, #identidadMob, #Beneficios-mobile, #Servicios-mobile, #Deposito-mobile, #Membresia-mobile, #Inclusion-mobile, #Wallet-mobile, #lifestyle-mobile, #Crossborder-mobile, #Cashback-mobile, #Aplicacion-mobile, #sitemap-mobile {
    display: none; /* Se oculta en pantallas grandes */
}

.diestablishments-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.diestablishments-list .diestablishments-item{
    width: 28%;
    display: flex;
    padding-top: 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.diestablishments-item p{
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    padding:15px 0px;
    margin: 0;
}
.diestablishments-item span{
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
}
.text-beneficios-mob{
    background-color: #10100F;
    padding: 15px;
    min-height: 500px;
}
.app-mob{
    background-color: #10100F;
    padding: 15px;
}
.diestablishments-c-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}
.slide-beneficios{
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 35px;
}
.diestablishments-c-item p{
    font-weight: 800;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 15px;
}
.diestablishments-c-item span{
    font-weight: 300;
    text-align: center;
    font-size: 1rem;
}
.slide-beneficios-title{
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 35px;
}
.empresarial-title{
    padding: 40px 0px;
}
.empresarial-title h2{
    padding-bottom: 24px;
}
.empresarial-title-item{
    display: flex;
    flex-direction: column;
}
.empresarial-title-item img{
   width: 100%;
}
.empresarial-item{
    background-color: #f5f5f5;
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #ffffff;
    margin-right: 50px;
    min-height: 580px;
    background: linear-gradient(140deg, rgb(247, 222, 0, .5) 2%,rgb(247, 247, 247),  rgb(255, 255, 255));
    -webkit-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    -moz-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
}
.bienvenido-bg{
    background-image: url('../images/KubitPay-bgwhite_slider.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.empresarial-item-img{
    /* background-image: url('../images/masefe-empresarial.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #ffffff;
    margin-right: 50px;
    min-height: 580px;
    -webkit-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    -moz-box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
    box-shadow: 0 20px 15px -5px rgba(0,0,0,5%),0 8px 10px -6px rgba(0,0,0,.10%);
}
.block-wrapper{
    min-width: 100%;
}
.footer-contact{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.footer-contact .footer-contact__title {
    width: 100%;
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
     overflow: hidden;
    position: relative;
}
.footer-contact .btn-form {
    text-align: center;
    margin-bottom: 50px;
}
.footer-contact .footer-contact__form {
    width: 80%;
    margin: 0 auto;
}
.footer-contact__title p{
    color: #e7e7e7;
}
.form-wrapper_labtwin{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.form-wrapper_labtwin .form-wrapper_lab{
    width: 48%;
    background-color: rgba(34, 7, 61, 0.5);
    border: 1px solid rgba(119, 99, 189, 0.6);;
    stroke-width: 1;
    padding: 24px;
    margin-bottom: 35px;
    border-radius: 8px;
    
}
.form-wrapper_mess{
    width: 100%;
    background-color: rgba(34, 7, 61, 0.5);
    border: 1px solid rgba(119, 99, 189, 0.6);;
    padding: 24px;
    margin-bottom: 35px;
    border-radius: 8px;
    
}
.form-label{
    font-family: 'Poppins';
    color: #15151C;
    display: none;
}
.form-wrapper_lab input{
    background-color: transparent;
    border: none;
}
.form-wrapper_mess .form-control{
    background-color: transparent;
    border: none;
}
.footer-contact__title .monster-accordion__service{
    color: #e7e7e7;
    padding-bottom: 24px;
}
.footer-wrapper_item {
    /* width: 25%; */
}
.footer-wrapper_item h6{
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    cursor: pointer;
}
.footer-lab{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: initial;
    border-top: 1px solid #E9E9E9;
    padding-top: 20px;
}
.footer-lab-legend{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: initial;
    padding-bottom: 0;
}
.footer-lab-legend a{
    font-size: 0.75rem;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #c5c5c5;
    color: #c5c5c5;
}
.footer-lab-item{
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #c5c5c5;
    color: #c5c5c5;
}
.footer-lab-legend p{
    font-size: 0.75rem;
    color: #c5c5c5;
    margin-bottom: 0;
}
.footer-lab-social img{
    width: 30%;
    margin: auto;
}
.footer-wrapper{
    padding: 70px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #D6E0E0;
}
.footer-list{
    list-style: none;
}
.footer-list a{
    color: #15151C;
    text-decoration: none;
    display: block;
    padding-bottom: 16px;
    font-size: .75rem;
}
.footer-list a:hover{
    color: #69d920!important;
}
.footer-legend{ 
    font-size: 1.125rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    width: 70%;
    color: #3f0099;
}
.footer-title{
    font-size: 1rem;
    font-weight: 400;
}
.footer-social,
.footer-app{
    padding-top: 15px;
    width: 80%;
    display: flex;
    list-style: none;
    align-items: center;
    padding-left: 0;
}
.modules-board{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 20px 20px 72px;
}
.modules-board_item{
  text-align: center;
  background: #F5F8FB;
  background: linear-gradient(162deg,rgba(245, 248, 251, 1) 7%, rgba(233, 240, 246, 1) 97%);
  text-align: left;
  border-radius: 12px;
}
.modules-board_info{
  padding: 32px;
}
.modules-board_info .line{
   background-color: #78fd4c;
}

.modules-board_img{
  padding-left: 32px;
}
.modules-board_item p{
    font-size: 1.125rem!important;
    font-family: "Poppins";
    font-weight: 600;
    margin-bottom: 0;
    padding-right: 16px;
}
.modules-board_item_100{
    grid-column: 1 / -1;
    text-align: center;
    background-image: url('../images/img-eficiencia_cgm.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 250px;
}
.modules-board_item_100 .modules-board_info{
    width: 50%;
    text-align: left;
    color: white;
}
.footer-social{
    justify-content: space-between;
}
.footer-app{
    justify-content: flex-start;
}
.footer-app img{
    width: 60%;
}
.post-footer{
    padding-top: 24px;
    padding-bottom: 0px;
    border-top: 1px solid #D6E0E0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.post-footer_item:nth-child(1){
    width: 90%;
    padding-bottom: 16px;
}
.post-footer_item:nth-child(2){
   display: none;
}
.post-footer_item{
    color: #ffffff;
    font-size: .75rem;
}
/* .multiple-slider .slick-list{
    min-height: 650px;

} */
.cashback-img{
    width: 80%;
}
.cashback-board{
    text-align: left;
}
.KubitPay-footer{
    display: block;
}
.block-wrapper{
    min-width: 1920px;
}
/* Estilo para pantallas de 1920px o menos */
@media (max-width: 1920px) {
    .block-wrapper{
        min-width: 1920px;
    }  
}
@media screen and (min-width:1024px){
    .post-footer_item:nth-child(1){
        width: 40%;
        padding-bottom: 0px;
    }
    .post-footer_item:nth-child(2){
        width: 50px;
    }
}
/* Estilo para pantallas de 768px o menos */
@media (max-width: 768px) {
    .footer-wrapper_item h6{
       border-bottom: 1px solid #e9e9e9;
       padding-bottom: 15px;

    }
    .card-top__center .card-item{
        padding: 0;
        margin: 100px 0px;
    }
    .modules-board_item_100 .modules-board_info{
    width: 100%;
    }
    .modules-board{
       grid-template-columns: 1fr;
    }
    .modules-board_item_100{
        grid-column: auto;
    }
    .services-item__text{
        padding-top: 24px;
    }
    .services-item{
        margin-bottom: 24px;
    }
    .beneficios-content{
       display: block;
    }
    .services-board-mod{
        display: block;
        margin: 0 auto;
    }
    .empresarial-item-img{
        margin-right: 0px;
    }
    .empresarial-item{
        padding: 24px;
        margin-right: 0px;
    }
    .nav-item{
        padding-bottom: 10px;
    }
    nav .btn-medium.btn-medium{
        margin-left: 0;
    }
    nav.down .nav-links{
        color: #ffffff;
     }
     .wallet-wrapper{
        min-height: 500px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 50px;
    }
     .wallet-wrapper__item{
        width: 100%;
    }
    .life-board{
        min-height: auto;
    }
    .bg-cover-crossborder {
        height: 500px;
    }
    .footer-contact .footer-contact__title {
        width: 100%;
    }
    .footer-contact .footer-contact__form {
        width: 100%;
    }
    .form-wrapper_labtwin .form-wrapper_lab{
        width: 100%;
        
    }
    .card-left{
        min-height: 200px;
    }
    .card-bottom__left{
        min-height: 500px;
    }
    .card-top__right .card-item{
        background-color: rgba(222, 220, 216, 0.9);
    }
    .img-effect {
     left: -15%;
     position: relative;
    }
    .footer-wrapper_item {
    margin-bottom: 20px;
    overflow: hidden;
    }

.footer-toggle {
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  color: #fff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.footer-list li {
  margin-bottom: 3px;
}

.footer-list li a {
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #fff;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .footer-wrapper_item.active .footer-list {
    max-height: 500px; 
    display: block;
  }
  .footer-wrapper_item{
    width: 100%;
    padding: 15px;
    max-height: 500px; 
    display: block;
  }
}
    .footer-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer-social, .footer-app{
        width: 100%;
    }
    .footer-list{
        display: none;
    }
    .footer-list a{
        padding: 16px 0;
    }
    .footer-wrapper{
        padding: 16px 0;
    }
    .post-footer{
        text-align: center;
    }
}
/* Estilo para pantallas de 991px o menos */
@media (max-width: 991px) {
        #Bienvenido, #Bene, #Serv, #Productos, #Deposito, #Inclusion, #Membresia, #Digital, #Aplicacion, #Tarjetahabiente, #Cashback, #Beneficios-02, #Beneficios-03, #Servicios, #sitemap{
        display: none; /* Se oculta en pantallas pequeñas */
    }

    #Bienvenido-mobile, #ProductoMob, #TecMob, #identidadMob, #Beneficios-mobile, #Servicios-mobile, #Deposito-mobile, #Membresia-mobile, #Wallet-mobile, #Inclusion-mobile, #lifestyle-mobile, #Crossborder-mobile, #Cashback-mobile, #Aplicacion-mobile, #sitemap-mobile{
        display: block; /* Se muestra en pantallas pequeñas */
    }
    .img-dispersion-mob{
        width: 100%;
        border-radius: 25px 25px 10px 10px;
        padding: 25px 25px 0px 25px;
        background: rgb(255,180,0);
        background: linear-gradient(174deg, rgba(255,180,0,0.1) 0%, rgba(255,255,255,1) 43%, rgba(2255,180,0,1) 100%);
    }
    .bg-servicios-card .img-serv-cards{
        margin-top: 20%;
    }
    .inclusion-item img{
        width: 50%;
        padding: 0;
        margin: auto;
    }
    nav .btn-medium{
        margin-left: 0;
    }
    .inclusion-board{
        min-height: auto;
        padding: 20px 0;
        background: rgb(246, 160, 0);
    background: linear-gradient(174deg, rgba(246, 160, 0, 0.3) 0%, rgba(255,255,255,1) 43%, rgba(255,255,255,1) 100%);
        /* background: rgb(85,15,237);
        background: linear-gradient(0deg, rgba(85,15,237,1) 0%, rgba(235, 218, 253,1) 67%, rgb(249, 245, 255) 100%); */
    }
    .deposito-wrapper{
        padding: 0;
    }
    .bienvenido-wrapper .txt-subtitle-slider{
        padding-top: 30px;
    }
    .inclusion-item{
        flex-direction: column;
        width: 90%;
        margin: auto;
        margin-bottom: 0;
    }
    .inclusion-paragraph{
        min-height: 110px;
        text-align: center;
    }
    .card-big{
        width: 98%;
        margin: auto;
    }
    .slick-dots{
        padding: 0!important;
    }
    .cashback-board{
        margin: 0 auto;
        text-align: center;
    }
    .navbar-nav {
        padding-top: 50px;
        align-items: flex-start;
        padding-bottom: 50px    ;
        filter: blur(50%);
    }
    .navbar-nav .down{
        background-color: white;
    }
    .bienvenido-wrapper{
        min-height: auto;
    }
    .services-item{
        width: 100%;
    }
    .services-item img{
        width: 30%;
    }
    .txt-title-slider{
        font-size: 2.125rem;
        line-height: 35px;
        padding-top: 70px;
        padding-bottom: 20px;
    }
    .txt-title-mobile{
        font-size: 2.125rem;
        line-height: 35px;
        padding-bottom: 20px;
    }
    .txt-subtitle-slider{
        font-size: 1.175rem;
        padding-bottom: 30px;
    }
    .txt-subtitle-slider{
        padding: 0px;
    }
    .img-b-mob{
        /* background-color: #fbf7f7;
        border-radius: 25px 25px 10px 10px;
        padding: 25px 25px 0px 25px; */
        width: 75%;
        margin: auto;
    }
    #Dispersion-mobile .txt-subtitle-slider{
        padding: 0;
    }
    .footer-lab{
       flex-direction: column;
    }
    .footer-lab-legend{
        flex-direction: column;
        padding-bottom: 15px;
    }
    .footer-lab-legend a{
        padding-left: 0px;
        margin-left: 0px;
        border-left: none;
        padding-bottom: 15px;
    }
    .footer-lab-legend p{
        padding-bottom: 15px;
    }
    .footer-lab-item{
        padding-left: 0;
        padding-bottom: 15px;
        margin-left: 0;
        border-left: none;
        color: #c5c5c5;
    }
}
.button-footer-mob{
    background-color: #ffffff!important;
    border-bottom: 1px solid #e7e7e7;
}
.button-footer-mob button{
    background-color: #10100F;
    border-bottom: 1px solid #353535;
    border: 0px;
}

@media (max-width: 767px) {
    .services-board-carrusel{
        display: block;
    }
    .bg-cover-soluciones{
        padding: 0;
    }
    .bg-cover-soluciones{
        background-size: cover;
        margin: 100px 0px 50px;
    }
    .board-twin{
        flex-wrap: wrap;
        height: auto;
    }
    .bg-servicios-card{
        height: 900px;
    }
    .bg-servicios-card .img-serv-cards{
        margin-top: 40%;
    }
    .board-twin_item{
        width: 100%;
        padding-top: 170px;
    }
    .board-twin_item:first-child{
        margin-right: 0px;
    }
    .board-twin_item img{
        display: none;
        width: 100%;
    }
    .services-board{
        min-height: 900px;
    }
    .navbar-nav.down{
        background-color: white;
    }
    .membresia-anim, .logos-anim{
        display: none;
    }
    .board-column_item:first-child{
        height: 475px;
    }
    .beneficios-wrapper .txt-paragraph{
        width: 100%;
    }
    .services-board{
        min-height: 300px;
    }
    .text-title-level-1{
        font-size: 2.625rem;
        line-height: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .transactions-board{
        padding: 0;
        min-height: 600px;
    }
}

@media (max-width: 512px) {
    .bg-servicios-card{
        height: 800px;
    }

    .bg-servicios-card .img-serv-cards{
        margin-top: 30%;
    }
}

@media (max-width: 454px) {
    .bg-servicios-card{
        height: 700px;
    }

    .bg-servicios-card .img-serv-cards{
        margin-top: 30%;
    }
}

@media (max-width: 412px) {
    .bg-servicios-card .img-serv-cards{
        margin-top: 50%;
    }
}
.footer{
    background-color: #060606;
    padding: 0px 0px 50px 0;
}
.footer-list{
   margin-right: 20px;
   padding-left: 0px;
}
.footer-item{
   padding-top: 15px;
   list-style: none;
}
.footer-app{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.bi-chevron-down{
    color: white;
}
.footer-app img{
    width: 200px;
}
.serv-cards{
    height: 60%;
}

.slick-dots{
    position: initial !important;
    text-align: center !important;
    padding: 15px 0!important;
    display:none!important;
}

.slick-dots li.slick-active button:before{
    color: #C7E223 !important;
}


.slick-dots li button:before {
    font-size: 12px !important;
}


::placeholder {
  color: #D5D5D5 !important;
}

/* Para versiones antiguas de Firefox */
:-moz-placeholder {
  color: #D5D5D5 !important;
}

/* Para versiones antiguas de Internet Explorer y Edge */
:-ms-input-placeholder {
  color: #D5D5D5 !important;
}


.error {
  color: #F93430;
  display: inline-block;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
}

input.error, input.error:focus, input.check.error {
  border: 1px solid #F93430;
  color: #F93430;
}

textarea.error, textarea.error:focus, textarea.check.error {
  border: 1px solid #F93430;
  color: #F93430;
}


.btnContact:hover {
    color: #D5D5D5 !important; /* Color al pasar el ratón */
}
.contact-board{
     background: rgb(0,0,0);
background: linear-gradient(153deg, rgba(12,2,21) 50%, rgba(63,0,153,1) 120%);
    backdrop-filter: blur(15px);
}

