/* Standalone reset and primitives. The site no longer depends on a page-builder runtime. */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  color: #333;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: middle;
  display: inline-block;
}

button, input, optgroup, select, textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
}

a {
  color: inherit;
  background-color: transparent;
}

p {
  margin-top: 0;
}

.inline-block {
  max-width: 100%;
  display: inline-block;
}

.embed::before, .embed::after {
  content: " ";
  display: table;
}

.embed::after {
  clear: both;
}

.bg-noise {
  z-index: 1000;
  opacity: .03;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.cursor-wrapper {
  z-index: 1100;
  pointer-events: none;
  mix-blend-mode: difference;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.cursor-1 {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-scale: .1;
  opacity: 0;
  background-color: #fff;
  color: #141414;
  text-transform: uppercase;
  border-radius: 10000px;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate(-50%, -50%) scale(var(--cursor-scale));
  transition: opacity .14s ease, transform .08s ease;
  will-change: transform, opacity;
}

.cursor-wrapper.is-visible .cursor-1 {
  opacity: 1;
}

.cursor-1.is-link {
  --cursor-scale: .2;
}

.cursor-1.is-view {
  --cursor-scale: 1;
}

.arrow-24 {
  opacity: 0;
  z-index: 1;
  width: 24px;
  transition: opacity .18s ease;
}

.img-rotate {
  opacity: 0;
  width: 120%;
  max-width: 120%;
  position: absolute;
  animation: cursorRotate 30s linear infinite;
  transition: opacity .18s ease;
}

.cursor-1.is-view .arrow-24,
.cursor-1.is-view .img-rotate {
  opacity: 1;
}

@keyframes cursorRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: none !important;
  }

  .has-custom-cursor .cursor-wrapper {
    display: flex;
  }
}

@media (pointer: coarse), (max-width: 767px), (prefers-reduced-motion: reduce) {
  .cursor-wrapper {
    display: none !important;
  }
}

.js-form {
  margin: 0 0 15px;
}

.form-success {
  display: none;
  padding: 20px;
  text-align: center;
  background: #ddd;
}

.form-error {
  display: none;
  margin-top: 10px;
  padding: 10px;
  color: #1a1a1a;
  background: #ffdede;
}

.form-input {
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  color: #333;
  background: #fff;
  font-size: 14px;
  line-height: 1.42857;
  vertical-align: middle;
  display: block;
}

.form-textarea {
  min-height: 6.25em;
  height: auto;
  resize: vertical;
  line-height: 1.35;
}

.form-textarea-small {
  min-height: 4.5em;
}

.form-counter {
  color: var(--white);
  opacity: .55;
  text-align: right;
  margin-top: .375em;
  font-size: .875em;
  line-height: 1.2;
}

.form-file-label {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: var(--white);
  cursor: pointer;
  background: #1a1a1a;
  align-items: center;
  width: fit-content;
  padding: 1em 1.5em;
  display: flex;
}

.form-file-label:hover {
  background: #242424;
}

.form-file-icon {
  font-size: 1.25em;
  line-height: 1;
  transform: rotate(-45deg);
}

.form-file-input {
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.form-button {
  padding: 9px 15px;
  border: 0;
  border-radius: 0;
  line-height: inherit;
  display: inline-block;
}

.option-label {
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.checkbox {
  margin-bottom: 5px;
}

.budget-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5em;
  width: 100%;
  display: grid;
}

.budget-card {
  gap: 1em;
  color: var(--white);
  cursor: pointer;
  background: #1a1a1a;
  border: 1px solid transparent;
  border-radius: .25em;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 1.25em;
  font-weight: 400;
  transition: border-color .2s ease, background-color .2s ease;
  display: flex;
  position: relative;
}

.budget-input {
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  position: absolute;
}

.budget-card:has(.budget-input:checked) {
  background-color: #222;
  border-color: var(--white);
}

.budget-card:has(.budget-input:focus-visible) {
  outline: 2px solid var(--primary--purple-1);
  outline-offset: 2px;
}

.budget-card-top {
  gap: .75em;
  align-items: center;
  display: flex;
}

.budget-radio {
  border: 1.5px solid var(--gray-1);
  border-radius: 50%;
  flex: none;
  width: 1.125em;
  height: 1.125em;
  transition: border-color .2s ease, background-color .2s ease;
}

.budget-input:checked + .budget-card-top .budget-radio {
  background: var(--white);
  border-color: var(--white);
  box-shadow: inset 0 0 0 3px #1a1a1a;
}

.budget-price {
  color: var(--white);
  min-width: 0;
  font-size: 1.375em;
  font-weight: 600;
  line-height: 1;
}

.budget-card-bottom {
  gap: .25em;
  flex-direction: column;
  display: flex;
}

.budget-title {
  color: var(--white);
  font-size: .9375em;
}

.budget-desc {
  color: var(--gray-1);
  font-size: .8125em;
  line-height: 1.4;
}

@media (hover: hover) {
  .budget-card:hover {
    border-color: #ffffff66;
  }
}

@font-face {
  font-family: Rg;
  src: url("../fonts/6a3cfc1f78728aa747041821_RG-StandardBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url("../fonts/6a3cfc1f3a8e6057432d2605_WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Worksans;
  src: url("../fonts/6a3cfbdf2c07bc7911e63839_WorkSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rg Standardbook;
  src: url("../fonts/6a3cfcdd2c07bc7911e6b7dc_RG-StandardBook.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color-main: #000;
  --white: white;
  --primary--purple-1: #9f94f3;
  --black: black;
  --gray-1: #6b7280;
  --green: #3ef18d;
  --light-grey: #999;
}

p {
  margin-bottom: 0;
}

.section {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.hero {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100vh;
  max-height: 51.5em;
  padding-bottom: 5.875em;
  display: flex;
  position: relative;
}

.section.pad-120 {
  flex-flow: column;
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

.section.pad-120.of {
  overflow: hidden;
}

.section.pad-120.dark {
  background-color: var(--bg-color-main);
  color: var(--white);
}

.section.pad-120.dark.rel {
  position: relative;
}

.section.pad-120.color-gr {
  background-color: #f2f2f2;
}

.section.pad-120.ftr {
  color: var(--white);
  position: relative;
}

.section.pad-120.ftr.rel {
  position: relative;
}

.section.of {
  overflow: hidden;
}

.section.pad-max-bot {
  padding-top: 7.5em;
  padding-bottom: 7.5em;
}

.section.pad-max-bot.of {
  overflow: hidden;
}

.section.pad-max-bot.dark {
  background-color: var(--bg-color-main);
  color: var(--white);
}

.section.pad-max-bot.dark.rel {
  padding-top: 30em;
  padding-bottom: 7.5em;
  position: relative;
}

.section.pad-370-top {
  padding-top: 23.125em;
  padding-bottom: 7.5em;
}

.section.pad-370-top.rel {
  color: var(--white);
  position: relative;
}

.section.h-1068 {
  height: 66.75em;
}

.section.h-1068.rel {
  color: var(--white);
  justify-content: center;
  align-items: flex-start;
  padding-top: 5em;
  padding-bottom: 5em;
  position: relative;
}

.section.h-1068.rel.dark {
  background-color: var(--bg-color-main);
}

.container {
  width: 100%;
  max-width: 82.5em;
}

.container.rel {
  z-index: 1;
  position: relative;
}

.headline-1 {
  letter-spacing: -.015em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rg Standardbook, Arial, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 90%;
}

.headline-2 {
  letter-spacing: -.015em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rg Standardbook, Arial, sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 120%;
}

.headline-2.letter-spacing-0 {
  letter-spacing: 0;
}

.headline-2.bold {
  font-family: Rg, Arial, sans-serif;
  font-weight: 400;
}

.headline-2.x24 {
  font-family: Rg, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
}

.headline-3 {
  letter-spacing: -.015em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rg, Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 120%;
}

.headline-4 {
  letter-spacing: -.015em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rg Standardbook, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 120%;
}

.text-body-1 {
  letter-spacing: -.025em;
  font-size: 1.25em;
  line-height: 120%;
}

.text-body-1.grey-50 {
  color: #f9fafb;
  text-decoration: none;
}

.text-body-2 {
  letter-spacing: -.01em;
  font-family: Worksans, Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 120%;
}

.text-body-3 {
  font-size: .875em;
  line-height: 120%;
}

.text-body-3.is-purple-1 {
  color: var(--primary--purple-1);
}

.img-bg-hero {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0%;
}

.body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: Worksans, Arial, sans-serif;
  font-size: 1.11111vw;
  font-weight: 300;
}

.nav {
  z-index: 99;
  mix-blend-mode: normal;
  justify-content: center;
  align-items: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav.hero {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.logo {
  width: 11.0625em;
}

.menu-wrp {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  display: flex;
}

.flex-h-space {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.link-nav {
  color: var(--black);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
}

.button-main {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  background-color: var(--white);
  height: 3.75em;
  color: var(--black);
  text-transform: uppercase;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  font-family: Rg, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button-main:hover {
  background-color: var(--black);
  color: var(--white);
}

.button-main.no-outline {
  border-style: none;
}

.button-main.reverse {
  background-color: var(--black);
  color: var(--white);
}

.hero-block-cta-wrp {
  max-width: 35.25em;
  margin-left: auto;
  margin-right: auto;
}

.gap-v-32 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  display: flex;
}

.gap-v-32.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.wrp-ben-hero {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  display: flex;
}

.ico-20 {
  justify-content: center;
  align-items: center;
  width: 1.25em;
  height: 1.25em;
  display: flex;
}

.ben-item-1 {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  display: flex;
}

.wrp-cards-second {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  width: max-content;
  padding: 0 80px;
  display: flex;
  will-change: transform;
}

.card-case {
  background-color: #0000000d;
  color: inherit;
  flex: none;
  max-width: 26.5em;
  padding: .5em;
  text-decoration: none;
  display: block;
}

.case-description {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  flex-flow: column;
  margin-top: 0;
  padding: 1.5em;
  display: flex;
}

.image-case-hero {
  width: 100%;
  aspect-ratio: 1.12;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-case:nth-child(even) .image-case-hero {
  aspect-ratio: 1.4;
}

.main-wrp-cards {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

#sectionScroll {
  position: relative;
}

#sectionScroll .container {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.heading-wrapper.center {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.side-prof {
  max-width: 39.8em;
}

.wrp-item-describe {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--primary--purple-1);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
  display: flex;
}

.ico-16 {
  width: 1em;
  height: 1em;
}

.span-op-50 {
  opacity: .5;
}

.marge-top-32 {
  margin-top: 2em;
}

.num-wrp {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 4em;
  display: flex;
}

.num-item {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  padding: 1.5em;
  display: flex;
}

.num-text {
  font-size: 8em;
  line-height: 70%;
}

.num-descrription-block {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  padding-top: 1em;
  display: flex;
}

.headline-3-24 {
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rg Standardbook, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 120%;
}

.logo-wrp {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2.5em;
  display: none !important; /* Temporarily hidden. */
}

.card-logo {
  opacity: .2;
  background-color: #ffffff4d;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-height: 7.8125em;
  transition: opacity .2s;
  display: flex;
}

.card-logo:hover {
  opacity: .7;
}

.img-abs-right-top {
  z-index: 0;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.side-prof-center {
  z-index: 1;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 39.8em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.button-alt {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: var(--white);
  text-transform: uppercase;
  font-family: Rg, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.marge-top-60 {
  margin-top: 3.75em;
}

.form-1 {
  width: 100%;
  max-width: 33.625em;
  margin-left: auto;
}

.form-in-1 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-in-1.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.input-wrp {
  width: 100%;
}

.input-wrp.gap-24 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  display: flex;
}

.input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 0;
}

.input::placeholder {
  color: #818181;
}

.input.ftr::placeholder {
  color: #d1d5db;
}

.gap-v-24 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.gap-v-24.left {
  justify-content: flex-start;
  align-items: flex-start;
}

.gap-v-24.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.path-wrp {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  width: 100%;
  max-width: 61.5em;
  margin-left: auto;
  display: flex;
}

.path-item-1 {
  color: var(--gray-1);
  border-bottom: 1px solid #d9d9d9;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flex-h-16 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.img-path {
  position: absolute;
  inset: auto 11em auto auto;
}

.projects-wrp {
  grid-column-gap: 9.375em;
  grid-row-gap: 9.375em;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

#sectionProjects {
  align-items: flex-start;
  background-color: var(--white);
  position: relative;
}

#sectionProjects > .container {
  height: 100%;
}

.projects-info {
  width: 100%;
  margin-bottom: auto;
}

.project-item {
  display: none;
}

.project-item.active {
  flex-flow: column;
  display: flex;
}

.media-item {
  aspect-ratio: 2 / 3;
  width: 25em;
  max-width: 25em;
  display: none;
}

.media-item.active {
  aspect-ratio: 2 / 3;
  width: 25em;
  max-width: 25em;
  display: flex;
  overflow: hidden;
}

.projects-wrp-center {
  width: 25em;
}

.progress-wrp {
  width: 25em;
  margin-bottom: 1em;
  display: flex;
}

.progress-bar {
  background-image: linear-gradient(90deg, #9f94f3, #3dede7 50%, #3ef18d);
  width: 100%;
  height: .625em;
}

.projects-wrp-right {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
  display: flex;
  position: relative;
}

.project-item-desc {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em;
  display: none;
}

.project-item-desc.active {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #f2f2f2;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: auto;
  display: flex;
}

.video {
  width: 25em;
}

/* Top projects: one adaptive component for desktop and mobile. */
.stories-section {
  --story-count: 5;
  z-index: 10;
  background: var(--white);
  color: var(--black);
  height: calc(var(--story-count) * 100vh);
  padding: 0 2.5em;
  position: relative;
}

.stories-container {
  width: 100%;
  max-width: 82.5em;
  height: 100%;
  margin: 0 auto;
}

.stories-sticky {
  height: 100vh;
  min-height: 42em;
  padding: 9em 0 4em;
  position: sticky;
  top: 0;
}

.stories-heading {
  z-index: 3;
  margin: 0;
  font-size: clamp(3em, 4.2vw, 5em);
  line-height: .95;
  position: absolute;
  top: .85em;
  left: 0;
  white-space: nowrap;
}

.stories-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.65fr) minmax(0, .75fr);
  gap: clamp(2em, 4vw, 5em);
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity .35s ease;
}

.story-card.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.story-copy {
  align-self: start;
  padding-top: 3.5em;
}

.story-title {
  margin: 0 0 .65em;
  font-size: clamp(1.75em, 2.2vw, 2.4em);
  font-weight: 500;
  line-height: 1;
}

.story-description,
.story-details-text {
  margin: 0;
  white-space: pre-line;
  font-size: clamp(1em, 1.35vw, 1.5em);
  line-height: 1.18;
}

.story-description {
  color: var(--gray-1);
}

.story-media {
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: 100%;
  height: 68vh;
  justify-self: center;
  background: #0d0d0d;
  overflow: hidden;
}

.story-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-details {
  align-self: end;
  color: var(--gray-1);
  background: #f2f2f2;
  padding: 2em;
}

.story-link {
  gap: 1.5em;
  color: var(--white);
  background: var(--black);
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  margin-top: 1.5em;
  padding: 1.1em 1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  transition: background-color .2s ease;
}

.story-link:hover {
  background: #282828;
}

.stories-pagination {
  z-index: 4;
  display: flex;
  gap: .5em;
  width: min(24em, 38.25vh);
  position: absolute;
  top: 7.75em;
  left: calc(50% + .6em);
  transform: translateX(-50%);
}

.story-dot {
  flex: 1;
  height: .35em;
  padding: 0;
  background: #d9d9d9;
  border: 0;
  overflow: hidden;
}

.story-dot-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #9f94f3, #3dede7 50%, #3ef18d);
}

@media (prefers-reduced-motion: reduce) {
  .story-card,
  .story-link {
    transition: none;
  }
}

/* Word blur reveal for h1 headings. */
.heading-blur-reveal {
  transform-origin: 50% 50%;
}

.heading-blur-reveal .word {
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, 28px, 0);
  will-change: transform, filter, opacity;
  position: relative;
  display: inline-block;
}

html:not(.has-gsap-heading-reveal) .heading-blur-reveal.is-visible .word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  transition: opacity 1.25s cubic-bezier(.16, 1, .3, 1), filter 1.25s cubic-bezier(.16, 1, .3, 1), transform 1.25s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--word-index) * 28ms);
}

html.has-gsap-heading-reveal .heading-blur-reveal.is-visible .word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .heading-blur-reveal .word,
  html.has-gsap-heading-reveal .heading-blur-reveal.is-visible .word,
  html:not(.has-gsap-heading-reveal) .heading-blur-reveal.is-visible .word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.obj-wrp {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  margin-top: 4em;
  display: flex;
}

.obj-wrp.dark {
  color: var(--bg-color-main);
}

.obj-card {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  width: 100%;
  padding: 1.5em;
  display: flex;
}

.bg-abs-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.gap-48 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  display: flex;
}

.gap-48.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.wrp-690 {
  max-width: 47em;
  margin-left: auto;
  margin-right: auto;
}

.wrp-profiles {
  grid-column-gap: .625em;
  grid-row-gap: .625em;
  background-color: #282828;
  padding: .625em;
  display: flex;
}

.image-profile {
  aspect-ratio: 1;
  object-fit: cover;
  width: 2.75em;
}

.wrp-center {
  grid-column-gap: 3.75em;
  grid-row-gap: 3.75em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wrp-chart {
  aspect-ratio: 1;
  width: 100%;
  max-width: 44.75em;
  min-height: min(100vw - 3em, 44.75em);
  position: relative;
}

.wrp-chart .radar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.wrp-558 {
  max-width: 34.875em;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-wrp {
  grid-column-gap: 3.75em;
  grid-row-gap: 3.75em;
  padding: 3.75em;
  display: flex;
  position: relative;
}

.testimonials-wrp-in {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.top-testimonials-wrp {
  grid-column-gap: 1.875em;
  grid-row-gap: 1.875em;
  display: flex;
}

.rate-wrp {
  background-color: var(--green);
  color: var(--black);
  border-radius: .4375em;
  padding: .25em;
  font-family: Rg, Arial, sans-serif;
  font-weight: 700;
}

.rate-text {
  font-size: 3.5em;
  line-height: 100%;
}

.arrows-slider {
  display: flex;
  position: absolute;
  inset: auto 3.75em 3.75em auto;
}

.arrow {
  background-color: #9ca3af;
  padding: .8125em;
  transition: background-color .2s;
}

.arrow:hover {
  background-color: #f9fafb;
}

.wrp-bot-out {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.part-card {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  background-color: #fff;
  flex-flow: column;
  width: 100%;
  padding: 1.5em;
  display: flex;
}

.part-wrp {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  margin-top: 4em;
  display: flex;
}

.part-wrp.dark {
  color: var(--bg-color-main);
}

.of-wrp {
  overflow: hidden;
}

.form-wrp-main {
  margin-bottom: 0;
}

.gap-h-24 {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  display: flex;
}

.gap-h-24.wide {
  width: 100%;
}

.cb-ico {
  display: none;
}

.wrp-form-split {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.side-700 {
  max-width: 43.75em;
}

.side-other {
  padding-left: 2.75em;
  padding-right: 2.75em;
}

.profile-wrp-out {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.profile-wrp-of {
  border-radius: 100em;
  position: relative;
}

.img-80 {
  width: 5em;
  height: 5em;
}

.online-circle {
  background-color: var(--green);
  outline-color: var(--bg-color-main);
  outline-offset: 0px;
  border-radius: 100px;
  outline-width: 3px;
  outline-style: solid;
  width: .75em;
  height: .75em;
  position: absolute;
  inset: auto .3em .3em auto;
}

.wrp-402 {
  max-width: 25.125em;
}

.wrp-blog-items {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  margin-top: 6.25em;
  padding-left: 21em;
  display: flex;
}

/* Reserved for the future Sanity-powered news feed. */
.section:has(.wrp-blog-items) {
  display: none;
}

.card-blog-item {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border-bottom: 1px solid #ffffff26;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.min-blog-text {
  color: var(--primary--purple-1);
  font-size: 1.5em;
}

.min-desc-wrp {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  color: #9ca3af;
  margin-bottom: 2em;
  display: flex;
}

.wrp-80 {
  width: 100%;
  max-width: 5em;
}

.wrp-500 {
  max-width: 31.25em;
}

.rotate-img-card-news {
  width: 18.75em;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 3.75em;
  transform: rotate(-15deg);
}

.ftr-text {
  letter-spacing: -.03em;
  font-family: Rg Standardbook, Arial, sans-serif;
  font-size: 5.4375em;
  font-weight: 400;
  line-height: 100%;
}

.line-ftr-nav {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4.5em;
  margin-bottom: 1.5em;
  display: flex;
}

.link-ftr {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-top: .375em;
  padding-bottom: .375em;
  text-decoration: none;
  display: flex;
}

.marge-bot-8 {
  margin-bottom: .5em;
}

.ftr-line {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.wrp-ftr-pink {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--primary--purple-1);
  flex-flow: column;
  padding: 2em;
  display: flex;
}

.sb-btn-alt {
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  font-family: Rg, Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
}

.email-wrp {
  color: var(--white);
}

.t-48 {
  font-size: 3em;
}

.t-48.wht {
  color: var(--white);
  text-decoration: none;
}

.ftr-icons {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 18em;
  margin-right: 3.125em;
  display: flex;
}

.img-ftr {
  width: 100%;
}

.img-ftr.x159 {
  object-fit: contain;
  max-width: 9.9375em;
}

.img-ftr.x86 {
  object-fit: contain;
  max-width: 5.375em;
}

.img-ftr.x85 {
  object-fit: contain;
  max-width: 5.3125em;
}

.img-ftr.x155 {
  object-fit: contain;
  max-width: 9.6875em;
}

.bot-line-ftr {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2em;
  display: flex;
}

.wrp-315 {
  max-width: 19.6875em;
}

.wrp-logo-cr {
  width: 100%;
  max-width: 19.8125em;
  margin-left: auto;
}

.logo-60 {
  width: 3.75em;
}

.bg-animation-wrp {
  margin-top: -5em;
  position: relative;
}

.prof-in-wrp-abs {
  justify-content: space-between;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.side-prof-in {
  grid-column-gap: 9.625em;
  grid-row-gap: 9.625em;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.side-prof-in.right {
  justify-content: center;
  align-items: flex-end;
}

.pl-text-prof {
  background-image: linear-gradient(270deg, #9990, #ffffff1a);
  border-radius: 1000px;
  padding: 1.5em 2em;
}

.pl-text-prof.slide {
  margin-left: 4em;
}

.pl-text-prof.slide.left {
  background-image: linear-gradient(90deg, #9990, #ffffff1a);
}

.pl-text-prof.slide-r {
  margin-left: 0;
  margin-right: 4em;
}

.pl-text-prof.left {
  background-image: linear-gradient(90deg, #9990, #ffffff1a);
}

.abs-text {
  grid-column-gap: 19em;
  grid-row-gap: 19em;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-prof-in {
  font-family: Rg, Arial, sans-serif;
}

.img-wide {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 479px) {
  .section {
    padding-left: 1em;
    padding-right: 1em;
  }

  .section.hero {
    justify-content: flex-end;
    align-items: center;
    height: auto;
    min-height: 118vh;
    max-height: none;
    padding-bottom: 0;
    overflow: hidden;
  }

  .section.pad-120, .section.pad-120.dark.rel, .section.pad-max-bot.dark.rel {
    padding-left: 1em;
    padding-right: 1em;
  }

  .section.h-1068.rel.dark {
    height: 32em;
  }

  .headline-1 {
    font-size: 2.5em;
  }

  .headline-2 {
    font-size: 1.5em;
  }

  .headline-2.hide {
    display: none;
  }

  .text-body-1 {
    font-size: 1em;
  }

  .img-bg-hero {
    width: 240%;
    height: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
  }

  .body {
    font-size: 4.2vw;
  }

  .brand {
    margin-left: 1em;
  }

  .logo {
    width: 8.125em;
  }

  .nav {
    z-index: 1200;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1);
  }

  .flex-h-space {
    padding-left: 0;
    padding-right: 0;
  }

  .button-main.m-hide {
    display: none;
  }

  .mobile-menu-toggle {
    color: var(--black);
    text-transform: uppercase;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: Rg Standardbook, Arial, sans-serif;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1;
    margin-right: 1em;
    display: block;
  }

  .menu-wrp {
    z-index: 1190;
    grid-column-gap: 0;
    grid-row-gap: 0;
    background-color: var(--white);
    color: var(--black);
    flex-flow: column;
    width: 100%;
    min-height: 100svh;
    padding: 7em 1.25em 3em;
    display: flex;
    position: fixed;
    inset: 0%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1.25em);
    transition: opacity .32s cubic-bezier(.16, 1, .3, 1), transform .32s cubic-bezier(.16, 1, .3, 1);
  }

  .menu-wrp.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-wrp {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }

  .link-nav {
    color: inherit;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    justify-content: space-between;
    align-items: center;
    min-height: 3.65em;
    font-family: Rg Standardbook, Arial, sans-serif;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: flex;
  }

  .link-nav .text-body-2 {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: inherit;
  }

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

  html.mobile-menu-open .nav {
    background-color: var(--white);
    mix-blend-mode: normal;
    transform: translate3d(0, 0, 0) !important;
  }

  .gap-v-32.center {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .wrp-ben-hero {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .ben-item-1 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .card-case {
    max-width: 15.625em;
  }

  .main-wrp-cards {
    justify-content: flex-start;
  }

  .wrp-cards-second {
    flex: none;
    padding-inline: max(0px, calc((100vw - 2em - 15.625em) / 2));
  }

  .case-description {
    padding: .5em;
  }

  .prof-wrp {
    padding-bottom: 10em;
  }

  .num-wrp {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-flow: column;
  }

  .num-item {
    padding: 1em;
  }

  .num-text {
    font-size: 6em;
  }

  .headline-3-24 {
    font-size: 1.25em;
  }

  .logo-wrp {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .card-logo {
    min-height: 4.0625em;
  }

  .img-abs-right-top {
    width: 300%;
    max-width: none;
    margin-bottom: auto;
    inset: 0 -100% auto auto;
  }

  .path-item-1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .projects-wrp, .projects-media, .media-item.active, .projects-wrp-center, .video {
    width: 100%;
  }

  .projects-wrp {
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 1em;
    align-items: stretch;
    justify-content: stretch;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    display: grid;
    overflow: hidden;
  }

  .projects-info {
    grid-area: 1 / 1;
    width: 100%;
    margin: 0;
  }

  .project-item.active {
    width: 100%;
  }

  .project-item.active > .text-body-1 {
    display: none;
  }

  .projects-wrp-center {
    grid-area: 2 / 1;
    min-width: 0;
    min-height: 0;
    flex-flow: column;
    display: flex;
  }

  .progress-wrp {
    flex: none;
    width: 100%;
    margin-bottom: .75em;
  }

  .projects-media {
    flex: 1;
    min-width: 0;
    min-height: 0;
    height: 100%;
  }

  .media-item.active {
    aspect-ratio: auto;
    max-width: none;
    height: 100%;
  }

  .media-item.active .video,
  .media-item.active .plyr,
  .media-item.active video {
    width: 100%;
    height: 100% !important;
  }

  .media-item.active video {
    object-fit: cover;
  }

  .projects-wrp-right {
    z-index: 2;
    grid-area: 2 / 1;
    align-self: end;
    justify-self: stretch;
    width: calc(100% - 1.5em);
    margin: 0 .75em .75em;
    pointer-events: none;
  }

  .project-item-desc.active {
    grid-column-gap: .75em;
    grid-row-gap: .75em;
    width: 100%;
    max-height: 44svh;
    margin: 0;
    padding: 1em;
    background-color: #f2f2f2f2;
    border: 1px solid #ffffff80;
    box-shadow: 0 1em 3em #0003;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    pointer-events: auto;
  }

  .project-item-desc .text-body-1 {
    font-size: 1em;
    line-height: 125%;
  }

  .budget-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .budget-card {
    gap: .75em;
    min-height: 8.75em;
    padding: .875em;
  }

  .budget-price {
    font-size: 1.125em;
  }

  .obj-wrp {
    flex-flow: column;
  }

  .bg-abs-full {
    width: 100%;
    height: 50%;
    inset: auto 0% 0%;
  }

  .section.pad-370-top > .bg-abs-full {
    height: 100%;
  }

  .bg-abs-full.ff {
    height: 100%;
  }

  .wrp-profiles {
    grid-column-gap: 0;
    grid-row-gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    padding: .5em;
    order: 9999;
    overflow: hidden;
  }

  .wrp-profiles .link-profile {
    flex: none;
  }

  .wrp-profiles .image-profile {
    display: block;
    width: 2em;
  }

  .testimonials-wrp {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: column;
    padding: 0;
  }

  .arrows-slider {
    position: static;
  }

  .part-wrp.dark, .gap-h-24.wide, .wrp-form-split {
    flex-flow: column;
  }

  .side-700 {
    width: 100%;
  }

  .wrp-blog-items {
    padding-left: 0;
  }

  .ftr-text {
    font-size: 3em;
  }

  .line-ftr-nav {
    flex-flow: wrap;
  }

  .ftr-line {
    width: auto;
  }

  .wrp-ftr-pink {
    padding: 1em;
  }

  .t-48.wht {
    font-size: 1.5em;
  }

  .bot-line-ftr {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-flow: wrap;
  }

  .wrp-logo-cr {
    margin-left: 0;
  }

  .bg-animation-wrp {
    justify-content: center;
    align-items: center;
    margin-top: 16em;
    display: flex;
  }

  .prof-in-wrp-abs {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .side-prof-in {
    grid-column-gap: 1.625em;
    grid-row-gap: 1.625em;
    flex-flow: row;
    width: 100%;
  }

  .side-prof-in.right {
    margin-bottom: -12em;
  }

  .side-prof-in.left {
    margin-top: -11em;
  }

  .pl-text-prof {
    justify-content: center;
    align-items: center;
    width: 6.25em;
    height: 9.375em;
    display: flex;
  }

  .pl-text-prof.slide.left {
    margin-left: 0;
  }

  .pl-text-prof.slide-r {
    margin-right: 0;
  }

  .pl-text-prof.left {
    justify-content: center;
    align-items: center;
    width: 6.25em;
    height: 9.375em;
    display: flex;
  }

  .pl-text-prof.left.cc {
    position: relative;
    top: -3em;
  }

  .pl-text-prof.cc-2 {
    position: relative;
    top: 3em;
  }

  .abs-text {
    grid-column-gap: 23em;
    grid-row-gap: 23em;
    flex-flow: column;
  }

  .bg-animation-wrp .img-wide {
    flex: none;
    width: 309vw;
    max-width: none;
    height: auto;
    max-height: none;
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 991px) {
  .stories-section {
    height: auto;
    min-height: 0;
    padding: 3.5em 1.5em 4.5em;
    overflow: hidden;
  }

  .stories-sticky {
    height: auto;
    min-height: 0;
    padding: 0;
    position: relative;
  }

  .stories-heading {
    margin-bottom: .55em;
    font-size: clamp(2.5em, 12vw, 4.25em);
    text-align: center;
    white-space: normal;
    position: static;
    transform: none;
  }

  .stories-pagination {
    width: 100%;
    margin-bottom: 1em;
    position: static;
    transform: none;
  }

  .story-dot {
    height: .3em;
  }

  .stories-track {
    display: flex;
    gap: 1.25em;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .stories-track::-webkit-scrollbar {
    display: none;
  }

  .story-card,
  .story-card.is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "copy"
      "details";
    gap: 1em;
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    inset: auto;
    scroll-snap-align: start;
  }

  .story-media {
    grid-area: media;
    aspect-ratio: 9 / 16;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .story-copy {
    grid-area: copy;
    padding-top: 0;
  }

  .story-title {
    margin-bottom: .45em;
    font-size: 2em;
  }

  .story-description,
  .story-details-text {
    font-size: 1.125em;
    line-height: 1.2;
  }

  .story-details {
    grid-area: details;
    padding: 1.125em;
  }

  .story-link {
    margin-top: 1.125em;
  }
}
