/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
  white-space: nowrap;
  height: 100vh;
  display: inline-block;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
  display: inline-block;
}

.c-scrollbar {
  transform-origin: 100%;
  opacity: 0;
  width: 11px;
  height: 100%;
  transition: transform .3s, opacity .3s;
  position: absolute;
  top: 0;
  right: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction="horizontal"] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction="horizontal"] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  opacity: .5;
  cursor: -webkit-grab;
  cursor: grab;
  background-color: #000;
  border-radius: 10px;
  width: 7px;
  margin: 2px;
  position: absolute;
  top: 0;
  right: 0;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction="horizontal"] .c-scrollbar_thumb {
  bottom: 0;
  right: auto;
}

@font-face {
  font-family: brownregular;
  src: url("brown-regular-webfont.372cd984.woff2") format("woff2"), url("brown-regular-webfont.b2af61e7.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: brownlight;
  src: url("brown-light-webfont.30bdb7a2.woff2") format("woff2"), url("brown-light-webfont.a5169fd4.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

.is-inactive * {
  pointer-events: none !important;
}

body {
  color: #1a44c5;
  background: #e2e1df;
  min-width: 100vw;
  margin: 0;
  font-family: brownregular;
  overflow-x: hidden;
}

a {
  color: #1a44c5;
  text-decoration: none;
}

#contact {
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 50px 10px;
  font-size: 14px;
  position: fixed;
  top: 50px;
  right: 50px;
}

#preload {
  z-index: 1001;
  background: #143498;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

#preload #O {
  z-index: 999;
  width: 120px;
  height: 160px;
  position: relative;
  transform: scale(3);
}

#preload #O #dash {
  z-index: 999;
  background: #99968f;
  width: 20px;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

#preload #O #circle {
  display: flex;
}

#preload #O #circle .circle-segment {
  width: 120px;
}

#preload #O #circle .circle-segment svg {
  display: block;
}

#preload #O #circle .circle-segment path {
  fill: none;
  stroke: #e2e1df;
  stroke-width: 20px;
  stroke-dasharray: 120;
  stroke-dashoffset: 120px;
}

#preload #O #circle .circle-segment.circle--right {
  transform: rotate(180deg);
}

#preload .bg-segment {
  background: #1a44c5;
  width: 50%;
  height: 0%;
  position: absolute;
  overflow: hidden;
}

#preload .bg-segment.bg--left {
  top: 0;
  left: 0;
}

#preload .bg-segment.bg--right {
  bottom: 0;
  right: 0;
}

#meta {
  z-index: 2000;
  color: #1a44c5;
  opacity: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  font-family: brownlight;
  position: fixed;
  top: 0;
}

#meta span {
  background: #1a44c5;
  width: 7px;
  height: 25px;
  margin-top: 10px;
  display: block;
}

#meta .meta--left {
  color: #0000;
  position: absolute;
  bottom: 120px;
  left: -30px;
  transform: rotate(-90deg);
}

#meta .meta--right {
  display: none;
  position: absolute;
  top: 130px;
  right: 0;
  transform: rotate(90deg);
}

@media screen and (width <= 550px) {
  #meta .meta--right {
    display: none;
  }
}

#meta .meta--right a {
  color: #1a44c5;
  display: inline-block;
}

#meta .meta--right hr {
  background: #1a44c5;
  border: 0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

header {
  z-index: 999;
  width: 100%;
  padding: 50px;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

@media screen and (width <= 800px) {
  header {
    padding: 9%;
  }
}

header.is-inview {
  opacity: 1;
}

header nav {
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 9009;
  gap: 40px;
  margin-top: 35px;
  font-size: 13px;
  display: flex;
  position: fixed;
}

header nav .nav__link {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

header nav .nav__link.is-active {
  pointer-events: none;
}

header nav .nav__link .nav__title {
  width: 300px;
  margin-top: -5px;
  overflow: hidden;
}

header nav .nav__link .nav__dash {
  opacity: 1;
  background: #1a44c5;
  height: 10px;
  position: absolute;
  left: 0;
  right: 100%;
}

header #logo {
  width: 200px;
  overflow-y: hidden;
}

header #logo .logo__wrap {
  height: 32px;
}

header #logo .logo__dash {
  z-index: 1;
  background: #1a44c5;
  width: 15px;
  height: 4px;
  position: relative;
  top: -7px;
  left: 63px;
}

#content {
  position: relative;
  top: 0;
}

#content section {
  width: 90vw;
  margin: 0 auto;
  position: relative;
}

#content section .line__grid {
  pointer-events: none;
  justify-content: center;
  width: 90vw;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
}

#content section .line__grid .line {
  opacity: .8;
  border-left: 1px solid #c3c1be;
  width: 20%;
  height: 100%;
  position: relative;
}

#content section .line__grid .line:first-child {
  height: 150%;
  top: -96vh;
}

#content section .line__grid .line:nth-child(2) {
  height: 142%;
  top: -96vh;
}

#content section .line__grid .line:nth-child(3) {
  height: calc(100% + 96vh);
  top: -96vh;
}

#content section#work {
  margin-top: 30vh;
  padding: 20vh 0 0;
}

#content section#work .work__list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  display: flex;
}

#content section#work .work__list .work__item {
  box-sizing: border-box;
  width: 40vw;
  overflow: hidden;
}

#content section#work .work__list .work__item:hover img {
  transform: scale(1.1);
}

#content section#work .work__list .work__item img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

#content section#work .work__wrap {
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 20vw;
  display: flex;
}

#content section#work .work__wrap:hover .work__wrap-left h2 {
  opacityx: 0;
}

#content section#work .work__wrap.work__wrap-reverse {
  flex-direction: row-reverse;
}

#content section#work .work__wrap.work__wrap-reverse .work__wrap-left:before {
  top: 0;
  left: 50px;
}

#content section#work .work__wrap.work__wrap-reverse .work__wrap-left h2 {
  text-align: left;
  left: -20vw;
}

#content section#work .work__wrap.work__wrap-reverse .work__wrap-left h3 {
  text-align: right;
  right: 0;
}

#content section#work .work__wrap .work__wrap-left {
  width: 40vw;
  display: inline-block;
  position: relative;
}

#content section#work .work__wrap .work__wrap-left h2 {
  text-transform: uppercase;
  text-align: right;
  pointer-events: none;
  z-index: 2002;
  width: 50vw;
  font-size: 120px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#content section#work .work__wrap .work__wrap-left h2 .headline-segment__wrap {
  margin-bottom: -30px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#content section#work .work__wrap .work__wrap-left h3 {
  transform-origin: 0;
  z-index: 3;
  background: #e2e1df;
  width: 100%;
  max-width: 500px;
  margin-left: 1px;
  padding: 2vw;
  font-family: brownlight;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  position: absolute;
  bottom: 0;
}

#content section#work .work__wrap .work__wrap-right {
  width: 60vw;
  position: relative;
}

#content section#work .work__wrap .work__wrap-right .work__id {
  z-index: 999;
  position: absolute;
  top: 0;
  right: -30px;
}

#content section#work .work__wrap .work__wrap-right .work__preview {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

#content section#work .work__wrap .work__wrap-right .work__preview.is-disabled {
  pointer-events: none;
  background-color: #c3c1be;
  background-image: none !important;
}

#content section#work .work__wrap .work__wrap-right .work__preview img {
  display: none;
}

#content section#work .work__wrap .work__wrap-right .work__preview .work__dash {
  background: #eeeeec;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

#content section#skills {
  padding: 30vh 0;
}

#content section#skills #skill-container {
  align-items: flex-end;
  padding-left: 25vw;
  display: flex;
}

#content section#skills #skill-container .skill-headlines {
  width: 50%;
}

#content section#skills #skill-container .skill-headlines .skill-headline {
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#1a44c5 60%, #c3c1be 60%);
  background-position-y: -140px;
  background-size: 1200px 230px;
  -webkit-background-clip: text;
  border-color: #c3c1be;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  margin-top: -20px;
  padding-bottom: 20px;
  font-size: 110px;
  transition: all 1.5s cubic-bezier(.25, 1, .5, 1);
  position: relative;
  overflow: hidden;
}

#content section#skills #skill-container .skill-headlines .skill-headline.is-active {
  background-position-y: 0;
  border-color: #1a44c5;
}

#content section#skills #skill-container .skill-info-wrapper {
  color: #1a44c5;
  width: 50%;
  padding-left: 10%;
  font-family: brownlight;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  position: relative;
}

#content section#skills #skill-container .skill-info-wrapper .skill-info {
  opacity: 0;
  width: 90%;
  position: absolute;
  bottom: 0;
  right: 0;
}

#content section#skills #skill-container .skill-info-wrapper .skill-info.current {
  opacity: 1;
}

#content section#skills #skill-container .skill-info-wrapper .skill-info .skill-bullet-wrapper {
  gap: 8px;
  margin-top: 15px;
  display: flex;
}

#content section#skills #skill-container .skill-info-wrapper .skill-info .skill-bullet-wrapper .skill-bullet {
  color: #e2e1df;
  opacity: 0;
  text-transform: uppercase;
  background: #1a44c5;
  border-radius: 999px;
  padding: 11px 20px 10px;
  font-family: brownregular;
  font-size: 14px;
  line-height: 10px;
}

#content section#hero {
  width: 90vw;
  padding-top: 20vh;
  position: relative;
}

#content section#hero.is-active #scrollin {
  opacity: 0 !important;
}

#content section#hero.is-active span {
  width: 0 !important;
}

#content section#hero.is-active h2 {
  color: #e2e1df;
}

#content section#hero.is-active h3 {
  color: #e2e1df00;
}

#content section#hero .hero__dash {
  background-color: #1a44c5;
  width: 30px;
  height: 8px;
  margin: 10vh 0;
}

#content section#hero .hero__content {
  z-index: 2002;
  width: 40%;
  padding-left: 3vw;
  position: relative;
  left: 40%;
}

@media screen and (width <= 1200px) {
  #content section#hero .hero__content {
    left: 20%;
  }
}

@media screen and (width <= 900px) {
  #content section#hero .hero__content {
    width: 100%;
    left: 0%;
  }
}

#content section#hero .hero__content #scrollin {
  width: 100px;
  margin-bottom: 40px;
  position: relative;
  left: -50px;
  transform: translateX(-3vw);
}

@media screen and (width <= 1200px) {
  #content section#hero .hero__content #scrollin {
    display: none;
  }
}

#content section#hero .hero__content .hero__teaser {
  letter-spacing: 1px;
  opacity: 1;
  background: #e2e1df;
  max-width: 500px;
  font-family: brownlight;
  font-size: 15px;
  font-weight: normal;
  line-height: 33px;
  position: relative;
}

@media screen and (width <= 1200px) {
  #content section#hero .hero__content .hero__teaser {
    width: 100%;
    max-width: 2000px;
  }
}

#content section#hero .hero__content .hero__headlines {
  position: relative;
}

#content section#hero .hero__content .hero__headlines .hero__dash-vert {
  content: "";
  width: 0dppx;
  background: #1a44c5;
  height: 100%;
  margin-left: -2px;
  display: block;
  position: absolute;
  top: 0;
  left: -3vw;
}

#content section#hero .hero__content .hero__headlines:not(.is-inview) {
  pointer-events: none;
}

#content section#hero .hero__content .hero__headlines:not(.is-inview) .head-wrap .head-dash {
  width: 100%;
  left: 0 !important;
}

#content section#hero .hero__content .hero__headlines .hero__headlines-wrap {
  margin-bottom: 7px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#content section#hero .hero__content .hero__headlines .hero__headlines-wrap h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 90px;
  margin: 0;
  padding: 0;
  font-size: 90px;
  line-height: 95px;
  display: inline-block;
  overflow: hidden;
}

@media screen and (width <= 900px) {
  #content section#hero .hero__content .hero__headlines .hero__headlines-wrap h2 {
    height: 90px;
    margin-top: -20px;
    font-size: 80px;
  }
}

@media screen and (width <= 500px) {
  #content section#hero .hero__content .hero__headlines .hero__headlines-wrap h2 {
    height: 80px;
    margin-top: -25px;
    font-size: 65px;
  }
}

#content section#hero .hero__content .hero__headlines .hero__headlines-wrap .hero__headlines-dash {
  opacity: 1;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

.hidden {
  display: none;
}

#cursor {
  z-index: 9999;
  pointer-events: none;
  background-color: #1a44c5;
  background-image: none;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  position: fixed;
  overflow: hidden;
  display: flex !important;
}

#cursor #eye {
  opacity: 0;
  width: 55%;
  transition: all .5s;
}

#cursor #eye #eye__insight {
  opacity: 1;
  background: #1a44c5;
  border-radius: 999px;
  width: 0%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

#cursor #eye #eye__insight svg {
  width: 86px;
  height: 85px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cursor.eye-open {
  background-color: #e2e1df !important;
}

#cursor.eye-open #eye {
  opacity: 1;
}

#cursor.head-expand {
  background-color: #0000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: 1s infinite circle;
}

@keyframes circle {
  0% {
    background-image: url("https://assets.awwwards.com/awards/media/cache/thumb_880_660/submissions/2023/11/65525ca11b595642563041.jpg");
  }

  33% {
    background-image: url("https://assets.awwwards.com/awards/media/cache/thumb_880_660/submissions/2023/11/654e67545cea6864762233.jpg");
  }

  66% {
    background-image: url("https://assets.awwwards.com/awards/media/cache/thumb_880_660/submissions/2023/11/65525ca11b595642563041.jpg");
  }

  100% {
    background-image: url("https://assets.awwwards.com/awards/media/cache/thumb_880_660/submissions/2023/11/65525ca11b595642563041.jpg");
  }
}

canvas {
  z-index: -1;
  pointer-events: none;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

footer {
  box-sizing: border-box;
  background: #1a44c5;
  border: 3vw solid #e2e1df;
  width: 100vw;
  padding: 10vw;
  display: block;
}

.dash {
  background: #1a44c5;
}

#work__hero {
  aspect-ratio: 16 / 9;
  background: #c3c1be center / auto 100% no-repeat;
  width: 100%;
  margin: 0 auto;
}

#preview_work {
  z-index: 998;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: fixed;
}

#transition_dash {
  background: #1a44c5;
  width: 0%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

#transition_overlay {
  z-index: 9999;
  background-image: url("o_2.77a67f72.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  width: 60vw;
  height: 60vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#clients {
  padding-bottom: 1vh;
}

#clients h2, #clients h3 {
  color: #aba8a3;
  padding-left: 40%;
  display: block;
}

#clients h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: brownregular;
  margin: 0;
  font-weight: bold;
  line-height: 30px;
}

#clients h3 {
  width: 70%;
  margin-top: 7vh;
  font-family: brownlight;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
}

.logo-grid-row {
  gap: 3vw;
  width: 100%;
  padding: 3vw 0;
  display: flex;
}

.logo-grid-row div {
  aspect-ratio: 16 / 9;
  flex-basis: 20%;
}

.logo-grid-row div img {
  width: 100%;
}

#test-sec {
  background: #1a44c5;
  width: 100%;
  height: 600px;
}

#hero, #work, #clients {
  display: nonex;
}

.word-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.soon {
  text-underline-offset: 2px;
  margin-top: 120px;
  font-weight: 900;
  text-decoration: underline;
}

.splitting .word, .splitting .char {
  display: inline-block;
}

.splitting .char {
  position: relative;
}

.splitting .char:before, .splitting .char:after {
  content: attr(data-char);
  visibility: hidden;
  -webkit-user-select: none;
  user-select: none;
  transition: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.splitting {
  --word-center: calc((var(--word-total)  - 1) / 2);
  --char-center: calc((var(--char-total)  - 1) / 2);
  --line-center: calc((var(--line-total)  - 1) / 2);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
  --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  --char-offset: calc(var(--char-index)  - var(--char-center));
  --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));
  --distance-sine: calc(var(--char-offset) / var(--char-center));
  --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.cells img {
  width: 100%;
  display: block;
}

@supports (display: grid ) {
  .splitting.cells {
    visibility: hidden;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }

  .splitting .cell-grid {
    background: inherit;
    grid-template: repeat(var(--row-total), 1fr) / repeat(var(--col-total), 1fr);
    width: 100%;
    height: 100%;
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
  }

  .splitting .cell {
    background: inherit;
    position: relative;
    overflow: hidden;
  }

  .splitting .cell-inner {
    background: inherit;
    visibility: visible;
    width: calc(100% * var(--col-total));
    height: calc(100% * var(--row-total));
    left: calc(-100% * var(--col-index));
    top: calc(-100% * var(--row-index));
    position: absolute;
  }

  .splitting .cell {
    --center-x: calc((var(--col-total)  - 1) / 2);
    --center-y: calc((var(--row-total)  - 1) / 2);
    --offset-x: calc(var(--col-index)  - var(--center-x));
    --offset-y: calc(var(--row-index)  - var(--center-y));
    --distance-x: calc((var(--offset-x) * var(--offset-x)) / var(--center-x));
    --distance-y: calc((var(--offset-y) * var(--offset-y)) / var(--center-y));
  }
}

/*# sourceMappingURL=placeholder.0740cd4d.css.map */
