html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.font--thin {
  font-weight: 100 !important;
}

.font--extralight {
  font-weight: 200 !important;
}

.font--light {
  font-weight: 300 !important;
}

.font--regular {
  font-weight: 400 !important;
}

.font--medium {
  font-weight: 500 !important;
}

.font--semibold {
  font-weight: 600 !important;
}

.font--bold {
  font-weight: 700 !important;
}

.font--black {
  font-weight: 900 !important;
}

strong {
  font-weight: 500;
}

.font--alt {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
}

.text--center {
  text-align: center !important;
}

.text--left {
  text-align: left !important;
}

.text--right {
  text-align: right !important;
}

.text--uppercase {
  text-transform: uppercase !important;
}

.text--lowercase {
  text-transform: lowercase !important;
}

.text--accent {
  color: #ED6B45 !important;
}

.animation--float-y {
  animation: floatY 4s ease infinite;
}

.animation--float-y-super {
  animation: floatYSuper 8s ease-out infinite;
}
@media screen and (max-width: 601px) {
  .animation--float-y-super {
    animation-duration: 4s;
  }
}

.animation--floaty--reverse {
  animation: floatYReverse 5s ease infinite;
}

.animation--floaty--reverse-super {
  animation: floatYReverseSuper 10s ease-out infinite;
}
@media screen and (max-width: 601px) {
  .animation--floaty--reverse-super {
    animation-duration: 5s;
  }
}

.animation--float-h {
  animation: floatH 4s ease infinite;
}

.animation--floath--reverse {
  animation: floatHReverse 6s ease infinite;
}

.animation--float-diagonal {
  animation: floatDiagonal 4s ease-in-out infinite;
}

.animation--float-diagonal-reverse {
  animation: floatDiagonalReverse 4.5s ease-in-out infinite alternate;
}

.animation--zoom--inout {
  animation: zoomIn 2s ease-in-out infinite alternate;
}

@keyframes floatY {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, -1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYSuper {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, -3rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYReverse {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatYReverseSuper {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 3rem);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatH {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(-1rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatHReverse {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(1rem, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes floatDiagonal {
  0% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(-2rem, 1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes floatDiagonalReverse {
  0% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(2rem, -1rem);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.animation--point-down {
  animation: pointDown 2s ease infinite;
}

@keyframes pointDown {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 1rem);
  }
  to {
    transform: translate(0, 0);
  }
}
.animation--rotate {
  animation: rotate 4s ease infinite;
}

.animation--rotate-reverse {
  animation: rotateReverse 4.5s ease infinite;
}

.animation--rotate-float {
  animation: rotateFloat 4s ease-in infinite;
}

.animation--rotate-float-reverse {
  animation: rotateFloatReverse 3s ease-in infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(10deg) translateY(0.5rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotateReverse {
  from {
    transform: rotate(0deg);
  }
  65% {
    transform: rotate(-15deg) translateY(0.5rem);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes rotateFloat {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(10deg) translateY(-1rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotateFloatReverse {
  from {
    transform: rotate(0deg) translateY(0);
  }
  65% {
    transform: rotate(5deg) translateY(1rem);
  }
  to {
    transform: rotate(0deg) translateY(0);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animation--in {
  transition: opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
.animation--in.bottom-up:not(.visible) {
  opacity: 0 !important;
  transform: translateY(10rem) !important;
}
.animation--in.bottom-up-lighten:not(.visible) {
  color: var(--color-off-black);
  opacity: 0 !important;
  transform: translateY(10rem) !important;
}
.animation--in.up-bottom:not(.visible) {
  opacity: 0 !important;
  transform: translateY(-10rem) !important;
}
.animation--in.left-right:not(.visible) {
  opacity: 0 !important;
  transform: translateX(-10rem) !important;
}
.animation--in.right-left:not(.visible) {
  opacity: 0 !important;
  transform: translateX(10rem) !important;
}
.animation--in.fade-in:not(.visible) {
  opacity: 0 !important;
}
.animation--in.grow-in:not(.visible) {
  opacity: 0 !important;
  transform: scale(0.5);
}

.animation--in--fade {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInTop {
  0% {
    transform: translateY(-5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes beat {
  0% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 601px) {
  @keyframes modalGrow {
    0% {
      transform: translateY(105%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
*, *:after, *:before {
  box-sizing: border-box;
  letter-spacing: inherit;
  scroll-behavior: smooth;
}

:root {
  --color-black: #000000;
  --color-off-black: #282823;
  --color-deep-gray: #7D7D77;
  --color-medium-gray: #F5F4F4;
  --color-light-gray: #E2E2E2;
  --color-off-white: #FEFEFE;
  --color-white: #FFFFFF;
  --color-primary: #ED6B45;
  --color-accent: #EA3031;
  --color-menu-current: var(--color-off-black);
}

html {
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 0.5208333333vw;
}
@media screen and (min-width: 2559px) {
  html {
    font-size: 0.390625vw;
  }
}
@media screen and (max-width: 821px) {
  html {
    font-size: 1.2195121951vw;
  }
}
@media screen and (max-width: 601px) {
  html {
    font-size: 2.2222222222vw;
  }
}

body {
  font-family: "Chivo Mono", monospace !important;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.2;
  background-color: var(--color-black);
  color: var(--color-off-white);
  position: relative;
  transition: all 0.5s ease;
}
@media screen and (max-width: 821px) {
  body {
    padding: 0;
  }
}
@media screen and (max-width: 601px) {
  body {
    font-size: 2.4rem;
  }
}
body::-webkit-scrollbar-track {
  background-color: var(--color-off-white);
}
body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: --color-light-gray;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 0.25rem;
}
body .body__bg-color {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -4;
  background-color: var(--color-black);
  will-change: background-color;
  transition: background-color 0.5s linear;
}
body .body__bg-texture {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  mix-blend-mode: screen;
  opacity: 0.5;
  background-image: url("../img/noisy-background_inverted.webp");
  background-size: 20vw auto;
  background-position: center center;
  background-repeat: repeat;
}
@media screen and (max-width: 821px) {
  body .body__bg-texture {
    background-size: 50vw auto;
  }
}
body::before {
  content: "";
  width: 100rem;
  height: 100rem;
  background: var(--color-primary);
  position: absolute;
  filter: blur(20rem);
  z-index: -2;
}
@media screen and (max-width: 821px) {
  body::before {
    width: 50rem;
    height: 50rem;
    filter: blur(10rem);
  }
}
body::after {
  content: "";
  width: 100rem;
  height: 100rem;
  background: var(--color-primary);
  position: absolute;
  filter: blur(20rem);
  z-index: -2;
}
@media screen and (max-width: 821px) {
  body::after {
    width: 50rem;
    height: 50rem;
    filter: blur(10rem);
  }
}
body.home::before {
  bottom: 150dvh;
  left: calc(50% - 50rem);
  opacity: 0.3;
}
body.home::after {
  bottom: 20dvh;
  left: 0;
  opacity: 0.3;
}
@media screen and (max-width: 821px) {
  body.home::after {
    opacity: 0.5;
    left: calc(50% - 25rem);
    bottom: 40dvh;
  }
}
body.the-studio::before {
  top: 20dvh;
  right: -20rem;
  opacity: 0.3;
}
body.the-studio::after {
  bottom: 20dvh;
  left: 0;
  opacity: 0.3;
}
body.what-we-do::before {
  top: 0;
  right: -50rem;
  opacity: 0.3;
}
body.what-we-do::after {
  bottom: 20dvh;
  left: 0;
  opacity: 0.3;
}
body.use-cases::before {
  top: 0;
  right: -50rem;
  opacity: 0.3;
}
body.use-cases::after {
  bottom: 20dvh;
  left: 0;
  opacity: 0.3;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}

img, picture {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
  border: none;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 601px) {
  .hide__mobile {
    display: none !important;
  }
}

@media screen and (min-width: 601px) {
  .hide__desktop {
    display: none !important;
  }
}

.width--full {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.use-cases__projects, .use-cases__hero, .what-we-do__services, .what-we-do__hero, .the-studio__what-we-do, .the-studio__hero, .home__hero {
  width: 100%;
  position: relative;
  display: flex;
}

.use-cases__hero .use-cases__hero__content, .what-we-do__services .what-we-do__services__content, .what-we-do__hero .what-we-do__hero__content, .the-studio__what-we-do .the-studio__what-we-do__content, .the-studio__hero .the-studio__hero__content, .home__hero .home__hero__content {
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
}

.header--centered {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 2.4rem;
  text-align: center;
}

.blur__layer {
  background: linear-gradient(358.36deg, rgba(255, 255, 255, 0.01) 25.69%, rgba(255, 255, 255, 0) 169.2%);
  backdrop-filter: blur(4rem);
}

.pixel-grid {
  flex-flow: wrap;
  width: 100%;
  display: flex;
  position: relative;
}

.pixel-grid-pixel {
  background-color: var(--color-primary);
  opacity: 0;
  width: 25%;
  transition: opacity 0.6s ease-in-out;
}

.pixel-grid-pixel.is--move-y-200 {
  transform: translateY(200%);
}

.pixel-grid-pixel.is--move-x-200 {
  transform: translateX(-200%);
}

.before__100 {
  padding-top: 100%;
}

.pixel-group__wrap {
  pointer-events: none;
  width: 19.2rem;
  position: absolute;
}
@media screen and (max-width: 601px) {
  .pixel-group__wrap {
    width: 14.4rem;
  }
}

.slider__wrapper {
  width: 100vw;
  height: 12rem;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 821px) {
  .slider__wrapper {
    height: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .slider__wrapper {
    height: 5.6rem;
  }
}
.slider__wrapper .slider__list {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  text-transform: lowercase;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 601px) {
  .slider__wrapper .slider__list {
    gap: 1.6rem;
  }
}
.slider__wrapper .slider__list__item {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  white-space: nowrap;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 10rem;
  letter-spacing: -0.3rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .slider__wrapper .slider__list__item {
    font-size: 6.4rem;
    letter-spacing: -0.192rem;
  }
}
@media screen and (max-width: 601px) {
  .slider__wrapper .slider__list__item {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }
}

.the-studio__text-slider {
  color: var(--color-light-gray);
  opacity: 0.3;
}
.the-studio__text-slider li::after {
  color: var(--color-primary);
}

.what-we-do__text-slider {
  color: var(--color-deep-gray);
}
.what-we-do__text-slider li {
  text-transform: lowercase;
  white-space: nowrap;
}
.what-we-do__text-slider li::after {
  color: var(--color-primary);
}

.page__wrapper {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 821px) {
  .page__wrapper {
    overflow: hidden;
  }
}

.page__content {
  width: 100%;
}

.text--body--xxs {
  font-size: 1.2rem;
  line-height: 1.2;
}
.text--body--xs {
  font-size: 1.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 601px) {
  .text--body--xs {
    font-size: 1.2rem;
  }
}
.text--body--sm {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media screen and (min-width: 2559px) {
  .text--body--sm {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 601px) {
  .text--body--sm {
    font-size: 1.6rem;
  }
}
.text--body--md {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 601px) {
  .text--body--md {
    font-size: 1.6rem;
  }
}
.text--body--lg {
  font-size: 2.4rem;
  line-height: 1.2;
}

.bracket-text {
  font-family: "Chivo Mono", monospace !important;
  font-weight: 400 !important;
  letter-spacing: initial !important;
  text-transform: lowercase !important;
}
.bracket-text::before {
  content: "[";
}
.bracket-text::after {
  content: "]";
}

.bracket-title {
  letter-spacing: initial !important;
}
.bracket-title::before {
  content: "[";
}
.bracket-title::after {
  content: "]";
}

.text-color--primary {
  color: var(--color-primary);
}

.text-color--dark {
  color: var(--color-off-black);
}

.text--highlighted {
  background: var(--color-black);
  color: var(--color-primary);
}

.symbols-pre::before {
  content: attr(aria-symbols-pre);
}

.symbols-post::after {
  content: attr(aria-symbols-post);
}

.title--heading--h1 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 8rem;
  letter-spacing: -0.24rem;
  line-height: 0.95;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h1 {
    font-size: 5.6rem;
    letter-spacing: -0.168rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h1 {
    font-size: 4.8rem;
    letter-spacing: -0.144rem;
  }
}
.title--heading--h2 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 6.4rem;
  letter-spacing: -0.192rem;
  line-height: 0.75;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h2 {
    font-size: 4.8rem;
    letter-spacing: -0.144rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h2 {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }
}
.title--heading--h3 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 5.6rem;
  letter-spacing: -0.168rem;
  line-height: 0.95;
  font-weight: 400;
}
@media screen and (max-width: 821px) {
  .title--heading--h3 {
    font-size: 4rem;
    letter-spacing: -0.12rem;
  }
}
.title--heading--h4 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 4.8rem;
  letter-spacing: -0.144rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px) {
  .title--heading--h4 {
    font-size: 3.2rem;
    letter-spacing: -0.096rem;
  }
}
.title--heading--h5 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 3.2rem;
  letter-spacing: -0.096rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px) {
  .title--heading--h5 {
    font-size: 2.4rem;
    letter-spacing: -0.072rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h5 {
    font-size: 2rem;
    letter-spacing: -0.06rem;
  }
}
.title--heading--h6 {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.072rem;
  line-height: 0.95;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .title--heading--h6 {
    font-size: 2rem;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 601px) {
  .title--heading--h6 {
    font-size: 1.6rem;
    letter-spacing: -0.048rem;
  }
}

.title__eyebrow {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06rem;
  line-height: 1.2;
  color: var(--color-primary);
}

.body__backgrounds {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.3;
  filter: grayscale(1);
}
.body__backgrounds .body__background__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: multiply;
  transform-origin: center center;
  transition: all 0.6s ease;
}

.home .body__backgrounds .body__background__image {
  scale: 1.5;
}
@media screen and (max-width: 821px) {
  .home .body__backgrounds .body__background__image:nth-of-type(3) {
    display: none;
  }
}

.the-studio .body__backgrounds .body__background__image:nth-of-type(1) {
  width: 30%;
  height: auto;
  top: 0;
  right: 4rem;
  left: auto;
}
.the-studio .body__backgrounds .body__background__image:nth-of-type(2) {
  width: 60%;
  height: auto;
  top: 20rem;
}

.the-studio .body__backgrounds .body__background__image {
  width: 60%;
  height: auto;
  top: 20rem;
}

.what-we-do .body__backgrounds .body__background__image:nth-of-type(1), .use-cases .body__backgrounds .body__background__image:nth-of-type(1) {
  width: 60%;
  height: auto;
  right: -8rem;
  left: auto;
  top: 20vh;
  filter: contrast(1.2) invert(1);
}
@media screen and (max-width: 601px) {
  .what-we-do .body__backgrounds .body__background__image:nth-of-type(1), .use-cases .body__backgrounds .body__background__image:nth-of-type(1) {
    width: 100%;
  }
}
.what-we-do .body__backgrounds .body__background__image:nth-of-type(2), .use-cases .body__backgrounds .body__background__image:nth-of-type(2) {
  width: 60%;
  height: auto;
  top: 20rem;
}
@media screen and (max-width: 821px) {
  .what-we-do .body__backgrounds .body__background__image:nth-of-type(2), .use-cases .body__backgrounds .body__background__image:nth-of-type(2) {
    display: none;
  }
}

.block__target .block__target__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 601px) {
  .block__target .block__target__content {
    flex-direction: column;
  }
}
.block__target .block__target__content .block__target__card {
  width: 50%;
  height: 95dvh;
  max-height: 55vw;
  background: var(--color-light-gray);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-content: stretch;
  padding: 4rem 28rem 4rem 4rem;
  gap: 4rem;
  background-image: url("../img/target_bg_01.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: grayscale(1);
  transition: all 0.5s ease;
}
@media screen and (min-aspect-ratio: 21/9) {
  .block__target .block__target__content .block__target__card {
    background-position: center top;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__target .block__target__content .block__target__card {
    padding: 4rem 2.4rem;
    gap: 2.4rem;
    max-height: 70vw;
  }
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .block__target .block__target__content .block__target__card {
    height: 40dvh;
  }
}
@media screen and (max-width: 601px) {
  .block__target .block__target__content .block__target__card {
    width: 100%;
    max-height: 100vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .block__target .block__target__content .block__target__card:hover {
    filter: none;
  }
}
.block__target .block__target__content .block__target__card:nth-of-type(2) {
  background-image: url("../img/target_bg_02.webp");
}
.block__target .block__target__content .block__target__card .block__target__card__title {
  line-height: 1;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__target .block__target__content .block__target__card .block__target__card__title {
    font-size: 3.2rem;
  }
}
.block__target .block__target__content .block__target__card .block__target__card__title::after {
  color: var(--color-off-black);
}
.block__target .block__target__content .block__target__card p {
  padding-bottom: 4rem;
  padding-right: 8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.block__cta {
  width: 100%;
  position: relative;
  color: var(--color-off-black);
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.block__cta .block__cta__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}
.block__cta .block__cta__background img {
  width: 58vw;
  height: auto;
  object-fit: cover;
}
.block__cta .block__cta__content {
  width: 55%;
  margin-left: 45%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4rem;
  padding-right: 8rem;
  padding-top: 20rem;
  padding-bottom: 40rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__cta .block__cta__content {
    width: 100%;
    margin-left: 0;
    padding: 24rem 4rem 40rem;
  }
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content {
    padding: 12rem 2.4rem 40rem;
  }
}
.block__cta .block__cta__content .block__cta__header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content .block__cta__header .block__cta__eyebrow {
    font-size: 1.4rem;
  }
}
.block__cta .block__cta__content .block__cta__header .block__cta__title {
  line-height: 1;
}
.block__cta .block__cta__content .block__cta__body {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__cta .block__cta__content .block__cta__body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.block__cta .block__cta__content .block__cta__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 1.6rem;
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content .block__cta__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
  }
}
.block__cta .block__cta__content .block__cta__buttons .button--secondary {
  padding-right: 0.8rem;
}
.block__cta .block__cta__content .block__cta__buttons .button--secondary img {
  height: 3.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .block__cta .block__cta__content .block__cta__buttons .button--secondary:hover:not(:disabled), .block__cta .block__cta__content .block__cta__buttons .button--secondary:hover:not([disabled]) {
    background: var(--color-off-black);
    border-color: var(--color-off-black);
  }
  .block__cta .block__cta__content .block__cta__buttons .button--secondary:hover:not(:disabled) img, .block__cta .block__cta__content .block__cta__buttons .button--secondary:hover:not([disabled]) img {
    filter: brightness(0) invert(1);
  }
}
.block__cta .block__cta__content .block__cta__footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 4rem;
  margin-top: 16rem;
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content .block__cta__footer {
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.4rem;
  }
}
.block__cta .block__cta__content .block__cta__footer .social-media__links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content .block__cta__footer .social-media__links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.4rem;
  }
}
.block__cta .block__cta__content .block__cta__footer a {
  font-size: 1.6rem;
  text-transform: uppercase !important;
}
@media screen and (max-width: 601px) {
  .block__cta .block__cta__content .block__cta__footer a {
    font-size: 1.4rem;
  }
}
.block__cta.the-studio__cta .block__cta__title, .block__cta.the-studio__cta .block__cta__description, .block__cta.the-studio__cta .block__cta__footer, .block__cta.what-we-do__cta .block__cta__title, .block__cta.what-we-do__cta .block__cta__description, .block__cta.what-we-do__cta .block__cta__footer {
  color: var(--color-off-white);
}

.block__numbers {
  width: 100%;
  padding: 0 4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__numbers {
    padding: 0 2.4rem;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .block__numbers {
    flex-wrap: wrap;
  }
}
.block__numbers .block__numbers__number {
  width: calc((100% - 19.2rem) / 4);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2.4rem;
  padding: 6.4rem 0;
  border-top: 1px solid var(--color-off-white);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__numbers .block__numbers__number {
    width: calc((100% - 7.2rem) / 4);
    padding: 4rem 0;
  }
}
@media screen and (max-width: 601px) {
  .block__numbers .block__numbers__number {
    width: calc((100% - 2.4rem) / 2);
  }
}
.block__numbers .block__numbers__number span {
  display: block;
  width: 100%;
}
.block__numbers .block__numbers__number p span {
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .block__numbers .block__numbers__number p span {
    padding-bottom: 2.4rem;
    font-size: 3.2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 601px) {
  .block__numbers .block__numbers__number p span {
    margin-bottom: 2.4;
    padding-bottom: 0;
  }
}

.quick-contact__block {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.3s ease-out;
}
.quick-contact__block.visible {
  visibility: visible;
  opacity: 1;
  z-index: 10000;
}
.quick-contact__block.visible .quick-contact__wrapper {
  opacity: 1;
  transform: translateY(0);
}
.quick-contact__block .quick-contact__wrapper {
  width: 80vw;
  max-width: 1400px;
  height: auto;
  max-height: 85dvh;
  border-radius: 1.6rem;
  padding: 8rem 6.4rem 6.4rem;
  background-color: var(--color-off-black);
  color: var(--color-off-white);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 4rem;
  position: relative;
  opacity: 0;
  transform: translateY(4rem);
  transition: all 0.4s 0.3s ease-out;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper {
    width: 90vw;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    padding: 6.4rem 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .quick-contact__block .quick-contact__wrapper {
    padding: 6.4rem 1.6rem 2.4rem 1.6rem;
    max-height: 90dvh;
  }
}
.quick-contact__block .quick-contact__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/noisy-background_inverted.webp");
  background-size: 20vw auto;
  background-position: center center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}
.quick-contact__block .quick-contact__wrapper::after {
  content: "";
  width: 30rem;
  height: 30rem;
  background: var(--color-primary);
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  filter: blur(20rem);
  z-index: -2;
}
.quick-contact__block .quick-contact__wrapper .button-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: auto;
  padding: 0.4rem;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .quick-contact__block .quick-contact__wrapper .button-close:hover {
    opacity: 0.6;
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__left {
  width: 30%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__left {
    width: 100%;
    padding: 0 1.6rem;
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__left button {
  background: var(--color-black);
  border-color: var(--color-black);
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__left button {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__left button:hover:not(:disabled), .quick-contact__block .quick-contact__wrapper .quick-contact__left button:hover:not([disabled]) {
    background: var(--color-off-white);
    border-color: var(--color-off-white);
    color: var(--color-off-black);
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 4rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2.4rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__text .quick-contact__title {
  font-size: 4rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__text p {
  line-height: 1.3;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper {
  width: calc(70% - 4rem);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  height: -webkit-fill-available;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper {
    width: 100%;
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__fields {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  gap: 4rem;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 80%;
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__fields {
    padding: 0 1.6rem;
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__fields::-webkit-scrollbar-track {
  background-color: var(--color-off-white);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__fields::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--color-light-gray);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__fields::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 0.25rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper form {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  gap: 4rem;
  font-size: 1.6rem;
  flex-shrink: 1;
  height: 100%;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 601px) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset {
  flex-basis: 50%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 0.8rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset label span {
  color: var(--color-primary);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset input, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset textarea {
  background: none;
  border: none;
  border-bottom: 2px solid var(--color-deep-gray);
  padding: 0.8rem 0;
  font-family: "Chivo Mono", monospace;
  font-size: 1.6rem;
  color: var(--color-off-white);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset input:placeholder, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset textarea:placeholder {
  color: var(--color-light-gray);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset input:focus, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset input:focus-visible, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset textarea:focus, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset textarea:focus-visible {
  outline: none;
  border: none;
  border-bottom: 2px solid var(--color-primary);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.6rem;
  padding-top: 1.2rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group input {
  margin: 0;
  accent-color: var(--color-primary);
  border: 1.5px solid var(--color-off-white);
  background-color: transparent;
  appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  min-height: 0;
  padding: 0.4rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group input:hover:not(:disabled), .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group input:hover:not([disabled]) {
    border-color: var(--color-primary);
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group input:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  display: block;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group input:not(:checked) {
  accent-color: var(--color-off-white);
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group label {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group label:hover:not(:disabled) input, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper .contact-form__row fieldset .checkbox-group label:hover:not([disabled]) input {
    border-color: var(--color-primary);
  }
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button {
  padding: 0.8rem 2rem 0.8rem 2rem;
  gap: 0.8rem;
}
.quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button img {
  height: 2.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button:hover:not(:disabled), .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button:hover:not([disabled]) {
    background: var(--color-off-white);
    border-color: var(--color-off-white);
    color: var(--color-off-black);
  }
  .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button:hover:not(:disabled) img, .quick-contact__block .quick-contact__wrapper .quick-contact__form__wrapper button:hover:not([disabled]) img {
    filter: brightness(0);
  }
}
.quick-contact__block .quick-contact__wrapper .contact-form__footer {
  width: 100%;
  padding-top: 2.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
  gap: 4rem;
  flex-shrink: 1;
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .contact-form__footer {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 821px) {
  .quick-contact__block .quick-contact__wrapper .contact-form__footer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    gap: 2.4rem;
  }
}
.quick-contact__block .quick-contact__wrapper .contact-form__footer #status-message {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: 75%;
}
.quick-contact__block .quick-contact__wrapper .contact-form__footer #status-message.status-error {
  color: var(--color-accent);
}
.quick-contact__block .quick-contact__wrapper .contact-form__footer #status-message.status-success {
  color: var(--color-off-white);
}

.button {
  font-family: "Chivo Mono", monospace;
  cursor: pointer;
  padding: 0;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.2rem 1.6rem 1.2rem 2.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.button span {
  position: relative;
  z-index: 1;
}
.button img {
  height: 1.6rem;
  width: auto;
  transition: all 0.3s ease-out;
}
.button--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.button--primary img {
  filter: brightness(0) invert(1);
}
@media (hover: hover) and (pointer: fine) {
  .button--primary:hover:not(:disabled), .button--primary:hover:not([disabled]) {
    background: var(--color-off-black);
    border-color: var(--color-off-black);
  }
}
.button--primary.button--call a {
  gap: 1.6rem;
}
.button--primary.button--call img {
  filter: none;
  height: 3.6rem;
}
.button--secondary {
  background: var(--color-off-black);
  color: var(--color-off-white);
  border-color: var(--color-off-black);
}
.button--secondary a::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.8rem;
  background-image: url("../img/icons/icon_arrow_diagonal_primary.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.button--secondary[disabled] {
  filter: grayscale(1);
  opacity: 0.8;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .button--secondary:hover:not(:disabled), .button--secondary:hover:not([disabled]) {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
  }
  .button--secondary:hover:not(:disabled) a::after, .button--secondary:hover:not([disabled]) a::after {
    filter: brightness(0) invert(1);
  }
}
.button--white {
  background: var(--color-off-white);
  color: var(--color-primary);
  border-color: var(--color-off-white);
}
@media (hover: hover) and (pointer: fine) {
  .button--white:hover:not(:disabled), .button--white:hover:not([disabled]) {
    background: var(--color-off-black);
    border-color: var(--color-off-black);
    color: var(--color-white);
  }
}
.button--has-icon a {
  padding: 1.2rem 2.4rem 1.2rem 2rem;
}
.button.no-link {
  padding: 1.2rem 1.6rem 1.2rem 2.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1.4rem;
  white-space: nowrap;
}
.button.no-link.button--has-icon {
  padding: 1.2rem 2.4rem 1.2rem 2rem;
}

.link--arrow {
  width: auto;
  padding-right: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  font-size: 2rem;
  letter-spacing: -0.06rem;
  line-height: 2.4rem;
  border-bottom: 0.2rem solid var(--color-deep-gray);
  position: relative;
}
.link--arrow::before {
  content: "";
  width: 1.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/icons/icon_arrow_diagonal.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}
@media (hover: hover) and (pointer: fine) {
  .link--arrow:hover {
    transition: all 0.3s ease;
    padding-right: 2.5rem;
    opacity: 0.8;
  }
}

.card {
  border-radius: 1.6rem;
  overflow: hidden;
}

@keyframes expandCard {
  0% {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
  100% {
    max-height: 100vh;
    opacity: 1;
    margin-top: 3.2rem;
  }
}
@keyframes collapseCard {
  0% {
    max-height: 100vh;
    opacity: 1;
    margin-top: 3.2rem;
  }
  100% {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
}
.social__media {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-end;
  gap: 1.6rem;
}
.social__media li {
  width: 1.8rem;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .social__media li:hover {
    filter: brightness(0);
    opacity: 0.6;
  }
}

.footer {
  width: calc(100% - 8rem);
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  z-index: 4;
  padding: 6.4rem;
  border-radius: 2.4rem;
  background-color: var(--color-primary);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
  font-size: 1.6rem;
  letter-spacing: -0.016rem;
  line-height: 2rem;
}
@media screen and (min-width: 2559px) {
  .footer {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .footer {
    padding: 4rem 2.4rem;
    width: calc(100% - 4.8rem);
    left: 2.4rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .footer {
    width: calc(100% - 3.2rem);
    border-radius: 1.6rem;
    left: 1.6rem;
  }
}
.footer .footer__left {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .footer .footer__left {
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .footer .footer__left {
    gap: 8rem;
  }
}
.footer .footer__left .footer__logo {
  width: 8rem;
}
.footer .footer__left .footer__navigation ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.6rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .footer .footer__left .footer__navigation ul {
    align-items: flex-end;
    align-content: flex-end;
  }
}
@media screen and (max-width: 601px) {
  .footer .footer__left .footer__navigation ul {
    font-size: 1.4rem;
    gap: 1.2rem;
  }
}
.footer .footer__left .footer__navigation a {
  text-transform: uppercase !important;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .footer .footer__center {
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .footer .footer__center {
    font-size: 1.2rem;
    text-align: center;
  }
}
.footer .footer__center #copyright-year {
  margin-right: 1rem;
}

.site__header {
  width: 100vw;
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  padding: 3.2rem 4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  transition: all 0.3s ease;
  gap: 20rem;
}
@media screen and (min-width: 2559px) {
  .site__header {
    padding: 1.6rem 4rem;
  }
}
@media screen and (max-width: 821px) {
  .site__header {
    padding: 3.2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2rem);
    border-radius: 0 0 2.4rem 2.4rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 601px) {
  .site__header {
    padding: 3.2rem 1.6rem 2rem 1.6rem;
  }
}
.site__header .header__logo {
  width: 9.6rem;
}
@media screen and (max-width: 821px) {
  .site__header .header__logo {
    width: 12rem;
  }
}
@media screen and (max-width: 601px) {
  .site__header .header__logo {
    width: 10rem;
  }
}
.site__header .header__navigation {
  width: auto;
  flex-grow: 1;
}
@media screen and (max-width: 821px) {
  .site__header .header__navigation {
    order: 3;
    width: 100%;
    animation: hideMenu 0.6s ease forwards;
    display: none;
  }
}
.site__header .header__navigation ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: initial;
  gap: 4rem;
}
@media screen and (min-width: 2559px) {
  .site__header .header__navigation ul {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 821px) {
  .site__header .header__navigation ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 2.4rem;
  }
}
.site__header .header__navigation ul li {
  position: relative;
  overflow: hidden;
}
.site__header .header__navigation ul li a {
  text-transform: uppercase !important;
  position: relative;
  overflow: hidden;
  display: block;
}
.site__header .header__navigation ul li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-menu-current);
  transform: translateX(105%);
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site__header .header__navigation ul li:hover::before, .site__header .header__navigation ul li:has(.current)::before {
    transform: translateX(0);
  }
}
.site__header .header__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 1.6rem;
  display: none;
}
@media screen and (min-width: 2559px) {
  .site__header.sticky {
    padding-top: 1.6rem;
  }
}
@media screen and (min-width: 821px) {
  .site__header.sticky {
    padding-top: 2.4rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2rem);
  }
}
.site__header.active {
  background: rgba(125, 87, 111, 0.5);
}
.site__header.active .header__hamburger span:nth-of-type(1) {
  transform: rotate(45deg) translate(1rem, 1rem);
}
.site__header.active .header__hamburger span:nth-of-type(2) {
  transform: rotate(-45deg) translate(0rem, 0rem);
}
.site__header.active .header__navigation {
  display: block;
  animation: showMenu 0.6s ease forwards;
}

.header__hamburger {
  width: 4rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 1.2rem;
  display: none;
  position: absolute;
  top: 3.5rem;
  right: 3.2rem;
}
@media screen and (max-width: 821px) {
  .header__hamburger {
    display: flex;
  }
}
@media screen and (max-width: 601px) {
  .header__hamburger {
    right: 1.6rem;
  }
}
.header__hamburger span {
  width: 100%;
  height: 0.2rem;
  border-radius: 0.8rem;
  background: var(--color-white);
  transition: all 0.3s ease;
}

@keyframes showMenu {
  0% {
    max-width: 0;
    height: 0;
    min-height: 0;
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
  100% {
    height: auto;
    min-height: 2rem;
    max-height: 100vh;
    padding: 6rem 0 4rem;
    opacity: 1;
  }
}
@keyframes hideMenu {
  0% {
    height: auto;
    min-height: 2rem;
    max-height: 100vh;
    padding: 6rem 0 4rem;
    opacity: 1;
  }
  100% {
    max-width: 0;
    height: 0;
    min-height: 0;
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.home__wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: strecth;
  align-content: stretch;
}

.home__hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
  padding-top: 8rem;
  max-height: 91vh;
  min-height: 91vh;
  background: var(--color-black);
}
@media screen and (min-width: 601px) and (orientation: portrait) {
  .home__hero {
    min-height: 55dvh;
  }
}
@media screen and (max-width: 821px) {
  .home__hero {
    min-height: 75dvh;
  }
}
@media screen and (max-width: 601px) {
  .home__hero {
    min-height: 85dvh;
  }
}
.home__hero .home__hero__background {
  position: fixed;
  top: 0;
  width: 100%;
  height: 91vh;
  z-index: 0;
  background-color: rgba(237, 107, 69, 0.25);
  background-image: url("../img/home_hero_bg_2x.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.7;
  background-blend-mode: multiply;
}
@media screen and (min-width: 601px) and (orientation: portrait) {
  .home__hero .home__hero__background {
    height: 55dvh;
  }
}
@media screen and (max-width: 1441px) {
  .home__hero .home__hero__background {
    background-image: url("../img/home_hero_bg_1x.webp");
  }
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__background {
    height: 75dvh;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__background {
    background-image: url("../img/home_hero_bg_sm.webp");
    height: 85dvh;
  }
}
.home__hero .home__hero__background .home__hero__background__pixel-grid--1 {
  bottom: 13rem;
  left: -2rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__background .home__hero__background__pixel-grid--1 {
    bottom: -2rem;
  }
}
.home__hero .home__hero__background .home__hero__background__pixel-grid--2 {
  top: 35%;
  right: -3rem;
  transform: rotate(90deg);
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__background .home__hero__background__pixel-grid--2 {
    top: 8rem;
  }
}
.home__hero .home__hero__content {
  position: relative;
  z-index: 1;
  height: 91vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  gap: 7.2rem;
  overflow: hidden;
  position: fixed;
  top: 0;
}
@media screen and (min-width: 601px) and (orientation: portrait) {
  .home__hero .home__hero__content {
    height: 55dvh;
  }
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__content {
    height: 75dvh;
    gap: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content {
    height: 85dvh;
  }
}
.home__hero .home__hero__content .home__hero__eyebrow {
  transform: translateX(4rem);
  background: var(--color-black);
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__eyebrow {
    transform: translateX(2.4rem);
  }
}
.home__hero .home__hero__content .home__hero__title__container {
  margin-bottom: -3rem;
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__content .home__hero__title__container {
    margin-bottom: -1rem;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__title__container {
    width: 100%;
    margin: 0;
  }
}
.home__hero .home__hero__content .home__hero__title__container .home__hero__title {
  line-height: 0.9;
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__title__container .home__hero__title {
    width: 80%;
    font-size: 4rem;
  }
}
.home__hero .home__hero__content .home__hero__title__container .home__hero__title span {
  display: block;
  font-size: 23.2rem;
  letter-spacing: -0.232rem;
  transform: translateX(-2.4rem);
}
@media screen and (max-width: 821px) {
  .home__hero .home__hero__content .home__hero__title__container .home__hero__title span {
    font-size: 10rem;
    letter-spacing: -0.1rem;
    transform: translateX(-1.2rem);
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__title__container .home__hero__title span {
    font-size: 5.4rem;
    letter-spacing: -0.054rem;
    transform: translateX(0);
    margin-top: 0.8rem;
  }
}
.home__hero .home__hero__content .home__hero__description {
  position: absolute;
  top: 20rem;
  right: 29%;
  line-height: 1.5;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .home__hero .home__hero__content .home__hero__description {
    top: 40rem;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__description {
    right: auto;
    top: auto;
    position: relative;
    margin-left: 2.4rem;
  }
}
.home__hero .home__hero__content .home__hero__use-cases {
  position: absolute;
  right: 4rem;
  top: 36rem;
  width: 28rem;
  aspect-ratio: 16/9;
  background: var(--color-black);
  transition: all 0.5s ease;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .home__hero .home__hero__content .home__hero__use-cases {
    width: 35vw;
    top: 50%;
  }
}
@media screen and (max-width: 601px) {
  .home__hero .home__hero__content .home__hero__use-cases {
    position: relative;
    right: auto;
    top: auto;
    width: 50vw;
    margin-left: calc(50vw - 2.4rem);
    margin-bottom: 2.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home__hero .home__hero__content .home__hero__use-cases:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.15);
  }
}
.home__hero .home__hero__content .home__hero__use-cases a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 1.6rem 0.8rem 0.8rem;
}
.home__hero .home__hero__content .home__hero__use-cases span {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
}
.home__hero .home__hero__content .home__hero__use-cases .home__hero__use-cases__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.home__hero .home__hero__content .home__hero__use-cases .home__hero__use-cases__background .video__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0.5;
}
.home__hero .home__hero__content .home__hero__use-cases .home__hero__use-cases__background .video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__hero .home__hero__content .home__hero__content__bottom {
  padding: 3.2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
}

.home__intro {
  width: 100%;
  min-height: 100dvh;
  position: relative;
  z-index: 2;
}
.home__intro .home__intro__video {
  width: 100%;
  height: 100dvh;
  background: var(--color-off-black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: width 0.6s ease;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__video {
    height: auto;
    aspect-ratio: 16/9;
    position: relative;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__video {
    aspect-ratio: 4/5;
  }
}
.home__intro .home__intro__video .video__wrapper {
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home__intro .home__intro__video .video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(1);
}
.home__intro .home__intro__video .home__intro__video__text {
  position: absolute;
  top: 50%;
  right: 4rem;
  font-size: 1.8rem;
  transition: all 0.6s ease;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__video .home__intro__video__text {
    font-size: 1.4rem;
    right: auto;
    left: 2.4rem;
  }
}
.home__intro .home__intro__video .home__intro__video__text span {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
}
.home__intro .home__intro__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  padding-left: 50%;
  color: var(--color-off-black);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__content {
    background-color: var(--color-off-white);
    padding-left: 0;
  }
}
.home__intro .home__intro__content .home__intro__block {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  padding: 4rem 8rem;
  overflow: hidden;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .home__intro .home__intro__content .home__intro__block {
    min-height: 25vh;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__content .home__intro__block {
    min-height: 35dvh;
    height: auto;
    padding: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block {
    padding: 4rem 2.4rem;
    min-height: 50dvh;
  }
}
.home__intro .home__intro__content .home__intro__block:nth-of-type(1) {
  height: 50dvh;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__content .home__intro__block:nth-of-type(1) {
    display: none;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__content .home__intro__block:nth-of-type(3) {
    align-items: flex-end;
  }
}
.home__intro .home__intro__content .home__intro__block h2 span {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block h2 span {
    margin-bottom: 0.4rem;
  }
}
.home__intro .home__intro__content .home__intro__block h2 span:nth-of-type(1) {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block h2 span:nth-of-type(1) {
    margin-bottom: 0.8rem;
  }
}
.home__intro .home__intro__content .home__intro__block h2 span:nth-of-type(3) {
  margin: 1.2rem 0 1rem;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block h2 span:nth-of-type(3) {
    margin: 0;
  }
}
.home__intro .home__intro__content .home__intro__block h2 .symbols-pre::before {
  color: var(--color-light-gray);
  margin-right: 0.8rem;
}
.home__intro .home__intro__content .home__intro__block .home__intro__block__description {
  width: 60%;
  margin-left: 8.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block .home__intro__block__description {
    width: 90%;
    margin-left: 0;
  }
}
.home__intro .home__intro__content .home__intro__block:nth-of-type(3) h2 span {
  margin-bottom: 0;
}
.home__intro .home__intro__content .home__intro__block:nth-of-type(3) h2 span:nth-of-type(1) {
  margin-bottom: 0;
}
.home__intro .home__intro__content .home__intro__block:nth-of-type(3) h2 span:nth-of-type(3) {
  margin: -1.5rem 0 1rem;
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__content .home__intro__block:nth-of-type(3) h2 span:nth-of-type(3) {
    margin: 0 0 0.4rem 0;
  }
}
.home__intro .home__intro__content .home__intro__content__pixel-grid--1 {
  top: 80dvh;
  right: -1rem;
  transform: rotate(180deg);
  z-index: -1;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__content .home__intro__content__pixel-grid--1 {
    top: 4rem;
  }
}
.home__intro .home__intro__image {
  position: absolute;
  left: calc(50% + 16rem);
  top: 57dvh;
  width: 28rem;
  aspect-ratio: 16/9;
  background: var(--color-light-gray);
  z-index: -1;
}
.home__intro .home__intro__keep-scrolling {
  position: absolute;
  right: 8rem;
  bottom: 12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__intro .home__intro__keep-scrolling {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .home__intro .home__intro__keep-scrolling {
    margin-top: 8rem;
  }
}
.home__intro.state-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
}
.home__intro.state-2 .home__intro__video {
  filter: grayscale(1);
  width: 50% !important;
}
.home__intro.state-2 .home__intro__video .home__intro__video__text .text--highlighted {
  color: var(--color-off-white);
}
.home__intro.state-2 .home__intro__content {
  margin: 0;
}
.home__intro.state-3 .home__intro__image {
  left: calc(50% - 8rem);
  top: 75%;
  z-index: 3;
}

.home__services {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 24rem 0 8rem 0;
}
@media screen and (max-width: 601px) {
  .home__services {
    margin-top: 8rem;
  }
}
.home__services .home__service__animation__base {
  width: 49%;
  min-height: 100dvh;
  padding: 8rem;
  position: absolute;
  top: 16rem;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-aspect-ratio: 21/9) {
  .home__services .home__service__animation__base {
    padding: 12rem 8rem;
    width: 40%;
    padding: 8rem 8rem 8rem 20rem;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__services .home__service__animation__base {
    width: 80%;
    opacity: 0.3;
  }
}
@media screen and (max-width: 601px) {
  .home__services .home__service__animation__base {
    width: 100%;
    padding: 8rem 2.4rem;
    opacity: 0.6;
  }
}
.home__services .home__services__animation {
  width: 50%;
  min-height: 100dvh;
  padding: 8rem;
  position: relative;
}
.home__services .home__services__animation .home__service__animation__image {
  mix-blend-mode: multiply;
}
.home__services .home__service__group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.home__services .home__service__animation__image {
  position: absolute;
  width: calc(100% - 16rem);
  aspect-ratio: 4/3;
  transition: all 0.6s ease;
}
@media screen and (min-aspect-ratio: 21/9) {
  .home__services .home__service__animation__image {
    aspect-ratio: 16/9;
  }
}
.home__services .home__service__animation__image.active {
  opacity: 1;
  z-index: 2;
}
.home__services .home__services__content {
  width: 50%;
  margin-left: 50%;
  min-height: 100dvh;
  padding: 4rem 4rem 4rem 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__services .home__services__content {
    margin-left: 20%;
    width: 80%;
  }
}
@media screen and (max-width: 601px) {
  .home__services .home__services__content {
    width: 100%;
    margin: 0;
    padding: 0 2.4rem;
  }
}
.home__services .home__services__content .home__service {
  width: 100%;
  border-top: 1px solid var(--color-deep-gray);
  padding: 0.8rem 2.4rem;
  transition: all 0.3s ease-out;
}
.home__services .home__services__content .home__service .home__service__eyebrow {
  color: var(--color-deep-gray);
  cursor: pointer;
}
.home__services .home__services__content .home__service .home__service__body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6.4rem;
  display: none;
}
.home__services .home__services__content .home__service .home__service__title span {
  display: block;
  width: 100%;
}
.home__services .home__services__content .home__service .home__service__title span::after {
  color: var(--color-off-black);
  margin-left: 1.6rem;
}
.home__services .home__services__content .home__service .home__service__description {
  line-height: 1.5;
  max-width: 80%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__services .home__services__content .home__service .home__service__description {
    max-width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .home__services .home__services__content .home__service button {
    width: 100%;
  }
}
.home__services .home__services__content .home__service.active {
  height: auto;
  min-height: 80dvh;
  padding: 12rem 2.4rem 4rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6.4rem;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .home__services .home__services__content .home__service.active {
    min-height: 50dvh;
    border: none;
  }
}
.home__services .home__services__content .home__service.active .home__service__eyebrow {
  color: var(--color-primary);
  cursor: initial;
}
.home__services .home__services__content .home__service.active .home__service__body {
  display: flex;
}

.home__why-real-time {
  width: 100%;
  min-height: 90dvh;
  position: relative;
  z-index: 2;
}
.home__why-real-time .home__why-real-time__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 601px) {
  .home__why-real-time .home__why-real-time__background {
    justify-content: flex-start;
  }
}
.home__why-real-time .home__why-real-time__background picture {
  width: 60%;
  height: 60%;
}
@media screen and (max-width: 601px) {
  .home__why-real-time .home__why-real-time__background picture {
    width: 80%;
    height: 40%;
  }
}
.home__why-real-time .home__why-real-time__background picture img {
  height: 100%;
  object-fit: contain;
}
.home__why-real-time .home__why-real-time__text {
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 28rem;
  gap: 16rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__why-real-time .home__why-real-time__text {
    gap: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .home__why-real-time .home__why-real-time__text {
    padding-top: 12rem;
    align-items: center;
  }
}
.home__why-real-time .home__why-real-time__text .home__why-real-time__title {
  width: 100%;
  font-size: 16rem;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  line-height: 0.9;
  letter-spacing: -0.48rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__why-real-time .home__why-real-time__text .home__why-real-time__title {
    font-size: 12rem;
    letter-spacing: -0.36rem;
  }
}
@media screen and (max-width: 601px) {
  .home__why-real-time .home__why-real-time__text .home__why-real-time__title {
    font-size: 7.2rem;
    letter-spacing: -0.216rem;
  }
}
.home__why-real-time .home__why-real-time__text .home__why-real-time__title span {
  display: block;
  width: 100%;
}
.home__why-real-time .home__why-real-time__text .home__why-real-time__title span:nth-of-type(1) {
  color: var(--color-off-black);
  transform: translateX(-2rem);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__why-real-time .home__why-real-time__text .home__why-real-time__title span:nth-of-type(1) {
    transform: translateX(-1rem);
  }
}
.home__why-real-time .home__why-real-time__text .home__why-real-time__title span:nth-of-type(2) {
  text-align: right;
  transform: translateX(2rem);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__why-real-time .home__why-real-time__text .home__why-real-time__title span:nth-of-type(2) {
    transform: translateX(0);
  }
}
.home__why-real-time .home__why-real-time__text .home__why-real-time__cards {
  position: absolute;
}
.home__why-real-time .home__why-real-time__text button {
  position: absolute;
  right: 4rem;
  top: 52%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__why-real-time .home__why-real-time__text button {
    top: 55%;
  }
}
@media screen and (max-width: 601px) {
  .home__why-real-time .home__why-real-time__text button {
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% - 4.8rem);
  }
}

.home__what-set-us-apart {
  width: 100%;
  height: 120vh;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}
.home__what-set-us-apart .home__what-set-us-apart__header {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 16rem;
  position: relative;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__what-set-us-apart .home__what-set-us-apart__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    padding-top: 8rem;
  }
}
.home__what-set-us-apart .home__what-set-us-apart__header h3 {
  font-size: 12rem;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  letter-spacing: -0.36rem;
  text-transform: lowercase;
  color: var(--color-primary);
  transform: translateX(-1rem);
  line-height: 0.9;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__what-set-us-apart .home__what-set-us-apart__header h3 {
    font-size: 8rem;
    letter-spacing: -0.24rem;
  }
}
@media screen and (max-width: 601px) {
  .home__what-set-us-apart .home__what-set-us-apart__header h3 {
    font-size: 6.4rem;
    letter-spacing: -0.192rem;
  }
}
.home__what-set-us-apart .home__what-set-us-apart__header h3 span {
  display: block;
  width: 100%;
}
.home__what-set-us-apart .home__what-set-us-apart__header .home__what-set-us-apart__title {
  position: absolute;
  background: var(--color-black);
  z-index: 2;
  font-size: 1.6rem;
  right: 27rem;
  bottom: -1rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__what-set-us-apart .home__what-set-us-apart__header .home__what-set-us-apart__title {
    font-size: 1.4rem;
    left: 2.4rem;
    right: auto;
  }
}
.home__what-set-us-apart .home__what-set-us-apart__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  font-size: 4rem;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  letter-spacing: -0.12rem;
  padding: 16rem 8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .home__what-set-us-apart .home__what-set-us-apart__text {
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    letter-spacing: -0.084rem;
    padding: 35rem 4rem 4rem 25%;
  }
}
@media screen and (max-width: 601px) {
  .home__what-set-us-apart .home__what-set-us-apart__text {
    padding: 35rem 2.4rem 4rem 6.4rem;
    font-size: 2.2rem;
    letter-spacing: -0.066rem;
  }
}
.home__what-set-us-apart .home__what-set-us-apart__text span {
  display: block;
  width: 100%;
  margin-bottom: 6.4rem;
}
.home__what-set-us-apart .home__what-set-us-apart__text span::before, .home__what-set-us-apart .home__what-set-us-apart__text span::after {
  color: var(--color-black);
}
@media screen and (max-width: 601px) {
  .home__what-set-us-apart button {
    width: 100%;
  }
}

.the-studio__hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
  padding-top: 8rem;
}
.the-studio__hero .the-studio__hero__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  padding: 16rem 19rem 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__background {
    padding: 8rem 2.4rem 0 0;
  }
}
.the-studio__hero .the-studio__hero__background picture, .the-studio__hero .the-studio__hero__background .video__wrapper {
  width: 31vw;
  aspect-ratio: 5/6;
  background-color: var(--color-black);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__background picture, .the-studio__hero .the-studio__hero__background .video__wrapper {
    width: 56vw;
  }
}
.the-studio__hero .the-studio__hero__background picture img, .the-studio__hero .the-studio__hero__background picture video, .the-studio__hero .the-studio__hero__background .video__wrapper img, .the-studio__hero .the-studio__hero__background .video__wrapper video {
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(1);
}
.the-studio__hero .the-studio__hero__background picture::before, .the-studio__hero .the-studio__hero__background .video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #703523;
  opacity: 0.8;
  mix-blend-mode: lighten;
  z-index: 1;
}
.the-studio__hero .the-studio__hero__background picture::after, .the-studio__hero .the-studio__hero__background .video__wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-off-black);
  opacity: 0.2;
  mix-blend-mode: exclusion;
  z-index: 2;
}
.the-studio__hero .the-studio__hero__background .the-studio__hero__background__pixel-grid--1 {
  bottom: -16rem;
  right: 9rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__background .the-studio__hero__background__pixel-grid--1 {
    right: -2rem;
  }
}
.the-studio__hero .the-studio__hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 7.2rem;
  padding: 12rem 1rem 3.2rem 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content {
    padding-left: 0;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__content__top {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__content__top {
    gap: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__content__top {
    gap: 6.4rem;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__eyebrow {
  transform: translateX(4rem);
  background: var(--color-black);
  position: absolute;
  right: 8rem;
  top: 54rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__eyebrow {
    top: 48rem;
    right: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__eyebrow {
    top: 36rem;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__title__container {
  margin-bottom: -3rem;
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title {
  line-height: 0.9;
  transition: color 0.6s ease;
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span {
  display: block;
  font-size: 12rem;
  letter-spacing: -0.12rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span {
    font-size: 8rem;
    letter-spacing: -0.08rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span {
    font-size: 4.8rem;
    letter-spacing: -0.048rem;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(2) {
  padding-left: 27rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(2) {
    padding-left: 16rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(2) {
    padding-left: 8rem;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(3) {
  padding-left: 8.8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(3) {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__title__container .the-studio__hero__title span:nth-of-type(3) {
    padding-left: 0;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__highlight {
  width: 42%;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 4rem;
  letter-spacing: -0.12rem;
  line-height: 1.1;
  margin-top: 16rem;
  margin-left: 16rem;
  transition: color 0.6s ease, opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__highlight {
    width: 70%;
    margin-left: 25%;
    font-size: 2.8rem;
    letter-spacing: -0.084rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__highlight {
    width: calc(100% - 8rem);
    margin-left: 4rem;
    font-size: 2.2rem;
    letter-spacing: -0.066rem;
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__highlight::before, .the-studio__hero .the-studio__hero__content .the-studio__hero__highlight::after {
  color: var(--color-off-black);
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__text {
  width: 30.5%;
  margin-left: 25%;
  line-height: 1.5;
  transition: color 0.6s ease, opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__text {
    width: 70%;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__hero .the-studio__hero__content .the-studio__hero__text {
    margin-left: 6.4rem;
    width: calc(100% - 10.4rem);
  }
}
.the-studio__hero .the-studio__hero__content .the-studio__hero__text::before, .the-studio__hero .the-studio__hero__content .the-studio__hero__text::after {
  color: var(--color-primary);
}

.the-studio__intro {
  width: 100%;
  position: relative;
  z-index: 2;
  color: var(--color-off-black);
}
.the-studio__intro .the-studio__intro__header {
  padding: 16rem 0 6.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__intro .the-studio__intro__header {
    padding-bottom: 4rem;
  }
}
.the-studio__intro .the-studio__intro__header .the-studio__intro__title {
  font-size: 8.8rem;
  letter-spacing: -0.264rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__intro .the-studio__intro__header .the-studio__intro__title {
    font-size: 6.4rem;
    letter-spacing: -0.192rem;
    line-height: 0.8;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__intro .the-studio__intro__header .the-studio__intro__title {
    font-size: 5.6rem;
    letter-spacing: -0.168rem;
  }
}
.the-studio__intro .the-studio__intro__header .the-studio__intro__title span {
  display: block;
  width: 100%;
  color: var(--color-deep-gray);
  padding-left: 19rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__intro .the-studio__intro__header .the-studio__intro__title span {
    padding-left: 8rem;
    line-height: 1;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__intro .the-studio__intro__header .the-studio__intro__title span {
    padding-left: 12.2rem;
    margin-top: -1rem;
  }
}
.the-studio__intro .the-studio__intro__content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 3.3rem;
  padding: 0 48rem 0 64rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__intro .the-studio__intro__content {
    padding: 0 8rem 0 16rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__intro .the-studio__intro__content {
    flex-direction: column;
    padding: 0 2.4rem 0 4rem;
  }
}
.the-studio__intro .the-studio__intro__content p {
  width: calc((100% - 3.3rem) / 2);
  line-height: 1.3;
}
@media screen and (max-width: 601px) {
  .the-studio__intro .the-studio__intro__content p {
    width: 100%;
  }
}
.the-studio__intro .the-studio__intro__content p:nth-of-type(2) {
  margin-top: 15rem;
}
@media screen and (max-width: 601px) {
  .the-studio__intro .the-studio__intro__content p:nth-of-type(2) {
    margin-top: 4rem;
    padding-left: 4rem;
    margin-bottom: 4rem;
  }
}

.the-studio__how-we-work {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 12rem 4rem;
  gap: 4rem;
  color: var(--color-off-white);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work {
    padding: 12rem 2.4rem;
    flex-direction: column;
  }
}
.the-studio__how-we-work::before {
  content: "";
  width: calc(100% - 8rem);
  height: 1px;
  background: var(--color-deep-gray);
  position: absolute;
  top: 4rem;
  left: 4rem;
  opacity: 0.5;
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work::before {
    width: calc(100% - 4.8rem);
    left: 2.4rem;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__header {
  width: calc(40% - 2rem);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 4rem;
  padding-right: 12rem;
  color: var(--color-off-black);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work .the-studio__how-we-work__header {
    padding-right: 0;
    width: calc(45% - 1.2rem);
  }
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work .the-studio__how-we-work__header {
    width: 100%;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__header .the-studio__how-we-work__title {
  margin-top: 1.6rem;
}
.the-studio__how-we-work .the-studio__how-we-work__header .the-studio__how-we-work__title::after {
  color: var(--color-light-gray);
  margin-left: 1.6rem;
}
.the-studio__how-we-work .the-studio__how-we-work__content {
  width: calc(60% - 2rem);
  padding: 4rem 12rem 4rem 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work .the-studio__how-we-work__content {
    width: calc(55% - 1.2rem);
    padding: 4rem 0 4rem 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work .the-studio__how-we-work__content {
    width: 100%;
    padding: 0 0 4rem 0;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__cards {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.4rem;
  padding: 2.4rem 0;
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__cards {
    gap: 1.6rem;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card {
  width: 100%;
  background: var(--color-off-black);
  padding: 6.4rem 4rem 4rem;
  border-radius: 1.6rem;
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 6.4rem;
  position: relative;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card {
    padding: 4.8rem 2.4rem 4rem;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card::after {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.8rem;
  background: var(--color-primary);
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  background-image: url("../img/icons/icon_arrow_diagonal.svg");
  background-size: 45% auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card::after {
    width: 4rem;
    height: 4rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}
.the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card .the-studio__how-we-work__card__description {
  max-width: 70%;
  line-height: 1.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card .the-studio__how-we-work__card__description {
    max-width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__how-we-work .the-studio__how-we-work__content .the-studio__how-we-work__card .the-studio__how-we-work__card__description {
    font-size: 1.4rem;
  }
}

.the-studio__what-we-do {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
  padding-top: 8rem;
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do {
    padding-top: 0;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 90%;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.the-studio__what-we-do .the-studio__what-we-do__background picture, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper {
  width: 50vw;
  aspect-ratio: 16/9;
  background-color: var(--color-off-white);
  position: relative;
  z-index: 0;
  overflow: hidden;
  opacity: 0.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__what-we-do .the-studio__what-we-do__background picture, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper {
    width: 75vw;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do .the-studio__what-we-do__background picture, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper {
    width: 85vw;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__background picture img, .the-studio__what-we-do .the-studio__what-we-do__background picture video, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper img, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper video {
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(1);
}
.the-studio__what-we-do .the-studio__what-we-do__background picture::before, .the-studio__what-we-do .the-studio__what-we-do__background .video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  opacity: 0.8;
  mix-blend-mode: screen;
  z-index: 1;
}
.the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--1 {
  top: 8rem;
  left: 30rem;
  transform: rotateY(180deg);
  opacity: 0.3;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--1 {
    left: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--1 {
    left: 0;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--1 .pixel-grid-pixel {
  background-color: var(--color-off-white);
}
.the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--2 {
  bottom: -17rem;
  right: -4rem;
  transform: rotate(180deg);
  opacity: 0.3;
}
.the-studio__what-we-do .the-studio__what-we-do__background .the-studio__what-we-do__pixel-grid--2 .pixel-grid-pixel {
  background-color: var(--color-off-white);
}
.the-studio__what-we-do .the-studio__what-we-do__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 14rem;
  padding: 10rem 4rem 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__what-we-do .the-studio__what-we-do__content {
    gap: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do .the-studio__what-we-do__content {
    padding-bottom: 8rem;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__eyebrow {
  background: var(--color-black);
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__title {
  width: 100%;
  font-size: 16rem;
  letter-spacing: -0.48rem;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  line-height: 0.9;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__title {
    font-size: 12rem;
    letter-spacing: -0.36rem;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__title {
    font-size: 8rem;
    letter-spacing: -0.24rem;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__title span::after {
  color: var(--color-primary);
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__description {
  width: 25%;
  margin-left: 63%;
  line-height: 1.5;
  transition: color 0.6s ease;
  color: var(--color-off-black);
  font-weight: 500;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__description {
    width: 50%;
    margin-left: 50%;
  }
}
@media screen and (max-width: 601px) {
  .the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__description {
    width: calc(100% - 6.4rem);
    margin-left: 4rem;
  }
}
.the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__description::before, .the-studio__what-we-do .the-studio__what-we-do__content .the-studio__what-we-do__description::after {
  color: var(--color-primary);
}

.what-we-do__hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
  padding-top: 8rem;
  width: 100%;
}
.what-we-do__hero .what-we-do__hero__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__background {
    padding-top: 4rem;
  }
}
.what-we-do__hero .what-we-do__hero__background picture {
  width: 31vw;
  aspect-ratio: 6/5;
  background-color: var(--color-deep-gray);
  position: relative;
  z-index: 0;
  opacity: 0.6;
  filter: grayscale(0.3);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__background picture {
    width: 50vw;
  }
}
.what-we-do__hero .what-we-do__hero__background img, .what-we-do__hero .what-we-do__hero__background video {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.what-we-do__hero .what-we-do__hero__background .video__wrapper {
  width: 18vw;
  aspect-ratio: 9/16;
  background-color: var(--color-primary);
  opacity: 0.6;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.what-we-do__hero .what-we-do__hero__background .video__wrapper video {
  transform: translateX(-20%);
  filter: grayscale(1);
}
.what-we-do__hero .what-we-do__hero__background .video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #94391e;
  opacity: 1;
  mix-blend-mode: overlay;
  z-index: 1;
}
.what-we-do__hero .what-we-do__hero__background .video__wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-off-black);
  opacity: 0.2;
  mix-blend-mode: exclusion;
  z-index: 2;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__background .video__wrapper {
    width: 35vw;
  }
}
.what-we-do__hero .what-we-do__hero__background .what-we-do__hero__background__pixel-grid--1 {
  bottom: -13rem;
  right: -2rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__background .what-we-do__hero__background__pixel-grid--1 {
    bottom: -32rem;
  }
}
.what-we-do__hero .what-we-do__hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-start;
  gap: 7.2rem;
  padding: 2.4rem 0 3.2rem 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content {
    align-items: flex-start;
    padding-left: 0;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content {
    padding-top: 12rem;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__content__top {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2.4rem;
  padding-left: 32%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__content__top {
    padding-left: 0;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__eyebrow {
  background: var(--color-black);
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container {
  margin-bottom: -3rem;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title {
  line-height: 0.9;
  transition: color 0.6s ease;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span::after {
  color: var(--color-off-black);
  margin-left: 3.6rem;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(1), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(6) {
  display: block;
  font-size: 12rem;
  letter-spacing: -0.12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(1), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(6) {
    font-size: 8rem;
    letter-spacing: -0.08rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(1), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(6) {
    font-size: 4.8rem;
    letter-spacing: -0.048rem;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(2) {
  padding-left: 42rem;
  font-size: 12rem;
  letter-spacing: -0.12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(2) {
    font-size: 8rem;
    letter-spacing: -0.08rem;
    padding-left: 12rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(2) {
    font-size: 4.8rem;
    letter-spacing: -0.048rem;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(3) {
  padding-left: 2.4rem;
  font-size: 7.2rem;
  letter-spacing: -0.072rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(3) {
    font-size: 6.4rem;
    letter-spacing: -0.064rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(3) {
    font-size: 3.2rem;
    letter-spacing: -0.032rem;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(4), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(5) {
  font-size: 7.2rem;
  letter-spacing: -0.072rem;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(4), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(5) {
    font-size: 6.4rem;
    letter-spacing: -0.064rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(4), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(5) {
    font-size: 3.2rem;
    letter-spacing: -0.032rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(4), .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(5) {
    margin: 0;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(5) {
    margin-top: 0;
    text-align: center;
    width: 100%;
  }
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__title__container .what-we-do__hero__title span:nth-of-type(6) {
  text-align: right;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__highlight {
  width: 42%;
  font-size: 4rem;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  letter-spacing: -0.12rem;
  line-height: 1.1;
  margin-top: 16rem;
  margin-left: 16rem;
  transition: color 0.6s ease, opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__highlight::before, .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__highlight::after {
  color: var(--color-off-black);
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__text {
  width: 30.5%;
  margin-left: 25%;
  line-height: 1.5;
  transition: color 0.6s ease, opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
.what-we-do__hero .what-we-do__hero__content .what-we-do__hero__text::before, .what-we-do__hero .what-we-do__hero__content .what-we-do__hero__text::after {
  color: var(--color-primary);
}

.what-we-do__intro {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8rem;
  padding: 16rem 8rem;
  overflow-x: hidden;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro {
    padding: 16rem 4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__intro {
    padding: 16rem 2.4rem;
  }
}
.what-we-do__intro .what-we-do__intro__header {
  width: 41%;
  padding: 0 0 0 12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__header {
    padding-left: 0;
    width: 100%;
  }
}
.what-we-do__intro .what-we-do__intro__header .what-we-do__intro__title {
  font-size: 4rem;
  letter-spacing: -0.12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__header .what-we-do__intro__title {
    font-size: 3.2rem;
    letter-spacing: -0.096rem;
  }
}
.what-we-do__intro .what-we-do__intro__header .what-we-do__intro__title span {
  display: block;
  width: 100%;
}
.what-we-do__intro .what-we-do__intro__header .what-we-do__intro__title span::after {
  color: var(--color-off-black);
}
.what-we-do__intro .what-we-do__intro__header .what-we-do__intro__text {
  margin-top: 6.4rem;
  margin-left: 15.4rem;
  width: calc(100% - 15.4rem);
  line-height: 1.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__header .what-we-do__intro__text {
    margin-left: 2.4rem;
    width: calc(100% - 2.4rem);
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__intro .what-we-do__intro__header .what-we-do__intro__text {
    margin-top: 4rem;
  }
}
.what-we-do__intro .what-we-do__intro__content {
  width: calc(59% - 8rem);
  padding-top: 8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content {
    width: 100%;
    padding-top: 4rem;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 2.4rem;
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 601px) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row {
    flex-direction: column;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row .what-we-do__intro__card {
  width: calc(57% - 1.2rem);
  background: var(--color-off-black);
  border-radius: 1.6rem;
  padding: 6.4rem 6.4rem 4rem 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row .what-we-do__intro__card {
    width: 100%;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row .what-we-do__intro__card {
    padding: 4rem 4rem 4rem 2.4rem;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row .what-we-do__intro__card .what-we-do__intro__card__title {
  margin-bottom: 2.4rem;
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row .what-we-do__intro__card .what-we-do__intro__card__description {
  line-height: 1.3;
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(1) .what-we-do__intro__card:nth-of-type(1) {
  width: 35%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(1) .what-we-do__intro__card:nth-of-type(1) {
    width: 100%;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(1) .what-we-do__intro__card:nth-of-type(2) .what-we-do__intro__card__title {
  width: 75%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(1) .what-we-do__intro__card:nth-of-type(2) .what-we-do__intro__card__title {
    width: 100%;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(2) {
  align-items: flex-start;
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(2) .what-we-do__intro__card:nth-of-type(1) {
  width: 45%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(2) .what-we-do__intro__card:nth-of-type(1) {
    width: 100%;
  }
}
.what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(2) .what-we-do__intro__card:nth-of-type(2) {
  width: 40%;
  padding-bottom: 12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__intro .what-we-do__intro__content .what-we-do__intro__cards .what-we-do__intro__cards__row:nth-of-type(2) .what-we-do__intro__card:nth-of-type(2) {
    width: 100%;
    padding-bottom: 4rem;
  }
}

.what-we-do__services {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
}
.what-we-do__services .what-we-do__services__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.what-we-do__services .what-we-do__services__background img {
  width: 50vw;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 0;
}
.what-we-do__services .what-we-do__services__background .what-we-do__services__pixel-grid--1 {
  top: 55rem;
  left: 23rem;
  transform: rotate(180deg);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__background .what-we-do__services__pixel-grid--1 {
    right: 0;
    left: auto;
  }
}
.what-we-do__services .what-we-do__services__background .what-we-do__services__pixel-grid--1 .pixel-grid-pixel {
  background-color: var(--color-accent);
}
.what-we-do__services .what-we-do__services__background .what-we-do__services__pixel-grid--2 {
  top: 15rem;
  right: 58rem;
  transform: rotate(90deg);
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.what-we-do__services .what-we-do__services__background .what-we-do__services__pixel-grid--2 .pixel-grid-pixel {
  background-color: var(--color-accent);
}
.what-we-do__services .services__image-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  padding: 8rem 35vw 8rem 18vw;
}
@media screen and (min-aspect-ratio: 21/9) {
  .what-we-do__services .services__image-window {
    padding: 25vh 44vw 25vh 23vw;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .services__image-window {
    padding: 22vh 40vw 22vh 0rem;
    opacity: 0.7;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .services__image-window {
    padding: 28vh 4rem 4rem 0rem;
    opacity: 0.5;
  }
}
.what-we-do__services .services__image-window .services__images {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .services__image-window .services__images {
    aspect-ratio: 4/3;
    width: 80%;
  }
}
.what-we-do__services .services__image-window .services__images .services__image {
  position: absolute;
  aspect-ratio: 4/3;
  transition: all 0.6s ease;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .services__image-window .services__images .services__image {
    aspect-ratio: 4/3;
  }
}
.what-we-do__services .services__image-window .services__images .services__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.what-we-do__services .what-we-do__services__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 14rem;
  padding: 4rem 0;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content {
    gap: 6.4rem;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__header h3 {
    width: 80%;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__eyebrow {
  background: var(--color-black);
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__title {
  width: 100%;
  text-align: center;
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 8rem;
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group {
    gap: 4rem;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__category {
  width: 15%;
  position: sticky;
  top: 18dvh;
  left: 0;
  color: var(--color-black);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__category {
    width: 30%;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__category {
    width: 53%;
    font-size: 2rem;
    top: 15dvh;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin-bottom: 16rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service {
    gap: 2.4rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 6.4rem;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__image {
  width: 40%;
  margin-left: 24%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__image {
    width: 50%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__image {
    width: 80%;
    margin: 0 0 0 14%;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text {
  width: 31%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 2.4rem;
  min-height: 65dvh;
  padding-right: 8rem;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text {
    min-height: 50dvh;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text {
    width: 55%;
    padding-right: 4rem;
    min-height: 50dvh;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text {
    width: 85%;
    min-height: 0;
    margin-left: 3.2rem;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__title {
  margin-top: 4rem;
  width: 90%;
  line-height: 1;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__title {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__title {
    margin-top: 1.6rem;
  }
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__description {
  color: var(--color-black);
  line-height: 1.3;
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__included {
  color: var(--color-black);
  line-height: 1.3;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__included span {
  background: var(--color-off-white);
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__included .what-we-do__service__bullets {
  width: 100%;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.what-we-do__services .what-we-do__services__content .what-we-do__services__group .what-we-do__service__text .what-we-do__service__included .what-we-do__service__bullets li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-off-white);
  margin-right: 0.8rem;
  margin-bottom: 0.15rem;
  display: inline-block;
}

.what-we-do__turn-attention {
  width: 100%;
  min-height: 120vh;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention {
    min-height: 80dvh;
  }
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .what-we-do__turn-attention {
    min-height: 0;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
}
.what-we-do__turn-attention .what-we-do__turn-attention__background picture {
  width: 60%;
  height: 30%;
}
.what-we-do__turn-attention .what-we-do__turn-attention__background picture img {
  height: 100%;
  object-fit: contain;
}
.what-we-do__turn-attention .what-we-do__turn-attention__content {
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 28rem;
  padding-bottom: 12rem;
  gap: 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content {
    padding-top: 0;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  padding-right: 4rem;
  gap: 14rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__text {
    flex-direction: column;
    gap: 6.4rem;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title {
  width: 70%;
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  line-height: 0.9;
  font-size: 16rem;
  letter-spacing: -0.48rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title {
    width: 100%;
    font-size: 8rem;
    letter-spacing: -0.24rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title {
    font-size: 5.6rem;
    letter-spacing: -0.168rem;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span {
  display: block;
  width: 100%;
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span:nth-of-type(1) {
  color: var(--color-off-black);
  transform: translateX(-2rem);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span:nth-of-type(1) {
    transform: translateX(-1rem);
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span:nth-of-type(1) {
    transform: translateX(0);
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span:nth-of-type(2) {
  text-align: right;
  transform: translateX(2rem);
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__title span::before {
  color: var(--color-primary);
}
.what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__description {
  width: calc(30% - 14rem);
  color: var(--color-off-black);
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__description {
    width: 50%;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__turn-attention .what-we-do__turn-attention__content .what-we-do__turn-attention__description {
    width: 80%;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__products {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.4rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 4rem 2.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__products {
    padding: 0 2.4rem 2.4rem;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__products::-webkit-scrollbar-track {
  background-color: var(--color-off-white);
  margin-left: 4rem;
  margin-right: 4rem;
}
.what-we-do__turn-attention .what-we-do__turn-attention__products::-webkit-scrollbar {
  height: 0.5rem;
  background-color: var(--color-light-gray);
}
.what-we-do__turn-attention .what-we-do__turn-attention__products::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 0.25rem;
}
.what-we-do__turn-attention .what-we-do__turn-attention__products .what-we-do__turn-attention__product {
  width: 17vw;
  flex-shrink: 0;
  color: var(--color-off-black);
  background: var(--color-off-white);
  border-radius: 1.6rem;
  padding: 4rem 2.4rem;
  box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .what-we-do__turn-attention__products .what-we-do__turn-attention__product {
    width: 40vw;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__turn-attention .what-we-do__turn-attention__products .what-we-do__turn-attention__product {
    width: 70vw;
  }
}
.what-we-do__turn-attention .what-we-do__turn-attention__products .what-we-do__turn-attention__product .what-we-do__turn-attention__product__title {
  margin-bottom: 2.4rem;
}
.what-we-do__turn-attention .what-we-do__turn-attention__products .what-we-do__turn-attention__product .what-we-do__turn-attention__product__description {
  font-size: 1.4rem;
}
.what-we-do__turn-attention .what-we-do__text-slider__eyebrow {
  background: var(--color-black);
  color: var(--color-off-white);
  display: inline-block;
  margin-left: 4rem;
}
.what-we-do__turn-attention .block__numbers {
  margin-top: 12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .block__numbers {
    margin-top: 4rem;
  }
}
.what-we-do__turn-attention .block__numbers .block__numbers__number {
  border-top-color: var(--color-deep-gray);
  color: var(--color-off-black);
  padding-bottom: 2.4rem;
}
.what-we-do__turn-attention .block__numbers .block__numbers__number p span {
  color: var(--color-primary);
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__turn-attention .block__numbers .block__numbers__number p span {
    margin-bottom: 2.4rem;
  }
}
.what-we-do__turn-attention button {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}
@media screen and (max-width: 601px) {
  .what-we-do__turn-attention button {
    width: calc(100% - 8rem);
  }
}

.what-we-do__why-choose {
  width: 100%;
  height: 120vh;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6.4rem;
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .what-we-do__why-choose {
    height: auto;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose {
    gap: 2.4rem;
    height: auto;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose {
    flex-direction: column;
    height: auto;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
  padding-bottom: 22rem;
}
.what-we-do__why-choose .what-we-do__why-choose__background picture, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper {
  width: 25%;
  height: auto;
  aspect-ratio: 10/12;
  background-color: var(--color-black);
  position: relative;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose .what-we-do__why-choose__background picture, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper {
    width: 56vw;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__background picture img, .what-we-do__why-choose .what-we-do__why-choose__background picture video, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper img, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper video {
  height: 110%;
  object-fit: cover;
  opacity: 0.8;
  filter: invert(1);
  transform: translateX(-36rem);
}
.what-we-do__why-choose .what-we-do__why-choose__background picture::before, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #703523;
  opacity: 0.4;
  mix-blend-mode: lighten;
  z-index: 1;
}
.what-we-do__why-choose .what-we-do__why-choose__background picture::after, .what-we-do__why-choose .what-we-do__why-choose__background .video__wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-off-black);
  opacity: 0.2;
  mix-blend-mode: exclusion;
  z-index: 2;
}
.what-we-do__why-choose .what-we-do__why-choose__background .what-we-do__why-choose__background__pixel-grid--1 {
  bottom: 2rem;
  right: -2rem;
  opacity: 0.5;
}
.what-we-do__why-choose .what-we-do__why-choose__background .what-we-do__why-choose__background__pixel-grid--1 .pixel-grid-pixel {
  background-color: var(--color-off-black);
}
.what-we-do__why-choose .what-we-do__why-choose__content {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose .what-we-do__why-choose__content {
    width: 100%;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__header {
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding-top: 18rem;
  position: relative;
  gap: 4rem;
}
.what-we-do__why-choose .what-we-do__why-choose__header h3 {
  text-transform: lowercase;
  color: var(--color-primary);
  transform: translateX(-1rem);
  line-height: 0.9;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__header h3 {
    transform: translateX(0);
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose .what-we-do__why-choose__header h3 {
    width: 80%;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__header h3 span {
  display: block;
  width: 100%;
}
.what-we-do__why-choose .what-we-do__why-choose__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 6rem 0 0 19rem;
  gap: 1.6rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__text {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose .what-we-do__why-choose__text {
    padding-right: 2.4rem;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__text .what-we-do__why-choose__text__highlight {
  font-family: "Helvetica Neue Bold", "Chivo Mono", monospace, sans-serif;
  font-size: 3.2rem;
  letter-spacing: -0.096rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__text .what-we-do__why-choose__text__highlight {
    font-size: 2.4rem;
    letter-spacing: -0.072rem;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__text .what-we-do__why-choose__text__description {
  padding-left: 16rem;
  line-height: 1.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__text .what-we-do__why-choose__text__description {
    padding-left: 0;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__text span {
  display: block;
  width: 100%;
  margin-bottom: 6.4rem;
}
.what-we-do__why-choose .what-we-do__why-choose__text span::before, .what-we-do__why-choose .what-we-do__why-choose__text span::after {
  color: var(--color-black);
}
.what-we-do__why-choose .what-we-do__why-choose__cards {
  width: calc(50% - 6.4rem);
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.4rem;
  padding: 22rem 14rem 2.4rem 0;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__cards {
    width: calc(50% - 2.4rem);
    padding: 22rem 2.4rem 4rem 0;
  }
}
@media screen and (max-width: 601px) {
  .what-we-do__why-choose .what-we-do__why-choose__cards {
    width: 100%;
    padding: 4rem 2.4rem;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__card {
  width: 100%;
  background: var(--color-off-black);
  padding: 5.6rem 6.4rem 4rem 4rem;
  border-radius: 1.6rem;
  transition: all 0.3s ease-out;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 1.6rem;
  position: relative;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__card {
    padding: 6.4rem 2.4rem 4rem 2.4rem;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__card::after {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.8rem;
  background: var(--color-primary);
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  background-image: url("../img/icons/icon_arrow_diagonal.svg");
  background-size: 45% auto;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__card::after {
    width: 4rem;
    height: 4rem;
    top: 1.6rem;
    right: 1.6rem;
  }
}
.what-we-do__why-choose .what-we-do__why-choose__card .what-we-do__why-choose__card__title {
  font-size: 2rem;
  letter-spacing: -0.06rem;
}
.what-we-do__why-choose .what-we-do__why-choose__card .what-we-do__why-choose__card__description {
  max-width: 70%;
  line-height: 1.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .what-we-do__why-choose .what-we-do__why-choose__card .what-we-do__why-choose__card__description {
    max-width: 100%;
  }
}

.use-cases__hero {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 2.5rem;
  padding-top: 0;
}
.use-cases__hero .use-cases__hero__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  padding: 0;
}
.use-cases__hero .use-cases__hero__background picture, .use-cases__hero .use-cases__hero__background .video__wrapper {
  width: 100%;
  aspect-ratio: 14/5;
  background-color: var(--color-deep-gray);
  position: relative;
  z-index: 0;
  overflow: hidden;
  opacity: 0.5;
}
@media screen and (min-aspect-ratio: 21/9) {
  .use-cases__hero .use-cases__hero__background picture, .use-cases__hero .use-cases__hero__background .video__wrapper {
    aspect-ratio: 12/3;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__hero .use-cases__hero__background picture, .use-cases__hero .use-cases__hero__background .video__wrapper {
    aspect-ratio: 16/10;
  }
}
@media screen and (min-width: 821px) and (orientation: portrait) {
  .use-cases__hero .use-cases__hero__background picture, .use-cases__hero .use-cases__hero__background .video__wrapper {
    aspect-ratio: 16/4;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__background picture, .use-cases__hero .use-cases__hero__background .video__wrapper {
    aspect-ratio: 16/12;
  }
}
.use-cases__hero .use-cases__hero__background picture img, .use-cases__hero .use-cases__hero__background picture video, .use-cases__hero .use-cases__hero__background .video__wrapper img, .use-cases__hero .use-cases__hero__background .video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: grayscale(1);
}
.use-cases__hero .use-cases__hero__background picture::before, .use-cases__hero .use-cases__hero__background .video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #703523;
  opacity: 0.8;
  mix-blend-mode: lighten;
  z-index: 1;
}
.use-cases__hero .use-cases__hero__background picture::after, .use-cases__hero .use-cases__hero__background .video__wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-off-black);
  opacity: 0.2;
  mix-blend-mode: exclusion;
  z-index: 2;
}
.use-cases__hero .use-cases__hero__background .use-cases__hero__background__pixel-grid--1 {
  bottom: -17rem;
  right: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__background .use-cases__hero__background__pixel-grid--1 {
    width: 12rem;
    opacity: 0.3;
    bottom: -38rem;
  }
}
.use-cases__hero .use-cases__hero__background .use-cases__hero__background__pixel-grid--1 .pixel-grid-pixel {
  background-color: var(--color-off-white);
}
.use-cases__hero .use-cases__hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 13.2rem;
  padding: 16rem 8rem 3.2rem 0rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__hero .use-cases__hero__content {
    gap: 8rem;
  }
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__eyebrow {
  background: var(--color-black);
  position: absolute;
  left: 83rem;
  top: 53rem;
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__title__container {
  margin-bottom: -3rem;
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title {
  line-height: 0.9;
  transition: color 0.6s ease;
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span {
  display: block;
  font-size: 12rem;
  letter-spacing: -0.12rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span {
    font-size: 8rem;
    letter-spacing: -0.08rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span {
    font-size: 4.8rem;
    letter-spacing: -0.048rem;
  }
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span:nth-of-type(2) {
  padding-left: 19rem;
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span:nth-of-type(2) {
    padding-left: 8rem;
  }
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span:nth-of-type(3) {
  padding-left: 0;
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__title__container .use-cases__hero__title span:nth-of-type(3) {
    padding-left: 4rem;
  }
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__text {
  width: 23%;
  margin-left: 11%;
  line-height: 1.5;
  transition: color 0.6s ease, opacity 0.4s 0.3s ease-out, transform 0.6s 0.3s ease-out;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__text {
    width: 50%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__hero .use-cases__hero__content .use-cases__hero__text {
    width: 100%;
  }
}
.use-cases__hero .use-cases__hero__content .use-cases__hero__text::before, .use-cases__hero .use-cases__hero__content .use-cases__hero__text::after {
  color: var(--color-primary);
}

.use-cases__projects {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 12rem;
  padding: 8rem 0;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects {
    gap: 6.4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects {
    padding-top: 8rem;
  }
}
.use-cases__projects .use-cases__projects__header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 4rem;
}
.use-cases__projects .use-cases__projects__title {
  width: 25%;
  text-align: center;
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__title {
    width: 80%;
  }
}
.use-cases__projects .use-cases__projects__title::before {
  color: var(--color-off-black);
  margin-right: 1.6rem;
}
.use-cases__projects .use-cases__projects__title::after {
  color: var(--color-off-black);
  margin-left: 1.6rem;
}
.use-cases__projects .use-cases__projects__list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
.use-cases__projects .use-cases__projects__list .use-cases__project {
  border-top: 1px solid var(--color-deep-gray);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 821px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project {
    flex-direction: column;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project:last-of-type {
  border-bottom: 1px solid var(--color-deep-gray);
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image {
  width: 47%;
  padding: 2.4rem 0 2.4rem 2.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 821px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image {
    width: 100%;
    padding: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image {
    padding-top: 4rem;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image a {
  width: 100%;
  height: 100%;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image picture {
  width: 100%;
  aspect-ratio: 10/8;
  object-fit: cover;
  background-color: var(--color-deep-gray);
}
@media screen and (min-aspect-ratio: 21/9) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image picture {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image picture {
    aspect-ratio: 16/9;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image picture img {
  height: 100%;
  object-fit: cover;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image .use-cases__project__image__hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 2.4rem 0 2.4rem 2.4rem;
  filter: brightness(0.7) contrast(1.2);
  opacity: 0;
  transition: all 1s ease;
}
@media screen and (max-width: 821px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image .use-cases__project__image__hover {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image .use-cases__project__image__hover {
    padding-top: 4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__image:hover .use-cases__project__image__hover {
    opacity: 1;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content {
  width: 53%;
  padding: 16rem 4rem 4rem 6.4rem;
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
@media screen and (max-width: 821px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content {
    width: 100%;
    padding: 4rem 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content {
    padding-bottom: 8rem;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6.4rem;
}
@media screen and (max-width: 821px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top {
    gap: 4rem;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top .use-cases__project__tag {
  display: inline-block;
  background: var(--color-primary);
  font-size: 1.4rem;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top .use-cases__project__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  gap: 2.4rem;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top .use-cases__project__text .use-cases__project__description {
  width: 60%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top .use-cases__project__text .use-cases__project__description {
    width: 85%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top .use-cases__project__text .use-cases__project__description {
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__top button {
    width: 100%;
  }
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group {
  text-align: right;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  margin-top: 2.4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group {
    align-items: flex-start;
    text-align: left;
  }
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group:nth-of-type(1) {
    width: calc(25% - 2rem);
  }
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group:nth-of-type(2) {
    width: calc(75% - 2rem);
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group {
    width: 100% !important;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__title {
  font-size: 1.6rem;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__title::before {
  color: var(--color-off-black);
  margin-right: 0.8rem;
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 0.8rem;
  width: 60%;
  margin-top: 0.8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__tags {
    justify-content: flex-start;
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__tags {
    margin-top: 1.6rem;
  }
}
.use-cases__projects .use-cases__projects__list .use-cases__project .use-cases__project__content .use-cases__project__bottom .use-cases__project__detail__group .use-cases__project__detail__tags .use-cases__project__detail__tag {
  display: inline-block;
  background: var(--color-deep-gray);
  font-size: 1.4rem;
  white-space: nowrap;
}

.use-cases_collab {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8rem;
  padding: 16rem 0 8rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab {
    padding: 16rem 0 6.4rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases_collab {
    padding: 20rem 0 4rem;
    gap: 6.4rem;
  }
}
.use-cases_collab .use-cases_collab__header {
  width: 100%;
  padding: 0 12rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-start;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__header {
    padding: 0 4rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-start;
    gap: 4rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases_collab .use-cases_collab__header {
    padding: 0 2.4rem;
  }
}
.use-cases_collab .use-cases_collab__header .use-cases_collab__title {
  width: 50%;
  font-size: 4rem;
  letter-spacing: -0.12rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__header .use-cases_collab__title {
    font-size: 3.2rem;
    letter-spacing: -0.096rem;
    width: 100%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases_collab .use-cases_collab__header .use-cases_collab__title {
    font-size: 2.8rem;
    letter-spacing: -0.084rem;
  }
}
.use-cases_collab .use-cases_collab__header .use-cases_collab__title span {
  display: block;
  width: 100%;
}
.use-cases_collab .use-cases_collab__header .use-cases_collab__title span::after {
  color: var(--color-off-black);
}
.use-cases_collab .use-cases_collab__header .use-cases_collab__text {
  width: 33%;
  line-height: 1.5;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__header .use-cases_collab__text {
    margin-left: 2.4rem;
    width: 50%;
  }
}
@media screen and (max-width: 601px) {
  .use-cases_collab .use-cases_collab__header .use-cases_collab__text {
    margin-top: 2.4rem;
    width: 85%;
  }
}
.use-cases_collab .use-cases_collab__content {
  width: 100%;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__content {
    width: 100%;
  }
}
.use-cases_collab .use-cases_collab__content .use-cases_collab__logo-slider {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__content .use-cases_collab__logo-slider .slider__wrapper {
    height: 12rem;
  }
}
.use-cases_collab .use-cases_collab__content .use-cases_collab__logo-slider li {
  width: 22rem;
  padding: 0 4rem;
}
@media screen and (max-width: 821px), screen and (orientation: portrait) {
  .use-cases_collab .use-cases_collab__content .use-cases_collab__logo-slider li {
    width: 17rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 601px) {
  .use-cases_collab .use-cases_collab__content .use-cases_collab__logo-slider li {
    width: 13rem;
    padding: 0 1.6rem;
  }
}

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