@charset "UTF-8";
/*!
    Theme Name: Add Astra Theme
    Theme URI: pending
    Description: Starter theme great
    Version: 1.0.0
    Author: Guillermo Juarez
    Author URI: pending
    Tags: Gulp

    License: MIT
    License URI: http://opensource.org/licenses/mit-license.php
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat|Itim");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*max width of the document*/
/*width of the containers on mobile*/
/*
base styles
*/
@font-face {
  font-family: "Futura";
  src: url("assets/css/fonts/Futura/FuturaStd-Bold.otf"); /* IE compat Modes */
  src: url("assets/css/fonts/Futura/FuturaStd-Heavy.otf");
  src: url("assets/css/fonts/Futura/FuturaStd-Medium.otf");
}
/***************************
***For widths of document
***************************/
/*for max widths*/
.mxw-narrow {
  max-width: 1110px;
}

.mxw-full {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* Reset básico para el navegador */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
  font-family: "Futura", "Ubuntu", "IBM Plex Sans", Arial, sans-serif !important; /* Fuente predeterminada */
}

#background-page {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

/* Estilo básico para el cuerpo de la página */
body {
  background: #030011;
  overflow-x: hidden;
  color: #f2f2f2; /* Color de texto */
  transition: overflow 0.2s ease;
}
body.unshow {
  overflow: hidden;
}

/* Contenedor principal */
.container {
  width: 80%; /* Ancho del contenedor */
  margin: auto; /* Centrar el contenedor */
  overflow: hidden; /* Controlar el desbordamiento */
}

#content {
  opacity: 0;
}

/* Estilo para los párrafos */
p {
  margin-bottom: 15px;
}

/* Estilos básicos para la lista */
ul {
  list-style: none; /* Eliminar viñetas */
  padding: 0;
}

/* Estilo básico para los elementos de la lista */
li {
  margin-bottom: 5px;
}

/* Estilo para enlaces */
a {
  color: #ffffff; /* Color de enlace predeterminado */
  text-decoration: none; /* Eliminar subrayado */
}

.line {
  padding-right: 10px;
  overflow-y: hidden;
}

.z-0 {
  z-index: -5;
}

.char {
  transform: translateY(3em);
  transition: transform 0.5s;
}

.icon {
  width: 10em;
  height: 10em;
  background-color: #2196f3;
}
.icon::before {
  content: "";
  position: absolute;
  width: 10em;
  height: 10em;
  background-color: #063254;
}

.l-5 {
  left: -6em;
}

/* Estilos para Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Estilos para Firefox */
body {
  scrollbar-width: thin;
  scrollbar-color: #b3b3b3 #f5f5f5;
}

/* Estilos para Internet Explorer y Edge */
body {
  -ms-overflow-style: none;
}

body::-ms-scrollbar {
  width: 8px;
}

body::-ms-scrollbar-track {
  background: #f5f5f5;
}

body::-ms-scrollbar-thumb {
  background: #b3b3b3;
  border-radius: 10px;
}

body::-ms-scrollbar-thumb:hover {
  background: #888;
}

.color-black {
  color: #151515;
}

.galaxy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.galaxy .star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: transform 0.1s ease-out;
  animation: animStar 150s linear infinte;
}
.galaxy .nebula {
  position: absolute;
  max-width: 500px;
  bottom: 0;
}
.galaxy .nebula:nth-child(1) {
  left: 0;
  bottom: 0;
  opacity: 0.2;
}
.galaxy .nebula:nth-child(2) {
  left: 30%;
  top: 20%;
  opacity: 0.1;
}
.galaxy .nebula:nth-child(3) {
  right: 0;
  top: 30%;
  opacity: 0.3;
}

.cometa {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #fff;
  background: linear-gradient(-45deg, #5F91FF, rgba(0, 0, 255, 0));
  border-radius: 999px;
  filter: drop-shadow(0 0 6px #699BFF);
  animation: tail 3s ease-in-out infinite, falling 3s ease-in-out infinite;
}
@keyframes tail {
  0% {
    width: 0px;
    transform: rotate(45deg);
  }
  30% {
    width: 100px;
    transform: rotate(45deg);
  }
  100% {
    width: 0px;
    transform: rotate(45deg);
  }
}
@keyframes falling {
  0% {
    transform: translate(0, 0) rotate(45deg);
  }
  100% {
    transform: translate(300px, 300px) rotate(45deg);
  }
}

#preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4em;
}

#preloader-logo img {
  height: auto;
  width: 22vw;
  object-fit: cover;
}

/* HTML: <div class="loader"></div> */
.loader {
  height: 9px;
  width: 10vw;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: var(--c), var(--c), var(--c), var(--c);
  background-size: 26% 3px;
  animation: l6 1s infinite;
}

@keyframes l6 {
  0%, 70%, 100% {
    background-position: 0% 50%, 33.3333333333% 50%, 66.6666666667% 50%, 100% 50%;
  }
  23.33% {
    background-position: 0% 0, 33.3333333333% 100%, 66.6666666667% 0, 100% 100%;
  }
  46.67% {
    background-position: 33.3333333333% 0, 0% 100%, 100% 0, 66.6666666667% 100%;
  }
  69.99% {
    background-position: 33.3333333333% 50%, 0% 50%, 100% 50%, 66.6666666667% 50%;
  }
}
@keyframes labelUp {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shockwaveJump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(0.98);
  }
  55% {
    transform: scale(1.02);
  }
  60% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shockwave {
  0% {
    box-shadow: 0 0 4px rgba(231, 231, 231, 0.836), inset 0 0 1px rgba(210, 210, 210, 0.929);
  }
  100% {
    box-shadow: 0 0 160px rgba(255, 255, 255, 0.975), inset 0 0 30px rgba(255, 255, 255, 0.849);
  }
}
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

.contact-form-container .wpcf7-form {
  display: flex;
  flex-direction: column;
}

.contact-form-container .wpcf7-form p {
  margin-bottom: 10px;
}

.contact-form-container .wpcf7-form input,
.contact-form-container .wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.contact-form-container .wpcf7-form input[type=submit] {
  background-color: #0073aa;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
}

.contact-form-container .wpcf7-form input[type=submit]:hover {
  background-color: #005a87;
}

/*
Modules styles
*/
.flex-normal {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 650px) {
  .flex-normal {
    flex-direction: row;
  }
}

.flex-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 5px;
}
.flex-horizontal::-webkit-scrollbar {
  width: 0 !important;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  display: none;
}
@media only screen and (min-width: 650px) {
  .flex-horizontal {
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
  }
}
.flex-horizontal > div {
  flex: 0 0 auto;
}
@media only screen and (min-width: 650px) {
  .flex-horizontal > div {
    flex: auto;
  }
}
.flex-horizontal > div:last-child {
  width: 1px;
  opacity: 0;
}
@media only screen and (min-width: 650px) {
  .flex-horizontal > div:last-child {
    display: none;
  }
}

.l-blog {
  margin: 0 5%;
}
.l-blog a {
  color: black;
}
.l-blog .content-area {
  margin: 5vh 0;
}
.l-blog p {
  margin-bottom: 1em;
  line-height: 1.5;
}
.l-blog h3 {
  font-size: 2em;
}
.l-blog ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1em;
}
.l-blog ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 1em;
}
.l-blog h1 {
  font-size: 2.5rem;
}
.l-blog h2 {
  font-size: 2rem;
}
.l-blog h3 {
  font-size: 1.75rem;
}
.l-blog h4 {
  font-size: 1.5rem;
}
.l-blog h5 {
  font-size: 1.25rem;
}
.l-blog h6 {
  font-size: 1rem;
}
.l-blog cite {
  font-style: italic;
}
.l-blog em {
  font-style: italic;
}
.l-blog strong {
  font-weight: bold;
}

.l-nav-blog .l-header {
  background-color: #080414;
  position: initial;
}

.l-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.l-card-container::after {
  content: "";
  width: calc(33.333% - 16px);
  min-width: 0;
}

.m-card {
  width: calc(33.333% - 16px);
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.m-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.m-card .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-card .content {
  padding: 16px;
}
.m-card .content a {
  margin: 2em;
  font-size: 1.2em;
  margin: 0;
  text-align: center;
}

.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.article .article-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.article .article-header h1,
.article .article-header h2,
.article .article-header h3,
.article .article-header h4,
.article .article-header h5,
.article .article-header h6 {
  line-height: 1.2;
  margin: 0;
  padding: 0 10px;
  color: #333;
}
.article .article-header .image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.article .entry-content {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}
.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 5vh 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero .hero-content {
  text-align: center;
  color: white;
  z-index: 3;
}
.hero .hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.hero .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero .hero-content .m-btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content p {
    font-size: 1.2rem;
  }
  .hero .hero-content .btn {
    padding: 0.8rem 1.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  img {
    height: 4em;
    width: 4em;
  }
  video {
    width: 90%;
    height: auto;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: rgb(3, 0, 17);
    background: linear-gradient(180deg, rgb(3, 0, 17) 10%, rgba(3, 0, 17, 0.5) 55%, rgba(255, 255, 255, 0) 100%);
  }
  .l-nav {
    position: relative;
    width: 100%;
    display: flex;
    padding: 5px 10px;
    gap: 10px;
    margin: 5%;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .l-nav__logo {
    display: none;
  }
  .l-nav__logo--movil {
    position: relative;
    height: 3em;
    width: auto;
  }
  .l-nav__list {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -100;
    top: 0;
    right: -100px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.892);
    padding: 4em 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 40px;
    transition: all 0.3s ease-in;
  }
  .l-nav__list.active {
    opacity: 1;
    z-index: 1;
    right: 0px;
    pointer-events: all;
  }
  .l-nav.scrolled {
    background-color: rgba(0, 0, 0, 0.926);
  }
  .l-slider {
    margin: 0 5%;
    padding: 0;
  }
  .l-sectionWrapper {
    position: relative;
    top: 6.5em;
  }
  .l-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .l-content {
    width: 100%;
    text-wrap: wrap;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    z-index: 2;
    position: relative;
  }
  .l-content--reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-flex-row {
    display: flex;
    width: 100%;
    gap: 1em;
  }
  .l-vertical-slider {
    display: flex;
    width: fit-content;
    gap: 5px;
    padding: 60px 0;
  }
  .l-vertical-slider__column {
    display: flex;
    gap: 5px;
  }
  .l-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-display-n {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .l-display-n {
    display: unset !important;
  }
}
@media only screen and (max-width: 1024px) {
  .l-display-n-desk {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .l-display-n-desk {
    display: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .l-display-mobile {
    display: flex;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .l-display-mobile {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .l-footer {
    height: 90vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .l-footer__content {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  .l-footer__content__title {
    font-size: 1.3em;
  }
  .l-footer__content__icons {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    height: auto;
  }
  .l-footer__content__icons li {
    width: 60px;
    height: auto;
  }
  .l-footer__foot__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .l-footer__foot__list__item {
    border-right: 1px solid white;
    padding: 0 20px;
    text-align: center;
    font-size: 0.8em;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-footer__foot__list__item:first-child {
    border-left: none;
  }
  .l-footer__foot__list__item:last-child {
    border-right: none;
  }
  .l-customers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    column-gap: 30px;
    padding-left: 90px;
  }
  .l-customers figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .l-customers figure .m-cellphone {
    width: 45vw;
    height: auto;
  }
  .l-slider-customers {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .l-slider-customers {
    position: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .l-first-section-mobile {
    padding: 18vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
  }
  .l-first-section-mobile .l-content {
    text-align: center;
  }
  .l-first-section-mobile .m-subtitle {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .l-first-section-mobile {
    height: unset;
  }
  .l-first-section-mobile .l-content {
    text-align: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .l-first-section-mobile--about-us {
    padding: 20vh 0;
  }
  .l-first-section-mobile--about-us .l-content > div {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    text-align: center;
  }
  .l-first-section-mobile--services {
    padding: 20vh 0;
  }
  .l-first-section-mobile--services .m-subtitle {
    padding: 30px 0;
    font-size: 1.2em;
  }
  .l-third-section-mobile {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-third-section-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background: rgb(0, 0, 0);
    z-index: 0;
  }
  .l-third-section-mobile--about-us {
    text-align: center;
  }
  .l-third-section-mobile--about-us img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid white;
  }
  .l-third-section-mobile--services .m-bg-white {
    row-gap: 50px;
    display: flex;
    flex-direction: column;
  }
  .l-fourth-section-mobile {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-fourth-section-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 0;
  }
  .l-fourth-section-mobile--about-us {
    overflow-x: scroll;
    padding: 30px 0 20px 610px;
    margin-bottom: 60px;
  }
  .l-fourth-section-mobile--about-us .l-grid {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 50px;
  }
  .l-fifth-section-mobile {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-fifth-section-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 0;
  }
  .l-fifth-section-mobile--about-us {
    padding: 60px 0 0 0;
  }
  .l-fifth-section-mobile--about-us .m-title {
    padding-bottom: 30px;
  }
  .l-fifth-section-mobile--about-us #valores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 28px;
    padding: 10px 5px;
  }
  .l-sixth-section-mobile {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-sixth-section-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 0;
  }
  .l-sixth-section-mobile h2 {
    margin-bottom: 60px;
  }
  .l-sixth-section-mobile button {
    margin-bottom: 60px;
  }
  .l-seven-section-mobile {
    padding: 60px 0;
  }
  .l-seven-section-mobile hr {
    margin-bottom: 30px;
  }
  .l-seven-section-mobile--about-us {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-seven-section-mobile--about-us::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 0;
  }
  .l-seven-section-mobile--about-us .m-subtitle {
    text-align: center;
    padding: 30px 0;
  }
  .l-team {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    column-gap: 20px;
  }
  .l-eight-section-mobile {
    position: relative;
    background-color: black;
    padding: 60px 0;
  }
  .l-eight-section-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: black;
    z-index: 0;
  }
  .l-eight-section-mobile--about-us .m-card-character {
    min-height: 90px;
  }
  .l-eight-section-mobile--about-us .m-subtitle {
    padding: 30px 0;
    text-align: center;
  }
  .m-hamburguer-menu {
    position: relative;
    height: 1.2em;
    width: 1.6em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 100;
  }
  .m-hamburguer-menu__line {
    height: 3px;
    background-color: white;
    width: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease-in, width 0.3s ease-in, color 0.3s ease-in;
  }
  .m-hamburguer-menu:hover .m-hamburguer-menu__line {
    width: 100%;
  }
  .m-hamburguer-menu.active .m-hamburguer-menu__line--left {
    transform: translateY(0.5em) rotate(-45deg);
    width: 100%;
  }
  .m-hamburguer-menu.active .m-hamburguer-menu__line--center {
    transform: rotate(45deg);
  }
  .m-hamburguer-menu.active .m-hamburguer-menu__line--right {
    width: 0;
  }
  .m-list-item {
    font-size: 1.2em;
    color: white;
  }
  .m-title {
    position: relative;
    width: 100%;
    font-size: 1.6em;
    line-height: 1.2em;
    font-weight: 600;
    text-align: center;
  }
  .m-title .line {
    padding: 0;
  }
  .m-subtitle {
    width: 100%;
    font-size: 1.2em;
  }
  .m-btn {
    width: 100%;
    padding: 20px 10px;
    background-color: #27c1c1;
    color: white;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-btn--services {
    background-color: black;
    border: 2px solid #27c1c1;
    padding: 10px 8px;
    font-size: 0.9em;
  }
  .m-scroll-image {
    height: 30vh;
    aspect-ratio: 10/16;
    width: auto !important;
    object-fit: cover;
    border-radius: 5px;
  }
  .m-svg-hexagon {
    display: none;
  }
  .m-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    color: black;
    -webkit-box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    background-color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-benefits .m-icon-benefits {
    padding: 10px 10px 10px 30px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
  }
  .m-benefits .m-icon-benefits__icon {
    width: 4.5em;
    height: 4.5em;
  }
  .m-benefits .l-icons__item__description {
    padding: 10px 20px;
  }
  .m-benefits .l-icons__item__description h1, .m-benefits .l-icons__item__description h2 {
    font-weight: bold;
    padding-bottom: 5px;
  }
  .m-card-character {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    min-height: 140px;
    color: black;
    -webkit-box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    box-shadow: 0px -10px 49px -7px rgba(0, 0, 0, 0.44);
    background-color: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-card-character__figure {
    padding: 10px 10px 10px 20px;
    width: 5.5em;
    height: 5.5em;
  }
  .m-card-character__content {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .m-card-character__content__title {
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 1.1em;
  }
  .m-card-character__content__text {
    padding-bottom: 0;
  }
  .m-logo-AA {
    width: 60%;
    height: auto;
  }
  .m-img-big__img {
    width: 100%;
    height: auto;
  }
  hr {
    margin-top: 0;
    background-color: rgba(128, 128, 128, 0.5);
    height: 3px;
    border: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-card-service {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 10px;
    padding: 15px 10px 30px 10px;
    overflow: hidden;
    border-bottom: 1px solid gray;
  }
  .m-card-service__icon {
    transform: scale(3.5);
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
    position: relative;
    right: -40px;
    z-index: 0;
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
  }
  .m-card-service__content {
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .m-card-service__content button {
    width: 90%;
  }
  .m-card-service__content__title {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .m-cellphone-slider {
    width: min-content;
  }
  .m-cellphone-slider__bg {
    width: 65vw;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .m-cellphone-slider {
    width: unset;
  }
  .m-cellphone-slider_bg {
    width: unset;
    height: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .m-slider-description {
    position: absolute;
    top: 30%;
    padding: 0 14%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .m-slider-description {
    position: unset;
    top: unset;
    padding: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .m-logo-mobile {
    display: flex;
    padding: 30px 0;
    width: 70%;
    margin: 0 auto;
  }
  .m-logo-mobile svg path {
    fill: white;
    stroke: white;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .m-logo-mobile {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .m-divider {
    background-color: white;
    width: 80%;
    margin: 60px auto;
  }
  .m-divider.first {
    margin: 0 auto 60px auto;
  }
  .m-divider.last {
    margin: 40px auto 0 auto;
  }
  .m-divider::before {
    content: "";
    width: 100vw;
    height: 100%;
    background-color: black;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .m-divider {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .m-card-num {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 250px;
    height: 150px;
    padding: 10px 10px 10px 40px;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-card-num__number {
    position: absolute;
    left: -15%;
    font-size: 8em;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
  }
  .m-info-img {
    width: 100%;
    height: auto;
    padding-bottom: 60px;
  }
  .m-info-img__img {
    width: inherit;
    height: inherit;
    position: relative;
    z-index: -1;
  }
  .m-info-img__sign {
    background-color: white;
    border: 1px solid black;
    color: black;
    padding: 20px;
    width: 90%;
    margin: -30px auto 0 auto;
  }
  .m-value {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    color: black;
    width: 40vw;
    row-gap: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-value__icon {
    width: 70%;
    height: auto;
    padding: 10px;
  }
  .m-value__title {
    font-size: 1.1em;
    font-weight: bold;
  }
  .m-value__info {
    text-align: center;
  }
  .m-card-team {
    width: 60vw;
    height: auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-card-team__foto {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 0px;
  }
  .m-card-team__description {
    width: inherit;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px 30px;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
  }
  .m-card-team__description__name {
    font-size: 1.5em;
    padding-bottom: 10px;
    border-bottom: 1px solid lightgray;
  }
  .m-card-team__description__text {
    padding-top: 10px;
  }
  .m-hexacontainer-mobile-version {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-hexacontainer-mobile-version__hexagon {
    grid-column: 2;
    margin: 0 auto;
    width: 5em;
    height: auto;
  }
  .m-hexacontainer-mobile-version__line {
    display: flex;
    height: 50px;
    margin: 0 auto;
  }
  .m-hexacontainer-mobile-version__data {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.1em;
    font-weight: bold;
  }
  .m-hexacontainer-mobile-version__data .m-hexacontainer-mobile-version__data__subtitle {
    margin: 0;
  }
  .m-hexacontainer-mobile-version__card {
    grid-column: 3;
    grid-row: 1;
    text-align: end;
  }
  .m-hexacontainer-mobile-version__card__text {
    margin: 0;
  }
  .m-hexacontainer-mobile-version:nth-child(even) .m-hexacontainer-mobile-version__data {
    grid-column: 3;
    grid-row: 1;
    text-align: end;
  }
  .m-hexacontainer-mobile-version:nth-child(even) .m-hexacontainer-mobile-version__card {
    grid-column: 1;
    grid-row: 1;
    text-align: start;
  }
  .m-service {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .m-service--content {
    display: flex;
    flex-direction: column;
  }
  .m-service--content .m-div-hexagon__img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid white;
  }
  .m-service--content .m-title {
    font-size: 1.2em;
    font-weight: bold;
    padding: 20px 0;
  }
  .m-service--content .m-subtitle {
    font-size: 1.1em;
    padding-bottom: 20px;
  }
  .m-service--content .m-btn {
    background-color: white;
    border: 1px solid white;
    color: black;
    margin-top: 20px;
  }
  .pt-15 {
    padding-top: 15px;
  }
  .pb-30 {
    padding-bottom: 30px;
  }
  .p-5 {
    padding: 5px;
  }
  .p-60 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .p-60 {
    padding: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .pb-0 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .pb-0 {
    padding: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .pt-0 {
    padding-top: 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .pt-0 {
    padding: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .mx-10 {
    margin: 0 10%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .mx-10 {
    margin: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .mb-30 {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .mb-30 {
    margin-bottom: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .mb-60 {
    margin-bottom: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .my-60 {
    margin: 0 0 60px 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .my-60 {
    margin: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .my-30 {
    margin: 60px 0;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .my-30 {
    margin: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .g-0 {
    gap: 0;
  }
  .bg-white {
    background-color: white;
  }
  .bg-blue5 {
    background-color: #6d96ca;
  }
  .color-black {
    color: black;
  }
  .fill-black svg {
    fill: black !important;
  }
  .br-30 {
    border: 2px solid white;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
  }
  .br-nan {
    border: none;
  }
  .w-fc {
    width: fit-content;
  }
  .w-100 {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .w-100 {
    width: unset;
    height: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .t-center {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1024px) {
  .t-center {
    text-align: unset;
  }
}
@media only screen and (max-width: 1024px) {
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
  }
  .modal-content {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    position: relative;
    overflow-y: auto;
  }
  .modal-content h1 {
    text-align: center;
    font-size: 1.3em;
    padding: 20px 0;
  }
  .modal .close {
    position: fixed;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 3.5em;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
  }
  .modal .slider {
    display: flex;
    height: auto;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .modal .slider {
    max-height: 65vh;
  }
}
@media only screen and (max-width: 1024px) {
  .modal .slider_logo {
    display: flex;
    position: fixed;
    width: 100%;
    height: 250px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    margin: 0;
  }
  .modal .slider_logo img {
    width: 50%;
    height: auto;
    margin: auto;
  }
  .modal .slider__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
  }
  .modal .slider__container::after {
    content: "";
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
  }
  .modal .slider__item {
    background-color: white;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    height: 100%;
    max-height: 120px;
    border-radius: 7px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .modal .slider__item {
    border-radius: 10px;
    max-height: 300px;
    flex: 1 1 calc(50% - 1em);
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .modal .slider__item-img-wrap {
    display: flex;
    flex: 2;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .modal .slider__item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .modal .slider__item-img-wrap {
    flex: initial;
    height: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .modal .slider__item-content {
    display: flex;
    flex: 1;
    width: 100%;
    flex-direction: column;
    margin: 0.5em;
    color: black;
    text-align: start;
    justify-content: space-between;
  }
  .modal .slider__item-content h1 {
    color: black;
    text-align: start;
    font-size: 1em;
    padding: 0;
    font-weight: bold;
  }
  .modal .slider__item-content h1 .type {
    color: #969696;
  }
  .modal .slider__item-content p {
    margin: 1em 0;
    font-size: 0.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .modal .slider__item-content {
    margin: 0;
    padding: 1em;
  }
  .modal .slider__item-content h1 {
    display: inline-flex;
  }
  .modal .slider__item-content p {
    margin: 0.5em 0;
    font-size: 1em;
    -webkit-line-clamp: 2;
  }
}
@media only screen and (max-width: 1024px) {
  .modal .slider__item:last-child {
    margin-bottom: 0;
  }
  .modal button {
    display: flex;
    padding: 5px;
    white-space: wrap !important;
    font-size: 10px;
    border-radius: 7px;
    border: none;
    width: auto;
    margin: 0 !important;
  }
  .modal .filter-bar {
    width: 100%;
    position: initial;
    display: flex;
    flex-wrap: wrap !important;
    row-gap: 10px;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .modal .filter-bar .filter-btn {
    font-weight: bold;
    font-size: 12px;
    padding: 8px;
    width: calc(33.33% - 6.6px);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .modal .filter-bar .filter-btn {
    width: calc(16% - 6.6px);
  }
}
@media only screen and (max-width: 1024px) {
  .modal .filter-bar .filter-btn.active {
    background-color: #27c1c1;
    color: white !important;
  }
  .modal .js-item.hidden {
    display: none;
  }
  .js-item.hidden {
    display: none;
  }
  #content {
    transition: opacity 1s;
  }
  .l-container--black {
    margin-top: 250px;
    height: auto;
    min-height: calc(100vh - 250px);
    background-color: rgb(29, 29, 29);
    padding: 0 20px;
  }
  .placeholders,
  .slider,
  .circle-cursor,
  .page-overlay {
    display: none;
  }
  .js-slider-section .modal {
    display: flex !important;
    margin-top: 100px;
    z-index: 1;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .js-slider-section .modal {
    height: calc(100vh - 120px);
    margin-top: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .js-slider-section .modal .close {
    display: none;
  }
  .js-slider-section .l-container--black {
    margin-top: 200px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 650px) {
  .js-slider-section .l-container--black {
    min-height: calc(100vh + 420px);
  }
}
@media only screen and (max-width: 1024px) {
  .js-slider-section .slider_logo {
    top: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  /*
  Main files where load all the rest files
  */
  .l-flex-column {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    position: relative;
  }
  .l-flex-column--center {
    align-items: center;
  }
  .l-flex-row {
    width: fit-content;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .l-flex-row--right {
    justify-content: flex-end;
  }
  .l-flex-row--left {
    justify-content: flex-start;
  }
  .l-flex-row--vw80 {
    width: 80vw;
  }
  .l-flex-row--vw80 h1 {
    width: fit-content;
    max-width: 100%;
  }
  .l-column {
    display: flex;
    flex-direction: column;
  }
  .l-left-1 {
    position: relative;
    left: -1px;
  }
  .l-right {
    right: -1px;
  }
  .l-grid {
    display: grid;
    gap: 0;
  }
  .l-grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .l-vw-40 {
    width: 40vw;
  }
  .l-vw-55 {
    width: 55vw;
  }
  .l-slider {
    position: relative;
    display: flex;
    width: fit-content;
    height: 100vh;
    overflow: hidden;
    box-sizing: content-box;
  }
  .l-team {
    display: flex;
    flex-direction: row;
    gap: 3em;
  }
  .l-header {
    position: fixed;
    height: 5em;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
  }
  .l-nav {
    background-color: rgba(0, 0, 0, 0.2901960784);
    position: relative;
    width: 100%;
    padding: 0.5em 4em;
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
  }
  .l-nav__list {
    display: flex;
    gap: 1em;
    align-items: center;
  }
  /*
  Modules styles
  */
  /* http://meyerweb.com/eric/tools/css/reset/ 
     v2.0 | 20110126
     License: none (public domain)
  */
  /* HTML5 display-role reset for older browsers */
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .l-nav__list {
    gap: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .l-nav__logo--movil {
    display: none;
  }
  .l-vertical-slider {
    display: flex;
    align-items: start;
    align-self: baseline;
    gap: 2em;
    z-index: 2;
  }
  .l-vertical-slider__column {
    display: flex;
    gap: 2em;
    flex-direction: column;
  }
  .l-vertical-slider__column--2 {
    transform: translateY(-27vh);
  }
  .l-section {
    position: relative;
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .l-section--left {
    left: -6em;
    z-index: -1;
  }
  .l-section__scroll-bg {
    position: absolute;
    right: -1px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
  }
  .l-section__content {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .l-label {
    width: fit-content;
    max-width: 1200px;
  }
  .l-label--left {
    align-items: flex-start;
  }
  .l-label--40 {
    width: 40em;
  }
  .l-label--50 {
    width: 50em;
  }
  .l-label--55 {
    width: 55vw;
  }
  .l-icons {
    height: 70%;
    aspect-ratio: 18/8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 2em;
  }
  .l-icons__item {
    position: relative;
    cursor: pointer;
    z-index: 1;
  }
  .l-icons__item:hover {
    z-index: 2;
  }
  .l-icons__item:hover .l-icons__item__description {
    opacity: 1;
  }
  .l-icons__item__description {
    position: absolute;
    width: 18vw;
    min-height: 10vh;
    height: fit-content;
    background-color: #0a0c14;
    bottom: -4em;
    right: 0;
    transform: translateX(50%);
    padding: 1em 1.2em;
    box-shadow: 1px 1px 5px #0a0c14;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
  .l-icons__item__description h3 {
    font-size: 1.23em;
    font-weight: 500;
  }
  .l-icons__item__description p {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.2em;
  }
  .l-icons > :nth-child(1) {
    bottom: 35%;
  }
  .l-icons > :nth-child(2) {
    top: 20%;
  }
  .l-icons > :nth-child(3) {
    bottom: 15%;
  }
  .l-icons > :nth-child(4) {
    top: 35%;
  }
  .l-icons > :nth-child(5) {
    bottom: 25%;
  }
  .l-icons > :nth-child(6) {
    top: 10%;
  }
  .l-hexagons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15em;
    position: relative;
    padding-right: 2em;
  }
  .l-hexagons > div:nth-child(even) {
    flex-direction: column-reverse;
  }
  .l-hexagons-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .l-hexagons-bg > * {
    position: absolute;
  }
  .l-hexagons-bg > :nth-child(1) {
    height: 90%;
    bottom: -10%;
    left: -10%;
    transform: rotate(50deg);
  }
  .l-hexagons-bg > :nth-child(2) {
    height: 50%;
    top: -10%;
    right: 0;
    transform: rotate(50deg);
  }
  .l-hexagons-bg > :nth-child(3) {
    height: 40%;
    top: -14%;
    left: 5%;
    transform: rotate(15deg);
  }
  .l-hexagons-bg > :nth-child(4) {
    height: 45%;
    bottom: -10%;
    right: 0;
    transform: rotate(15deg);
  }
  .l-vertical-labels {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1em;
    color: #063254;
    font-style: italic;
    transform: rotate(180deg);
    position: relative;
    text-orientation: mixed;
    writing-mode: vertical-rl; /* "rl" significa de derecha a izquierda, "lr" sería de izquierda a derecha */
  }
  .l-vertical-labels--white {
    color: white;
  }
  .l-customers {
    display: flex;
    align-items: center;
    gap: 3em;
    position: relative;
  }
  .l-customers__column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3em;
  }
  .l-customers__column figure {
    margin: 0;
  }
  .l-slider-customers {
    position: relative;
    display: flex;
    align-self: flex-end;
    height: fit-content;
    align-items: end;
    z-index: 1;
  }
  .l-content {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 5em;
    height: 100%;
    width: fit-content;
  }
  .l-content--white {
    position: relative;
    background-color: white;
    background-image: url("assets/images/jpg/bg-hex.jpg;");
    background-size: cover;
    background-repeat: repeat;
    height: 100%;
    width: fit-content;
    left: -1px;
  }
  .l-content--diagonal {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
    backdrop-filter: blur(16px) saturate(180%);
    filter: drop-shadow(0 30px 10px rgb(255, 0, 0));
  }
  .l-doubleHex {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-doubleHex--center {
    left: 40%;
  }
  .l-doubleHex .m-svg-hexagon {
    position: absolute;
    left: 0;
    bottom: -4em;
    transform: translateX(-60%) rotate(30deg);
    z-index: 10;
  }
  .l-doubleHex :nth-child(1) {
    height: 40vh;
  }
  .l-doubleHex :nth-child(2) {
    height: 28vh;
    transform: translateX(-120%) rotate(30deg);
  }
  .l-characters {
    width: 80vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .l-characters {
    width: 50vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .l-characters {
    width: 45vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .l-characters {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1024px) {
  .l-characters--space {
    align-items: baseline;
  }
  .l-questions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4em;
    min-width: 40vw;
    box-sizing: border-box !important;
    z-index: 10;
    color: white;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .l-questions {
    width: 40em;
  }
}
@media only screen and (min-width: 1024px) {
  .l-questions__title {
    font-size: 2.2em;
    font-weight: 500;
    font-style: italic;
  }
  .l-questions.black {
    color: #242424;
  }
  .l-grid {
    position: relative;
    display: grid;
    width: 100%;
  }
  .l-grid--two {
    grid-template-columns: 1fr 1fr;
    column-gap: 3em;
  }
  .l-cards {
    position: relative;
    z-index: 2;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4em;
  }
  .l-cards--zigzag > :nth-child(odd) {
    transform: translateY(-2em);
  }
  .l-cards--zigzag > :nth-child(even) {
    transform: translateY(2em);
  }
  .l-cards--helps > :nth-child(odd) {
    transform: translateY(-4em);
  }
  .l-cards--helps > :nth-child(even) {
    transform: translateY(2em);
  }
  .l-little-hexagons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .l-little-hexagons > :nth-child(1) {
    bottom: 22%;
    left: 16%;
    background-color: #003785;
  }
  .l-little-hexagons > :nth-child(2) {
    top: 12%;
    left: 40%;
    background-color: #5ab507;
    width: 48px;
    transform: rotate(30deg);
  }
  .l-little-hexagons > :nth-child(3) {
    bottom: -1%;
    left: 79%;
    background-color: #efb810;
    transform: rotate(30deg);
  }
  .l-little-hexagons--2 > :nth-child(1) {
    top: 0;
    bottom: auto;
    transform: rotate(30deg);
    left: -16%;
    background-color: #efb810;
  }
  .l-little-hexagons--2 > :nth-child(2) {
    right: -30%;
    width: 30px;
    transform: rotate(0);
    left: auto;
    background-color: #5ccb5f;
  }
  .l-little-hexagons--2 > :nth-child(3) {
    bottom: 25%;
    left: auto;
    right: -18%;
    width: 65px;
    background-color: #2196f3;
  }
  .l-little-hexagons--3 > :nth-child(1) {
    bottom: 25%;
    top: auto;
    transform: rotate(30deg);
    left: 20%;
    background-color: #009cca;
  }
  .l-little-hexagons--3 > :nth-child(2) {
    right: auto;
    bottom: 10%;
    left: 52%;
    width: 100px;
    height: 88px;
    transform: rotate(30deg);
    background-color: #e5097f;
  }
  .l-little-hexagons--3 > :nth-child(3) {
    top: 10%;
    left: 70%;
    right: auto;
    width: 50px;
    height: 45px;
    transform: rotate(30deg);
    background-color: #efb810;
  }
  .l-little-hexagons--3 > :nth-child(4) {
    bottom: 5%;
    left: auto;
    right: 15%;
    width: 60px;
    transform: rotate(30deg);
    background-color: #5ccb5f;
  }
  .l-little-hexagons--3 > :nth-child(5) {
    top: 10%;
    left: auto;
    right: 5%;
    width: 30px;
    background-color: #c2710e;
  }
  .l-footer {
    position: relative;
    width: fit-content;
    height: 100%;
  }
  .l-footer__content {
    display: flex;
    width: 90vw;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
  }
  .l-footer__content__title {
    font-size: 1.4em;
    font-weight: 400;
    font-style: italic;
  }
  .l-footer__content__icons {
    display: flex;
    gap: 2em;
  }
  .l-footer__foot {
    position: absolute;
    right: 4em;
    top: 50%;
    width: fit-content;
    transform: rotate(180deg) translateY(50%);
  }
  .l-footer__foot__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    color: white;
    font-weight: 500;
    text-orientation: mixed;
    writing-mode: vertical-rl;
  }
  .l-footer__foot__list__item {
    position: relative;
    font-weight: 300;
    color: white;
    cursor: pointer;
    padding: 0;
  }
  .l-footer__foot__list__item:hover {
    text-shadow: 2px 2px 10px rgb(220, 220, 220);
  }
  .l-display-mobile {
    display: flex !important;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .l-display-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .l-column-4 {
    margin-left: 2em;
    position: relative;
    height: 80vh;
    max-height: 800px;
    aspect-ratio: 14/16;
    display: flex;
    gap: 1.6em;
    flex-direction: column;
    justify-content: space-between;
  }
  .l-descriptions {
    display: flex;
    align-items: center;
    padding-left: 8em;
    padding-right: 8em;
    color: #242424;
    gap: 3em;
  }
  .l-gallery {
    height: auto;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    column-gap: 3em;
    row-gap: 1.4em;
    padding-right: 12em;
  }
  .l-gallery__item {
    position: relative;
    height: 27vh;
    aspect-ratio: 16/9;
    transition: transform 0.3s ease-in;
  }
  .l-gallery__item:nth-child(n+5) {
    transform: translateX(12em);
  }
  .l-gallery__item:hover {
    transform: scale(1.05);
  }
  .l-gallery__item:hover:nth-child(n+5) {
    transform: scale(1.05) translateX(12em);
  }
  .l-gallery__item figure {
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease-in;
  }
  .l-gallery__item figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 0.3s ease-in;
  }
  .l-gallery__item figure:hover::after {
    background-color: rgba(36, 36, 36, 0.5215686275);
  }
  .l-gallery__item figure img {
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid #009cca;
    object-fit: cover;
  }
  .m-icon-social {
    width: 4em;
    height: auto;
    border-radius: 50%;
    cursor: pointer;
  }
  .m-icon-social:hover {
    box-shadow: 1px 1px 20px rgb(220, 220, 220);
  }
  .m-video {
    height: 50vh;
    aspect-ratio: 15/9;
    border: 10px solid white;
    outline: 5px solid rgb(193, 51, 0);
    z-index: 100;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-video {
    height: 55vh;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-video {
    height: 60vh;
  }
}
@media only screen and (min-width: 1024px) {
  #m-logo {
    position: relative;
    height: 4rem;
    width: 10em;
  }
  #m-logo path {
    fill: white;
  }
  .m-logo-AA {
    width: 20vw;
    height: auto;
  }
  .m-list-item {
    font-weight: 300;
    font-size: 0.9em;
    letter-spacing: 0.5px;
  }
  .m-list-item__link {
    position: relative;
    padding-bottom: 3px;
  }
  .m-list-item__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
    align-self: center;
    left: 50%;
    transform: translateX(-50%);
  }
  .m-list-item__link:hover::before {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-list-item {
    font-size: 1em;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1024px) {
  .m-subtitle {
    font-style: italic;
    font-size: 1.8em;
    font-weight: 400;
    color: #fff;
    line-height: 2.1rem;
    width: 100%;
    min-width: 25em;
    min-width: 25em;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    background-image: linear-gradient(90deg, white, white);
    background-repeat: no-repeat;
    background-position: top left;
  }
  .m-subtitle--s {
    font-size: 1.2em;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-subtitle--s {
    font-size: 1.5em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-subtitle--blue {
    background-image: linear-gradient(90deg, #515151, #515151);
  }
  .m-subtitle--right {
    text-align: right;
    min-width: auto;
    min-width: auto;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .m-subtitle {
    max-width: 40em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-subtitle strong {
    font-weight: 600;
  }
  .m-subtitle strong {
    font-weight: 600;
  }
  .m-title {
    color: #F9F9F9;
    font-weight: bold;
    font-style: italic;
    font-size: clamp(3.2rem, 5vw, 4.2rem);
    min-width: 50rem;
    max-width: 60rem;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    background-color: #242424;
    background-image: linear-gradient(90deg, white, white);
    background-repeat: no-repeat;
    background-position: top left;
    padding-right: 15px;
  }
  .m-title span, .m-title strong {
    padding: 10px 20px 10px 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top left;
  }
  .m-title--blue {
    color: #063254;
    background-image: linear-gradient(90deg, #063254, #063254);
  }
  .m-title--right {
    text-align: right;
  }
  .m-title--center {
    text-align: center;
  }
  .m-hamburguer-menu {
    display: none;
  }
  .m-big-title {
    position: relative;
    padding: 0 15vh;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .m-big-title__title {
    color: #2d2c55;
    font-size: 3em;
    text-align: center;
    width: 50vw;
    line-height: 1.1em;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top left;
    background-image: linear-gradient(90deg, #2d2c55, #2d2c55);
  }
  .m-quotes {
    position: absolute;
    display: flex;
  }
  .m-quotes::after, .m-quotes::before {
    content: "";
    opacity: 0.72;
    top: 0;
    left: 0;
    position: relative;
    width: 6vw;
    width: 6vw;
    max-width: 8.8em;
    aspect-ratio: 1;
    background-color: #27c1c1;
    clip-path: polygon(0 100%, 56% 100%, 56% 44%, 21% 44%, 35% 0, 22% 0, 0 44%);
  }
  .m-quotes--left {
    top: 10%;
    top: 10%;
    left: 0;
  }
  .m-quotes--right {
    bottom: 10%;
    bottom: 10%;
    right: 0;
    transform: rotate(180deg);
  }
  .m-question {
    position: relative;
    font-size: 1.6em;
    font-weight: 300;
    height: fit-content;
    padding: 0.8em 0;
    width: 18em;
    width: 18em;
    border-top: 2px solid #009cca;
    cursor: pointer;
  }
  .m-question--last {
    border-bottom: 2px solid #009cca;
  }
  .m-question:hover {
    z-index: 2;
  }
  .m-question:hover .m-question__dialog {
    opacity: 1;
  }
  .m-question__question {
    z-index: -1 !important;
  }
  .m-question__dialog {
    position: absolute;
    border-radius: 2px;
    border-radius: 2px;
    width: 18em;
    height: fit-content;
    padding: 1.2em;
    background-color: #0a0c14;
    box-shadow: 1px 1px 3px white;
    padding: 1.2em;
    background-color: #0a0c14;
    box-shadow: 1px 1px 3px white;
    color: white;
    font-size: 0.65em;
    font-weight: 300;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease-in;
    line-height: 1.3em;
    pointer-events: none;
    z-index: 100;
  }
  .m-img-full {
    position: relative;
    width: auto;
    height: 80vh;
    max-height: 90vh;
    align-self: flex-end;
    object-fit: contain;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-img-full {
    height: 85vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-hexacontainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }
  .m-hexacontainer:hover .m-hexacontainer__card {
    opacity: 1;
    z-index: 1;
  }
  .m-hexacontainer:hover .m-hexacontainer__card--top {
    top: 0;
    transform: translateY(-50%);
  }
  .m-hexacontainer:hover .m-hexacontainer__card--bottom {
    bottom: 0;
    transform: translateY(50%);
  }
  .m-hexacontainer:hover .m-hexacontainer__data {
    opacity: 0;
  }
  .m-hexacontainer__hex-div {
    position: relative;
    display: grid;
    place-items: center;
    width: 5em;
    transition: all 0.3s ease-in;
    z-index: 20;
  }
  .m-hexacontainer__hex-div::after, .m-hexacontainer__hex-div:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    animation: shockwave 1s ease-out infinite;
  }
  .m-hexacontainer__hex-div__hexagon {
    position: relative;
    width: 100%;
    pointer-events: all;
    fill: #F9F9F9;
    cursor: pointer;
  }
  .m-hexacontainer__hex-div__hexagon--purple {
    fill: #4c007d;
  }
  .m-hexacontainer__hex-div__hexagon--green {
    fill: #64c27b;
  }
  .m-hexacontainer__hex-div__hexagon--orange {
    fill: #dc651b;
  }
  .m-hexacontainer__hex-div__hexagon--yellow {
    fill: #ffff56;
  }
  .m-hexacontainer__hex-div__hexagon--blue {
    fill: #2196f3;
  }
  .m-hexacontainer__hex-div__hexagon--magenta {
    fill: #e5097f;
  }
  .m-hexacontainer__hex-div:hover {
    scale: 1.2;
    transform: rotate(-30deg);
  }
  .m-hexacontainer__hex-div:hover::after, .m-hexacontainer__hex-div:hover:before {
    animation: none;
  }
  .m-hexacontainer__line {
    border: 1.2px solid white;
  }
  .m-hexacontainer__data {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1em 0;
    gap: 10px;
    width: fit-content;
    opacity: 1;
  }
  .m-hexacontainer__data__title {
    font-size: 2em;
  }
  .m-hexacontainer__data__subtitle {
    font-size: 1.8em;
    font-style: italic;
    width: 6em;
  }
  .m-hexacontainer__card {
    position: absolute;
    height: 80%;
    aspect-ratio: 18/8;
    background: rgb(2, 0, 36);
    background: linear-gradient(219deg, rgba(2, 0, 36, 0.3225665266) 2%, rgba(0, 55, 77, 0.2833508403) 53%);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease-in;
    backdrop-filter: blur(16px) saturate(180%);
    filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
    display: flex;
    overflow: hidden;
  }
  .m-hexacontainer__card--top {
    top: 0;
  }
  .m-hexacontainer__card--bottom {
    bottom: 0;
  }
  .m-hexacontainer__card__banner-image {
    position: relative;
    height: 100%;
    aspect-ratio: 12/10;
    object-fit: cover;
  }
  .m-hexacontainer__card__text {
    margin: 14px 12px;
    line-height: 1.4em;
    font-size: larger;
    font-style: italic;
    font-weight: 300;
  }
  .m-btn {
    border: none;
    padding: 0.7em 2.4em;
    font-weight: bold;
    font-size: 1.05em;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
  }
  .m-btn--green {
    background-color: #27c1c1;
    color: white !important;
  }
  .m-btn--green:hover {
    background-color: #1ddbdb;
    box-shadow: 1px 1px 20px #1ddbdb;
  }
  .m-btn--transparent {
    background-color: transparent;
    border: 1px solid transparent;
    color: white;
  }
  .m-btn--transparent:hover {
    border: 1px solid white;
    box-shadow: 1px 1px 14px white;
    border-radius: 7px;
    color: rgb(243, 243, 243);
  }
  .m-btn--transparent path {
    fill: white;
  }
  .m-btn--blue {
    background-color: transparent;
    color: #030011;
    border: 1px solid transparent;
  }
  .m-btn--blue:hover {
    border: 1px solid rgb(186, 187, 203);
    box-shadow: 1px 1px 10px rgb(178, 175, 233);
    border-radius: 7px;
    color: #08002b;
  }
  .m-btn--blue path {
    fill: #08002b;
  }
  .m-scroll-image {
    height: 70vh;
    aspect-ratio: 9/15;
    object-fit: cover;
    border: 6px solid white;
    outline: 4px solid;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-scroll-image {
    height: 65vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-scroll-image--horizontal {
    height: 36vh;
    aspect-ratio: 16/9;
  }
  .m-scroll-image--blue {
    outline-color: #2196f3;
  }
  .m-scroll-image--green {
    outline-color: #5ccb5f;
  }
  .m-scroll-image--magenta {
    outline-color: #e5097f;
  }
  .m-scroll-image--yellow {
    outline-color: #ffff00;
  }
  .m-scroll-image--purple {
    outline-color: #7f00b2;
  }
  .m-scroll-image--orange {
    outline-color: #f7a40c;
  }
  .m-card-service {
    position: relative;
    border: 3px solid #f2f2f2;
    padding: 0;
    background-color: #fff;
    box-shadow: 1px 1px 12px rgb(220, 220, 220);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .m-card-service {
    width: 26vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-card-service {
    width: 20vw;
    width: 20vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-service {
    width: 17vw;
    max-width: 400px;
    width: 17vw;
    max-width: 400px;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .m-card-service {
    max-width: 20em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-service__icon {
    position: absolute;
    height: 26%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 1em;
  }
  .m-card-service--blue {
    border-color: #2196f3;
  }
  .m-card-service--yellow {
    border-color: #ffff00;
  }
  .m-card-service--magenta {
    border-color: #e5097f;
  }
  .m-card-service--purple {
    border-color: #7f00b2;
  }
  .m-card-service--orange {
    border-color: #f7a40c;
  }
  .m-card-service__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2em;
    padding: 20% 10px 5% 10px;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-service__content {
    padding: 30% 1.4em 14% 1.4em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-service__content__title {
    color: #5e5e5e;
    text-align: center;
    font-style: italic;
    font-weight: bolder;
    font-size: 1.2em;
  }
  .m-card-service__content__p {
    color: #242424;
    text-align: justify;
    font-size: 1.04em;
    line-height: 1.38em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .m-card-service__content__p {
    line-height: 1.5em;
    font-size: 1.05em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-divider {
    display: none;
  }
  .m-card-help {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-shadow: 0px -3px 24px -8px rgba(0, 0, 0, 0.2);
    color: #242424;
    width: 23em;
    box-sizing: content-box;
    padding: 5em 0 0 0;
    align-items: center;
    z-index: 1;
    background-color: white;
  }
  .m-card-help__hex {
    height: 4em;
    aspect-ratio: 10/9.5;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
    background-color: #009cca;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    color: #009cca;
  }
  .m-card-help__hex::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    inset: 2px;
    clip-path: inherit;
    background-color: white;
  }
  .m-card-help__hex__num {
    color: #009cca;
    z-index: 2;
    font-size: 2em;
    font-weight: 400;
  }
  .m-card-help__title {
    font-weight: 600;
    font-size: 1.4em;
  }
  .m-card-help__description {
    font-size: 1em;
    line-height: 1.3em;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 300;
    padding: 0 1.6em 3em;
    padding: 0 1.6em 3em;
    color: #3e4144;
    text-align: center;
    width: 100%;
    background-color: white;
  }
  .m-card-help::before {
    content: "";
    position: absolute;
    bottom: -5%;
    width: 105%;
    height: 20%;
    background-color: #009cca;
    z-index: -1;
  }
  .m-card-help::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 20%;
    height: 10%;
    background-color: #009cca;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  .m-card-brochure {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-shadow: 0px -3px 24px -8px rgba(0, 0, 0, 0.2);
    color: #242424;
    width: 18vw;
    min-width: 290px;
    max-width: 330px;
    height: auto;
    min-height: 54vh;
    width: 18vw;
    min-width: 290px;
    max-width: 330px;
    height: auto;
    min-height: 54vh;
    align-items: center;
    background-color: white;
    z-index: 2 !important;
    outline: 3px solid;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-brochure {
    max-width: 390px;
    width: 24rem;
    min-height: 52vh;
    max-width: 390px;
    width: 24rem;
    min-height: 52vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-brochure__hex {
    height: 4em;
    aspect-ratio: 11/9.5;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
    background-color: #009cca;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: larger;
    color: #009cca;
  }
  .m-card-brochure__hex::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    inset: 2px;
    clip-path: inherit;
    background-color: white;
  }
  .m-card-brochure__hex__num {
    color: #009cca;
    z-index: 2;
    font-size: 2em;
    font-weight: 900;
  }
  .m-card-brochure__title {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    padding: 3.4em 1.4em 1em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-brochure__title {
    padding: 4em 1.4em 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-brochure__title__h1 {
    color: white;
    font-size: 1.2em;
    text-align: center;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-brochure__title__h1 {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-brochure__description {
    font-size: 1em;
    line-height: 1.3em;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 300;
    color: #3e4144;
    text-align: start;
    padding: 0.8em 0.6em;
    line-height: 1.5em;
    line-height: 1.5em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-card-brochure__description {
    padding: 1.6em 1.2em;
    padding: 1.6em 1.2em;
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-card-brochure--blue {
    outline: 3px solid #003785;
  }
  .m-card-brochure--blue .m-card-brochure__hex {
    background-color: #003785;
  }
  .m-card-brochure--blue .m-card-brochure__hex__num {
    color: #003785;
  }
  .m-card-brochure--blue .m-card-brochure__title {
    background-color: #003785;
  }
  .m-card-brochure--green {
    outline: 3px solid #338b85;
  }
  .m-card-brochure--green .m-card-brochure__hex {
    background-color: #338b85;
  }
  .m-card-brochure--green .m-card-brochure__hex__num {
    color: #338b85;
  }
  .m-card-brochure--green .m-card-brochure__title {
    background-color: #338b85;
  }
  .m-card-brochure--orange {
    outline: 3px solid #c2710e;
  }
  .m-card-brochure--orange .m-card-brochure__hex {
    background-color: #c2710e;
  }
  .m-card-brochure--orange .m-card-brochure__hex__num {
    color: #c2710e;
  }
  .m-card-brochure--orange .m-card-brochure__title {
    background-color: #c2710e;
  }
  .m-card-brochure--pink {
    outline: 3px solid rgb(190, 26, 54);
  }
  .m-card-brochure--pink .m-card-brochure__hex {
    background-color: rgb(190, 26, 54);
  }
  .m-card-brochure--pink .m-card-brochure__hex__num {
    color: rgb(190, 26, 54);
  }
  .m-card-brochure--pink .m-card-brochure__title {
    background-color: rgb(190, 26, 54);
  }
  .m-card-team {
    position: relative;
    height: 60vh;
    aspect-ratio: 9/16;
    background-color: #71AC3F;
    cursor: pointer;
    border: 3px solid white;
    outline-width: 5px;
    outline-style: solid;
    transition: all 0.3s ease-in;
  }
  .m-card-team--magenta {
    outline-color: #e5097f;
  }
  .m-card-team--green {
    outline-color: #5ccb5f;
  }
  .m-card-team--blue {
    outline-color: #2196f3;
  }
  .m-card-team--yellow {
    outline-color: #ffff00;
  }
  .m-card-team__foto {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .m-card-team__foto::after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
  }
  .m-card-team__foto:hover img {
    transform: scale(1.1);
  }
  .m-card-team__foto:hover::after {
    background-color: rgba(8, 8, 8, 0.301);
    z-index: 1;
  }
  .m-card-team__foto__img {
    transition: all 0.3s ease;
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
  .m-card-team__description {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    height: fit-content;
    width: 100%;
    background-color: #0a0c14;
    background-color: #0a0c14;
    padding: 1em 0.8em;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    box-shadow: 1px 1px 5px 1px rgb(184, 184, 184);
    box-shadow: 1px 1px 5px 1px rgb(184, 184, 184);
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  }
  .m-card-team__description__name {
    font-size: larger;
    font-style: italic;
  }
  .m-card-team__description__text {
    font-size: medium;
    font-weight: 300;
  }
  .m-card-team:hover .m-card-team__description {
    opacity: 1;
    transform: translateY(0);
  }
  .m-icon-benefits {
    position: relative;
    margin: 0;
    padding: 15%;
    background-color: transparent;
    z-index: 1;
    overflow: visible;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
    width: 100%;
    aspect-ratio: 1/0.83;
  }
  .m-icon-benefits--blue {
    background-color: #6A87CA;
  }
  .m-icon-benefits--green {
    background-color: #71AC3F;
  }
  .m-icon-benefits--purple {
    background-color: #6A0082;
  }
  .m-icon-benefits--orange {
    background-color: #CD6E19;
  }
  .m-icon-benefits--magenta {
    background-color: #A9004D;
  }
  .m-icon-benefits--yellow {
    background-color: #E7A922;
  }
  .m-icon-benefits::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 3px;
    background-color: white;
    clip-path: inherit;
    -webkit-clip-path: inherit;
  }
  .m-icon-benefits__icon {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .m-dotted-line {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
  }
  .m-line-svg {
    stroke: #242424;
    stroke-width: 2;
    z-index: -10;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  .m-overlay-scroll {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #EDEDED;
  }
  .m-divwhite {
    position: relative;
    top: 0;
    height: 100vh;
    width: 400px;
    position: absolute;
    left: -399px;
    z-index: -1;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 96% 30%, 45% 0);
    background-color: #F9F9F9;
  }
  .m-divwhite::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    right: -14px;
    background-color: #F9F9F9;
    clip-path: inherit;
    z-index: -1;
  }
  .m-divwhite::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    right: -10px;
    background-color: #5ccb5f;
    clip-path: inherit;
    z-index: -2;
  }
  .m-vtitle {
    font-size: 2em;
    font-weight: 400;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  .m-vtitle--gray {
    color: #8c8c8c;
  }
  .m-vtitle--white {
    color: white;
  }
  .m-vtitle--blue {
    color: #063254;
  }
  .m-bg-white {
    background-color: #F9F9F9;
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
  }
  .m-bg-white--left-1 {
    left: -1;
  }
  .m-div-section {
    position: relative;
    width: 34vw;
    height: 100%;
    background-color: #F9F9F9;
  }
  .m-div-section--absolute {
    position: absolute;
    left: -1.8vw;
  }
  .m-div-section--diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 95% 100%);
  }
  .m-div-section--cut {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 90% 35%, 0% 0%);
  }
  .m-div-section--cut2 {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 94% 70%, 0% 0%);
  }
  .m-div-section--cut3 {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 95% 36%, 0% 0%);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-div-section {
    width: 22vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-div-section {
    width: 18vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .m-div-section {
    max-width: 24em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-div-section::after, .m-div-section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    clip-path: inherit;
  }
  .m-div-section--purple::before {
    background-color: #7f00b2;
  }
  .m-div-section--green::before {
    background-color: #5ccb5f;
  }
  .m-div-section--orange::before {
    background-color: #f7a40c;
  }
  .m-div-section--yellow::before {
    background-color: #ffff00;
  }
  .m-div-section--magenta::before {
    background-color: #e5097f;
  }
  .m-div-section--blue::before {
    background-color: #2196f3;
  }
  .m-div-section::before {
    top: 0;
    bottom: 0;
    left: 10px;
  }
  .m-div-section::after {
    background-color: #F9F9F9;
    top: 0;
    bottom: 0;
    left: 15px;
  }
  .m-image-section {
    width: 50vw;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .m-image-section {
    width: 40vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-image-section {
    width: 28vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-image-section {
    width: 22vw;
  }
}
@media only screen and (min-width: 1024px) {
  .m-out-content {
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #F2F2F2;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
  }
  .m-out-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    clip-path: inherit;
    width: 100%;
    height: 100%;
    background-color: #2196f3;
  }
  .m-img-big {
    position: relative;
    height: 100vh;
    aspect-ratio: 10/20;
    top: 0;
    margin: 0;
    align-self: flex-end;
    padding: 0;
    display: flex;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .m-img-big {
    height: 80vh;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-img-big {
    height: 90vh;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-img-big {
    height: 95vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-img-big__img {
    position: absolute;
    width: 150%;
    object-fit: contain;
    bottom: 0;
  }
  .m-cellphone {
    position: relative;
    height: 30vh;
    width: auto;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .m-cellphone:hover {
    transform: scale(1.07);
  }
  .m-cellphone:hover {
    transform: scale(1.07);
  }
  .m-cellphone__phone {
    height: 100%;
  }
  .m-cellphone__logo {
    position: absolute;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-cellphone {
    height: 34vh;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-cellphone {
    height: 38vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-phone {
    position: relative;
    height: 60vh;
  }
  .m-phone__cellphone {
    height: 100%;
    width: auto;
  }
  .m-phone__img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 99%;
    width: 96%;
    border-radius: 10%;
    object-fit: cover;
    z-index: -1;
  }
  .m-cellphone-slider {
    margin: 0;
    width: auto;
    position: relative;
    bottom: -10em;
    z-index: 10;
  }
  .m-cellphone-slider__bg {
    height: 100vh !important;
    width: auto !important;
  }
  .m-cellphone-slider {
    position: relative;
  }
  .m-cellphone-slider__bg {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .m-line {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .m-line__img {
    position: relative;
    border: 1px solid green;
    height: 35vh;
    width: auto;
    padding: 0 0 0 4em;
  }
  .m-line__over {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #F9F9F9;
  }
  .m-card-character {
    position: relative;
    min-height: 8em;
    height: fit-content;
    width: 30em;
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    align-items: center;
    gap: 1em;
  }
  .m-card-character--start {
    align-self: flex-start;
  }
  .m-card-character--center {
    align-self: center;
  }
  .m-card-character--end {
    align-self: flex-end;
  }
  .m-card-character__figure {
    position: relative;
    width: 100%;
    height: 88%;
    margin: 0;
    padding: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%, 25% 0);
  }
  .m-card-character__figure--orange {
    background-color: #f7a40c;
  }
  .m-card-character__figure--purple {
    background-color: #7f00b2;
  }
  .m-card-character__figure--green {
    background-color: #5ccb5f;
  }
  .m-card-character__figure--magenta {
    background-color: #e5097f;
  }
  .m-card-character__figure--blue {
    background-color: #2196f3;
  }
  .m-card-character__figure__icon {
    width: 100%;
    height: auto;
  }
  .m-card-character__figure::after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #F9F9F9;
    inset: 4px;
    clip-path: inherit;
  }
  .m-card-character__content {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .m-card-character__content__title {
    font-weight: 600;
    font-size: 1.4em;
    padding-bottom: 0.2em;
    text-wrap: nowrap;
    border-bottom: 3px dashed #3e4144;
  }
  .m-card-character__content__text {
    font-weight: 500;
    font-size: 1.1em;
  }
  .m-card-character__content--white {
    color: white;
  }
  .m-card-character__content--gray {
    color: #3e4144;
  }
  .m-card-num {
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    align-self: end;
  }
  .m-card-num--blue .m-card-num__number, .m-card-num--blue .m-card-num__content__title {
    color: #2196f3;
  }
  .m-card-num--blue .m-card-num__content {
    background-color: #2196f3;
  }
  .m-card-num--green .m-card-num__number, .m-card-num--green .m-card-num__content__title {
    color: #5ccb5f;
  }
  .m-card-num--green .m-card-num__content {
    background-color: #5ccb5f;
  }
  .m-card-num--magenta .m-card-num__number, .m-card-num--magenta .m-card-num__content__title {
    color: #e5097f;
  }
  .m-card-num--magenta .m-card-num__content {
    background-color: #e5097f;
  }
  .m-card-num--yellow .m-card-num__number, .m-card-num--yellow .m-card-num__content__title {
    color: #ffff00;
  }
  .m-card-num--yellow .m-card-num__content {
    background-color: #ffff00;
  }
  .m-card-num--bottom {
    bottom: 50%;
  }
  .m-card-num--top {
    top: 50%;
  }
  .m-card-num__number {
    font-size: 12em;
    font-weight: 900;
    letter-spacing: 0;
  }
  .m-card-num__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5em;
    padding: 1.2em 2em 1.2em 2.6em;
    padding: 1.2em 2em 1.2em 2.6em;
    z-index: -1;
    left: -2.1em;
    height: 100%;
    width: 22em;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
  }
  .m-card-num__content__title {
    font-size: 1.6em;
    font-weight: bolder;
  }
  .m-card-num__content__text {
    color: #F9F9F9;
    color: #F9F9F9;
    font-size: 1.1em;
    font-weight: 400;
  }
  .m-card-num__content::after {
    content: "";
    position: absolute;
    inset: 4px;
    background-color: #0a0c14;
    background-color: #0a0c14;
    z-index: -1;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
  }
  .m-info-img {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 21em;
  }
  .m-info-img__img {
    height: 45vh;
    aspect-ratio: 16/10;
    border: 6px solid white;
    outline: 5px solid #003785;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-info-img__img {
    height: 54vh;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-info-img__img {
    height: 60vh;
  }
}
@media only screen and (min-width: 1024px) {
  .m-info-img__sign {
    position: absolute;
    border: 4px solid #338b85;
    padding: 2em 1.4em;
    background-color: #F9F9F9;
    width: 14em;
    aspect-ratio: 10/16;
    right: 0;
    transform: translateX(50%);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-info-img__sign {
    padding: 1.1em 0.9em;
    width: 16em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-info-img__sign {
    width: 18em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-info-img__sign__p {
    color: #515151;
    font-size: 1.1em;
    font-weight: 500;
    text-align: justify;
    font-style: italic;
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-info-img__sign__p {
    font-size: 1.25em;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .m-info-img__sign__p {
    font-weight: 300;
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  .m-button:hover + .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
  .m-value {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 7.4em;
    align-items: center;
    gap: 1em;
    cursor: pointer;
    z-index: 0;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-value {
    width: 9em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-value:hover {
    z-index: 1;
  }
  .m-value:hover .m-value__info {
    opacity: 1;
  }
  .m-value__icon {
    position: relative;
    width: 90%;
    height: auto;
  }
  .m-value__title {
    color: #515151;
    font-size: 1.5em;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .m-value__title {
    font-size: 1.7em;
  }
}
@media only screen and (min-width: 1024px) {
  .m-value__info {
    position: relative;
    top: -50%;
    right: -120%;
    opacity: 0;
    background-color: #0a0c14;
    background-color: #0a0c14;
    padding: 1.4em 1em;
    width: 18em;
    position: absolute;
    box-shadow: 1px 1px 5px #0a0c14;
    box-shadow: 1px 1px 5px #0a0c14;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
  .m-value__info__p {
    font-size: large;
    font-weight: 500;
    color: white;
  }
  .m-linea-svg {
    position: absolute;
  }
  .m-linea-svg__line {
    stroke: #009B94;
    stroke-dasharray: 16 5;
  }
  .m-svg-hexagon {
    position: absolute;
    height: 45vh;
    transform: rotate(30deg);
    z-index: 0;
    /*Colors*/
    /*Position*/
  }
  .m-svg-hexagon--blue {
    fill: #2196f3;
  }
  .m-svg-hexagon--green {
    fill: #5ccb5f;
  }
  .m-svg-hexagon--purple {
    fill: #7f00b2;
  }
  .m-svg-hexagon--magenta {
    fill: #e5097f;
  }
  .m-svg-hexagon--orange {
    fill: #f7a40c;
  }
  .m-svg-hexagon--yellow {
    fill: #efb810;
  }
  .m-svg-hexagon--bottom-left {
    bottom: 0vh;
    transform: rotate(30deg) translateY(50%);
    left: 23%;
    z-index: 1;
  }
  .m-svg-hexagon--bottom-left--2 {
    left: 0;
    bottom: -10%;
  }
  .m-svg-hexagon--bottom-left-small {
    transform: scale(0.5) rotate(30deg);
    bottom: -15%;
    left: 0;
  }
  .m-svg-hexagon--top-right-small {
    transform: scale(0.5) rotate(30deg);
    top: -5%;
    right: -30%;
  }
  .m-svg-hexagon--bottom-left-rotate {
    bottom: 0vh;
    transform: translateY(50%);
    left: 20%;
    z-index: 0;
  }
  .m-svg-hexagon--bottom-right-small {
    transform: scale(0.5) rotate(30deg);
    bottom: -15%;
    right: -20%;
  }
  .m-svg-hexagon--bottom-center {
    height: 35vh;
    bottom: 0;
    transform: rotate(30deg) translateY(50%);
    left: 45%;
  }
  .m-svg-hexagon--top-end {
    top: 0;
    right: 5%;
  }
  .m-svg-hexagon--top-end--small {
    top: 0;
    right: 10%;
    transform: scale(0.6) rotate(30deg);
  }
  .m-svg-hexagon.big-bottom {
    height: 70vh !important;
    transform: rotate(0deg) translateY(70%);
  }
  .m-svg-hexagon.big-top {
    height: 70vh !important;
    transform: rotate(0deg) translateY(-70%);
  }
  .m-little-hexagon {
    position: absolute;
    width: 57px; /* Ajusta el tamaño según sea necesario */
    aspect-ratio: 10/9 !important;
    background-color: #ffcc00; /* Cambia el color de fondo según desees */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  }
  .m-little-hexagon--left {
    bottom: 10%;
    left: 20%;
  }
  .m-little-hexagon--right {
    right: -30%;
  }
  .m-little-hexagon--blue {
    background-color: #009cca;
  }
  .m-little-hexagon--magenta {
    background-color: #e5097f;
  }
  .m-div-hexagon {
    position: relative;
    height: 54vh;
    aspect-ratio: 10/9;
    transform: rotate(-8deg);
  }
  .m-div-hexagon__bg {
    position: relative;
    height: 100%;
    width: 100%;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
    background-color: #2196f3;
  }
  .m-div-hexagon__bg::after, .m-div-hexagon__bg::before {
    content: "";
    position: absolute;
    clip-path: inherit;
  }
  .m-div-hexagon__bg::after {
    background-color: #030011;
    inset: 14px;
  }
  .m-div-hexagon__bg::before {
    inset: 5px;
    background-color: #F9F9F9;
  }
  .m-div-hexagon__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .m-nebula {
    position: absolute;
    height: 40%;
    z-index: 5;
  }
  .m-logo-mobile {
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .m-logo-mobile svg path {
    fill: white;
    stroke: white;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .m-logo-mobile {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .m-avatars {
    position: relative;
    display: flex;
    gap: 2em;
  }
  .m-avatars figure {
    display: grid;
    place-items: center;
    padding: 5px;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
    background-color: #009cca;
  }
  .m-avatars figure:nth-child(2) {
    background-color: #7f00b2;
  }
  .m-avatars figure img {
    position: relative;
    height: 6.8em;
    aspect-ratio: 1/0.84;
    object-fit: cover;
    bottom: 0;
    clip-path: polygon(0% 50%, 25% 100%, 75% 100%, 100% 50%, 75% 0%, 25% 0%);
  }
  .m-logos {
    position: relative;
    display: flex;
  }
  .m-logos figure {
    position: relative;
  }
  .m-logos figure img {
    position: relative;
    height: 9em;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .m-text__p {
    font-weight: 300;
    font-size: 1.2em;
    color: #242424;
    line-height: 1.4em;
  }
  .m-rank {
    display: flex;
    flex-direction: column;
  }
  .m-rank__num {
    font-size: 6em;
    font-weight: 900;
    color: #292929;
  }
  .m-rank__stars {
    display: flex;
    justify-content: space-between;
  }
  .m-flex {
    display: flex;
    gap: 1.6em;
    align-items: center;
  }
  .m-contact {
    display: flex;
    flex-direction: column;
    width: 40vw;
    padding: 3rem 2rem;
    gap: 2em;
    border-radius: 10px;
    color: white;
    color: white;
  }
  .m-contact h1 {
    text-transform: uppercase;
    font-style: italic;
    font-size: clamp(2.7rem, 4vw, 4rem);
    font-size: clamp(2.7rem, 4vw, 4rem);
    font-weight: 600;
  }
  .m-info {
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1.7em;
  }
  .m-info li {
    margin-left: 5px;
  }
  .m-info li:hover a, .m-info li:hover svg path {
    fill: #009cca;
    color: #009cca;
  }
  .m-info li a {
    transition: all 0.3s ease;
    display: flex;
    gap: 1em;
    align-items: center;
    height: fit-content;
  }
  .m-info li a span {
    font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    line-height: 1.4em;
  }
  .m-info li figure {
    display: grid;
    place-items: center;
    height: 2em;
    aspect-ratio: 1;
  }
  .m-info li figure svg {
    height: 100%;
  }
  .m-map {
    margin-left: 4rem;
    border: 4px solid #009B94;
    padding: 0.4em;
    border-radius: 6px;
    display: grid;
    place-items: center;
  }
  .m-map iframe {
    width: 45vw;
  }
  .wpforms-container {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
  }
  .m-slider-logos {
    position: absolute !important;
    top: 0;
    left: 50%;
    width: 70%;
    transform: translate(-50%, 50%);
    background-color: transparent !important;
    border: 4px solid transparent !important;
  }
  .m-slider-logos img {
    position: relative;
    width: 100%;
    object-fit: cover;
  }
  .m-slider-description {
    position: relative;
    transform: translateY(-50%);
    left: -2em;
    z-index: -1;
    min-height: 10em;
    height: fit-content;
    background-color: white;
    width: 30em;
    padding: 2em 5em 2em 2em;
    border-radius: 7px;
    display: flex;
    align-items: center;
  }
  .m-slider-des {
    position: relative !important;
    top: 0;
    left: 5%;
    width: 100%;
    margin: 0 !important;
  }
  .m-card-testimonial {
    color: #242424;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }
  .m-card-testimonial h2 {
    color: #7f00b2;
    font-weight: 800;
    font-size: 1.4em;
  }
  .m-card-testimonial p {
    line-height: 1.6em;
  }
  .m-card-testimonial__user {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 1.2em;
  }
  .m-card-testimonial__user img {
    width: 3em !important;
    border-radius: 50%;
    aspect-ratio: 1;
    border: 2px solid #2d2c55;
    object-fit: contain;
    object-fit: contain;
  }
  .m-user-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .m-user-info__name {
    text-transform: capitalize;
    color: #292929;
    font-weight: 600;
  }
  .m-user-info__data {
    color: #454545;
  }
  .m-casos {
    font-size: 1.4em;
    color: rgba(245, 245, 245, 0.75);
    padding-left: 10px;
  }
  .m-form {
    background-color: white;
    padding: 2em 1.8em;
    width: 100%;
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    width: 22vw;
    max-width: 24em;
    border-radius: 4px;
    -webkit-box-shadow: 4px 3px 6px -5px #050012;
    box-shadow: 4px 3px 6px -5px #050012;
    justify-content: space-between;
    gap: 1em;
  }
  .m-form h2 {
    text-align: left;
    font-size: 1.4em;
    color: #242424;
  }
  .m-form textarea,
  .m-form input[type=text],
  .m-form input[type=number],
  .m-form input[type=email] {
    position: relative;
    outline: none;
    border: 2px solid #009B94 !important;
    border-radius: 6px;
    font-size: 1em;
    padding: 5px 8px;
    width: 100% !important;
    max-width: none !important;
  }
  .m-form #m-form-check > span {
    margin: 0;
    display: flex;
    gap: 1em;
  }
  .m-form #m-form-check input[type=checkbox] {
    width: fit-content;
  }
  .m-form #m-form-check span {
    color: #242424;
  }
  .m-form textarea {
    resize: none !important;
    font-size: 1.2em;
  }
  .m-form button[type=submit] {
    border-radius: 6px;
    border: none;
    background-color: #009B94 !important;
    padding: 0.5em;
    color: #FFF;
    font-size: 1em;
    font-weight: 800;
    cursor: pointer;
    max-width: none !important;
    width: 100%;
  }
  .m-form button[type=submit]:hover {
    background-color: #017670 !important;
  }
  .m-form * {
    width: 100%;
  }
  .m-description {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 28em;
  }
  .m-description__title {
    font-size: 1.6em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1em;
  }
  .m-description__title svg {
    height: 1.6em !important;
    width: auto;
  }
  .m-description__title--sad svg path {
    fill: #ff0000;
  }
  .m-description__title--happy svg path {
    fill: #5ccb5f;
  }
  .m-description__p {
    font-size: 1.16em;
    font-weight: 300;
    color: #3c3c3c;
    line-height: 1.5em;
  }
  .m-svg-arrow {
    height: 26vh;
  }
  .m-svg-arrow path {
    stroke: #009B94;
  }
  .m-header {
    display: flex;
    flex-direction: column;
    gap: 2.4em;
    width: fit-content;
  }
  .m-header h1 {
    width: 45vw;
    font-size: 7vh;
    font-weight: 600;
    font-style: italic;
  }
  .m-header h4 {
    width: 45vw;
    padding-left: 10px;
    font-size: 1.3em;
    line-height: 1.3em;
  }
  .m-header button {
    width: fit-content;
    align-self: flex-end;
  }
  .m-vertical-video {
    position: relative;
    height: 60vh;
    aspect-ratio: 9/16;
    border: 3px solid #009B94;
    display: grid;
    place-items: center;
  }
  .m-vertical-video video {
    position: relative;
    width: 96%;
    height: 97%;
    background-color: white;
  }
  .m-screenshot {
    position: relative;
    height: 82vh;
    aspect-ratio: 16/9;
    align-self: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease-in;
  }
  .m-screenshot .m-screenshot__imgs {
    overflow-y: scroll;
    scrollbar-width: none;
  }
  .m-screenshot__imgs {
    width: 100%;
    height: 100%;
  }
  .m-screenshot__imgs img {
    width: 100%;
    transition: opacity 0.3s ease;
    height: auto;
    z-index: 2;
  }
  .m-screenshot .m-screenshot__imgs__img1 {
    opacity: 0;
  }
  .m-screenshot .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    transition: all 0.3s ease-in;
    opacity: 0;
    background-color: rgba(3, 0, 17, 0.4274509804);
    border-radius: 8px 8px 0 0;
  }
  .m-screenshot .overlay__hand {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 3em;
    width: auto;
  }
  .m-screenshot:hover {
    transform: scale(1.05) !important;
  }
  .m-screenshot:hover .overlay {
    opacity: 1;
  }
  .m-img-ss {
    position: relative;
    width: 100%;
  }
  .m-overlay-ss {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    display: block;
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.6s ease;
  }
  .m-overlay-ss__div {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 100px 0;
  }
  .m-overlay-ss__div img {
    position: relative;
    max-width: 1200px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .m-overlay-ss.show {
    z-index: 999;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .m-overlay-ss__x {
    float: left;
    z-index: 99999;
    position: absolute;
    height: 40px;
    aspect-ratio: 1;
    right: 2em;
    top: 1.6em;
    cursor: pointer;
  }
  .m-overlay-ss__x:before, .m-overlay-ss__x:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #F9F9F9;
    top: 0;
    left: 50%;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .m-overlay-ss__x:before {
    transform: rotate(45deg);
  }
  .m-overlay-ss__x:after {
    transform: rotate(-45deg);
  }
  .m-overlay-ss__x:hover:before, .m-overlay-ss__x:hover:after {
    background-color: #cdcbcb;
  }
  .m-overlay-ss__x:hover::before {
    transform: rotate(135deg);
  }
  .m-overlay-ss__x:hover::after {
    transform: rotate(45deg);
  }
  .m-overlayss {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .m-overlayss.no-touch {
    pointer-events: none;
  }
  .m-overlayss__up {
    background-color: rgba(172, 255, 47, 0.192);
  }
  .m-overlayss__down {
    background-color: rgba(255, 0, 0, 0.284);
  }
  .m-slider-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.6s ease;
    display: grid;
    place-items: center;
  }
  .m-slider-gallery.show {
    z-index: 999;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .m-slider-gallery__x {
    float: left;
    z-index: 99999;
    position: absolute;
    height: 40px;
    aspect-ratio: 1;
    right: 2em;
    top: 1.6em;
    cursor: pointer;
  }
  .m-slider-gallery__x:before, .m-slider-gallery__x:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: #F9F9F9;
    top: 0;
    left: 50%;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .m-slider-gallery__x:before {
    transform: rotate(45deg);
  }
  .m-slider-gallery__x:after {
    transform: rotate(-45deg);
  }
  .m-slider-gallery__x:hover:before, .m-slider-gallery__x:hover:after {
    background-color: #cdcbcb;
  }
  .m-slider-gallery__x:hover::before {
    transform: rotate(135deg);
  }
  .m-slider-gallery__x:hover::after {
    transform: rotate(45deg);
  }
  .m-slider-gallery__slider {
    position: relative;
    width: 45vw;
    opacity: 1;
  }
  .m-slider-gallery__slider .flexslider {
    margin-bottom: 1em !important;
    border: none;
    background-color: transparent;
  }
  .m-slider-gallery__slider .flexslider .flex-viewport {
    overflow: visible !important;
  }
  .m-slider-gallery__slider .flexslider .flex-viewport li {
    transform: scale(0.85);
    transition: transform 0.3s ease-in;
    border-radius: 10px;
    overflow: hidden;
  }
  .m-slider-gallery__slider .flexslider .flex-viewport li.flex-active-slide {
    transform: scale(1);
  }
  .m-slider-gallery__slider ol li a {
    background-color: #f3f3f3;
  }
  .m-slider-gallery__slider ol li a:hover {
    background-color: #009cca;
  }
  .m-slider-gallery__slider ol li a.flex-active {
    background-color: #009B94;
  }
  .m-slider-gallery__slider img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .m-slider-gallery__slider .flex-caption {
    width: 100%;
    padding: 2%;
    left: 0;
    bottom: 0;
    background: #F9F9F9;
    color: #242424;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
    font-size: 14px;
    line-height: 18px;
  }
  .m-slider-gallery__slider .flex-caption h1 {
    font-weight: 500;
    font-size: 1.6em;
    color: #171717;
    margin: 1em 0;
    text-transform: capitalize;
  }
  .m-slider-gallery__slider .flex-caption p {
    line-height: 1.6em;
  }
  .m-slider-gallery .custom-navigation {
    position: relative !important;
    color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 4em;
    margin-top: 2.7rem;
  }
  .m-slider-gallery .custom-navigation a {
    position: relative;
  }
  .m-slider-gallery .custom-navigation a:hover::before {
    color: #009cca;
    transform: scale(1.15);
  }
  .m-slider-gallery .custom-navigation a::before {
    font-family: "flexslider-icon";
    font-size: 34px;
    display: inline-block;
    content: "\f001";
    color: #009B94;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in;
  }
  .m-slider-gallery .custom-navigation a.flex-next::before {
    content: "\f002";
  }
  .m-slider-gallery .custom-navigation .custom-controls-container {
    position: relative !important;
    width: fit-content !important;
    height: 10px !important;
  }
  .m-slider-gallery .custom-navigation .custom-controls-container * {
    top: 0;
    position: relative;
  }
  .m-slider-gallery .custom-navigation .custom-controls-container ol {
    display: flex;
  }
  .m-scroll-progress {
    position: fixed;
    width: 100%;
    height: 6px;
    left: 0;
    bottom: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.2784313725);
  }
  .m-scroll-progress__line {
    position: relative;
    height: 100%;
    width: 0%;
    background-color: #009cca;
  }
  .p-4 {
    padding-left: 1em;
    padding-right: 1em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  .p-4 {
    padding-left: 4em;
    padding-right: 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .p-6 {
    padding-left: 6em;
    padding-right: 6em;
  }
  .p-8 {
    padding-left: 8em;
    padding-right: 8em;
  }
  .p-12 {
    padding-left: 12em;
    padding-right: 12em;
  }
  .pl-2 {
    padding-left: 2em;
  }
  .pl-3 {
    padding-left: 3em;
  }
  .pr-3 {
    padding-right: 3em;
  }
  .pl-4 {
    padding-left: 4em;
  }
  .pl-6 {
    padding-left: 6em;
  }
  .pl-10 {
    padding-left: 10em;
  }
  .pl-20 {
    padding-left: 20em;
  }
  .pr-6 {
    padding-right: 6em;
  }
  .pl-8 {
    padding-left: 8em;
  }
  .pr-8 {
    padding-right: 8em;
  }
  .pr-10 {
    padding-right: 10em;
  }
  .pr-12 {
    padding-right: 12em;
  }
  .pl-10 {
    padding-left: 10em;
  }
  .pl-12 {
    padding-left: 12em;
  }
  .pl-20 {
    padding-left: 20em;
  }
  .ml-2 {
    margin-left: 2em;
  }
  .ml-4 {
    margin-left: 4em;
  }
  .ml-10 {
    margin-left: 10em;
  }
  .ml-div {
    margin-left: 32vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .ml-div {
    margin-left: 20vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2100px) {
  .ml-div {
    margin-left: 16vw;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 2500px) {
  .ml-div {
    margin-left: 22em;
  }
}
@media only screen and (min-width: 1024px) {
  .mr-2 {
    margin-right: 2em;
  }
  .mr-4 {
    margin-right: 4em;
  }
  .mr-6 {
    margin-right: 6em;
  }
  .g-1 {
    gap: 1em;
  }
  .g-2 {
    gap: 2em;
  }
  .g-3 {
    gap: 3em;
  }
  .g-4 {
    gap: 4em;
  }
  .g-5 {
    gap: 5em;
  }
  .g-6 {
    gap: 6em;
  }
  .g-10 {
    gap: 10em;
  }
  .g-12 {
    gap: 12em;
  }
  .contenedor {
    position: relative;
  }
  .elemento1,
  .elemento2 {
    width: 50px;
    height: 50px;
    background-color: red; /* Estilo de ejemplo, ajusta según tus necesidades */
    position: absolute;
  }
  .elemento1 {
    top: 50px;
    left: 50px;
  }
  .elemento2 {
    top: 150px;
    left: 150px;
  }
  .linea-svg {
    position: absolute;
    top: 0;
    left: 50%; /* Alineado en el centro del contenedor */
    transform: translateX(-50%); /* Ajusta para centrar correctamente */
  }
  :root {
    --color-black: #000;
    --color-grey-darker: #3e3f3f;
    --color-grey-dark: #3e3f3f;
    --color-grey: #f7f5f4;
    --color-white: #fff;
    --font-f-serif: "Saol Display";
    --font-f-sans-light: "neue-haas-grotesk-display";
    --font-f-sans: "neue-haas-grotesk-text";
    --font-s-heading-sm: 8.333vw;
    --lh-heading-sm: 10.556vw;
    --font-s-chapeau-md: 4.444vw;
    --lh-chapeau-md: 9.167vw;
    --font-s-chapeau-sm: 3.611vw;
    --lh-chapeau-sm: 3.611vw;
    --font-s-body: 4.444vw;
    --lh-body: 8.333vw;
    --ease-button: cubic-bezier(0.34, 0, 0.18, 1);
    --spacing-15: 4.11vw;
    --spacing-30: 8.219vw;
    --spacing-45: 12.329vw;
    --spacing-60: 16.438vw;
    --spacing-75: 20vw;
    --spacing-90: 24.658vw;
    --spacing-120: 32.877vw;
    --spacing-150: 40vw;
    --spacing-180: 49.315vw;
    --col-1: calc(100vw / 12 * 1);
    --col-2: calc(100vw / 12 * 2);
    --col-3: calc(100vw / 12 * 3);
    --col-4: calc(100vw / 12 * 4);
    --col-5: calc(100vw / 12 * 5);
    --col-6: calc(100vw / 12 * 6);
    --col-7: calc(100vw / 12 * 7);
    --col-8: calc(100vw / 12 * 8);
    --col-9: calc(100vw / 12 * 9);
    --col-10: calc(100vw / 12 * 10);
    --col-11: calc(100vw / 12 * 11);
    --col-12: calc(100vw / 12 * 12);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 650px) {
  :root {
    --font-s-heading-sm: 3.472vw;
    --lh-heading-sm: 4.583vw;
    --font-s-chapeau-md: 1.25vw;
    --lh-chapeau-md: 1.597vw;
    --font-s-chapeau-sm: 0.903vw;
    --lh-chapeau-sm: 0.903vw;
    --font-s-body: 1.111vw;
    --lh-body: 2.083vw;
    --spacing-15: 1.042vw;
    --spacing-30: 2.083vw;
    --spacing-45: 3.125vw;
    --spacing-60: 4.167vw;
    --spacing-75: 5.208vw;
    --spacing-90: 6.25vw;
    --spacing-120: 8.333vw;
    --spacing-150: 10.417vw;
    --spacing-180: 12.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after {
    content: "";
    content: none;
  }
  q:before, q:after {
    content: "";
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  *, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  [style*="--aspect-ratio"] > *:first-child,
  .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @supports (--custom:property) {
    [style*="--aspect-ratio"] {
      position: relative;
      overflow: hidden;
    }
    [style*="--aspect-ratio"]::before {
      content: "";
      display: block;
      padding-bottom: calc(100% / var(--aspect-ratio));
    }
  }
  .app {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: var(--color-grey);
  }
  .modal {
    display: none;
  }
  .js-slider-open:hover + .page-overlay,
  .circle-cursor:hover + .page-overlay {
    opacity: 0.5;
  }
  .page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    pointer-events: none;
  }
  .page-overlay img {
    max-width: 35%;
    max-height: 35%;
    object-fit: contain;
  }
  .placeholders {
    position: fixed;
    top: 40%;
    right: calc(var(--col-2) * -1.5);
    z-index: 3;
    width: var(--col-9);
    overflow: unset;
    visibility: hidden;
    display: none;
    pointer-events: none;
    opacity: 0;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .placeholders {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .placeholders__img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 80vh;
    width: var(--col-9);
    border-radius: 7px;
    transform-origin: left bottom;
    will-change: transform;
  }
  .placeholders__img-wrap:first-child {
    top: 10px;
    left: -20px;
    z-index: 2;
  }
  .placeholders__img-wrap:nth-child(2) {
    top: -30px;
    left: 10px;
    z-index: 1;
  }
  .placeholders__img-wrap:nth-child(3) {
    top: 30px;
    z-index: 0;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .placeholders {
    top: 10%;
    width: var(--col-4);
  }
  .placeholders__img-wrap {
    width: var(--col-4);
  }
  .placeholders__img {
    max-width: unset;
    width: calc(100% + var(--col-3)) !important;
    will-change: transform;
  }
}
@media only screen and (min-width: 1024px) {
  #content {
    transition: opacity 1s;
  }
  .slider {
    position: sticky;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    display: none;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    align-items: center;
    will-change: transform;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .slider {
    display: flex;
  }
}
@media only screen and (min-width: 1024px) {
  .slider_logo {
    display: none;
  }
  .slider__button-close {
    position: absolute;
    top: 1.04vw;
    left: 90.68089vw;
    z-index: 99999;
    background-color: transparent;
    cursor: pointer;
    padding: 0 !important;
    border: none;
    width: 3.636em;
    height: 3.636em;
    transition: ease-in-out 0.3s;
  }
  .slider__button-close:hover {
    scale: 1.3;
  }
  .slider__button-close-icon {
    position: absolute;
    top: 0;
    left: 0;
  }
  .slider__button-close-icon g.js-circle {
    display: none;
  }
  .slider__button-close-icon g.js-x {
    transform: scale(2);
    transform-origin: center;
  }
  .slider__button-close-icon g.js-x path {
    stroke-width: 5;
  }
  .slider__container {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(var(--slidesTotal), var(--col-4));
    grid-column-gap: 4.167vw;
    padding: 0 var(--col-1);
    height: 80vh;
    cursor: grab;
  }
  .slider__item {
    display: flex;
    align-items: end;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
    margin-top: 30px;
    background-color: transparent;
    height: 100%;
    border-radius: 7px;
  }
  .slider__item .overlay-texto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.787552521) 0%, rgba(0, 0, 0, 0) 85%);
    opacity: 0;
  }
  .slider__item-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slider__item-content {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    user-select: none;
    padding: 20px;
    font-weight: lighter !important;
    text-shadow: 0 1px 0 rgb(0, 0, 0);
    justify-content: center;
  }
  .slider__item-heading-wrap, .slider__item-button-wrap {
    display: flex;
    overflow: hidden;
  }
  .slider__item-button {
    margin: 1.389vw auto;
  }
  .slider__item-button-wrap {
    pointer-events: all;
  }
  .slider__item-button-wrap .m-btn {
    padding: 10px 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.3s ease, max-height 0.5s ease, visibility 0s 0.5s;
  }
  .slider__item-heading {
    pointer-events: none;
    color: var(--color-white);
    transform-origin: left bottom;
    will-change: transform;
    width: 100%;
  }
  .slider__item-heading h1 {
    font-size: 1.5em;
    display: inline-flex;
    font-weight: bold;
  }
  .slider__item-heading h1 .type {
    color: #e9e9e9;
  }
  .slider__item-heading p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.3s ease, max-height 0.5s ease, visibility 0s 0.5s;
  }
  .slider__item:hover p,
  .slider__item:hover .m-btn {
    max-height: 100px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, max-height 0.5s ease, visibility 0s 0s;
  }
  .slider__item-img {
    pointer-events: none;
    user-select: none;
    transform-origin: left center;
    transform: scale(1.75);
    will-change: transform;
  }
  .slider__progress-wrap {
    display: block;
    position: absolute;
    left: var(--col-2);
    bottom: 3.125vw;
    width: var(--col-8);
    height: 1px;
    overflow: hidden;
    background-color: #d6d6d6;
    transform-origin: left center;
    will-change: transform;
  }
  .slider__progress {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.658);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
  }
  .js-item.hidden {
    display: none;
  }
  .js-slider-section {
    transition: opacity 0.3s ease;
  }
  .js-slider-section .slider {
    top: 5em !important;
    height: calc(var(--vh, 1vh) * 100 - 5em) !important;
  }
  .js-slider-section .slider .filter-bar {
    top: 0;
  }
  .js-slider-section .slider__item {
    height: calc(var(--vh, 1vh) * 70);
  }
  .js-slider-section .slider__progress-wrap {
    bottom: 1.5vw;
  }
  .js-slider-section .slider__button-close {
    visibility: hidden !important;
  }
  #content {
    transition: opacity 1s;
  }
  .circle-cursor {
    position: fixed;
    display: none;
    left: 50%;
    backface-visibility: hidden;
    border: none;
    padding: 0.6em 3.5em;
    font-weight: bold;
    font-size: 1.05em;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease;
    color: transparent;
    background-color: transparent;
    position: relative;
    overflow: hidden;
  }
  .circle-cursor:hover {
    border: solid 2px #27c1c1;
    color: white !important;
  }
  .circle-cursor:hover .button-text {
    display: inline-block;
    animation: slide-in 1s forwards;
  }
  @keyframes slide-in {
    from {
      transform: translateX(-25%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .circle-cursor:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    right: 0;
    top: 0;
    z-index: -1;
    background-color: black;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5) 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  .circle-cursor:hover:after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .l-container__casos {
    display: flex;
    gap: 10px;
    padding: 0 var(--col-1);
    position: absolute;
    z-index: 10;
    top: 1.04vw;
    width: 100%;
    flex-wrap: nowrap;
    will-change: transform;
  }
  .l-container__casos .title {
    display: flex;
    align-items: center;
    font-size: 1.7em;
    margin-right: 0.5em;
  }
  .l-nav-casos .l-nav {
    border-bottom: solid 1px #3b3b3b;
  }
  .filter-bar {
    position: initial;
    display: flex;
    gap: 10px;
    padding: 0 10px;
    will-change: transform;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .filter-bar {
    padding: 8px;
    z-index: 10;
  }
  .filter-bar button {
    padding: 5px 20px;
    white-space: nowrap;
    background-color: white;
    color: black;
    font-weight: bold;
    transition: ease-in-out 0.3s;
    font-size: 0.9rem;
  }
  .filter-bar button.active, .filter-bar button:hover {
    background-color: #27c1c1;
    color: white !important;
  }
}
@media only screen and (min-width: 1024px) {
  .js-filter {
    opacity: 0;
    transition: ease-in-out 0.3s;
  }
}