@font-face {
  font-family: Oak Sans;
  src: url('../fonts/OakSans-ItalicVF.woff2') format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Oak Sans;
  src: url('../fonts/OakSansVF.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Octane;
  src: url('../fonts/OctaneGX.ttf') format("truetype");
  font-weight: 0 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: black;
  --paragraphs: #ffffff80;
  --heading: white;
  --border: #fff3;
  --midnight-blue: #272c5d;
  --azure: #d9e9e9;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--background);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Oak Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  display: flex;
}

h1 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.87em;
  font-weight: 600;
  line-height: 1.15em;
}

h3 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.37em;
  font-weight: 600;
  line-height: 1.16em;
}

h4 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.87em;
  font-weight: 600;
  line-height: 1.2em;
}

h5 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.37em;
  font-weight: 600;
  line-height: 1.23em;
}

h6 {
  color: var(--heading);
  font-variation-settings: "wght" 550;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.12em;
  font-weight: 600;
  line-height: 1.28em;
}

p {
  color: var(--paragraphs);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.7em;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 1.3em;
  margin-bottom: 1.3em;
  padding-left: 2.2em;
  font-size: 1.1em;
  line-height: 1.7em;
}

li {
  padding: .2em .5em;
}

strong {
  color: var(--heading);
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--border);
  color: var(--heading);
  margin-top: 1.3em;
  margin-bottom: 1.3em;
  margin-left: .9em;
  padding: 0 0 0 1.3em;
  font-size: 1.37em;
  font-style: italic;
  line-height: 1.7em;
}

figure {
  margin-top: 2.7em;
  margin-bottom: 2.7em;
}

figcaption {
  text-align: center;
  margin-top: .8em;
  padding-left: 7%;
  padding-right: 7%;
  font-size: 1em;
  line-height: 1.5em;
}

.link {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  box-shadow: inset 0 -24px 0 0 var(--heading);
  color: var(--background);
}

.rich-text-block {
  width: 100%;
}

.rich-text-block p {
  margin-bottom: 1.3em;
}

.rich-text-block h1, .rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  margin-top: 1em;
  margin-bottom: .5em;
}

.rich-text-block a {
  box-shadow: inset 0 -1px 0 0 var(--heading);
  color: var(--heading);
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  box-shadow: inset 0 -24px 0 0 var(--heading);
  color: var(--background);
}

.rich-text-block.margin {
  margin-top: -2.7em;
  margin-bottom: -2.7em;
}

.navbar {
  z-index: 500;
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: .7em;
  padding-left: .7em;
  padding-right: .7em;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu {
  width: 100%;
}

.nav-text {
  z-index: 10;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .5em;
  margin-bottom: .5em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
}

.grid-navbar {
  grid-column-gap: .5em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  place-items: center stretch;
}

.nav {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  z-index: 10;
  height: 5em;
  position: relative;
}

.logo.mobile {
  height: 1.4em;
}

.brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.1em 1.2em;
  display: flex;
  position: relative;
}

.nav-link {
  margin-right: auto;
  padding: .5em 1.2em;
  text-decoration: none;
  position: relative;
}

.nav-link.right {
  margin-left: auto;
  margin-right: 0;
}

.brand-mobile {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  padding: .8em;
  display: none;
  position: relative;
}

.section-hero {
  z-index: 100;
  background-color: var(--background);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.letter {
  z-index: 10;
  color: var(--heading);
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  cursor: default;
  padding-top: 2vw;
  padding-bottom: 7.5vw;
  font-family: Octane, sans-serif;
  font-size: 34vw;
  font-weight: 100;
  line-height: 100%;
  transition: font-variation-settings 3s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
  position: relative;
}

.letter:hover {
  font-variation-settings: "wght" 10, "wdth" 100;
}

.wrapper-letter {
  z-index: 50;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.wrapper-letter.extra {
  width: 100%;
}

.block-info {
  z-index: 100;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 10% 1.8em;
}

.text-info {
  clear: none;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 32em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.7em;
  display: block;
}

.block-letter {
  z-index: 50;
  perspective: 1000px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.bg-video-letter {
  z-index: 5;
  opacity: 0;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-video-letter.preload-1 {
  object-fit: cover;
}

.block-underline {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: hidden;
}

.underline {
  background-color: var(--heading);
  width: 100%;
  position: absolute;
  inset: 0%;
  transform: translate(-105%);
}

.section-top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 13em;
  padding-bottom: 10em;
  display: flex;
  position: relative;
}

.section-top.full {
  justify-content: flex-end;
  min-height: 100svh;
  padding-bottom: 3.8em;
}

.section-top.center {
  flex: 1;
  justify-content: center;
  overflow: hidden;
}

.content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 88em;
  padding-left: 1.9em;
  padding-right: 1.9em;
  display: flex;
}

.content.project {
  grid-row-gap: 6em;
  text-align: left;
}

.content.page {
  grid-row-gap: 8em;
  text-align: left;
}

.bg-image {
  z-index: -1;
  background-image: url('../images/toofan-horizontal.jpg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  position: absolute;
  inset: 0% 0% -50%;
}

.bg-image.aks {
  background-image: url('../images/AKS-img-3-1.jpg');
  background-position: 50%;
  background-size: auto;
}

.bg-image.mppm {
  background-image: url('../images/MPPM-img-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.bg-image.mirzya {
  background-image: url('../images/mirzya-horizontal.jpg');
  background-position: 50%;
  background-size: cover;
}

.bg-image.rdb {
  background-image: url('../images/RDB-img-3-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.bg-image.bmb {
  background-image: url('../images/BMB-img-4-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.bg-image.delhi6 {
  background-image: url('../images/Delhi-6-img-1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.bg-image.fanneykhan {
  background-image: url('../images/fanney-khan-2.webp');
  background-position: 50%;
  background-size: cover;
}

.bg-blur {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #0000004d;
  background-image: linear-gradient(#0000, #000);
  position: absolute;
  inset: 0%;
}

.heading-project {
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  margin-bottom: .02em;
  font-family: Octane, sans-serif;
  font-size: 13em;
  font-weight: 100;
  line-height: .8em;
}

.heading-project.large {
  font-size: 22em;
}

.info-project {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 30em;
  margin-top: 2.2em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.info-project.top {
  margin-top: 0;
  margin-bottom: -1.8em;
}

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

.section.full {
  flex: 1;
}

.section.margin {
  margin-bottom: 10em;
}

.video {
  width: 100%;
}

.image {
  object-fit: cover;
  width: 100%;
}

.image.founder {
  width: 80%;
}

.content-narrow {
  text-align: left;
  width: 100%;
  max-width: 47.2em;
}

.grid-images {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 2.5fr 1fr;
  grid-auto-columns: auto;
  width: 100%;
}

.image-grid {
  object-fit: cover;
  width: 100%;
}

.footer {
  grid-column-gap: 1.7em;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 1.5em 1.9em;
  display: flex;
}

.link-footer {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding-top: .6em;
  padding-bottom: .6em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
}

.link-footer:hover {
  opacity: 1;
}

.section-call-to-action {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15em 1.9em;
  display: flex;
}

.block-cta {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-cta {
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.7em;
}

.link-cta {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.letter-cta {
  z-index: 10;
  color: var(--heading);
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  font-family: Octane, sans-serif;
  font-size: 12em;
  font-weight: 100;
  line-height: .8em;
  transition: font-variation-settings 3s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
  position: relative;
}

.letter-cta:hover {
  font-variation-settings: "wght" 10, "wdth" 100;
}

.bg-video-full {
  z-index: -1;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-gradient {
  background-color: #0000004d;
  background-image: linear-gradient(#0000, #000);
  position: absolute;
  inset: 0%;
}

.description-project {
  color: var(--heading);
  text-align: center;
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 32em;
  margin-top: 3.5em;
  margin-left: 10%;
  margin-right: 10%;
  font-size: .94em;
  font-weight: 400;
  line-height: 1.7em;
}

.bg-video {
  width: 100%;
  height: 56vw;
  margin-top: -7.5em;
}

.bg-img-full {
  z-index: -1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(to bottom, var(--background), var(--background));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
  position: absolute;
  inset: 0%;
}

.heading-page {
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  margin-top: -.12em;
  margin-bottom: .02em;
  font-family: Octane, sans-serif;
  font-size: 13em;
  font-weight: 100;
  line-height: .8em;
}

.text-span-wide {
  font-variation-settings: "wght" 10, "wdth" 100;
  margin-left: -.07em;
  margin-right: -.07em;
}

.grid-work-1 {
  box-sizing: border-box;
  grid-column-gap: 0em;
  grid-row-gap: 9em;
  object-fit: fill;
  grid-template-rows: auto;
  width: 100%;
  display: grid;
}

.block-work {
  grid-row-gap: .35em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.9em;
  padding-left: 1.9em;
  display: flex;
}

.block-work.padding {
  padding-left: 0;
}

.link-work-1 {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.heading-work {
  color: var(--heading);
  font-variation-settings: normal;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.info-work {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.bg-video-work-1 {
  object-fit: cover;
  object-position: 50% 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 26vw;
  display: flex;
}

.arrow {
  object-fit: contain;
  width: 1.25em;
  height: 1.25em;
  display: block;
}

.block-arrow {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #70707033;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 4.6em;
  height: 4.6em;
  display: flex;
  position: absolute;
}

.grid-work-2 {
  grid-column-gap: 0em;
  grid-row-gap: 9em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  display: grid;
}

.link-work-2 {
  width: 75%;
  text-decoration: none;
  position: relative;
}

.link-work-2.right {
  margin-left: auto;
}

.bg-video-work-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 38vw;
  display: flex;
}

.grid-work-3 {
  grid-column-gap: 0em;
  grid-row-gap: 5.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 11.5em;
  margin-bottom: 10em;
  display: grid;
}

.link-work-3 {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.bg-video-work-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 18vw;
  display: flex;
}

.collection-list-wrapper {
  width: 100%;
}

.collection-list-wrapper.work-3 {
  margin-top: 11.5em;
  margin-bottom: 10em;
}

.bg-img-work-1 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(to bottom, var(--background), var(--background));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 26vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-list-1 {
  grid-column-gap: 0em;
  grid-row-gap: 9em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.empty-state {
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.collection-list-2 {
  grid-column-gap: 0em;
  grid-row-gap: 9em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bg-img-work-2 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(to bottom, var(--background), var(--background));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 38vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-item-2 {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.collection-item-2:nth-child(2n) {
  justify-content: flex-end;
}

.collection-list-3 {
  grid-column-gap: 0em;
  grid-row-gap: 5.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bg-img-work-3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), linear-gradient(to bottom, var(--background), var(--background));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 18vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lightbox-link-1 {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.lightbox-link-2 {
  width: 75%;
  text-decoration: none;
  position: relative;
}

.lightbox-link-2.right {
  margin-left: auto;
}

.lightbox-link-3 {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.text-subtitle {
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-right: 2em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.grid-clients {
  grid-column-gap: 1.5em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
}

.image-client {
  object-fit: contain;
  max-height: 2.6em;
}

.award {
  grid-column-gap: 1.25em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-year {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.block-award {
  grid-row-gap: 2.3em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.letter-contact {
  z-index: 10;
  color: var(--heading);
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  font-family: Octane, sans-serif;
  font-size: 14em;
  font-weight: 100;
  line-height: .85em;
  transition: font-variation-settings 3s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
  position: relative;
}

.letter-contact:hover {
  font-variation-settings: "wght" 10, "wdth" 100;
}

.link-contact {
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.description {
  color: var(--heading);
  text-align: center;
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 30em;
  margin-top: 2.6em;
  font-size: .94em;
  font-weight: 400;
  line-height: 1.7em;
}

.description.opacity {
  opacity: .5;
}

.form-block {
  width: 100%;
  max-width: 43em;
  margin-top: 4em;
  margin-bottom: 0;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--heading);
  background-color: #0000;
  height: 2.6em;
  margin-bottom: 0;
  padding: 0 0 .6em;
  font-size: 1.12em;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-bottom-color: var(--heading);
}

.text-field::placeholder {
  color: #ffffff80;
}

.block-field {
  grid-column-gap: 2em;
  flex-direction: row;
  margin-bottom: 2.6em;
  display: flex;
}

.textarea {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--heading);
  background-color: #0000;
  width: 100%;
  min-width: 100%;
  min-height: 7em;
  max-height: 20em;
  margin-bottom: 0;
  padding: 0 0 .6em;
  font-size: 1.12em;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.textarea:focus {
  border-bottom-color: var(--heading);
}

.textarea::placeholder {
  color: #ffffff80;
}

.success-message {
  background-color: #00aa2d26;
  padding: 1.5em;
}

.text-success {
  color: #00aa2d;
  line-height: 1.4em;
}

.error-message {
  background-color: #cf000026;
  margin-top: 1.5em;
  padding: 1.5em;
}

.text-error {
  color: red;
  line-height: 1.4em;
}

.submit-button {
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  background-color: #7d7d7d33;
  border-radius: 50em;
  padding: 2em 3.5em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: #7d7d7d66;
}

.sticky-contact {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  background-image: radial-gradient(circle closest-corner at 50% 0%, #1d1d1d, var(--background));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 19em;
  display: flex;
  position: sticky;
  top: 12em;
}

.sticky-contact.sticky-2 {
  top: 12.7em;
}

.sticky-contact.sticky-3 {
  top: 13.4em;
}

.sticky-contact.sticky-4 {
  top: 14.1em;
}

.contacts {
  width: 100%;
  margin-top: 12em;
  position: relative;
}

.block-contact {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.info-contact {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 30em;
  margin-top: 2em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.utility-page-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 7em 1.9em 3em;
  display: flex;
}

.utility-page-content {
  grid-row-gap: 1.5em;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 20em;
  display: flex;
}

.button {
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  background-color: #7d7d7d33;
  border-radius: 50em;
  padding: 2em 3.5em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: #7d7d7d66;
}

.button.small {
  padding: 1.4em 2.4em;
}

.utility-page-form {
  grid-row-gap: 1.5em;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.field-label {
  opacity: .35;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: -1.4em;
  margin-right: auto;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.grid-colors {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-color {
  grid-row-gap: .2em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 12em;
  padding: 1em;
  display: flex;
}

.block-color.border {
  background-color: var(--border);
}

.block-color.paragraphs {
  background-color: var(--paragraphs);
}

.block-color.heading {
  background-color: var(--heading);
}

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

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

.hex-color {
  opacity: .5;
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .8em;
  line-height: 1.2em;
}

.hex-color.dark {
  color: var(--background);
}

.template-info {
  grid-column-gap: .8em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.4em;
  display: flex;
}

.button-light {
  background-color: var(--heading);
  color: var(--background);
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 50em;
  padding: 2em 3.5em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button-light:hover {
  color: var(--heading);
  background-color: #7d7d7d66;
}

.button-light.small {
  padding: 1.4em 2.4em;
}

.paragraph-template {
  margin-bottom: 2.4em;
}

.grid-licensing {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  width: 100%;
}

.image-template {
  object-fit: cover;
  width: 100%;
}

.oak-sans {
  font-size: 3.5em;
  line-height: 1em;
}

.octane-typeface {
  font-variation-settings: "wght" 10, "wdth" 0;
  text-transform: uppercase;
  font-family: Octane, sans-serif;
  font-size: 5em;
  font-weight: 100;
  line-height: 1em;
}

.grid-content {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.5fr;
  width: 100%;
}

.splash {
  width: 100%;
  margin-bottom: 4em;
  padding-left: 1.9em;
  padding-right: 1.9em;
}

.heading-splash {
  color: var(--heading);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 2em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.grid-splash {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  margin-bottom: 8em;
}

.grid-splash._3-columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.link-splash {
  color: #d9e9e980;
  background-color: #ffffff1a;
  padding: 6em 12%;
  text-decoration: none;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-splash:hover {
  color: #d9e9e9;
  background-color: #ffffff26;
}

.link-splash.padding {
  padding-top: 5em;
  padding-bottom: 5em;
}

.text-splash {
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: 1.4em;
  margin-bottom: -2.6em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

.background-video-splash {
  z-index: 10;
  width: 100%;
  height: 23vw;
}

.image-splash {
  object-fit: cover;
  width: 100%;
}

.text-span {
  font-weight: 600;
}

.award-list {
  color: var(--heading);
  margin-top: -1em;
  font-size: 1.1em;
}

.award-winner {
  color: var(--paragraphs);
  margin-left: 0;
  font-size: .8em;
}

.image-2 {
  aspect-ratio: auto;
  object-fit: cover;
  max-width: 100%;
  max-height: none;
  transform: scale(1.15);
}

.text-info-copy {
  clear: none;
  color: var(--border);
  letter-spacing: .07em;
  text-transform: lowercase;
  max-width: 32em;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.7em;
  display: block;
}

.contact-para {
  text-align: center;
  width: 70%;
}

.contact-subheading {
  color: var(--border);
  margin-bottom: 20px;
  font-size: 1em;
}

.paragraph-2 {
  font-size: 1em;
}

.image-3 {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.1em;
  }

  h2 {
    font-size: 2.5em;
  }

  h3 {
    font-size: 2em;
  }

  h4 {
    font-size: 1.5em;
  }

  h5 {
    font-size: 1.3em;
  }

  .section-top {
    padding-top: 11em;
    padding-bottom: 8em;
  }

  .section-top.full {
    padding-bottom: 2.5em;
  }

  .section-top.center {
    padding-top: 9em;
    padding-bottom: 6em;
  }

  .content.project, .content.page {
    grid-row-gap: 5em;
  }

  .heading-project {
    font-size: 20vw;
  }

  .heading-project.large {
    font-size: 28vw;
  }

  .info-project.top {
    margin-bottom: -.5em;
  }

  .image.founder {
    width: 90%;
  }

  .section-call-to-action {
    padding-top: 11em;
    padding-bottom: 11em;
  }

  .letter-cta {
    font-size: 20vw;
  }

  .description-project {
    margin-top: 2.5em;
    font-size: .85em;
  }

  .bg-video {
    margin-top: -9.5vw;
  }

  .heading-page {
    font-size: 22vw;
  }

  .grid-work-1, .grid-work-2 {
    grid-row-gap: 7em;
  }

  .grid-work-3 {
    grid-row-gap: 4em;
    grid-template-columns: 1fr 1fr;
    margin-top: 9em;
    margin-bottom: 6em;
  }

  .bg-video-work-3 {
    height: 25vw;
  }

  .collection-list-wrapper.work-3 {
    margin-top: 9em;
    margin-bottom: 6em;
  }

  .collection-list-1, .collection-list-2 {
    grid-row-gap: 7em;
  }

  .collection-list-3 {
    grid-row-gap: 4em;
    grid-template-columns: 1fr 1fr;
  }

  .bg-img-work-3 {
    height: 25vw;
  }

  .letter-contact {
    font-size: 22vw;
  }

  .description {
    font-size: .85em;
  }

  .splash {
    margin-bottom: 2em;
  }

  .grid-splash {
    margin-bottom: 6em;
  }

  .link-splash, .link-splash.padding {
    padding-top: 3.5em;
    padding-bottom: 3.5em;
  }

  .text-splash {
    margin-bottom: -1.6em;
  }

  .contact-para {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.6em;
  }

  h2 {
    font-size: 2.1em;
  }

  h3 {
    font-size: 1.7em;
  }

  h4 {
    font-size: 1.4em;
  }

  h5 {
    font-size: 1.2em;
  }

  h6 {
    font-size: 1em;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: #70707033;
    border-radius: 1em;
    width: auto;
    margin-top: .7em;
    margin-left: .7em;
    margin-right: .7em;
    padding-top: .7em;
    padding-bottom: .7em;
  }

  .grid-navbar {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
  }

  .logo.mobile {
    height: 4em;
  }

  .brand {
    display: none;
  }

  .nav-link {
    margin-left: auto;
  }

  .nav-link.right {
    margin-right: auto;
  }

  .brand-mobile {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-button {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: var(--heading);
    background-color: #70707033;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    padding: .8em;
    font-size: 1.3em;
    transition: background-color .3s cubic-bezier(.25, .46, .45, .94);
    display: flex;
  }

  .menu-button.w--open {
    background-color: #70707066;
  }

  .block-info {
    bottom: 1em;
  }

  .text-info {
    line-height: 1.6em;
  }

  .section-top {
    padding-top: 9em;
    padding-bottom: 6em;
  }

  .content.project {
    grid-row-gap: 3em;
  }

  .heading-project.large {
    font-size: 22vw;
  }

  .info-project {
    margin-top: 1.6em;
  }

  .image.founder {
    width: 90%;
  }

  .footer {
    grid-row-gap: .7em;
    flex-direction: column;
  }

  .section-call-to-action {
    padding-top: 9em;
    padding-bottom: 9em;
  }

  .grid-work-1 {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .block-work {
    padding-top: 1.2em;
    padding-left: 1.2em;
  }

  .block-work.padding {
    padding-left: 1.2em;
  }

  .bg-video-work-1 {
    height: 50vw;
  }

  .grid-work-2 {
    grid-row-gap: 5em;
  }

  .grid-work-3 {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .bg-video-work-3, .bg-img-work-1 {
    height: 50vw;
  }

  .collection-list-1 {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .collection-list-2 {
    grid-row-gap: 5em;
  }

  .collection-list-3 {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .bg-img-work-3 {
    height: 50vw;
  }

  .text-year {
    white-space: nowrap;
  }

  .heading-award {
    box-sizing: border-box;
    text-align: left;
    white-space: normal;
    word-break: normal;
    font-size: 1.5em;
  }

  .sticky-contact {
    top: 9em;
  }

  .sticky-contact.sticky-2 {
    top: 9.7em;
  }

  .sticky-contact.sticky-3 {
    top: 10.4em;
  }

  .sticky-contact.sticky-4 {
    top: 11.1em;
  }

  .contacts {
    margin-top: 9em;
  }

  .grid-colors {
    grid-template-columns: 1fr 1fr;
  }

  .template-info {
    grid-row-gap: .8em;
    flex-direction: column;
    align-items: flex-start;
  }

  .oak-sans {
    font-size: 2em;
  }

  .octane-typeface {
    font-size: 3em;
  }

  .grid-content {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2.5fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-splash {
    grid-template-columns: 1fr;
  }

  .grid-splash._3-columns {
    grid-template-columns: 1fr 1fr;
  }

  .background-video-splash {
    height: 44vw;
  }

  .text-info-copy {
    line-height: 1.6em;
  }

  .contact-para {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.3em;
  }

  h5 {
    font-size: 1.1em;
  }

  .logo.mobile {
    height: 4em;
  }

  .info-project {
    margin-top: 1em;
  }

  .info-project.top {
    margin-bottom: 0;
  }

  .image, .image.founder {
    width: 100%;
  }

  .link-footer {
    font-size: .8em;
  }

  .link-footer.yjstamp {
    color: var(--paragraphs);
    font-size: .6em;
  }

  .text-year {
    font-size: .8em;
  }

  .letter-contact {
    font-size: 28vw;
  }

  .link-contact {
    margin-top: 20px;
    font-size: 15px;
  }

  .block-field {
    grid-row-gap: 2em;
    flex-direction: column;
  }

  .info-contact {
    margin-top: 1.4em;
  }

  .grid-content {
    grid-column-gap: 0em;
    grid-row-gap: 3em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-splash._3-columns {
    grid-template-columns: 1fr;
  }

  .award-list {
    margin-top: -1em;
    font-size: 1.1em;
  }

  .contact-para {
    width: 90%;
  }

  .contact-subheading {
    color: var(--border);
    font-size: .8em;
  }
}

#w-node-_51f55c35-564f-f3e5-96da-749c327aa369-327aa364, #w-node-_51f55c35-564f-f3e5-96da-749c327aa376-327aa364, #w-node-ce3b6911-d1bf-5558-cf4b-ae2e5768d41e-c5a82edc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_102ceaa3-0849-6fc6-a8e0-e2e33c3efcc5-c5a82edc {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_102ceaa3-0849-6fc6-a8e0-e2e33c3efcc6-c5a82edc {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-f7a9ddf0-56cf-b24c-0ba3-7872d0fcef80-c5a82edc {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f7a9ddf0-56cf-b24c-0ba3-7872d0fcef81-c5a82edc {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-3b70c089 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-3b70c089 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-_5e5403c2-cc13-79aa-5ec3-562d105aa5fa-3b70c089 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_5e5403c2-cc13-79aa-5ec3-562d105aa5fb-3b70c089 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-d7b14f9f {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-d7b14f9f {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-b73f8b66-fa98-cae7-2b3f-c86727d5560a-d7b14f9f {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-b73f8b66-fa98-cae7-2b3f-c86727d5560b-d7b14f9f {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-40f036cd {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-40f036cd {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-_3bc8a7e3-c34b-27ce-71f3-9a8d77a98dce-40f036cd {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_3bc8a7e3-c34b-27ce-71f3-9a8d77a98dcf-40f036cd {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-694a4333 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-694a4333 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-66bd3d38 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-66bd3d38 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-ed0234ca {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-ed0234ca {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-10e39673 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-10e39673 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-eb241d2d-e121-fbfa-9dbb-3a9ec969442c-32b1a437 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-f1d99ec8-7d46-bbb4-3d5c-0a7ddc7930cc-32b1a437 {
  grid-area: 2 / 2 / 4 / 4;
}


@font-face {
  font-family: 'Oak Sans';
  src: url('../fonts/OakSans-ItalicVF.woff2') format('woff2');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Oak Sans';
  src: url('../fonts/OakSansVF.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Octane';
  src: url('../fonts/OctaneGX.ttf') format('truetype');
  font-weight: 0 100;
  font-style: normal;
  font-display: swap;
}