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 {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

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;
}

:root {
  --smooth: cubic-bezier(.15, .9, .34, .95);
  --custom: cubic-bezier(.76, 0, .24, 1);
}

html {
  font-size: 10px;
}

body {
  color: #1d1d1b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f7f7;
  font-family: noka, Arial, serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

a, a:hover {
  text-decoration: none;
}

.full {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

.split-reveal .word, .split-reveal .char {
  will-change: transform, opacity;
  display: inline-block;
}

.parallax {
  will-change: transform;
}

.underline-link {
  position: relative;
}

.underline-link:after {
  content: "";
  transform-origin: 100%;
  will-change: transform;
  width: 100%;
  height: 1px;
  transition: transform .4s var(--smooth);
  background-color: #000;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scaleX(0)translateZ(0);
}

.underline-link:hover:after {
  transform-origin: 0;
  transform: scaleX(1)translateZ(0);
}

.scroll-nudge {
  z-index: 9999;
  color: #ffffffe6;
  backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 0;
  background: #000;
  border-radius: 999px;
  place-items: center;
  width: 48px;
  height: 48px;
  transition: opacity .25s;
  display: grid;
  position: fixed;
  bottom: clamp(16px, 3.5vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 16px #00000040;
}

@media screen and (width <= 991px) {
  .scroll-nudge {
    display: none;
  }
}

.scroll-nudge[hidden] {
  opacity: 0;
  display: grid;
}

.scroll-nudge.is-visible {
  opacity: 1;
}

.scroll-nudge .scroll-nudge__chevron {
  width: 52%;
  height: 52%;
  animation: 1.2s ease-in-out infinite sn-bob;
}

@keyframes sn-bob {
  0% {
    opacity: .8;
    transform: translateY(-2px);
  }

  50% {
    opacity: 1;
    transform: translateY(3px);
  }

  100% {
    opacity: .8;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-nudge .scroll-nudge__chevron {
    animation: none;
  }
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  background-color: #fff;
}

body {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

::selection {
  color: #fff;
  text-shadow: none;
  background: #000;
}

.container {
  padding: 0 4vw;
}

@media screen and (width <= 991px) {
  .container {
    padding: 0 1.6rem;
  }
}

.header {
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: all 1s var(--smooth);
  padding-top: 2rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
}

.header.show {
  opacity: 1;
  visibility: visible;
}

.header__logo {
  z-index: 1;
  width: 20rem;
  display: block;
  position: relative;
}

@media screen and (width <= 991px) {
  .header__logo {
    width: 16rem;
  }
}

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

@media screen and (width <= 991px) {
  .header .container {
    align-items: flex-start;
  }
}

.header__nav {
  transition: all .6s var(--smooth);
  transform: translate3d(0, 0, 0);
}

.header__nav__menu {
  gap: 32px;
  display: flex;
}

.header__nav__menu__item__link {
  color: #000;
  text-transform: uppercase;
  transition: all .4s var(--smooth);
  padding: 0 .6rem .1rem;
  position: relative;
}

.header__nav__menu__item__link:after {
  content: "";
  transform-origin: 100%;
  will-change: transform;
  width: 100%;
  height: 1px;
  transition: transform .4s var(--smooth);
  background-color: #000;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0)translateZ(0);
}

.header__nav__menu__item__link:hover:after {
  transform-origin: 0;
  transform: scaleX(1)translateZ(0);
}

.header__nav__menu__item__link.active {
  color: #fff;
  background-color: #000;
}

.header__nav__menu__item__link.active:after {
  display: none;
}

.header__nav__menu__item__link.is-active {
  text-decoration: underline;
}

.header__nav__menu__item__link.is-active:after {
  display: none;
}

@media screen and (width <= 991px) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    transition: all .6s var(--smooth);
    background-color: #fff;
    padding: 20vh 0 0 10vw;
    position: fixed;
    top: 0;
    left: 0;
  }

  .header__nav .header__nav__menu {
    gap: initial;
    display: block;
  }

  .header__nav .header__nav__menu__item {
    margin-bottom: 1rem;
  }

  .header__nav .header__nav__menu__item__link {
    font-size: 3rem;
  }
}

.header .logo-title {
  transition: all .6s var(--smooth);
}

@media screen and (width >= 992px) {
  .header.scrolled .header__nav {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -200%, 0);
  }
}

.header.scrolled .logo-title {
  opacity: 0;
  visibility: hidden;
}

@media screen and (width <= 991px) {
  .header.menu-open .header__nav {
    opacity: 1;
    visibility: visible;
  }
}

.header .burger {
  display: none;
}

@media screen and (width <= 991px) {
  .header .burger {
    cursor: pointer;
    z-index: 100;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
    display: flex;
    position: relative;
  }

  .header .burger span {
    transform-origin: center;
    background-color: #000;
    border-radius: 1px;
    width: 100%;
    height: 2px;
    display: block;
  }
}

.home__intro {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.home__intro video {
  position: absolute;
  top: 0;
  left: 0;
}

.home__intro video.mobile {
  display: none;
}

@media screen and (width <= 991px) {
  .home__intro video.mobile {
    display: block;
  }

  .home__intro video.desktop {
    display: none;
  }
}

.home__intro .intro__video {
  opacity: 0;
}

.home__intro .intro__logo {
  opacity: 0;
  width: 80%;
}

.home__intro .intro__logo path, .home__intro .intro__logo polygon {
  fill: #0062ff;
}

.home__intro img {
  width: 70%;
  height: auto;
  display: block;
}

.home__about__section {
  align-items: center;
  height: 100vh;
  display: flex;
}

.home__about__section .wrapper {
  text-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20vw;
  display: flex;
}

@media screen and (width <= 991px) {
  .home__about__section {
    height: auto;
    padding: 0;
  }

  .home__about__section .wrapper {
    height: auto;
    padding: 10vh 4vw;
  }
}

.home__about__section:first-child .wrapper {
  color: #fff;
  background-color: #ff5352;
}

.home__about__section:first-child .wrapper p {
  font-size: 3rem;
  font-weight: 500;
}

.home__about__section:first-child .wrapper p strong {
  text-transform: uppercase;
  font-weight: 600;
}

.home__about__section:first-child .wrapper p:first-child {
  margin-bottom: 4rem;
}

.home__about__section:last-child .wrapper {
  background-color: #00eddf;
}

.home__about__section:last-child .wrapper p {
  font-size: 3rem;
  font-weight: 500;
}

.home__about__section:last-child .wrapper p strong {
  text-transform: uppercase;
  font-weight: 600;
}

.home__about__section:last-child .wrapper p:first-child {
  margin-bottom: 4rem;
}

.home .wrap-sticky {
  position: relative;
  overflow: hidden;
}

.home .wrap-sticky .sticky-text {
  text-transform: uppercase;
  text-align: center;
  margin: auto;
  font-size: 3vw;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (width <= 991px) {
  .home .wrap-sticky .sticky-text {
    font-size: 2.8rem;
  }
}

.home .wrap-sticky .sticky-text .linesticky {
  display: inline-block;
  position: relative;
}

.home .wrap-sticky .sticky-text .txt {
  z-index: 1;
  position: relative;
}

.home .wrap-sticky .sticky-text .u {
  transform-origin: 0;
  background-color: #1b1b1b;
  width: 100%;
  height: 2px;
  margin: auto;
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

@media screen and (width <= 991px) {
  .home .wrap-sticky .sticky-text .u {
    bottom: 4px;
  }
}

.home .sticky-logo {
  height: 300vh;
  position: relative;
}

.home .sticky-logo__wrapper {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.home #stickyLogo {
  transform-origin: center;
  opacity: 0;
  width: 60vw;
  height: auto;
}

.home .final-logo {
  opacity: 0;
  pointer-events: none;
  width: 50vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home .final-logo .step-1, .home .final-logo #circularText {
  opacity: 0;
}

@media screen and (width <= 991px) {
  .home .final-logo {
    width: 120vw;
  }
}

.home__services {
  background-color: #00eddf;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.home__services h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  font-size: 7vw;
  font-weight: 600;
  line-height: 1;
}

@media screen and (width <= 991px) {
  .home__services h2 {
    width: 100%;
    font-size: 4rem;
  }
}

.home__services .marquee-columns {
  opacity: 0;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 4vw;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.home__services .marquee {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.home__services .marquee .inner {
  flex-direction: column;
  animation: 20s linear infinite scroll-up;
  display: flex;
}

.home__services .marquee.right .inner {
  text-align: right;
  animation: 20s linear infinite scroll-down;
}

.home__services .marquee .inner span {
  text-transform: uppercase;
  color: #1d1d1b;
  white-space: nowrap;
  padding: 6px 0;
  font-size: 2.4vw;
  display: block;
}

@media screen and (width <= 991px) {
  .home__services .marquee .inner span {
    padding: 2rem 0;
    font-size: 1.6rem;
  }
}

.home__video {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.home__video video {
  width: 100%;
}

@media screen and (width <= 991px) {
  .home__video {
    height: auto;
  }
}

.home .paragraph-approach {
  text-transform: uppercase;
  text-align: center;
  padding: 0 15% 10vh;
  font-size: 2rem;
}

@media screen and (width <= 991px) {
  .home .paragraph-approach {
    padding: 0 4vw 10vh;
  }
}

.home .paragraph-approach p {
  margin-bottom: 3.2rem;
}

.home .sticky-3lines {
  height: 100vh;
  position: relative;
}

.home .sticky-3lines__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 5vw;
  line-height: 1.2;
  display: flex;
  position: sticky;
  top: 0;
}

@media screen and (width <= 991px) {
  .home .sticky-3lines__wrapper {
    font-size: 5rem;
  }
}

.home .line {
  font-weight: 300;
  transition: font-weight .3s;
}

.home .line.bold {
  font-weight: 600;
}

.home__agency {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.home__agency__logo {
  position: absolute;
}

.home__agency__image {
  position: relative;
}

.home__agency[data-id="1"] .home__agency__logo {
  width: 100%;
  height: auto;
  top: 0;
  left: -35%;
}

.home__agency[data-id="1"] .home__agency__logo path {
  fill: #f5f7f7;
}

@media screen and (width <= 991px) {
  .home__agency[data-id="1"] .home__agency__logo {
    width: 200%;
    top: 40%;
    left: -60%;
  }
}

.home__agency[data-id="2"] .home__agency__logo {
  width: 100%;
  height: auto;
  top: 0;
  left: -35%;
}

.home__agency[data-id="2"] .home__agency__logo path {
  fill: #0062ff;
}

@media screen and (width <= 991px) {
  .home__agency[data-id="2"] .home__agency__logo {
    width: 200%;
    top: 40%;
    left: -60%;
  }
}

.home__agency[data-id="3"] .home__agency__logo {
  width: 100%;
  height: auto;
  top: 0;
  right: -35%;
}

.home__agency[data-id="3"] .home__agency__logo path {
  fill: #ff5352;
}

@media screen and (width <= 991px) {
  .home__agency[data-id="3"] .home__agency__logo {
    width: 200%;
    top: 60%;
    right: -80%;
  }
}

.home__agency__content {
  color: #fff;
  text-align: center;
  z-index: 2;
  background-color: #1d1d1b;
  min-width: 70rem;
  padding: 4rem 5rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home__agency__content h2 {
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 6rem;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.home__agency__content h2:after {
  content: "";
  transform-origin: 100%;
  will-change: transform;
  width: 100%;
  height: 3px;
  transition: transform .4s var(--smooth);
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: scaleX(0)translateZ(0);
}

.home__agency__content p {
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
}

.home__agency__content__link {
  cursor: none;
  display: block;
  position: absolute;
  inset: 0;
}

.home__agency__content:hover h2:after {
  transform-origin: 0;
  transform: scaleX(1)translateZ(0);
}

@media screen and (width <= 991px) {
  .home__agency__content {
    width: calc(100% - 8vw);
    min-width: 0;
    padding: 3rem 2rem;
  }

  .home__agency__content h2 {
    font-size: 3.4rem;
  }

  .home__agency__content p {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

.home__contact {
  padding-top: 25vh;
}

.home__contact .container > p {
  text-align: center;
  padding: 0 20vw;
}

.home__contact .container > p a {
  color: #1b1b1b;
  letter-spacing: .1em;
  margin-bottom: 10vh;
  font-weight: 600;
  display: inline-block;
}

@media screen and (width <= 991px) {
  .home__contact .container > p {
    padding: 0;
  }
}

.home__contact p {
  text-transform: uppercase;
  font-size: 2rem;
}

.home__contact .agencies {
  margin-top: 20vh;
  padding: 20vh 0 10vh;
  display: flex;
  position: relative;
}

@media screen and (width <= 991px) {
  .home__contact .agencies {
    padding-top: 10vh;
    display: block;
  }
}

.home__contact .agencies:before {
  content: "";
  background-color: #1b1b1b;
  width: calc(100% + 8vw);
  height: 5px;
  display: block;
  position: absolute;
  top: calc(20vh + 6.6vw);
  left: -4vw;
}

@media screen and (width <= 991px) {
  .home__contact .agencies:before {
    display: none;
  }
}

.home__contact .agencies__column {
  padding-left: 2vw;
}

@media screen and (width <= 991px) {
  .home__contact .agencies__column {
    margin-bottom: 5vh;
    padding-left: 0;
  }
}

.home__contact .agencies__column:first-child {
  padding-left: 0;
}

.home__contact .agencies__column p {
  line-height: 1.2;
}

.home__contact .agencies__column p a {
  color: #1b1b1b;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .4s;
}

.home__contact .agencies__column p a:hover {
  background-size: 100% 2px;
}

.home__contact .agencies__column h2 {
  text-transform: uppercase;
  font-size: 6vw;
}

@media screen and (width <= 991px) {
  .home__contact .agencies__column h2 {
    font-size: 4rem;
  }

  .home__contact .agencies__column h2 span {
    display: none;
  }
}

.home__contact__footer {
  gap: 3.2rem;
  padding-bottom: 10rem;
  display: flex;
}

.home__contact__footer a {
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 1.2rem;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.custom-cursor {
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  background: #fff url("arrow-upright.d315b69c.svg") center / 50% no-repeat;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  transition: opacity .25s;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 991px) {
  .fr .home .wrap-sticky .sticky-text {
    font-size: 2.2rem;
  }

  .fr .home .wrap-sticky .sticky-text .u {
    bottom: 2px;
  }
}
/*# sourceMappingURL=index.css.map */
