/* ==========================================
   HERO
   ========================================== */

.mi-hero,
.mi-hero * {
  max-width: none !important;
}

.mi-hero {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: #000;
}

.mi-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

.mi-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mi-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 48px 24px 32px;
}

.mi-hero__logo {
  width: min(720px, 60vw);
  max-width: 90%;
  height: auto;
  align-self: end;
}

.mi-hero__marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}

.mi-hero__marquee {
  display: flex;
  width: max-content;
  animation: mi-marquee 140s linear infinite;
  -webkit-animation: mi-marquee 140s linear infinite;
  will-change: transform;
}

.mi-hero__marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mi-hero__marquee-item {
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 1.8vw, 21px);
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0 18px;
}

.mi-hero__marquee-item::after {
  content: "-";
  margin-left: 18px;
  opacity: 0.5;
}

@keyframes mi-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mi-hero__footer-logo {
  margin-top: 24px;
  width: min(180px, 22vw);
  height: auto;
  opacity: 0.55;
}

@media (max-width: 768px) {
  .mi-hero__logo {
    width: min(320px, 78vw);
  }

  .mi-hero__marquee-item {
    font-size: 12px;
    padding: 0 12px;
  }

  .mi-hero__footer-logo {
    width: 120px;
  }
}


/* ==========================================
   NOSOTROS
   ========================================== */

.mi-nosotros,
.mi-nosotros * {
  max-width: none !important;
}

.mi-nosotros {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.mi-nosotros__carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mi-nosotros__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.mi-nosotros__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.mi-nosotros__slide.is-active {
  opacity: 1;
}

.mi-nosotros__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 25%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mi-nosotros__arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.mi-nosotros__arrow--prev {
  left: 24px;
}

.mi-nosotros__arrow--next {
  right: 24px;
}

.mi-nosotros__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.mi-nosotros__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}

.mi-nosotros__dot.is-active {
  background: #fff;
}

@media (max-width: 768px) {
  .mi-nosotros__arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .mi-nosotros__arrow--prev {
    left: 12px;
  }

  .mi-nosotros__arrow--next {
    right: 12px;
  }
}


/* ==========================================
   THIS IS US
   ========================================== */

.mi-us,
.mi-us * {
  max-width: none !important;
}

.mi-us {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.mi-us__desktop,
.mi-us__mobile {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.mi-us__mobile {
  display: none;
}

@media (max-width: 1024px) {
  .mi-us__desktop {
    display: none;
  }

  .mi-us__mobile {
    display: block;
  }
}

.mi-us__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}

@media (max-width: 1024px) {
  .mi-us__mobile .mi-us__bg {
    object-position: center;
  }
}

.mi-us__person {
  position: absolute;
  top: 56%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: top 0.4s ease;
}

.mi-us__person--paula {
  left: 11%;
  align-items: flex-start;
}

.mi-us__person--nacho {
  right: 11%;
  align-items: flex-end;
}

.mi-us__desktop .mi-us__person--boxed-open {
  top: calc(56% - 25vh);
}

.mi-us__desktop .mi-us__person--boxed-open .mi-us__label {
  transition: transform 0.4s ease;
}

.mi-us__desktop .mi-us__person--paula.mi-us__person--boxed-open .mi-us__label {
  transform: translateX(110px) translateY(70px);
}

.mi-us__desktop .mi-us__person--nacho.mi-us__person--boxed-open .mi-us__label {
  transform: translateX(-110px) translateY(70px);
}

.mi-us__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.mi-us__person--nacho .mi-us__label {
  text-align: right;
}

.mi-us__label-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mi-us__linkedin {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mi-us__name {
  font-size: 16px;
}

.mi-us__name strong {
  font-weight: 700;
}

.mi-us__role {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.mi-us__toggle-row {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 4;
  transition: top 0.4s ease, left 0.4s ease, right 0.4s ease, margin 0.4s ease;
}

.mi-us__toggle {
  position: relative;
  z-index: 4;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.mi-us__toggle:focus,
.mi-us__toggle:active,
.mi-us__toggle:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  -moz-appearance: none;
}

.mi-us__toggle img {
  width: 100%;
  height: 100%;
  filter: none;
  box-shadow: none;
}

.mi-us__toggle-row.is-open .mi-us__toggle {
  transform: rotate(0deg);
}

.mi-us__desktop .mi-us__toggle-row.is-open {
  position: absolute;
  top: 45px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mi-us__desktop .mi-us__person--paula .mi-us__toggle-row.is-open {
  left: calc(min(320px, 30vw) - 20px);
}

.mi-us__desktop .mi-us__person--nacho .mi-us__toggle-row.is-open {
  right: calc(min(320px, 30vw) - 20px);
}

.mi-us__cv-wrap {
  position: absolute;
  top: 100%;
  margin-top: -20px;
  z-index: 2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mi-us__person--paula .mi-us__cv-wrap {
  left: 20px;
}

.mi-us__person--nacho .mi-us__cv-wrap {
  right: 20px;
}

.mi-us__cv {
  display: block;
  width: min(320px, 30vw);
  height: auto;
}

.mi-us__toggle-row.is-open .mi-us__cv-wrap {
  max-height: min(420px, 42vh);
  opacity: 1;
}

@media (max-width: 768px) {
  .mi-us__person {
    top: 62%;
  }

  .mi-us__label-text {
    max-width: 110px;
  }

  .mi-us__name {
    font-size: 13px;
  }

  .mi-us__role {
    font-size: 10px;
  }

  .mi-us__toggle-row {
    width: 30px;
    height: 30px;
  }

  .mi-us__toggle {
    width: 30px;
    height: 30px;
  }

  .mi-us__cv {
    width: min(420px, 78vw);
  }
}


/* ==========================================
   HEADS OF TEAMS
   ========================================== */

.mi-heads,
.mi-heads * {
  max-width: none !important;
}

.mi-heads {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.mi-heads__desktop {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-heads__mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  display: none;
}

@media (max-width: 1024px) {
  .mi-heads__desktop {
    display: none;
  }

  .mi-heads__mobile {
    display: block;
  }
}

.mi-heads__mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

.mi-heads__mobile-slides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72%;
  max-width: 310px !important;
}

.mi-heads__mobile-slide {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0 !important;
  border-radius: 24px 24px 4px 4px;
  overflow: hidden;
}

.mi-heads__mobile-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 !important;
}

.mi-heads__mobile-slide.is-active {
  display: block;
}

.mi-heads__mobile-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mi-heads__mobile-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mi-heads__mobile-arrow--prev {
  left: 5%;
}

.mi-heads__mobile-arrow--next {
  right: 5%;
}

.mi-heads__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.mi-heads__row {
  position: relative;
  z-index: 1;
  width: min(1400px, 94%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: min(6vw, 80px);
  padding: min(10px, 9vh) calc(4% + 6px) min(90px, 9vh) calc(9% + 6px);
}

.mi-heads__title-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 4px 0;
}

.mi-heads__title-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(65px, 6.5vw, 112px);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.mi-heads__title-line--heads {
  align-self: flex-start;
}

.mi-heads__title-line--of {
  align-self: flex-start;
}

.mi-heads__title-line--teams {
  align-self: flex-start;
}

.mi-heads__pyramid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.mi-heads__pyramid-row {
  display: flex;
  gap: clamp(10px, 1.2vw, 16px);
}

.mi-heads__tile {
  position: relative;
  width: clamp(110px, 11vw, 190px);
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.mi-heads__face,
.mi-heads__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  box-shadow: none;
  filter: none;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.mi-heads__overlay {
  opacity: 0;
}

.mi-heads__tile:hover .mi-heads__face {
  opacity: 0;
}

.mi-heads__tile:hover .mi-heads__overlay {
  opacity: 1;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .mi-heads__row {
    gap: 40px;
    width: 96%;
    padding-left: 6%;
    padding-right: 2%;
  }
  .mi-heads__tile {
    width: clamp(95px, 11vw, 160px);
  }
}

@media (max-width: 1024px) {
  .mi-heads__row {
    flex-direction: column;
    gap: 24px;
    padding: 100px 0 48px;
  }

  .mi-heads__title-col {
    align-self: center;
    align-items: center;
  }

  .mi-heads__pyramid-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ==========================================
   SERVICE
   ========================================== */

.mi-service,
.mi-service * {
  max-width: none !important;
}

.mi-service {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.mi-service__desktop,
.mi-service__mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  cursor: pointer;
}

.mi-service__mobile {
  display: none;
}

@media (max-width: 1024px) {
  .mi-service__desktop {
    display: none;
  }

  .mi-service__mobile {
    display: block;
  }
}

.mi-service__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease;
}


/* ==========================================
   CLIENTES SECTION
   DESKTOP - GRID FIJA SOBRE ZONA DERECHA
   ========================================== */

.mi-client,
.mi-client * {
  max-width: none !important;
}

.mi-client {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: hidden;
  background-color: #000;
}


/* ==========================================
   DESKTOP
   ========================================== */

.mi-client__desktop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


/* ==========================================
   BACKGROUND
   ========================================== */

.mi-client__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}


/* ==========================================
   FRANJA OSCURA DEL LADO IZQUIERDO
   ========================================== */

.mi-client__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 29%;
  height: 100%;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
  z-index: 1;
}


/* ==========================================
   CONTENEDOR GENERAL
   ========================================== */

.mi-client__container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}


/* ==========================================
   TITULO - IZQUIERDA
   ========================================== */

.mi-client__left {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 29%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  box-sizing: border-box;

  padding-left: 2.2vw;
  padding-bottom: 8vh;

  z-index: 3;
}


.mi-client__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  font-size: clamp(42px, 5vw, 76px);

  color: #ffffff;

  line-height: 0.95;
  letter-spacing: -0.02em;

  margin: 0 0 8px 0;

  text-transform: lowercase;
}


.mi-client__hashtag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  font-size: clamp(15px, 1.8vw, 27px);

  color: #ffffff;

  letter-spacing: 0.01em;

  margin: 0;

  text-transform: lowercase;
}


/* ==========================================
   GRILLA DE LOGOS
   ========================================== */

.mi-client__grid {
  position: absolute;

  left: 31%;
  right: 3%;

  top: 50%;
  transform: translateY(-50%);

  width: auto;
  height: auto;

  display: grid;

  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);

  column-gap: clamp(6px, 0.65vw, 12px);
  row-gap: clamp(5px, 0.8vh, 10px);

  align-items: center;
  justify-items: center;

  padding: 0;

  box-sizing: border-box;

  z-index: 4;
}


/* ==========================================
   LOGOS
   ========================================== */

.mi-client__logo {
  display: block;

  width: auto;
  height: auto;

  max-width: 90%;
  max-height: clamp(42px, 6.2vh, 62px);

  object-fit: contain;

  margin: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: none !important;

  transition: none !important;

  z-index: 5;
}


/* ==========================================
   BLANKS
   ========================================== */

.mi-client__blank {
  display: block;
  width: 100%;
  height: 1px;
}


/* ==========================================
   ASEGURAR QUE NINGÚN ESTADO LOS OCULTE
   ========================================== */

.mi-client__grid img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}


/* ==========================================
   DESKTOP GRANDE
   ========================================== */

@media (min-width: 1600px) {

  .mi-client__grid {
    left: 31%;
    right: 3%;
    column-gap: 7px;
    row-gap: 7px;
  }

  .mi-client__logo {
    max-height: 80px;
    max-width: 92%;
  }

}


/* ==========================================
   DESKTOP MEDIO
   ========================================== */

@media (min-width: 1200px) and (max-width: 1599px) {

  .mi-client__grid {
    left: 31%;
    right: 3%;

    column-gap: 5px;
    row-gap: 5px;
  }

  .mi-client__logo {
    max-height: 65px;
    max-width: 92%;
  }

}


/* ==========================================
   LAPTOP
   ========================================== */

@media (min-width: 1025px) and (max-width: 1199px) {

  .mi-client__grid {
    left: 30%;
    right: 2.5%;

    column-gap: 5px;
    row-gap: 5px;
  }

  .mi-client__logo {
    max-height: 60px;
    max-width: 92%;
  }

  .mi-client__left {
    padding-left: 2vw;
    padding-bottom: 7vh;
  }

}


/* ==========================================
   MOBILE
   ========================================== */

.mi-client__mobile {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
}


@media (max-width: 1024px) {

  .mi-client__desktop {
    display: none;
  }

  .mi-client__mobile {
    display: block;
  }

}


/* ==========================================
   MOBILE BACKGROUND
   ========================================== */

.mi-client__mobile-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  margin: 0 !important;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}


/* ==========================================
   MOBILE TRACK
   ========================================== */

.mi-client__mobile-track {
  position: relative;

  z-index: 2;

  width: 100%;
  height: 100%;
}


/* ==========================================
   MOBILE SLIDES
   ========================================== */

.mi-client__mobile-slide {
  display: none;

  position: absolute;

  inset: 0;

  align-items: center;
  align-content: center;
  justify-items: center;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 8px;
  row-gap: 8px;

  width: 82%;
  height: 50%;

  left: 9%;
  top: 35%;
}


.mi-client__mobile-slide.is-active {
  display: grid;
}


.mi-client__mobile-slide img {
  display: block !important;

  max-width: 100%;
  max-height: 85px;

  width: auto;
  height: auto;

  margin: 0 !important;

  object-fit: contain;

  opacity: 1 !important;
  visibility: visible !important;
}


/* ==========================================
   MOBILE ARROWS
   ========================================== */

.mi-client__mobile-arrow {
  position: absolute;

  top: 60%;

  transform: translateY(-50%);

  z-index: 3;

  width: 40px;
  height: 40px;

  background: none;
  border: none;

  padding: 0;

  cursor: pointer;
}


.mi-client__mobile-arrow svg {
  display: block;

  width: 100%;
  height: 100%;
}


.mi-client__mobile-arrow--prev {
  left: 2%;
}


.mi-client__mobile-arrow--next {
  right: 2%;
}

/* ==========================================
   LATAM
   ========================================== */

.mi-latam,
.mi-latam * {
  max-width: none !important;
}

.mi-latam {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.mi-latam__desktop {
  width: 100%;
  height: 100vh;
}

.mi-latam__mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: none;
}

@media (max-width: 1024px) {
  .mi-latam__desktop {
    display: none;
  }

  .mi-latam__mobile {
    display: block;
  }
}

.mi-latam__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center bottom;
}

.mi-latam__title {
  position: absolute;
  left: 3%;
  top: 20%;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 500px;
}

.mi-latam__title-main {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.mi-latam__title-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 16px;
}

.mi-latam__title-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.mi-latam__offices {
  position: absolute;
  left: 3%;
  bottom: 14%;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 640px;
}

.mi-latam__offices-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 28px;
}

.mi-latam__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.mi-latam__label {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 4px;
}

.mi-latam__countries {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mi-latam__presence .mi-latam__label {
  font-size: 11px;
}

.mi-latam__presence .mi-latam__countries {
  font-size: 14px;
}

.mi-latam__presence {
  margin-left: 48px;
}

.mi-latam__hashtag {
  position: absolute;
  right: 4%;
  bottom: 14%;
  z-index: 2;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 768px) {
  .mi-latam__offices {
    left: 6%;
    max-width: 88%;
  }

  .mi-latam__countries {
    font-size: 15px;
  }

  .mi-latam__label {
    font-size: 12px;
  }

  .mi-latam__logo {
    width: 32px;
    height: 32px;
  }
}


/* ==========================================
   CONTACT
   ========================================== */

.mi-contact,
.mi-contact * {
  max-width: none !important;
}

.mi-contact {
  position: relative;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-color: #000;
}

.mi-contact__desktop {
  width: 100%;
  height: 100vh;
}

.mi-contact__mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: none;
}

@media (max-width: 1024px) {
  .mi-contact__desktop {
    display: none;
  }

  .mi-contact__mobile {
    display: block;
  }
}

.mi-contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center bottom;
}

.mi-contact__social {
  position: absolute;
  left: 63%;
  bottom: 19%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mi-contact__social-label {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.mi-contact__social img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mi-contact__info {
  position: absolute;
  left: 63%;
  bottom: 26%;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.mi-contact__info a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mi-contact__info {
    left: 8%;
    bottom: 14%;
    font-size: 13px;
  }

  .mi-contact__social {
    left: 8%;
    bottom: 6%;
  }

  .mi-contact__social-label {
    font-size: 13px;
  }

  .mi-contact__social img {
    width: 24px;
    height: 24px;
  }
}


/* ==========================================
   CAROUSEL MOBILE NOSOTROS
   ========================================== */

.mi-nosotros__carousel--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .mi-nosotros__carousel--desktop {
    display: none;
  }

  .mi-nosotros__carousel--mobile {
    display: block;
  }
}


/* ==========================================
   THIS IS US MOBILE
   ========================================== */

.mi-us__person--paula-m,
.mi-us__person--nacho-m {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mi-us__person--paula-m {
  left: 6%;
  top: 14%;
  align-items: flex-start;
}

.mi-us__person--nacho-m {
  right: 6%;
  top: 68%;
  align-items: flex-end;
}

.mi-us__person--nacho-m .mi-us__label {
  text-align: right;
}

.mi-us__person--paula-m .mi-us__cv-wrap {
  left: 0;
}

.mi-us__person--nacho-m .mi-us__cv-wrap {
  right: 0;
}


/* ==========================================
   CLIENTES MOBILE
   ========================================== */

.mi-client__mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

.mi-client__mobile-track {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.mi-client__mobile-slide {
  display: none;
  position: absolute;
  inset: 0;

  align-items: center;
  align-content: center;
  justify-items: center;

  grid-template-columns: repeat(2, 1fr);

  column-gap: 5px;
  row-gap: 6px;

  width: 82%;
  height: 50%;

  left: 9%;
  top: 35%;
}

.mi-client__mobile-slide.is-active {
  display: grid;
}

.mi-client__mobile-slide img {
  max-width: 100%;
  max-height: 85px;
  width: auto;
  height: auto;
  margin: 0 !important;
  object-fit: contain;
}

.mi-client__mobile-arrow {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mi-client__mobile-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mi-client__mobile-arrow--prev {
  left: 2%;
}

.mi-client__mobile-arrow--next {
  right: 2%;
}


/* ==========================================
   LATAM MOBILE
   ========================================== */

.mi-latam__mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center 55%;
}

.mi-latam__mobile-offices {
  position: absolute;
  left: 8%;
  top: 50%;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 78%;
}

.mi-latam__mobile-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.mi-latam__mobile-logo {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.mi-latam__mobile-label {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 2px;
}

.mi-latam__mobile-countries {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.mi-latam__mobile-presence {
  margin-left: 88px;
}

.mi-latam__mobile-presence .mi-latam__mobile-label {
  font-size: 11px;
}

.mi-latam__mobile-presence .mi-latam__mobile-countries {
  font-size: 13px;
}


/* ==========================================
   CONTACT MOBILE
   ========================================== */

.mi-contact__mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

.mi-contact__mobile-info {
  position: absolute;
  left: 19%;
  top: 66%;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.mi-contact__mobile-info a {
  color: #fff;
  text-decoration: none;
}

.mi-contact__mobile-social {
  position: absolute;
  left: 19%;
  top: 84%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mi-contact__mobile-social-label {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.mi-contact__mobile-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}


/* ==========================================
   SCROLL
   ========================================== */

#home,
#nosotros,
#thisisus,
#heads,
#service,
#client,
#latam,
#contact {
  scroll-margin-top: 74px;
}

@media (max-width: 1024px) {

  .mi-hero,
  .mi-nosotros,
  .mi-us,
  .mi-heads,
  .mi-service,
  .mi-client,
  .mi-latam {
    height: 100svh !important;
    min-height: 100svh !important;
  }

  #home,
  #nosotros,
  #thisisus,
  #heads,
  #service,
  #client,
  #latam,
  #contact {
    scroll-margin-top: 58px;
  }
}


/* ==========================================
   MONTSERRAT
   ========================================== */

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


/* ==========================================
   LATAM MOBILE HASHTAG
   ========================================== */

.mi-latam__mobile-hashtag {
  position: absolute;
  right: 6%;
  bottom: 18%;
  z-index: 2;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0;
}