:root {
  --mcg-blue: #412fff;
  --text-light: #9c9ca1;
  --text-body: #8f8f94;
  --rule: #cfcfd2;
  --teal: #23e2bf;
  --red: #ff5f63;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-body);
  background: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 300;
}

body.is-loading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 620ms ease, visibility 620ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-animation {
  display: block;
  width: min(180px, 25vw);
  pointer-events: none;
}

.preloader-animation svg {
  display: block;
  width: 100%;
  height: auto;
}

main {
  background: #fff;
}

.fw-thin {
  font-weight: 100;
}
.fw-extralight {
  font-weight: 200;
}
.fw-extrabold {
  font-weight: 800;
}

body.portfolio-lightbox-open {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.no-scroll-reveal .reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.service-group.reveal-on-scroll {
  transition-delay: 120ms;
}

.digital-group.reveal-on-scroll {
  transition-delay: 220ms;
}

.service-column.reveal-on-scroll:nth-child(1) {
  transition-delay: 180ms;
}

.service-column.reveal-on-scroll:nth-child(2) {
  transition-delay: 260ms;
}

.service-column.reveal-on-scroll:nth-child(3) {
  transition-delay: 340ms;
}

.service-column.reveal-on-scroll:nth-child(4) {
  transition-delay: 420ms;
}

.footer-reveal.reveal-on-scroll {
  transition-delay: 120ms;
}

.about-reveal-1 {
  transition-delay: 120ms;
}

.about-reveal-2 {
  transition-delay: 260ms;
}

.about-reveal-3 {
  transition-delay: 380ms;
}

.about-reveal-4 {
  transition-delay: 500ms;
}

.about-reveal-5 {
  transition-delay: 620ms;
}

.about-reveal-6 {
  transition-delay: 740ms;
}

.value-reveal-1 {
  transition-delay: 120ms;
}

.value-reveal-2 {
  transition-delay: 220ms;
}

.value-reveal-3 {
  transition-delay: 320ms;
}

.value-reveal-4 {
  transition-delay: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .portfolio-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .preloader-animation svg {
    animation: none;
  }

  .hero-scroll-indicator {
    animation: none;
  }
}

button,
input,
textarea,
select {
  font-family: inherit;
}

a {
  color: inherit;
}

.mcg-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-left: 76px;
  padding-right: 76px;
}

.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #fff;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header .mcg-container {
  width: 100%;
  max-width: none;
}

.has-floating-header main {
  padding-top: 0;
}

.page-index .site-header {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.navbar {
  min-height: 64px;
  padding: 10px 0;
}

.navbar > .mcg-container {
  position: relative;
}

.navbar-brand {
  position: relative;
  z-index: 1002;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: 80px;
  height: auto;
  display: block;
}

.navbar-nav {
  gap: 38px;
}

.mobile-menu-panel {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.navbar-nav > .nav-item:not(.language-switch) > .nav-link {
  position: relative;
  color: #8f8f94;
  padding: 0 0 0px;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0;
}

.navbar-nav > .nav-item:not(.language-switch) > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s ease;
}

.navbar-nav > .nav-item:not(.language-switch) > .nav-link:hover,
.navbar-nav > .nav-item:not(.language-switch) > .nav-link:focus {
  color: #8f8f94;
}

.navbar-nav > .nav-item:not(.language-switch) > .nav-link:hover::after,
.navbar-nav > .nav-item:not(.language-switch) > .nav-link:focus::after,
.navbar-nav > .nav-item:not(.language-switch) > .nav-link.active {
  color: var(--mcg-blue);
}

.navbar-nav > .nav-item:not(.language-switch) > .nav-link:hover::after,
.navbar-nav > .nav-item:not(.language-switch) > .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  position: relative;
  z-index: 1002;
  width: 66px;
  height: 58px;
  border: 1px solid rgba(45, 60, 255, .38);
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .18rem rgba(45, 60, 255, .14);
}

.navbar-toggler-icon {
  width: 34px;
  height: 34px;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845,60,255,0.92%29' stroke-linecap='square' stroke-miterlimit='10' stroke-width='2.4' d='M3 7h24M3 15h24M3 23h24'/%3e%3c/svg%3e");
}

.site-header.menu-open {
  background: transparent;
}

.site-header.menu-open .navbar-brand,
.site-header.menu-open .navbar-nav > .nav-item:not(.language-switch) > .nav-link,
.site-header.menu-open .language-switch .nav-link,
.site-header.menu-open .lang-divider {
  color: #fff;
}

.site-header.menu-open .navbar-nav > .nav-item:not(.language-switch) > .nav-link.active {
  color: #fff;
}

.site-header.menu-open .navbar-toggler {
  border-color: rgba(255, 255, 255, .52);
}

.site-header.menu-open .navbar-toggler:focus {
  box-shadow: 0 0 0 .18rem rgba(255, 255, 255, .18);
}

.site-header.menu-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='square' stroke-miterlimit='10' stroke-width='2.4' d='M3 7h24M3 15h24M3 23h24'/%3e%3c/svg%3e");
}

body.mobile-menu-open {
  overflow: hidden;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
}

.language-switch .nav-link {
  font-size: 16px;
  text-decoration: none;
  color: #aaa;
}

.language-switch .lang-link.active {
  color: var(--mcg-blue);
  font-weight: 400;
}

.lang-divider {
  color: #b5b5b8;
  font-size: 15px;
}

.page-index .navbar-brand,
.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link,
.page-index .language-switch .nav-link,
.page-index .lang-divider {
  color: #fff;
}

.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link:hover,
.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link:focus,
.page-index .language-switch .nav-link:hover,
.page-index .language-switch .nav-link:focus {
  color: #fff;
  opacity: .82;
}

.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link.active,
.page-index .language-switch .lang-link.active {
  color: #fff;
}

.page-index .language-switch .lang-link.active {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link.active::after,
.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link:hover::after,
.page-index .navbar-nav > .nav-item:not(.language-switch) > .nav-link:focus::after {
  transform: scaleX(1);
}

.page-index .navbar-toggler {
  border-color: rgba(255, 255, 255, .6);
}

.page-index .navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .18);
}

.page-index .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-slider {
  position: relative;
  height: clamp(560px, 53.7vw, 733px);
  overflow: hidden;
  background: #111;
  touch-action: pan-y;
}

.page-index .hero-slider {
  width: 100%;
  min-height: 100vh;
  height: 100svh;
}

.page-index .hero-slide {
  align-items: flex-end;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(-100%);
  transition: transform 850ms cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}

.hero-slide.active {
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.slide-enter-left {
  z-index: 3;
  transform: translateX(-100%);
}

.hero-slide.slide-enter-right {
  z-index: 3;
  transform: translateX(100%);
}

.hero-slide.slide-out-right {
  z-index: 2;
  transform: translateX(100%);
}

.hero-slide.slide-out-left {
  z-index: 2;
  transform: translateX(-100%);
}

.hero-slide.no-transition {
  transition: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .5) 100%);
}

.page-index .hero-shade {
  background: linear-gradient(180deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .12) 35%, rgba(0, 0, 0, .56) 100%);
}

.bg-mcg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  max-width: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-160px, 0, 0);
  transform-origin: right center;
  transition: transform 1250ms cubic-bezier(.22, 1, .36, 1) 560ms, opacity 950ms ease 560ms;
}

.hero-slide.active .bg-mcg {
  opacity: .72;
  transform: translate3d(0, 0, 0);
}

.hero-slide.slide-out-left .bg-mcg,
.hero-slide.slide-out-right .bg-mcg {
  opacity: 0;
  transform: translate3d(90px, 0, 0);
  transition-duration: 360ms;
  transition-delay: 0ms;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 126px;
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 900ms ease 650ms, transform 900ms ease 650ms;
}

.page-index .hero-content {
  width: 100%;
  padding-top: 96px;
  padding-bottom: 70px;
  padding-right: clamp(260px, 24vw, 420px);
  text-align: left;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.slide-out-left .hero-content,
.hero-slide.slide-out-right .hero-content {
  opacity: 0;
  transform: translateX(-24px);
  transition-delay: 0ms;
  transition-duration: 320ms;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.45vw, 48px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0;
}

.page-index .hero-content h1 {
  width: 100%;
  max-width: 490px;
  /* minimo, promedio en % , maximo */
  font-size: clamp(18px, 5.4vw, 36px);
  line-height: 1.1;
  font-weight: 100;
}

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

.page-index .slider-dots {
  left: 0;
  right: 0;
  transform: none;
  justify-content: flex-start;
}

.hero-scroll-indicator {
  display: none;
}

.slider-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(221, 221, 221, .78);
  transition: background-color 200ms ease, transform 200ms ease;
}

.slider-dot:hover,
.slider-dot:focus-visible {
  transform: scale(1.08);
  outline: none;
}

.slider-dot.active {
  background: var(--mcg-blue);
}

@media (min-width: 992px) {
  .page-index .hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 42px;
    z-index: 4;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
  }

  .page-index .hero-scroll-indicator img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translate(-50%, -6px);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

.services-section {
  padding: 75px 0 0;
  background: #fff;
}

.services-editorial {
  width: 100%;
}

.services-intro {
  max-width: 1280px;
  margin: 0 0 92px;
  color: #181818;
  font-size: clamp(32px, 4.1vw, 53px);
  line-height: 1.2;
  font-weight: 200;
  letter-spacing: -0.04em;
}

.service-group {
  padding-bottom: 22px;
}

.service-group + .service-group {
  padding-top: 8px;
}

.service-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #181818;
  font-size: clamp(32px, 2.2vw, 48px);
  line-height: 1.04;
  font-weight: 200;
  letter-spacing: -0.03em;
  text-align: left;
  cursor: pointer;
}

.service-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.service-toggle .caret {
  color: #9c9ca1;
  transition: transform 280ms ease, color 280ms ease;
  transform-origin: center;
  will-change: transform;
  animation: none;
}

.service-toggle[aria-expanded="true"] .caret {
  animation: service-caret-bob 1.15s ease-in-out infinite;
}

.service-toggle[aria-expanded="false"] .caret {
  animation: none;
  transform: rotate(-90deg);
}

.service-content {
  overflow: hidden;
  opacity: 0;
  transition: height 360ms ease, opacity 260ms ease;
}

.service-content.is-open {
  opacity: 1;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  padding-bottom: 26px;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid currentColor;
}

.caret-teal {
  color: var(--teal);
}

.caret-red {
  color: var(--red);
}

@keyframes service-caret-bob {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(6px);
  }
}

.service-card {
  min-height: 210px;
  padding: 24px 18px 22px;
  border: 1px solid rgba(66, 65, 255, .42);
  background: #fff;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--mcg-blue);
  font-size: clamp(20px, 1.65vw, 31px);
  line-height: 1.08;
  font-weight: 300;
}

.service-card p {
  margin: 0;
  max-width: 92%;
  color: #181818;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.22;
  font-weight: 300;
}

.digital-group {
  /* padding-bottom: 54px; */
}

.footer-section {
  /* padding-bottom: 62px; */
  background: #fff;
}

.footer-section-compact {
  padding-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 32px 0 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}

.footer-brand img {
  width: clamp(180px, 18vw, 250px);
  height: auto;
  display: block;
}

.footer-content {
  margin-left: auto;
  max-width: 540px;
}

.footer-message {
  margin: 0 0 28px;
  color: #181818;
  font-size: clamp(24px, 3.0vw, 35px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-email {
  pointer-events: auto;
  display: inline-block;
  color: var(--mcg-blue);
  font-size: clamp(22px, 2.6vw, 35px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-footer a:hover {
  color: var(--mcg-blue);
}

.footer-copy {
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  background: #fff;
}

.portfolio-item {
  position: relative;
  width: 100%;
  aspect-ratio: 447 / 555;
  display: block;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms ease, transform 850ms ease;
}

.portfolio-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-scroll-reveal .portfolio-item {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item img,
.portfolio-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 650ms ease, transform 650ms ease;
}

.portfolio-item video {
  opacity: 0;
}

.portfolio-item.is-previewing-video video {
  opacity: 1;
}

.portfolio-item.is-previewing-video img {
  opacity: 0;
}

.portfolio-item:hover img,
.portfolio-item:focus-visible img,
.portfolio-item:hover video,
.portfolio-item:focus-visible video {
  transform: scale(1.035);
}

.portfolio-title {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  max-width: calc(100% - 56px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  font-weight: 300;
  text-align: left;
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.portfolio-heading,
.portfolio-subtitle {
  display: block;
}

.portfolio-subtitle {
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.18;
  font-weight: 300;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .58) 100%);
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.portfolio-item:hover::after,
.portfolio-item:focus-visible::after,
.portfolio-item:hover .portfolio-title,
.portfolio-item:focus-visible .portfolio-title {
  opacity: 1;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:focus-visible .portfolio-title {
  transform: translateX(0);
}

.portfolio-item:focus-visible {
  outline: 2px solid var(--mcg-blue);
  outline-offset: -2px;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, .95);
  touch-action: pan-y;
}

.portfolio-lightbox.is-open {
  display: flex;
}

.portfolio-lightbox-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.portfolio-lightbox.is-loading .portfolio-lightbox-media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 3px solid rgba(255, 255, 255, .24);
  border-top-color: rgba(255, 255, 255, .9);
  border-radius: 50%;
  animation: portfolio-lightbox-spin .7s linear infinite;
  pointer-events: none;
}

.portfolio-lightbox-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portfolio-lightbox-media video {
  width: calc(100vw - 172px);
  max-width: 100%;
  max-height: calc(100vh - 144px);
  display: block;
  object-fit: contain;
}

.portfolio-lightbox-media img {
  opacity: 1;
  transition: opacity 260ms ease;
}

.portfolio-lightbox-media img.is-changing {
  opacity: 0;
}

@keyframes portfolio-lightbox-spin {
  to {
    transform: rotate(360deg);
  }
}

.portfolio-lightbox-button {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.portfolio-lightbox-prev,
.portfolio-lightbox-next {
  width: auto;
  height: auto;
  min-width: 44px;
  padding: 6px 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 72px;
  font-weight: 100;
}

.portfolio-lightbox-prev:hover,
.portfolio-lightbox-prev:focus-visible,
.portfolio-lightbox-next:hover,
.portfolio-lightbox-next:focus-visible {
  background: transparent;
  color: #9fa1ff;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, .18);
  outline: none;
}

.portfolio-lightbox-close {
  top: 28px;
  right: 28px;
}

.portfolio-lightbox-prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-lightbox-next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.services-section-compact {
  padding-top: 55px;
}

.about-hero {
  min-height: 1135px;
  color: #fff;
  background: linear-gradient(180deg, var(--mcg-blue) 0%, #4a2cff 72%, #050017 100%);
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 202px;
  text-align: center;
}

.about-hero h1 {
  margin: 0 0 56px;
  color: #f7f6ff;
  font-size: clamp(82px, 9vw, 132px);
  line-height: .9;
  font-weight: 100;
  letter-spacing: 0;
}

.about-lead,
.about-copy {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 300;
}

.conversation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  margin: 66px 0 64px;
  padding: 13px 30px;
  color: #fff;
  background: #ff4f53;
  /* border: 2px solid #1b1464; */
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.conversation-button:hover {
  color: #fff;
  background: #ff6265;
}

.team-list {
  display: flex;
  justify-content: center;
  gap: 58px;
  margin-top: 66px;
}

.team-card {
  width: 246px;
  color: #fff;
  text-align: center;
}

.team-card img {
  width: 210px;
  height: 210px;
  margin: 0 auto 18px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: .95;
  font-weight: 400;
}

.team-card h2 span {
  color: rgba(255, 255, 255, .52);
  font-weight: 300;
}

.team-card a {
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.values-section {
  padding: 151px 0 148px;
  background: #fff;
}

.values-row {
  row-gap: 36px;
}

.values-section h2 {
  margin: 0;
  color: #7269ff;
  font-size: 55px;
  line-height: .94;
  font-weight: 100;
  letter-spacing: 0;
}

.value-item h3 {
  margin: 0 0 17px;
  color: #3d3d42;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}

.value-item p {
  max-width: 245px;
  margin: 0;
  color: #64646a;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 300;
}

.about-watermark {
  position: relative;
  min-height: 512px;
  overflow: hidden;
  /* background: #fff url("../images/bg.gif") center top / cover no-repeat; */
}

.about-watermark-layer {
  position: absolute;
  left: 50%;
  width: min(1680px, 132vw);
  max-width: none;
  pointer-events: none;
  will-change: transform;
}

.about-watermark-track {
  display: flex;
  width: max-content;
  align-items: center;
}

.about-watermark-layer img {
  display: block;
  width: 100%;
  height: auto;
}

.about-watermark-layer-back {
  top: 10%;
  left: 0;
  width: auto;
  transform: translate3d(-18%, 0, 0);
  animation: aboutWatermarkDriftBack 21s ease-in-out infinite alternate;
}

.about-watermark-layer-back .about-watermark-track img {
  width: min(1940px, 152vw);
}

.about-watermark-layer-center {
  top: 2%;
  width: min(2140px, 168vw);
  transform: translate3d(-50%, 0, 0);
  animation: aboutWatermarkDriftCenter 17s ease-in-out infinite alternate;
}

.about-watermark-layer-front {
  top: 35%;
  left: 0;
  width: auto;
  transform: translate3d(-10%, 0, 0);
  animation: aboutWatermarkDriftFront 25s ease-in-out infinite alternate;
}

.about-watermark-layer-front .about-watermark-track img {
  width: min(1940px, 152vw);
}

@keyframes aboutWatermarkDriftBack {
  from {
    transform: translate3d(-24%, 0, 0);
  }

  to {
    transform: translate3d(-8%, 0, 0);
  }
}

@keyframes aboutWatermarkDriftFront {
  from {
    transform: translate3d(-4%, 0, 0);
  }

  to {
    transform: translate3d(-20%, 0, 0);
  }
}

@keyframes aboutWatermarkDriftCenter {
  from {
    transform: translate3d(-53%, 0, 0);
  }

  to {
    transform: translate3d(-47%, 0, 0);
  }
}

@media (max-width: 1350px) {
  .mcg-container {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (max-width: 991.98px) {
  .services-intro {
    margin-bottom: 64px;
    font-size: clamp(34px, 6vw, 52px);
  }

  .service-cards {
    gap: 16px;
  }

  .service-card {
    min-height: 190px;
  }

  .about-hero {
    min-height: auto;
  }

  .about-inner {
    padding-top: 126px;
    padding-bottom: 110px;
  }

  .about-lead,
  .about-copy {
    font-size: 24px;
  }

  .values-section {
    padding: 98px 0 110px;
  }

  .value-item p {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .mcg-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .navbar {
    min-height: 60px;
    padding: 18px 0;
  }

  .navbar-collapse {
    z-index: 1001;
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 132px 24px 44px;
    margin-top: 0;
    background: #413cff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    transition: none;
    will-change: clip-path, opacity;
  }

  .navbar-collapse.show,
  .navbar-collapse.is-opening,
  .navbar-collapse.is-closing,
  .navbar-collapse.collapsing {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar-collapse.show {
    clip-path: inset(0 0 0 0);
  }

  .navbar-collapse.is-opening {
    animation: mobileMenuReveal .42s cubic-bezier(.22, 1, .36, 1) forwards;
  }

  .navbar-collapse.is-closing {
    animation: mobileMenuConceal .34s cubic-bezier(.55, .06, .68, .19) forwards;
  }

  .navbar-collapse.collapsing {
    height: 100svh !important;
    overflow: hidden;
  }

  @keyframes mobileMenuReveal {
    from {
      clip-path: inset(0 0 100% 0);
      opacity: 0;
    }

    to {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }

  @keyframes mobileMenuConceal {
    from {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }

    to {
      clip-path: inset(0 0 100% 0);
      opacity: 0;
    }
  }

  .navbar-nav {
    width: 100%;
    margin-left: 0;
    align-items: flex-start !important;
    gap: 26px;
  }

  .mobile-menu-panel {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: calc(100svh - 176px);
    gap: 54px;
    opacity: 0;
    transform: translate3d(0, -22px, 0);
    will-change: transform, opacity;
  }

  .navbar-collapse.show .mobile-menu-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .navbar-collapse.is-opening .mobile-menu-panel {
    animation: mobileMenuContentIn .34s cubic-bezier(.2, .9, .25, 1) .08s forwards;
  }

  .navbar-collapse.is-closing .mobile-menu-panel {
    animation: mobileMenuContentOut .2s ease forwards;
  }

  @keyframes mobileMenuContentIn {
    from {
      opacity: 0;
      transform: translate3d(0, -22px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes mobileMenuContentOut {
    from {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    to {
      opacity: 0;
      transform: translate3d(0, -16px, 0);
    }
  }

  .navbar .nav-link {
    display: inline-block;
    font-size: clamp(5.8rem, 18vw, 8.8rem);
  }

  .navbar-nav > .nav-item:not(.language-switch) > .nav-link {
    color: #fff;
    padding: 0 0 6px;
    letter-spacing: -0.04em;
    line-height: .93;
    font-weight: 100;
    font-size: 45px;
  }

  .navbar-nav > .nav-item:not(.language-switch) > .nav-link::after {
    bottom: 0;
    height: 1px;
    transform-origin: left center;
    transition: transform .55s cubic-bezier(.19, 1, .22, 1);
  }

  .navbar-nav > .nav-item:not(.language-switch) > .nav-link.active {
    color: #fff;
  }

  .navbar-nav > .nav-item:not(.language-switch) > .nav-link.active::after {
    transform: scaleX(1);
  }

  .navbar-nav > .nav-item:not(.language-switch) {
    width: 100%;
  }

  .language-switch .nav-link {
    font-size: 21px;
    color: rgba(255, 255, 255, .82);
    font-weight: 300;
  }

  .language-switch .lang-link.active {
    color: #fff;
    font-weight: 300;
  }

  .lang-divider {
    color: rgba(255, 255, 255, .72);
    font-size: 20px;
  }

  .page-index .navbar-collapse {
    background: #413cff;
  }

  .hero-slider {
    height: 590px;
  }

  .page-index .hero-slider {
    min-height: 100vh;
    height: 100svh;
  }

  .hero-slide {
    background-position: center center;
  }

  .hero-content {
    padding-bottom: 112px;
  }

  .page-index .hero-content {
    padding-top: 84px;
    padding-bottom: 90px;
    padding-right: 24px;
  }

  .hero-content h1 {
    max-width: 420px;
    font-size: 36px;
  }

  .page-index .hero-content h1 {
    max-width: 520px;
    font-size: clamp(36px, 9vw, 40px);
    line-height: 1;
  }

  .bg-mcg {
    opacity: 0;
    right: -72px;
    height: 100%;
  }

  .hero-slide.active .bg-mcg {
    opacity: .42;
  }

  .page-index .slider-dots {
    /* left: 24px; */
    right: 24px;
  }

  .slider-dots {
    bottom: 36px;
    gap: 12px;
  }

  .slider-dot {
    width: 20px;
    height: 20px;
  }

  .services-section {
    padding-top: 52px;
  }

  .service-group {
    padding-bottom: 18px;
  }

  .services-intro {
    margin-bottom: 44px;
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1;
  }

  .service-toggle {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 18px 16px 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.3;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-top: 24px;
  }

  .footer-content {
    margin-left: 0;
    max-width: 100%;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 27vw;
    gap: 6px;
  }

  .portfolio-item {
    height: 100%;
    aspect-ratio: auto;
  }

  .portfolio-item:nth-child(4),
  .portfolio-item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .portfolio-item:nth-child(7),
  .portfolio-item:nth-child(11) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .about-inner {
    padding-top: 92px;
  }

  .about-hero h1 {
    margin-bottom: 42px;
    font-size: 74px;
  }

  .about-lead,
  .about-copy {
    font-size: 21px;
  }

  .conversation-button {
    margin: 46px 0 48px;
  }

  .team-list {
    flex-direction: column;
    align-items: center;
    gap: 46px;
  }

  .values-section h2 {
    font-size: 39px;
  }

  .about-watermark {
    min-height: 330px;
  }

  .about-watermark-layer {
    width: min(1180px, 160vw);
  }

  .about-watermark-layer-back {
    top: 12%;
  }

  .about-watermark-layer-back .about-watermark-track img,
  .about-watermark-layer-front .about-watermark-track img {
    width: min(1420px, 176vw);
  }

  .about-watermark-layer-center {
    top: 6%;
    width: min(1560px, 196vw);
  }

  .about-watermark-layer-front {
    top: 36%;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 80px;
  }

 
  .hero-slider {
    height: 540px;
  }

  .page-index .hero-slider {
    min-height: 100vh;
    height: 100svh;
  }

  .about-watermark {
    min-height: 220px;
  }

  .about-watermark-layer {
    width: 185vw;
  }

  .about-watermark-layer-back {
    top: 16%;
  }

  .about-watermark-layer-back .about-watermark-track img,
  .about-watermark-layer-front .about-watermark-track img {
    width: 210vw;
  }

  .about-watermark-layer-center {
    top: 10%;
    width: 232vw;
  }

  .about-watermark-layer-front {
    top: 40%;
  }

  .hero-content h1 {
    font-size: 31px;
  }

  .page-index .hero-content {
    padding-top: 72px;
    padding-bottom: 90px;
    padding-right: 24px;
  }

  .page-index .hero-content h1 {
    font-size: clamp(24px, 8.5vw, 40px);
  }

  .bg-mcg {
    right: -96px;
    display: none;
  }

  .page-index .slider-dots {
    /* left: 24px; */
    right: 24px;
  }

  .service-column h3 {
    font-size: 17px;
  }

  .service-column li {
    font-size: 13px;
  }

  .footer-message {
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 29vw;
    gap: 4px;
  }

  .portfolio-title {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 18px;
  }

  .portfolio-subtitle {
    font-size: 13px;
  }

  .portfolio-lightbox {
    padding: 0;
  }

  .portfolio-lightbox-media video {
    width: calc(100vw - 36px);
    max-width: 100%;
    max-height: calc(100vh - 148px);
  }

  .portfolio-lightbox-button {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .portfolio-lightbox-prev,
  .portfolio-lightbox-next {
    width: auto;
    height: auto;
    min-width: 30px;
    padding: 4px 6px;
    font-size: 42px;
  }

  .portfolio-lightbox-close {
    top: 18px;
    right: 18px;
  }

  .portfolio-lightbox-prev {
    left: 12px;
  }

  .portfolio-lightbox-next {
    right: 12px;
  }

  .about-hero h1 {
    font-size: 51px;
  }

  .team-card img {
    width: 190px;
    height: 190px;
  }
}
