@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
}

video {
  width: 100%;
  height: auto;
}

.cont-nav {
  width: 100%;
  z-index: 100;
}
.cont-nav__nav-h {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgb(25, 27, 56);
  display: flex;
  align-items: center;
  /* Establecer el tamaño del degradado para que se repita */
  /* Añadir una animación para alternar los colores */
}
.cont-nav__nav-h__btn {
  display: none;
}
.cont-nav__nav-h__logo__design {
  width: auto;
  padding: 0;
  margin: 0;
  float: left;
}
.cont-nav__nav-h__lk-title {
  text-decoration: none;
  border: none;
  background-color: #191a39;
  color: white;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.cont-nav__nav-h__menu {
  list-style: none;
  margin: 2px;
  padding: 10px;
  display: flex;
  margin-left: auto;
  margin-right: 5px;
}
.cont-nav__nav-h__menu__list {
  margin-right: 10px;
}
.cont-nav__nav-h__menu__list:last-child {
  margin-right: 5px;
}
.cont-nav__nav-h__menu__list__links {
  font-size: 15px;
  text-decoration: none;
  color: whitesmoke;
  font-family: "Open Sans", sans-serif;
  font-family: "Work Sans", sans-serif;
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.lb-box {
  display: flex;
  position: relative;
}
.lb-box__layer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}
.lb-box__layer .img {
  width: 100%;
  height: 55vw;
  display: block;
  z-index: 90;
}
.lb-box__layer__presentation {
  width: 100%;
  height: 42vw;
  display: block;
  z-index: 91;
  overflow: hidden;
  object-fit: cover;
}
.lb-box__layer__contact {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  text-align: center;
  background-color: rgb(1, 1, 1);
  font-weight: 800;
  font-size: 0.75vw;
  width: 10%;
  height: 4vw;
  margin-right: 5vw;
  margin-bottom: 8vw;
  border: 1px;
  border-radius: 10px;
  z-index: 92;
  color: azure;
}
.lb-box__layer__contact:hover {
  background-color: rgba(30, 230, 210, 0.8);
}
.lb-box__layer__whatsapp {
  display: flex;
  z-index: 90;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-image: url("../media/WhatsApp_icon.png");
  margin-right: 7vw;
  right: 0;
  bottom: 0;
  margin-bottom: 5vw;
  width: 2vw;
  border: 1vw;
  border-radius: 4vw;
  /* Establecer la sombra inicial */
  box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
  /* Aplicar una animación para el efecto de halo */
  animation: halo 1.5s ease-in-out infinite;
}
@keyframes halo {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); /* Sin sombra al principio */
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); /* Sin sombra al final */
  }
}
.lb-box__layer__whatsapp__icon {
  height: auto;
  width: 2vw;
}
.lb-box__quad-sup {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  padding: 2vw;
  font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
  background: radial-gradient(circle at 50% 50%, rgba(50, 220, 220, 0.35), rgba(255, 255, 255, 0));
  /* Usando un degradado radial de azul a transparente */
  background-size: 200% 200%;
  /* Establecer el tamaño del degradado para que se repita */
  animation: Gradient 3s ease infinite;
  /* Añadir una animación para alternar los colores */
  border: 1px solid #fff;
  z-index: 91;
  transition: transform 0.3s ease;
}
.lb-box__quad-sup.zoomed {
  transform: scale(1.07);
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.lb-box__quad-sup__fx-z {
  color: #003049;
  /* Ajusta el color de las letras a un color más oscuro pero que combine con el degradado */
}

.lb-box {
  display: flex;
  position: relative;
}
.lb-box__layer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
}
.lb-box__layer .img {
  width: 100%;
  height: 55vw;
  display: block;
  z-index: 90;
}
.lb-box__layer__presentation {
  width: 100%;
  height: 42vw;
  display: block;
  z-index: 91;
  overflow: hidden;
  object-fit: cover;
}
.lb-box__layer__contact {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  text-align: center;
  background-color: rgb(1, 1, 1);
  font-weight: 800;
  font-size: 0.75vw;
  width: 10%;
  height: 4vw;
  margin-right: 5vw;
  margin-bottom: 8vw;
  border: 1px;
  border-radius: 10px;
  z-index: 92;
  color: azure;
}
.lb-box__layer__contact:hover {
  background-color: rgba(30, 230, 210, 0.8);
}
.lb-box__layer__whatsapp {
  display: flex;
  z-index: 90;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-image: url("../media/WhatsApp_icon.png");
  margin-right: 7vw;
  right: 0;
  bottom: 0;
  margin-bottom: 5vw;
  width: 2vw;
  border: 1vw;
  border-radius: 4vw;
  /* Establecer la sombra inicial */
  box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
  /* Aplicar una animación para el efecto de halo */
  animation: halo 1.5s ease-in-out infinite;
}
@keyframes halo {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); /* Sin sombra al principio */
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); /* Sin sombra al final */
  }
}
.lb-box__layer__whatsapp__icon {
  height: auto;
  width: 2vw;
}
.lb-box__quad-sup {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 20px;
  padding: 2vw;
  font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
  background: radial-gradient(circle at 50% 50%, rgba(50, 220, 220, 0.35), rgba(255, 255, 255, 0));
  /* Usando un degradado radial de azul a transparente */
  background-size: 200% 200%;
  /* Establecer el tamaño del degradado para que se repita */
  animation: Gradient 3s ease infinite;
  /* Añadir una animación para alternar los colores */
  border: 1px solid #fff;
  z-index: 91;
  transition: transform 0.3s ease;
}
.lb-box__quad-sup.zoomed {
  transform: scale(1.07);
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.lb-box__quad-sup__fx-z {
  color: #003049;
  /* Ajusta el color de las letras a un color más oscuro pero que combine con el degradado */
}

.box-article {
  display: flex;
  position: sticky;
  border: 10px;
}
.box-article__layer {
  position: sticky;
  width: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  padding: 20px;
  justify-content: center;
  background-size: 200% 200%;
  /* Establecer el tamaño del degradado para que se repita */
  animation: Gradient 3s ease infinite;
  /* Añadir una animación para alternar los colores */
  transition: transform 0.3s ease;
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.box-article__layer__txt {
  font-family: "Open Sans", sans-serif;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  font-size: 1.4vw;
  color: #003049;
}

.article__content {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 0.7vw;
  transition: transform 0.3s ease;
  padding-bottom: 0.5vw;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  background-size: 200% 200%;
  /* Establecer el tamaño del degradado para que se repita */
  animation: Gradient 3s ease infinite;
  /* Añadir una animación para alternar los colores */
  transition: transform 0.3s ease;
}
.article__content__container {
  max-width: 50vw;
  padding-top: 1vw;
  margin-top: 0.5vw;
  display: flex;
  padding-bottom: 3.5vw;
  color: black;
}
.article__content__container__carousel {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  justify-self: center;
}
.article__content__container__carousel__item {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.article__content__container__carousel__item__title-section {
  width: 50%; /* Ajusta el ancho del contenedor del texto */
  color: black;
  z-index: 22;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
}
.article__content__container__carousel__item__title-section h1 {
  font-size: 2em;
  margin-top: 0.5vw;
  display: flex;
  align-items: center;
}
.article__content__container__carousel__item__title-section h3 {
  font-size: 1.4em;
  margin-top: 1vw;
  z-index: 10;
  text-align: left;
  justify-content: left;
  width: 50%;
  position: relative;
  align-items: center;
}
.article__content__container__carousel__item__compliance {
  width: 50%; /* Ajusta el ancho del contenedor del texto */
  padding-left: 2vw;
  z-index: 20;
  flex-direction: column;
  display: flex;
  align-self: center;
  justify-content: center;
  justify-self: center;
}
.article__content__container__carousel__item__compliance img {
  align-self: center;
  flex-direction: column;
  height: auto;
  width: 25vw;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.article__content__container__carousel__button--prev {
  z-index: 30;
  position: relative;
  transition: 0.6s ease;
  transform: translateY(-50%);
  margin-right: 2vw;
  height: auto;
  padding: 0.2vw;
  border: none;
  color: azure;
  width: 1.5vw;
  border-radius: 50%;
  top: 10%;
  cursor: pointer;
  background-color: rgba(78, 170, 180, 0.1);
  left: 0;
}
.article__content__container__carousel__button--prev:hover {
  background-color: rgba(49, 232, 210, 0.8);
}
.article__content__container__carousel__button--next {
  position: relative;
  top: 10%;
  width: 1.5vw;
  padding: 0.2vw;
  height: auto;
  margin-left: 2vw;
  transition: 0.6s ease;
  transform: translateY(-50%);
  border: none;
  color: azure;
  cursor: pointer;
  background-color: rgba(78, 170, 180, 0.1);
  border-radius: 50%;
  right: 0;
}
.article__content__container__carousel__button--next:hover {
  background-color: rgba(49, 232, 210, 0.8);
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.article__content_serv {
  display: flex;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 0.2vw;
  padding-bottom: 0.5vw;
  padding-left: 10vw;
  flex-wrap: nowrap;
  align-items: center;
}
.article__content_serv__container_serv {
  padding-top: 1vw;
  margin-top: 0.5vw;
  display: flex;
  padding-bottom: 3.5vw;
  justify-content: center;
  position: relative;
}
.article__content_serv__container_serv__item {
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.article__content_serv__container_serv__item__title-section {
  width: 50%; /* Ajusta el ancho del contenedor del texto */
  color: black;
  z-index: 22;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  margin-top: 3vw;
}
.article__content_serv__container_serv__item__title-section h1 {
  font-size: 2.2em;
  margin-top: 0.5vw;
  display: flex;
  align-items: center;
  color: black;
}
.article__content_serv__container_serv__item__title-section h3 {
  margin-top: 1vw;
  z-index: 10;
  font-size: 1.7em;
  text-align: left;
  justify-content: left;
  position: relative;
  align-items: center;
  color: black;
}
.article__content_serv__container_serv__item__title-section__info {
  position: relative;
  background-color: rgba(100, 200, 254, 0.7);
  transition: 0.6s ease;
  transform: translateY(-50%);
  width: 8vw;
  justify-content: left;
  color: #f0ffff;
  height: 2.5vw;
  font-weight: 900;
  font-size: 1.2em;
  bottom: 0;
  border: none;
  align-items: center;
  border-radius: 10px;
  justify-self: center;
  margin-top: 3vw;
  margin-left: 0.4vw;
}
.article__content_serv__container_serv__item__title-section__info:hover {
  background-color: rgba(180, 200, 250, 0.7);
}
.article__content_serv__container_serv__item__network {
  width: 50%; /* Ajusta el ancho del contenedor del texto */
  z-index: 20;
  flex-direction: column;
  display: flex;
  margin-left: 2vw;
  align-self: center;
  justify-content: left;
  justify-self: center;
}
.article__content_serv__container_serv__item__network img {
  align-self: center;
  flex-direction: column;
  height: auto;
  width: 30vw;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* Estilos específicos para la manipulación desde JavaScript */
.carousel-active {
  display: block;
}

.contenedor {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  font-family: "Poppins", sans-serif;
  background: rgb(7, 15, 40);
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  background-size: 200% 200%;
  /* Establecer el tamaño del degradado para que se repita */
  animation: Gradient 3s ease infinite;
  /* Añadir una animación para alternar los colores */
  transition: transform 0.3s ease;
  padding: 70px 0;
}
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: blue;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}
.bg-color {
  background-color: rgb(7, 15, 40);
}

.article02 {
  background-color: azure;
}

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2em;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.4em;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.montserrat-txt1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-head {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: azure;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 520;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}

@media only screen and (min-width: 1500px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 4em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.4em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.4em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.7em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 1.5vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    top: 27vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 1.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1.2em;
    width: 9vw;
    height: 4vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.5vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 2.4em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 5.5vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.1vw;
    /* Establecer el tamaño del degradado para que se repita */
    /* Añadir una animación para alternar los colores */
    /*@keyframes Gradient {

      0% {

        background-position: 0% 50%;

      }

      50% {

        background-position: 100% 50%;

      }

      100% {

        background-position: 0% 50%;

      }

    }*/
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.8em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 2.2em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.5em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2.2em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.7em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 8vw;
    justify-content: left;
    color: #f0ffff;
    height: 2.5vw;
    font-weight: 900;
    font-size: 1.2em;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 1499px) and (min-width: 1270px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1.1em;
    width: 11%;
    height: 4vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.5vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 2em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.1vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.8em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 2.2em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.5em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2.1em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.5em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 9vw;
    justify-content: left;
    color: #f0ffff;
    height: 3vw;
    font-weight: 700;
    font-size: 1.1em;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 1269px) and (min-width: 1234px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1em;
    width: 11%;
    height: 4vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.5vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 2em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.1vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.8em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 2.2em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.5em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2.1em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.5em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 9vw;
    justify-content: left;
    color: #f0ffff;
    height: 3vw;
    font-weight: 700;
    font-size: 1.1em;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 1233px) and (min-width: 1064px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1em;
    width: 12%;
    height: 4.5vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.5vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 2em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.7em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 2.1em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.5em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2.1em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.5em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 9vw;
    justify-content: left;
    color: #f0ffff;
    height: 3vw;
    font-weight: 700;
    font-size: 1.1em;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 1063px) and (min-width: 964px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2.4vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1.5em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1em;
    width: 14%;
    height: 4.5vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.7vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1.9em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7.5vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.7em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 2em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.4em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.4em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 12vw;
    justify-content: left;
    color: #f0ffff;
    height: 4vw;
    font-weight: 700;
    font-size: 1em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 963px) and (min-width: 805px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2.4vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1.5em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 1em;
    width: 14%;
    height: 4.5vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.7vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1.9em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7.8vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.5em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.8em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.25em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 2em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.4em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 14vw;
    justify-content: left;
    color: #f0ffff;
    height: 4vw;
    font-weight: 700;
    font-size: 1em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
/*Tamaño de pantalla para tablets*/
@media screen and (max-width: 804px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    list-style: none;
    margin: 2px;
    padding: 10px;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list {
    margin-right: 10px;
  }
  .cont-nav__nav-h__menu__list:last-child {
    margin-right: 5px;
  }
  .cont-nav__nav-h__menu__list__links {
    font-size: 1.2em;
    text-decoration: none;
    color: azure;
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 2.5vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 1.2em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.8em;
    width: 14%;
    height: 4.7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.5vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 10vw;
    left: 30vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1.8em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 7.8vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.1vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1.2em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 0.5vw;
    max-width: 100vw;
    position: relative;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    max-width: 100vw;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 65vw;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.8em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1.25em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 5vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.7em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.25em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 17vw;
    justify-content: left;
    color: #f0ffff;
    height: 4vw;
    font-weight: 700;
    font-size: 1em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: 25vw;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 659px) and (min-width: 565px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 1em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.7em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 8vw;
    left: 28vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1.5em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 1em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: left;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 100%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.5em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 4vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.5em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.1em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 18vw;
    justify-content: left;
    color: #f0ffff;
    height: 4vw;
    font-weight: 700;
    font-size: 0.9em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: 30vw;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 564px) and (min-width: 475px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 3.1em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.2em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
    color: white;
    font-size: 0.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.7em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 8vw;
    left: 28vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1.5em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 0.8em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: left;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .article__content__container__carousel__item__title-section {
    width: 40vw; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.5em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 1em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    width: 18vw;
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    width: 25vw;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__item__agile {
    display: none;
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 6vw;
    margin-right: 2vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.5em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1.1em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 20vw;
    justify-content: left;
    color: #f0ffff;
    height: 5vw;
    font-weight: 700;
    font-size: 0.8em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: 25vw;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
/* Celulares */
@media (max-width: 474px) and (min-width: 392px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 2.7em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.1em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 0.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.5em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 5vw;
    left: 18vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 0.7em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: center;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__title-section {
    width: 40vw; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.4em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 0.7em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    width: 18vw;
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 6vw;
    margin-right: 2vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.4em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 1em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 14vw;
    justify-content: left;
    color: #f0ffff;
    height: 4vw;
    font-weight: 700;
    font-size: 0.8em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 3.5vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 391px) and (min-width: 310px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 2.7em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 1.05em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 0.7em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.5em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 5vw;
    left: 18vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 1em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8.5vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 0.57em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: center;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__title-section {
    width: 40vw; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.4em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 1vw;
    font-size: 0.7em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    width: 18vw;
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 2vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 6vw;
    margin-right: 2vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 2vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.8vw;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.2em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 0.8em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 17vw;
    justify-content: left;
    color: #f0ffff;
    height: 5vw;
    font-weight: 700;
    font-size: 0.5em;
    padding: 0.2vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 4vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 309px) and (min-width: 272px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 2em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 0.8em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 0.5em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.4em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 5vw;
    left: 15vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 0.7em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8.7vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 0.5em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: center;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__title-section {
    width: 40vw; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.1em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 0.8vw;
    font-size: 0.7em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    width: 18vw;
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 3vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.3em;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 6vw;
    margin-right: 2vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 3vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.3em;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.1em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 0.7em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 19vw;
    justify-content: left;
    color: #f0ffff;
    height: 5vw;
    font-weight: 700;
    font-size: 0.5em;
    padding: 0.4vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 4vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}
@media (max-width: 271px) and (min-width: 220px) {
  .cont-nav {
    display: flex;
    width: 100%;
    height: auto;
  }
  .cont-nav__nav-h {
    display: flex;
    position: sticky;
    height: auto;
    width: 100%;
    background-color: rgb(7, 15, 40);
    display: flex;
    align-items: center;
  }
  .cont-nav__nav-h__logo {
    z-index: 2;
  }
  .cont-nav__nav-h__logo__design {
    height: 2em; /* Ajusta la altura del logo según tu necesidad */
    width: auto;
    padding: 0;
    margin: 0;
    float: left;
  }
  .cont-nav__nav-h__lk-title {
    text-decoration: none; /*titulo de la pagina*/
    border: none;
    background-color: rgb(7, 15, 40);
    color: white;
    font-size: 0.8em;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .cont-nav__nav-h__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; /* Ajusta la posición a la derecha */
    background-color: rgba(7, 15, 40, 0.2);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .cont-nav__nav-h__menu.active {
    display: block;
  }
  .cont-nav__nav-h__menu__list {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .cont-nav__nav-h__menu__list__links {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 0.8em;
  }
  .cont-nav__nav-h__menu__list__links:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .cont-nav__nav-h__btn {
    z-index: 7;
    position: relative;
    display: flex;
    margin-left: auto;
    margin-right: 1vw;
    border: none;
    background-color: transparent;
  }
  .cont-nav__nav-h__btn:hover {
    background-color: deepskyblue;
    transition: color 0.3s ease;
  }
  .cont-nav__nav-h .fa-bars {
    font-size: 1em;
  }
  .lb-box__layer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .lb-box__layer .img {
    width: 100%;
    height: 48vw;
    display: block;
    z-index: 90;
  }
  .lb-box__layer__interactive {
    background-color: rgba(7, 15, 40, 0.5);
    border: 1px solid rgb(150, 200, 255);
    border-radius: 0.5em;
    z-index: 93;
    position: absolute;
    flex-direction: column;
    width: 3vw;
    justify-content: center;
    align-items: center;
    left: 0;
    height: auto;
    bottom: 7vw;
    animation: moveLine 4s linear infinite, shine 0.5s ease-in-out infinite;
    /*@keyframes moveLine {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }*/
  }
  .lb-box__layer__interactive__link {
    margin-bottom: 1.2em;
    margin-top: 1.2em;
    color: white;
    font-size: 0.5em;
    font-weight: 200;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes shine {
    0% {
      box-shadow: 0 0 1.5px 1px rgba(255, 255, 255, 0.8);
    }
    100% {
      box-shadow: 0 0 2px 1.5px rgba(255, 255, 255, 0.8);
    }
  }
  .lb-box__layer__contact {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    text-align: center;
    background-color: rgb(100, 200, 254);
    font-size: 0.4em;
    width: 17%;
    height: 7vw;
    padding: 0.2vw;
    margin-right: 5vw;
    margin-bottom: 8vw;
    border: 1px;
    border-radius: 12px;
    z-index: 92;
    border: 1px;
    color: azure;
    animation: blink 0.8s infinite;
  }
  @keyframes blink {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .lb-box__layer__contact:hover {
    background-color: rgba(100, 200, 254, 0.7);
  }
  .lb-box__layer__whatsapp {
    display: flex;
    z-index: 90;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-image: url("../media/WhatsApp_icon.png");
    margin-right: 7vw;
    right: 0;
    bottom: 0;
    margin-bottom: 4vw;
    width: 2.7vw;
    border: 1vw;
    border-radius: 5vw;
    /* Establecer la sombra inicial */
    box-shadow: 0 0 0 rgba(0, 255, 0, 0); /* Inicialmente, sin sombra */
    /* Aplicar una animación para el efecto de halo */
    animation: halo 1.5s ease-in-out infinite;
  }
  @keyframes halo {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al principio */
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0); /* Sombras más grandes a la mitad */
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.8); /* Sin sombra al final */
    }
  }
  .lb-box__layer__whatsapp__icon {
    height: auto;
    width: 2.8vw;
  }
  .lb-box__quad-sup {
    position: absolute;
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    top: 5vw;
    left: 15vw;
    margin-right: 5vw;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    background-color: rgba(7, 15, 40, 0.1); /* Fondo blanco semitransparente */
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
    width: auto;
    border: none;
  }
  .lb-box__quad-sup__fx-z {
    display: flex;
    position: relative;
    font-size: 0.7em;
    font-family: "Open Sans", sans-serif, "Work Sans", sans-serif;
    justify-content: center;
    align-content: center;
    z-index: 4;
    color: white;
  }
  .box-article {
    display: flex;
    position: relative;
    z-index: 5;
  }
  .box-article__layer {
    position: relative;
    height: 8.7vw;
    width: 100%;
    background-color: rgb(7, 15, 40);
    padding: 1.7vw;
    justify-content: center;
    margin-bottom: 0.2vw;
  }
  .box-article__layer__txt {
    font-family: "Open Sans", sans-serif;
    font-family: "Work Sans", sans-serif;
    text-align: center;
    justify-self: center;
    align-items: center;
    color: azure;
    font-size: 0.5em;
  }
  .article__content {
    background-color: rgb(7, 15, 40);
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-top: 2vw;
    animation: Gradient 3s ease infinite;
    transition: transform 0.3s ease;
    padding-bottom: 0.5vw;
    border-bottom: 2px solid rgb(100, 200, 254);
  }
  .article__content__container {
    margin-top: 0.5vw;
    display: flex;
    padding-top: 1vw;
    position: relative;
    justify-content: center;
  }
  .article__content__container__carousel {
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: space-between; /* Cambia esta propiedad */
    width: 100%;
  }
  .article__content__container__carousel__item {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__title-section {
    width: 40vw; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
  }
  .article__content__container__carousel__item__title-section h1 {
    font-size: 1.1em;
    color: azure;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
  }
  .article__content__container__carousel__item__title-section h3 {
    color: azure;
    margin-top: 0.8vw;
    font-size: 0.7em;
    z-index: 10;
    text-align: left;
    justify-content: center;
    width: 38vw;
    position: relative;
    align-items: center;
  }
  .article__content__container__carousel__item__compliance {
    width: 18vw;
    padding-left: 1vw;
    z-index: 20;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .article__content__container__carousel__item__compliance img {
    align-items: center;
    flex-direction: column;
    height: auto;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  }
  .article__content__container__carousel__button--prev {
    z-index: 30;
    position: relative;
    transition: 0.6s ease;
    transform: translateY(-50%);
    margin-right: 4vw;
    height: auto;
    border: none;
    color: azure;
    width: 3vw;
    border-radius: 50%;
    text-align: center;
    top: 5%;
    font-size: 0.3em;
    font-weight: 200;
    cursor: pointer;
    background-color: rgba(50, 200, 250, 0.5);
    left: 0;
  }
  .article__content__container__carousel__button--prev:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  .article__content__container__carousel__button--next {
    z-index: 30;
    text-align: center;
    margin-left: 6vw;
    margin-right: 2vw;
    height: auto;
    position: relative;
    top: 5%;
    color: azure;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 3vw;
    background-color: rgba(50, 200, 250, 0.5); /* Fondo blanco semitransparente */
    border: none;
    font-size: 0.3em;
    font-weight: 200;
    cursor: pointer;
    right: 0;
  }
  .article__content__container__carousel__button--next:hover {
    background-color: rgba(50, 200, 250, 0.1);
  }
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .article__content_serv {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 0.2vw;
    padding-bottom: 0.5vw;
    padding-left: 10vw;
    flex-wrap: nowrap;
    align-items: center;
  }
  .article__content_serv__container_serv {
    padding-top: 1vw;
    margin-top: 0.5vw;
    display: flex;
    padding-bottom: 3.5vw;
    justify-content: center;
    position: relative;
  }
  .article__content_serv__container_serv__item {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
  .article__content_serv__container_serv__item__title-section {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    color: black;
    z-index: 22;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    margin-top: 3vw;
  }
  .article__content_serv__container_serv__item__title-section h1 {
    font-size: 1.1em;
    margin-top: 0.5vw;
    display: flex;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section h3 {
    margin-top: 1vw;
    z-index: 10;
    font-size: 0.7em;
    text-align: left;
    justify-content: left;
    position: relative;
    align-items: center;
    color: black;
  }
  .article__content_serv__container_serv__item__title-section__info {
    position: relative;
    background-color: rgba(100, 200, 254, 0.7);
    transition: 0.6s ease;
    transform: translateY(-50%);
    width: 19vw;
    justify-content: left;
    color: #f0ffff;
    height: 5vw;
    font-weight: 700;
    font-size: 0.5em;
    padding: 0.4vw;
    bottom: 0;
    border: none;
    align-items: center;
    border-radius: 10px;
    justify-self: center;
    margin-top: 4vw;
    margin-left: 0.4vw;
  }
  .article__content_serv__container_serv__item__title-section__info:hover {
    background-color: rgba(180, 200, 250, 0.7);
  }
  .article__content_serv__container_serv__item__network {
    width: 50%; /* Ajusta el ancho del contenedor del texto */
    z-index: 20;
    flex-direction: column;
    display: flex;
    margin-left: 2vw;
    align-self: center;
    justify-content: left;
    justify-self: center;
  }
  .article__content_serv__container_serv__item__network img {
    align-self: center;
    flex-direction: column;
    height: auto;
    width: 30vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  /* Estilos específicos para la manipulación desde JavaScript */
  .carousel-active {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
