@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-SemiBold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url('../fonts/THICCCBOI-ExtraBold.woff2') format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Humane;
  src: url('../fonts/Humane-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Extralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Chillax;
  src: url('../fonts/Chillax-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lucette;
  src: url('../fonts/Lucette-Regularitalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Lucette;
  src: url('../fonts/Lucette-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #000;
  --paragraphs: #dad7d499;
  --light: #dad7d4;
  --border: #dad7d42e;
  --background: #dad7d412;
  --optional: #dad7d470;
  --black: white;
}

.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(--dark);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: 'Geist Sans', sans-serif;
  font-size: 20px;
  line-height: 153%;
  display: flex;
}

h1 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 400;
  line-height: 90%;
}

h2 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 48px;
  font-weight: 400;
  line-height: 95%;
}

h3 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
}

h4 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 400;
  line-height: 105%;
}

h5 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
}

h6 {
  color: var(--light);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 115%;
}

p {
  margin-bottom: 35px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 35px;
  padding-left: 36px;
}

li {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 7px;
}

strong {
  color: var(--light);
  font-weight: 400;
}

em {
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
}

blockquote {
  border-left: 1px solid var(--border);
  color: var(--light);
  margin-bottom: 35px;
  margin-left: 18px;
  padding: 0 24px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
}

figure {
  border-radius: 14px;
  margin-top: 48px;
  margin-bottom: 48px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background);
  text-align: center;
  margin-top: 0;
  padding: 18px 5%;
  font-size: 16px;
  line-height: 140%;
}

.link {
  box-shadow: inset 0 -1px 0 0 var(--light);
  color: var(--light);
  mix-blend-mode: normal;
  align-self: auto;
  padding-left: 0%;
  font-family: 'Geist Sans', sans-serif;
  font-size: 15px;
  font-weight: 100;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  box-shadow: inset 0 -26px 0 0 var(--light);
  color: var(--dark);
}

.rich-text-block {
  max-width: 800px;
  margin: 100px auto 65px;
}

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

.rich-text-block a:hover {
  box-shadow: inset 0 -26px 0 0 var(--light);
  color: var(--dark);
}

.navbar {
  color: var(--dark);
  background-color: #161616;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 1.7vw;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.block-navbar {
  color: #0fffab99;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.brand {
  padding: 10px 5px;
}

.logo {
  height: 24px;
}

.nav-link {
  color: #fff;
  text-transform: none;
  padding: 16px 22px 16px 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
}

.nav-link.w--current {
  color: var(--light);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border-radius: 0;
  font-family: 'Geist Sans', sans-serif;
  font-weight: 400;
}

.nav-menu {
  font-family: 'Geist Sans', sans-serif;
  font-size: 10px;
}

.hero-multiply {
  z-index: 100;
  background-color: var(--dark);
  mix-blend-mode: multiply;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: -15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-a {
  z-index: 100;
  background-color: var(--dark);
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding-top: 140px;
  display: flex;
  position: relative;
}

.section-hero-a {
  z-index: 100;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 200vh;
  padding-bottom: 100vh;
  padding-left: 1.7vw;
  padding-right: 1.7vw;
  display: flex;
  position: relative;
}

.heading-hero-a {
  margin-bottom: 0;
  font-size: 13vw;
  display: inline-block;
}

.heading-hero-a.multiply {
  color: #fff;
}

.paragraph-hero-a {
  color: var(--light);
  max-width: 20ch;
  margin-bottom: 0;
  font-size: 1.1vw;
  font-weight: 400;
  line-height: 153%;
  display: inline-block;
}

.hero-project {
  padding-left: 1.7vw;
  padding-right: 1.7vw;
  position: absolute;
  inset: 0%;
  transform: perspective(1000px);
}

.background-video {
  z-index: 0;
  background-color: var(--background);
  border-radius: 0;
  flex: 0 auto;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.block-project {
  display: none;
}

.lightbox-link-b:hover .block-project {
  opacity: 1;
}

.block-project.small {
  mix-blend-mode: normal;
  flex: 0 auto;
  padding: 85px 55px 50px;
}

.heading-project {
  color: #fff;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 20px;
}

.overflow {
  color: #fff;
  text-align: left;
  text-transform: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: 'Geist Sans', sans-serif;
  font-size: 15px;
  line-height: 100%;
  display: block;
  overflow: hidden;
}

.subheading-project {
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.lightbox-link-hero {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  text-decoration: none;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.rounding {
  background-color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  height: 15px;
  margin-top: 2vw;
  margin-bottom: -1px;
  margin-right: .6px;
}

.section {
  border: 1px #000;
  border-style: none solid;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  display: flex;
}

.grid-project-a {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto;
  margin-top: 1.2vw;
}

.lightbox-link-a {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 27vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.lightbox-link-a.large-a {
  height: 54vw;
}

.section-footer {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding: 20px 1.7vw;
  display: flex;
  overflow: hidden;
}

.footer {
  justify-content: center;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
  display: flex;
}

.link-footer {
  color: #dad7d466;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-footer:hover {
  color: var(--light);
}

.section-call-to-action {
  padding-left: 1.7vw;
  padding-right: 1.7vw;
}

.call-to-action {
  border-bottom: 1px solid var(--border);
  text-align: right;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 260px;
  padding-bottom: 30px;
  display: flex;
}

.heading-call-to-action {
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  line-height: 100%;
  display: inline-block;
}

.subheading-call-to-action {
  text-transform: none;
  text-shadow: 0 60px 0 var(--light);
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: inline-block;
}

.link-call-to-action {
  line-height: 100%;
  text-decoration: none;
  overflow: hidden;
}

.utility-page-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 110px 22px 50px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 0;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section-hero-b {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 1.7vw;
  display: flex;
}

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

.heading-hero-b {
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 7vw;
  display: inline-block;
}

.paragraph-hero-b {
  color: var(--light);
  text-align: center;
  text-transform: none;
  max-width: 650px;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  overflow: visible;
}

.grid-project-b {
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 17vw;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.lightbox-link-b {
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: filter 0.4s ease;
}

.grid-project-b .lightbox-link-b:hover {
  z-index: 10;
}

.lightbox-link-b.large-b {
  height: 100%;
}

.section-hero-c {
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 280px 1.7vw 1.2vw;
  display: flex;
}

.hero-c {
  grid-column-gap: 1.2vw;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-hero-c {
  margin-bottom: 0;
  font-size: 6.4vw;
  display: inline-block;
}

.heading-accent-c {
  text-transform: none;
  margin-bottom: .7vw;
  font-family: 'Geist Sans', sans-serif;
  font-size: 3.5vw;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  display: inline-block;
}

.grid-project-c {
  grid-column-gap: 1.2vw;
  grid-row-gap: 2.2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.lightbox-link {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.background-video-c {
  z-index: 0;
  background-color: var(--background);
  border-radius: 14px;
  width: 100%;
  height: 17vw;
  display: block;
}

.block-project-display {
  z-index: 20;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding-top: 16px;
  display: flex;
  position: relative;
}

.heading-project-display {
  text-shadow: 0 16px 0 var(--light);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 100%;
}

.subheading-project-display {
  color: var(--optional);
  text-transform: none;
  text-shadow: 0 16px 0 var(--optional);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.section-hero-d {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  padding: 0 1.7vw;
  display: flex;
  overflow: hidden;
}

.grid-project-d {
  grid-column-gap: 4vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  grid-template: ". . Area ." 9vw
                 ". . . ." 9vw
                 ". . . ." 9vw
                 ". . . ." 9vw
                 ". . . ."
                 ". . . Area-2"
                 / 1fr 1fr 1fr 1fr;
  width: 85vw;
  margin-top: 0;
}

.lightbox-link-d {
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5px -4px #000;
}

.hero-d {
  z-index: 100;
  mix-blend-mode: difference;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 1.7vw;
  padding-left: 1.7vw;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.heading-hero-d {
  margin-bottom: 0;
  font-size: 8vw;
  display: inline-block;
}

.section-top {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px 1.7vw 1.7vw;
  display: flex;
}

.heading-top {
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 2vw;
  font-weight: 400;
  display: inline-block;
}

.grid-work-a {
  grid-column-gap: 1.2vw;
  grid-row-gap: 2.2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.background-video-work-a {
  z-index: 0;
  background-color: var(--background);
  border-radius: 14px;
  width: 100%;
  height: 14vw;
  display: block;
}

.grid-work-b {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 130px;
}

.grid-work-c {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 180px;
  margin-bottom: 0;
}

.background-video-work-c {
  z-index: -50;
  background-color: var(--background);
  border-radius: 0;
  width: 100vw;
  height: 60vw;
  margin: auto;
  display: block;
  position: fixed;
  inset: 0%;
}

.lightbox-link-work-c {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.heading-work-c {
  color: #fff;
  text-shadow: 0 60px 0 var(--light);
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 100%;
}

.heading-work-c.text-block-6 {
  color: #ffffffe0;
  white-space: nowrap;
  font-size: 60px;
}

.subheading-work-c {
  color: #fff;
  text-transform: none;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 100;
}

.grid-contact-a {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: minmax(40vh, min-content);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: minmax(40vh, min-content);
}

.link-contact-a {
  z-index: 10;
  background-color: var(--background);
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-contact {
  z-index: 10;
  color: var(--light);
  text-align: right;
  max-width: 300px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 153%;
  position: relative;
}

.color-contact {
  z-index: -1;
  background-color: #e06c3e;
  position: absolute;
  inset: 0%;
}

.color-contact.color-a1 {
  background-color: #c74e4e;
}

.color-contact.color-a2 {
  background-color: #337993;
}

.color-contact.color-a3 {
  background-color: #d65245;
}

.color-contact.color-a4 {
  background-color: #006bdc;
}

.color-contact.color-a5 {
  background-color: #1a99ee;
}

.heading-contact-a {
  text-shadow: 0 60px 0 var(--light);
  margin-bottom: 0;
  font-size: 60px;
  line-height: 100%;
}

.text-span-accent-a {
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-size: 7.2vw;
  font-style: italic;
  font-weight: 400;
  line-height: 90%;
}

.text-span-accent-b {
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-size: 6vw;
  font-style: italic;
  font-weight: 400;
  line-height: 90%;
}

.text-span-accent-d {
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-size: 5vw;
  font-style: italic;
  font-weight: 400;
  line-height: 90%;
}

.form-block {
  width: 100%;
  max-width: 680px;
  margin-top: 50px;
  margin-bottom: 0;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--light);
  background-color: #0000;
  height: 56px;
  margin-bottom: 0;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

.text-field.margin {
  margin-bottom: 28px;
}

.form {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.textarea {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--border);
  color: var(--light);
  background-color: #0000;
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 300px;
  margin-bottom: 20px;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

.submit-button {
  border: 2px solid var(--light);
  color: var(--light);
  background-color: #0000;
  border-radius: 100px;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: var(--light);
  color: var(--dark);
}

.success-message {
  background-color: var(--background);
  border-radius: 14px;
  padding: 20px;
}

.text-message {
  color: var(--light);
  font-weight: 400;
}

.error-message {
  background-color: var(--background);
  border-radius: 14px;
  margin-top: 20px;
  padding: 20px;
}

.block-paragraph-hero-a {
  margin-top: .7vw;
  margin-bottom: auto;
  margin-left: 1.5vw;
  overflow: hidden;
}

.block-paragraph-hero-b {
  margin-top: 30px;
  overflow: hidden;
}

.contact-b {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 240px;
  margin-bottom: 170px;
  display: flex;
}

.grid-contact-c {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 250px;
  margin-bottom: 180px;
}

.link-contact-c {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.heading-contact-c {
  text-shadow: 0 130px 0 var(--light);
  margin-bottom: 0;
  font-size: 130px;
  line-height: 100%;
}

.image {
  border-radius: 0;
  width: 100%;
}

.grid-subsection {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px #000;
  border-bottom: 1px none var(--border);
  text-align: justify;
  grid-template-rows: auto;
  grid-template-columns: .5fr .25fr;
  place-items: start;
  margin-bottom: auto;
  padding-top: 0;
  padding-bottom: 100px;
}

.grid-subsection.border-none {
  border-bottom-style: none;
}

.grid-subsection.border-top {
  border-top: 1px solid var(--border);
}

.heading-subsection {
  text-transform: none;
  margin-bottom: 0;
  margin-right: 22px;
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
}

.subsection {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 800px;
}

.subsection.margin--35px {
  max-width: 500px;
  margin-bottom: -35px;
}

.clients-name, .award-name {
  margin-bottom: 15px;
}

.text-year {
  color: var(--optional);
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 115%;
}

.awards-years {
  margin-bottom: 70px;
}

.awards-years.margin-0 {
  margin-bottom: 0;
}

.collection-list-gallery {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.empty-state {
  background-color: var(--background);
  border-radius: 14px;
  padding: 20px;
}

.text-empty {
  color: var(--light);
  font-weight: 400;
}

.collection-list {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.link-block-blog {
  background-color: var(--background);
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 20vw;
  min-height: 320px;
  padding: 40px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-blog {
  z-index: 60;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.heading-blog {
  margin-bottom: 0;
}

.subheading-blog {
  text-transform: none;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
}

.text-year-blog {
  color: var(--optional);
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
}

.image-blog {
  z-index: 50;
  object-fit: cover;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.button {
  border: 2px solid var(--light);
  color: var(--light);
  background-color: #0000;
  border-radius: 100px;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--light);
  color: var(--dark);
}

.field-label {
  color: var(--light);
  text-align: left;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 115%;
}

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

.block-color {
  border: 1px solid var(--border);
  background-color: var(--dark);
  border-radius: 14px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 120px;
  padding: 20px;
  display: flex;
}

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

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

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

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

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

.text-color {
  color: var(--light);
  text-transform: none;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
}

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

.hex-color {
  opacity: .5;
  color: var(--light);
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 115%;
}

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

.block-buttons {
  grid-column-gap: 16px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-alternative {
  border: 2px solid var(--light);
  background-color: var(--light);
  color: var(--dark);
  border-radius: 100px;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), color .3s cubic-bezier(.25, .46, .45, .94);
}

.button-alternative:hover {
  color: var(--light);
  background-color: #0000;
}

.licensing {
  text-transform: none;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  line-height: 146%;
}

.grid-licensing {
  grid-column-gap: 1.2vw;
  grid-row-gap: 1.2vw;
  grid-template-rows: auto;
}

.image-licensing {
  border-radius: 14px;
  width: 100%;
}

.thicccboi {
  margin-bottom: 15px;
}

.playfair-display {
  text-transform: none;
  margin-bottom: 15px;
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
}

.grid-splash {
  grid-column-gap: 1.2vw;
  grid-row-gap: 4vw;
  grid-template-rows: auto;
  margin-bottom: 8vw;
}

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

.splash-subsection {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  padding-bottom: 40px;
}

.heading-splash {
  color: var(--optional);
  text-transform: none;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.link-splash {
  background-color: var(--background);
  border-radius: 14px;
  width: 100%;
  margin-bottom: 15px;
  padding: 7% 12%;
  transition: background-color .5s cubic-bezier(.23, 1, .32, 1);
  display: block;
}

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

.link-splash.color-b:hover {
  background-color: #c74e4e;
}

.link-splash.color-c:hover {
  background-color: #337993;
}

.link-splash.color-d:hover {
  background-color: #006bdc;
}

.heading-subsection-splash {
  text-transform: none;
  margin-bottom: 0;
  font-family: 'Geist Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
}

.background-video-splash {
  z-index: 50;
  border-radius: 10px;
  height: 21vw;
}

.image-splash {
  border-radius: 10px;
  width: 100%;
}

.body {
  background-color: #fff;
  background-image: url('../images/IMG_7244.jpg');
  background-position: 0 0;
  background-size: cover;
}

.paragraph {
  color: #fff9;
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 20px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 153%;
}

.bold-text {
  font-family: 'Geist Sans', sans-serif;
  font-size: 40px;
}

.body-2 {
  background-color: var(--dark);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-image: url('../images/IMG_7229.jpg');
  background-position: 50%;
  background-size: cover;
  background-clip: padding-box;
  border-left: 1px #000;
  border-radius: 0;
}

.text-block {
  text-shadow: none;
  font-family: 'Geist Sans', sans-serif;
  font-weight: 100;
}

.title-director {
  clear: none;
  color: #fff;
  text-align: left;
  white-space: normal;
  mix-blend-mode: normal;
  object-fit: fill;
  background-color: #fff0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 100;
  display: block;
}

.title-director.text-block-6 {
  color: #ffffffe0;
  text-shadow: 0 0 6px var(--black);
}

.image-2 {
  min-width: 100%;
  min-height: auto;
  max-height: 99.8392%;
  display: inline;
}

.link-2 {
  transform: translate(0);
}

.paragraph-2 {
  color: var(--paragraphs);
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-size: 13px;
  font-weight: 100;
}

.link-3 {
  color: var(--light);
  border-radius: 1px;
}

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

.text-block-2 {
  color: #fff;
  text-align: left;
  justify-content: space-between;
  align-items: flex-end;
  width: 60%;
  margin-top: 0;
  padding-top: 60px;
  padding-left: 478px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 25px;
  font-weight: 200;
  line-height: 200%;
  display: flex;
  position: static;
}

.bold-text-2 {
  text-decoration: none;
}

.columns {
  clear: none;
}

.text-block-3 {
  padding-top: 9px;
  padding-left: 480px;
}

.grid {
  grid-template-columns: .25fr 1fr;
  grid-template-areas: "Area Area-2"
                       "Area Area-2";
}

.text-block-4 {
  text-align: center;
  padding-top: 171px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 100px;
  font-weight: 100;
}

.text-block-5 {
  text-align: center;
  padding-right: 1223px;
}

.grid-2 {
  grid-template-rows: auto auto;
  grid-template-columns: 102fr;
}

.grid-3 {
  grid-row-gap: 16px;
  text-align: center;
  grid-template: "Area" 1fr
                 "Area-2"
                 "."
                 "."
                 / 1fr 1fr 1fr;
  grid-auto-flow: row;
  place-content: center;
  place-items: center;
  padding-top: 84px;
  padding-left: 42px;
  position: relative;
}

.heading {
  text-align: left;
  font-family: 'Geist Sans', sans-serif;
  font-weight: 100;
}

.text-block-6 {
  color: #110dffe0;
  text-align: left;
  text-transform: lowercase;
  white-space: normal;
  mix-blend-mode: normal;
  background-color: #0000;
  border: 1px solid #ff1a1a;
  padding-top: 1%;
  padding-left: 0%;
  padding-right: 85%;
  font-family: 'Geist Sans', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: block;
  overflow: visible;
}

.text-span-2 {
  text-align: left;
  font-size: 50px;
}

.bold-text-3 {
  font-family: 'Geist Sans', sans-serif;
}

.subscript {
  text-align: left;
  left: auto;
  right: 0;
}

.link-4 {
  color: var(--light);
  letter-spacing: 0;
  column-count: 0;
  white-space: normal;
  flex: 0 auto;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  overflow: visible;
}

.subscript-2, .subscript-3 {
  text-align: center;
}

.text-span-3 {
  direction: ltr;
  color: #1a18b6;
  text-transform: none;
  white-space: normal;
  overflow: visible;
}

.bold-text-4 {
  text-decoration: underline;
}

.bold-text-5 {
  color: #321bff;
  text-align: left;
  mix-blend-mode: hard-light;
  font-family: 'Geist Sans', sans-serif;
  font-weight: 100;
}

.text-block-7 {
  text-align: left;
  border-left: 1px solid #fdfdfd;
  margin-top: 19px;
  margin-right: 0;
  padding-left: 22px;
}

.bold-text-6 {
  color: #dad7d4;
}

.paragraph-3 {
  margin-top: 462px;
  margin-right: 220px;
  padding-left: 220px;
}

.paragraph-4 {
  text-transform: none;
  margin-top: 2%;
  margin-bottom: 0;
  padding-left: 0%;
  padding-right: 20%;
  font-family: 'Geist Sans', sans-serif;
  font-size: 30px;
  font-weight: 100;
}

.div-block {
  width: auto;
  margin-top: 76px;
  padding-left: 40px;
}

.body-3 {
  background-color: var(--black);
  color: #0009;
}

.heading-2 {
  background-color: var(--black);
  opacity: 1;
  color: #000;
  text-align: left;
  text-transform: lowercase;
  white-space: normal;
  word-break: keep-all;
  width: 300px;
  margin-bottom: 0;
  margin-left: 35%;
  padding-bottom: 29px;
  padding-left: 0;
  padding-right: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.text-span-4 {
  font-size: 30px;
}

.subscript-4 {
  text-align: right;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
}

.text-span-5 {
  font-size: 20px;
}

.text-span-6 {
  color: #696969;
  font-size: 7px;
  line-height: 50%;
}

.text-span-7 {
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-weight: 400;
}

.text-span-8 {
  font-weight: 400;
}

.text-span-9 {
  color: #a0a0a0;
  font-weight: 400;
}

.text-span-10 {
  color: #000;
  text-decoration: underline;
  display: block;
}

.text-span-11 {
  color: #fd0004;
}

.text-span-12 {
  color: #ff0b0f;
}

.text-span-13 {
  font-size: 10px;
}

.text-span-14 {
  color: #b6b6b6;
  letter-spacing: 0;
  text-indent: -5px;
  column-count: 0;
  font-size: 12px;
  line-height: 0%;
}

.text-span-15 {
  font-size: 15px;
}

.link-5 {
  color: #000;
}

.div-block-2 {
  background-color: #fff0;
  margin-top: 40px;
  padding-bottom: 40px;
}

.text-block-8 {
  color: #0009;
}

.text-block-9 {
  color: var(--dark);
  text-transform: lowercase;
}

.heading-3 {
  color: var(--dark);
  text-transform: none;
  font-family: 'Geist Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
}

.div-block-3 {
  text-decoration: none;
}

.grid-project-d-copy {
  grid-column-gap: 4vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  grid-template: ". . Area" 9vw
                 ". . ." 9vw
                 ". . ."
                 ". . ."
                 ". . ."
                 / 1fr 1fr 1fr 1fr;
  width: 85vw;
  margin-top: 0;
}

.grid-project-d-copy-fcn {
  grid-column-gap: 4vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  grid-template: ". . Area" 9vw
                 ". . ." 9vw
                 ". . ."
                 ". . ."
                 / 1fr 1fr 1fr 1fr;
  width: 85vw;
  margin-top: 0;
}

.block-project-copy {
  z-index: 20;
  background-image: linear-gradient(#0000, #000000b3);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 95px 40px 35px;
  display: flex;
  position: absolute;
}

.block-project-copy.small {
  mix-blend-mode: normal;
  background-image: linear-gradient(#0000, #0000);
  flex: 0 auto;
  padding: 0 55px 50px;
}

.heading-2-copy {
  background-color: var(--background);
  opacity: 1;
  color: #000;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}

.div-block-2-fcn {
  margin-top: 140px;
}

.div-block-2-final-word {
  margin-top: 0;
}

.heading-2-copy {
  opacity: 1;
  color: #000;
  text-transform: none;
  background-color: #fff;
  margin-bottom: 0;
  padding-bottom: 29px;
  padding-left: 322px;
  padding-right: 385px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.bold-text-7, .bold-text-8, .bold-text-9 {
  color: var(--dark);
}

.heading-2-cinematic {
  opacity: 1;
  color: #000;
  text-align: justify;
  text-transform: none;
  background-color: #fff;
  margin-top: 100px;
  margin-bottom: 0;
  padding-bottom: 10px;
  padding-left: 600px;
  padding-right: 600px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

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

.heading-2-fcn {
  opacity: 1;
  color: #000;
  text-transform: none;
  background-color: #fff;
  margin-bottom: 0;
  padding-bottom: 40px;
  padding-left: 600px;
  padding-right: 600px;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

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

.div-block-2-breitling {
  margin-top: 100px;
}

.heading-2-selected {
  opacity: 1;
  color: #000;
  text-transform: none;
  background-color: #fff0;
  width: 200px;
  margin-bottom: 0;
  margin-left: 20%;
  padding-bottom: 29px;
  padding-left: 0;
  padding-right: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.grid-project-d-cinematic {
  grid-column-gap: 4vw;
  grid-row-gap: 3vw;
  perspective: 1000px;
  background-color: #fff;
  grid-template: ". . Area" 9vw
                 ". . ." 9vw
                 ". . ." 9vw
                 ". . ." 9vw
                 / 1fr 1fr 1fr 1fr;
  width: 85vw;
  margin-top: 0;
}

.navbar-port {
  background-color: var(--black);
  color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 1.7vw;
  font-family: 'Geist Sans', sans-serif;
  font-size: 12px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.text-block-9-copy {
  color: var(--dark);
  text-transform: lowercase;
  background-color: #ebdfdf;
}

.text-block-9-dd {
  color: var(--black);
  text-transform: lowercase;
}

.navi-cd {
  opacity: 1;
  color: #000;
  text-align: center;
  text-transform: lowercase;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: 'Geist Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.div-block-2-navi {
  margin-top: 0;
}

.bold-text-12, .bold-text-13, .bold-text-14 {
  color: var(--dark);
  text-transform: none;
}

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

.bold-text-16, .bold-text-17, .bold-text-18 {
  color: var(--dark);
  text-transform: none;
}

.div-block-4 {
  margin-top: 47px;
}

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  .rich-text-block {
    margin-top: 80px;
    margin-bottom: 45px;
  }

  .nav-link {
    font-size: 12px;
  }

  .section-hero-a {
    min-height: 170vh;
  }

  .paragraph-hero-a {
    display: none;
  }

  .block-project {
    padding: 85px 55px 50px;
  }

  .block-project.small {
    padding: 50px 45px 45px;
  }

  .call-to-action {
    padding-top: 180px;
  }

  .heading-call-to-action {
    font-size: 50px;
  }

  .subheading-call-to-action {
    text-shadow: 0 50px 0 var(--light);
    font-size: 50px;
  }

  .section-hero-b {
    padding-top: 220px;
    padding-bottom: 180px;
  }

  .lightbox-link-b {
    height: 25vw;
  }

  .section-hero-c {
    padding-top: 220px;
  }

  .section-top {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .grid-work-a {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .background-video-work-a {
    height: 17vw;
  }

  .grid-work-b {
    grid-template-columns: 1fr 1fr;
  }

  .grid-work-c {
    margin-top: 220px;
    margin-bottom: 140px;
  }

  .heading-work-c {
    text-shadow: 0 50px 0 var(--light);
    font-family: 'Geist Sans', sans-serif;
    font-size: 50px;
  }

  .link-contact-a {
    padding: 30px;
  }

  .heading-contact-a {
    text-shadow: 0 50px 0 var(--light);
    font-size: 50px;
  }

  .contact-b, .grid-contact-c {
    margin-top: 220px;
    margin-bottom: 140px;
  }

  .heading-contact-c {
    text-shadow: 0 90px 0 var(--light);
    font-size: 90px;
  }

  .grid-subsection {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .link-block-blog {
    padding: 30px;
  }

  .grid-colors {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .block-buttons {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .grid-splash {
    margin-bottom: 10vw;
  }

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

  .splash-subsection {
    padding-bottom: 38px;
  }

  .paragraph {
    font-size: 12px;
  }

  .grid-3 {
    padding-left: 16px;
  }

  .text-block-6 {
    padding-top: 2%;
    padding-left: 0%;
    padding-right: 10%;
    font-size: 40px;
  }

  .paragraph-4 {
    width: auto;
  }

  .div-block {
    width: 95%;
  }

  .heading-2 {
    padding-left: 10px;
    padding-right: 40px;
  }

  .block-project-copy {
    padding: 85px 55px 50px;
  }

  .block-project-copy.small {
    padding: 50px 45px 45px;
  }

  .heading-2-copy, .heading-2-cinematic, .heading-2-fcn, .heading-2-selected, .navi-cd {
    padding-left: 10px;
    padding-right: 40px;
  }
}

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

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 23px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .rich-text-block {
    margin-top: 60px;
    margin-bottom: 25px;
  }

  .navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-link {
    text-transform: none;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 200;
  }

  .nav-menu {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: #000000bf;
    width: 100%;
    height: 100vh;
    padding: 15px;
    position: fixed;
    inset: 0%;
  }

  .menu-button {
    z-index: 200;
    color: var(--light);
    border-radius: 50%;
    padding: 0;
    font-size: 24px;
    line-height: 100%;
  }

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

  .icon-menu {
    width: 20px;
  }

  .block-icon-menu {
    background-color: var(--background);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
  }

  .section-hero-a, .hero-project, .section {
    padding-left: 2.7vw;
    padding-right: 2.7vw;
  }

  .grid-project-a {
    grid-template-columns: 1fr;
  }

  .lightbox-link-a {
    height: 54vw;
  }

  .section-footer {
    flex-direction: column;
    align-items: flex-end;
    padding-left: 2.7vw;
    padding-right: 2.7vw;
  }

  .section-call-to-action {
    padding-left: 2.7vw;
    padding-right: 2.7vw;
  }

  .call-to-action {
    padding-top: 160px;
  }

  .heading-call-to-action {
    font-size: 44px;
  }

  .subheading-call-to-action {
    text-shadow: 0 44px 0 var(--light);
    font-size: 44px;
  }

  .section-hero-b {
    padding: 190px 2.7vw 150px;
  }

  .heading-hero-b {
    font-size: 9vw;
  }

  .paragraph-hero-b {
    max-width: 410px;
  }

  .grid-project-b {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .grid-project-b > * {
    grid-area: span 1 / span 1 / span 1 / span 1 !important;
  }

  .lightbox-link-b {
    display: none !important;
  }

  .lightbox-link-b.large-b,
  .lightbox-link-b[data-solo] {
    display: block !important;
    height: 56vw !important;
  }

  .lightbox-link-b, .lightbox-link-b.large-b {
    cursor: auto !important;
  }

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

  .block-project.small {
    display: none !important;
  }
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 0 14px !important;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
  }

  .heading-project {
    font-size: 14px !important;
  }

  .section-hero-c {
    padding: 190px 2.7vw 150px;
  }

  .hero-c {
    grid-row-gap: 5px;
    flex-direction: column;
    align-items: center;
  }

  .heading-hero-c {
    font-size: 9vw;
  }

  .heading-accent-c {
    margin-bottom: 1.7vw;
    font-size: 5vw;
  }

  .grid-project-c {
    grid-row-gap: 4vw;
    grid-template-columns: 1fr;
  }

  .background-video-c {
    height: 54vw;
  }

  .grid-project-d {
    grid-row-gap: 6vw;
    grid-template-rows: 30vw 30vw 30vw;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 6vw;
  }

  .hero-d {
    padding-bottom: 2.7vw;
    padding-left: 2.7vw;
  }

  .heading-hero-d {
    font-size: 10vw;
  }

  .section-top {
    padding: 60px 2.7vw 2.7vw;
  }

  .grid-work-a {
    grid-row-gap: 4vw;
    grid-template-columns: 1fr;
  }

  .background-video-work-a {
    height: 54vw;
  }

  .grid-work-b {
    grid-template-columns: 1fr;
    margin-top: 110px;
  }

  .grid-work-c {
    margin-top: 190px;
    margin-bottom: 110px;
  }

  .background-video-work-c {
    display: none;
  }

  .lightbox-link-work-c {
    grid-row-gap: 4px;
    border-top-style: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .heading-work-c {
    text-shadow: none;
    font-size: 8vw;
  }

  .grid-contact-a {
    grid-template-columns: 1fr;
  }

  .heading-contact-a {
    text-shadow: 0 40px 0 var(--light);
    font-size: 40px;
  }

  .text-span-accent-d {
    font-size: 7vw;
  }

  .block-paragraph-hero-b {
    margin-top: 20px;
  }

  .contact-b, .grid-contact-c {
    margin-top: 190px;
    margin-bottom: 110px;
  }

  .link-contact-c {
    border-top-style: none;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .heading-contact-c {
    text-shadow: none;
    font-size: 13vw;
  }

  .grid-subsection {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 80px;
  }

  .heading-subsection {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .awards-years {
    margin-bottom: 50px;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .link-block-blog {
    height: 57vw;
  }

  .grid-splash {
    grid-row-gap: 6vw;
    grid-template-columns: 1fr;
    margin-bottom: 18vw;
  }

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

  .splash-subsection {
    padding-bottom: 35px;
  }

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

  .title-director {
    font-size: 30px;
  }

  .grid-3 {
    padding-top: 100px;
  }

  .text-block-6 {
    text-align: left;
    padding-left: 0%;
    padding-right: 5%;
    font-size: 30px;
    overflow: scroll;
  }

  .div-block {
    width: 95%;
  }

  .grid-project-d-copy, .grid-project-d-copy-fcn, .grid-project-d-cinematic {
    grid-row-gap: 6vw;
    grid-template-rows: 30vw 30vw 30vw;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 6vw;
  }

  .navbar-port, .navbar-copy {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  .rich-text-block {
    margin-top: 45px;
    margin-bottom: 10px;
  }

  .nav-link {
    font-size: 60px;
    font-weight: 400;
  }

  .block-project {
    padding: 45px 45px 45px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-end;
  }

  .call-to-action {
    padding-top: 130px;
  }

  .heading-call-to-action {
    font-size: 36px;
  }

  .subheading-call-to-action {
    text-shadow: 0 36px 0 var(--light);
    font-size: 36px;
  }

  .section-hero-b, .section-hero-c {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .grid-project-c {
    grid-row-gap: 6vw;
  }

  .block-project-display {
    padding-top: 12px;
  }

  .section-hero-d {
    padding-top: 0;
  }

  .section-top {
    padding-top: 60px;
  }

  .grid-work-a {
    grid-row-gap: 6vw;
  }

  .grid-work-c {
    margin-top: 150px;
    margin-bottom: 100px;
  }

  .subheading-work-c {
    font-style: italic;
  }

  .link-contact-a {
    padding: 20px;
  }

  .heading-contact-a {
    text-shadow: 0 36px 0 var(--light);
    font-size: 36px;
  }

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

  .contact-b, .grid-contact-c {
    margin-top: 150px;
    margin-bottom: 100px;
  }

  .grid-subsection {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .link-block-blog {
    padding: 20px;
  }

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

  .paragraph {
    margin-bottom: 0;
  }

  .title-director {
    font-size: 15px;
  }

  .paragraph-2 {
    font-size: 10px;
  }

  .grid-3 {
    grid-template: "Area Area"
                   "Area-2 ." 0
                   ". ." minmax(auto, 1fr)
                   / 1.75fr .25fr;
    padding-top: 100px;
    padding-left: 15px;
    font-size: 25px;
  }

  .text-block-6 {
    padding-left: 0%;
    padding-right: 10%;
    font-size: 24px;
  }

  .paragraph-4 {
    font-size: 20px;
  }

  .div-block {
    width: 95%;
  }

  .heading-2 {
    margin-top: 40px;
    margin-left: 0%;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 0;
  }

  .subscript-4 {
    font-size: 10px;
  }

  .div-block-2 {
    margin-top: 22px;
  }

  .text-block-9 {
    align-self: flex-start;
  }

  .grid-project-d-copy {
    grid-template-rows: 30vw 30vw;
  }

  .block-project-copy {
    padding: 45px 45px 45px;
  }

  .div-block-2-fcn, .div-block-2-final-word {
    margin-top: 22px;
  }

  .heading-2-copy {
    padding-bottom: 0;
  }

  .heading-2-cinematic {
    margin-top: 40px;
    padding-bottom: 0;
    padding-left: 100px;
  }

  .heading-2-fcn {
    padding-bottom: 0;
    padding-left: 100px;
  }

  .div-block-2-breitling {
    margin-top: 22px;
  }

  .heading-2-selected {
    padding-bottom: 0;
    padding-left: 100px;
  }

  .text-block-9-copy, .text-block-9-dd {
    align-self: flex-start;
  }

  .navi-cd {
    margin-top: 40px;
    padding-bottom: 0;
    padding-left: 100px;
  }

  .div-block-2-navi {
    margin-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .grid-project-b .lightbox-link-b.large-b {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }
}

#w-node-a9080cb2-a61f-412a-faf7-cc57d29899ad-38e44048 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1be9c76f-07b5-5927-ebc4-c362645a1dfe-38e44048, #w-node-_0e346a3d-9491-b87e-7deb-fa915836c146-38e44048, #w-node-dc3543dc-fd54-7d59-49a8-57920c2243d4-38e44048, #w-node-a4748328-bff4-9358-743b-0def78c36eca-38e44048, #w-node-bb2cf55c-e8f0-7357-cfbf-a2bf3a70c926-38e44048, #w-node-bb2cf55c-e8f0-7357-cfbf-a2bf3a70c92b-38e44048, #w-node-bb2cf55c-e8f0-7357-cfbf-a2bf3a70c930-38e44048, #w-node-f209a766-427f-6466-f253-295e8d627b71-38e44048, #w-node-f209a766-427f-6466-f253-295e8d627b76-38e44048, #w-node-f209a766-427f-6466-f253-295e8d627b7b-38e44048, #w-node-_2d80628d-59ee-7fda-fc30-4101616db913-38e44048, #w-node-_2d80628d-59ee-7fda-fc30-4101616db918-38e44048, #w-node-_2d80628d-59ee-7fda-fc30-4101616db91d-38e44048, #w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1c-9ee4405f, #w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1e-9ee4405f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a97b1431-0484-10b7-714c-f726aa8e9cad-f6e44061, #w-node-_4844f3ff-2eaa-3cfd-bb2e-03ba353a888a-f6e44061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4c2a7df1-9127-699e-99ec-01c3873be385-f6e44061 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-cc36c78b-2a1f-e560-b600-3de85fecc46d-f6e44061, #w-node-_07d5d39b-779d-32fb-7a86-bd1b213db760-f6e44061, #w-node-_30f67308-ba0c-72d9-44da-f0de1c76085b-f6e44061, #Message.w-node-_88912c8a-02f7-3b68-0362-874db72f2eac-7ce44062 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a9f8b697-474a-8107-d630-0a8f61eab32d-7ce44062 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-d048fd58-785a-dca2-3e05-6cca01bf6b05-dde44063, #w-node-_9b021289-3794-bd5b-a80f-d074652f6079-dde44063, #w-node-_930066c4-c24a-dfef-5fcd-6329351a99ee-dde44063, #w-node-_27b362a4-0b2a-7c83-b637-a780aed1e490-dde44063, #w-node-e8810be6-70d0-7703-6b93-75d25bc7bd52-dde44063, #w-node-_9b20764b-8ec0-853f-7e4c-e2420149cf5a-dde44063, #w-node-_3ede72ac-b6ba-1362-f52c-2f0d2fdd2877-7de44065, #w-node-bc104ed2-c93b-bce7-6a52-3c9fe76ad2fe-7de44065 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6632fef4-7f8f-f7c3-a7df-8ba86102dc11-7de44065 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7c051bb0-b778-5b84-4f74-094b17f5e0e0-7de44065, #w-node-_3fcc1eb9-29b4-39da-cfe9-452798a4d771-7de44065 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_313a7cb7-a5ee-fa3c-1652-ccc1fcaa9d1b-7de44065 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4fe79d45-bbc6-0bcc-1a2f-0a421bffc7a2-7de44065, #w-node-f3774e81-3559-9ab1-633f-6a5a413343f6-7de44065 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_31ffc16a-47e0-6392-3fba-e2feb65364eb-7de44065 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-39e44067, #w-node-_40caf44d-10e7-d556-c316-013028bc3165-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e07-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e10-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e19-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e2b-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e22-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e34-39e44067, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e3d-39e44067, #w-node-_3ee876da-52ea-c215-a24b-c7e9a4dd54d0-39e44067, #w-node-d0d36105-ef75-4f49-2108-08f0a158fe44-39e44067 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-5be44068 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-5be44068 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-5be44068 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-5be44068 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-5be44068 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-5be44068 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_84403da5-a2ae-76b1-0847-995d79e678a2-5be44068 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_84403da5-a2ae-76b1-0847-995d79e678ab-5be44068 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_84403da5-a2ae-76b1-0847-995d79e678b4-5be44068 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362db-5be44068 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362e4-5be44068 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362ed-5be44068 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-e2ab6646-a870-8933-61da-8d8413cf4751-3ce44069 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1c-3ce44069, #w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1e-3ce44069, #w-node-fbfa68a0-810d-f87e-f177-09f0a66afc78-3ce44069, #w-node-_8b9612fc-0f83-8790-9fe3-30bc2509e693-3ce44069, #w-node-f556a1c0-18db-3729-019d-e297347a075b-3ce44069, #w-node-_82451860-e9c2-e9f2-23fa-9c900d928468-3ce44069, #w-node-_24df7823-6721-ffe2-e26b-ef45112db1c0-3ce44069, #w-node-_89f991ff-b2b2-8ccb-0ef7-a247e02c57a9-3ce44069, #w-node-_7143ef8e-2667-b115-ec75-e17e0d32af52-3ce44069, #w-node-_5e319da0-5ad6-02c4-cc69-938bb3290b82-3ce44069, #w-node-_5e319da0-5ad6-02c4-cc69-938bb3290b84-3ce44069 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_84d3752b-e554-2ced-247a-1099ae7d5cee-3ce44069, #w-node-_84d3752b-e554-2ced-247a-1099ae7d5cef-3ce44069 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fecd301d-111e-b7a0-b2e6-312604bbb05e-3ce44069, #w-node-fecd301d-111e-b7a0-b2e6-312604bbb060-3ce44069, #w-node-_30d365f0-be85-02db-fac5-02fcd81e9c1f-abe4406a, #w-node-e2ab6646-a870-8933-61da-8d8413cf4751-abe4406a, #w-node-_156fa144-0993-a101-8d12-0c8593f4b70b-abe4406a, #w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1c-abe4406a, #w-node-_515e0691-5a13-fe31-d3d7-357b0ad94d1e-abe4406a, #w-node-_5efd828c-1e0e-1df4-7c43-85564a772e79-abe4406a, #w-node-e83800b4-5f73-e451-82e1-596cc4e689e5-abe4406a, #w-node-_0be76481-5f14-8038-7aa9-00283824fec1-abe4406a, #w-node-_5a47de7f-0433-e29a-0872-dc3f5c3a612e-abe4406a, #w-node-d139b577-a797-eeb4-7d15-335c46bc5fbe-abe4406a, #w-node-_314b78cc-ea5f-3bd7-d945-550390aad8a9-abe4406a, #w-node-_5e319da0-5ad6-02c4-cc69-938bb3290b82-abe4406a, #w-node-_5e319da0-5ad6-02c4-cc69-938bb3290b84-abe4406a, #w-node-d3d22f85-b97e-416e-af30-d4a53d49342e-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493438-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493441-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d49344a-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493453-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d49345c-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493465-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d49346e-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493477-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493480-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493489-28e4406d, #w-node-d3d22f85-b97e-416e-af30-d4a53d493492-28e4406d, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dac5-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dace-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dad7-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dae0-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dae9-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141daf2-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141dafb-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141db04-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141db0d-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141db16-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141db1f-5ce44080, #w-node-f518a90a-7d78-ef26-c445-ecb1f141db28-5ce44080, #w-node-_4b769980-3690-8eca-ecb3-87065054ad36-a6e44092, #w-node-b1468b14-8acf-5eb1-485c-f8a454472685-a6e44092, #w-node-e3e1ea8f-7790-b8fd-5bda-8b1131cfe166-a6e44092, #w-node-d282b8db-4bb8-a218-9076-92d43498415e-a6e44092, #w-node-d8aaa59c-3f99-862b-8a93-389fa259e439-a6e44092, #w-node-e0bd64a1-1ad6-efb9-3dd1-633d87f26af9-a6e44092, #w-node-_4b769980-3690-8eca-ecb3-87065054ad36-c40147d0, #w-node-b1468b14-8acf-5eb1-485c-f8a454472685-c40147d0, #w-node-e3e1ea8f-7790-b8fd-5bda-8b1131cfe166-c40147d0, #w-node-d282b8db-4bb8-a218-9076-92d43498415e-c40147d0, #w-node-d8aaa59c-3f99-862b-8a93-389fa259e439-c40147d0, #w-node-e0bd64a1-1ad6-efb9-3dd1-633d87f26af9-c40147d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-89b3af32 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-89b3af32 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-89b3af32 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-89b3af32 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-89b3af32 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-89b3af32 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-018e5db8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-018e5db8 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-018e5db8 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-018e5db8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-018e5db8 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-018e5db8 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-a97ac71d {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-a97ac71d {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-a97ac71d {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-a97ac71d {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-a97ac71d {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-a97ac71d {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-43a6640a {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e07-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e10-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e19-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e2b-43a6640a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4e22-43a6640a {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4e34-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e3d-43a6640a, #w-node-_3ee876da-52ea-c215-a24b-c7e9a4dd54d0-43a6640a, #w-node-d0d36105-ef75-4f49-2108-08f0a158fe44-43a6640a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-da7230aa {
  grid-area: 1 / 1 / 4 / 3;
}

#w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e954-da7230aa {
  grid-area: 3 / 3 / 5 / 5;
}

#w-node-_9cd4ce6b-7e1b-6120-e8db-fc4db2f7fd8f-da7230aa {
  grid-area: 5 / 1 / 7 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-da7230aa {
  grid-area: 5 / 3 / 7 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-da7230aa {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-da7230aa {
  grid-area: 1 / 3 / 3 / 5;
}

#w-node-_30aca526-23c7-0149-cb5d-429a996f995a-da7230aa {
  grid-area: 3 / 3 / 5 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-da7230aa {
  grid-area: 3 / 1 / 5 / 3;
}

#w-node-b9debc44-689e-53c0-f322-ba941048628a-da7230aa {
  grid-area: 1 / 1 / 4 / 3;
}

#w-node-b9debc44-689e-53c0-f322-ba9410486281-da7230aa {
  grid-area: 2 / 3 / 4 / 4;
}

#w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-da7230aa {
  grid-area: 1 / 3 / 4 / 4;
}

#w-node-_1a3ce17b-2de9-9186-eb09-704de5233ee9-da7230aa {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_29140ae6-b94e-d3bb-150f-fa91ed14ea44-da7230aa {
  grid-area: 1 / 4 / 4 / 4;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e6120c-da7230aa {
  grid-area: 5 / 1 / 7 / 3;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e61215-da7230aa {
  grid-area: 5 / 3 / 7 / 5;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e6121e-da7230aa {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e61227-da7230aa {
  grid-area: 1 / 3 / 3 / 5;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e61230-da7230aa {
  grid-area: 3 / 3 / 5 / 5;
}

#w-node-_3b15c32b-8202-eeef-5dbe-142409e61239-da7230aa {
  grid-area: 3 / 1 / 5 / 3;
}

#w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-da7230aa {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-da7230aa {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-6d0e7999 {
  grid-area: 1 / 1 / 4 / 3;
}

#w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e954-6d0e7999 {
  grid-area: 3 / 3 / 5 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-6d0e7999 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_40caf44d-10e7-d556-c316-013028bc3165-6d0e7999 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-6d0e7999 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-_30aca526-23c7-0149-cb5d-429a996f995a-6d0e7999 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-6d0e7999 {
  grid-area: 5 / 3 / 6 / 4;
}

#w-node-_9cd4ce6b-7e1b-6120-e8db-fc4db2f7fd8f-6d0e7999 {
  grid-area: 3 / 2 / 5 / 4;
}

#w-node-b9debc44-689e-53c0-f322-ba941048628a-6d0e7999 {
  grid-area: 2 / 3 / 4 / 4;
}

#w-node-b9debc44-689e-53c0-f322-ba9410486281-6d0e7999 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_1a3ce17b-2de9-9186-eb09-704de5233ee9-6d0e7999 {
  grid-area: 1 / 1 / 6 / 3;
}

#w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-6d0e7999 {
  grid-area: 2 / 3 / 4 / 4;
}

#w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-6d0e7999 {
  grid-area: 2 / 3 / 4 / 5;
}

#w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-6d0e7999 {
  grid-area: 1 / 1 / 3 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-cc36c78b-2a1f-e560-b600-3de85fecc46d-f6e44061, #w-node-_07d5d39b-779d-32fb-7a86-bd1b213db760-f6e44061 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_30f67308-ba0c-72d9-44da-f0de1c76085b-f6e44061 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_84d3752b-e554-2ced-247a-1099ae7d5cee-3ce44069, #w-node-_84d3752b-e554-2ced-247a-1099ae7d5cef-3ce44069 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-adizero-boston-13-85e44066, #w-node-_08e79d64-6c90-ec31-f258-5b2f0c8a7d19-85e44066, #w-node-_12d2c50e-4cc5-a041-7eaf-3e797dd04c83-85e44066, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-85e44066, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e07-85e44066, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-85e44066, #w-node-ea195915-119c-042a-a386-9f32a77e7b2d-85e44066, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e22-85e44066, #w-node-a97b1431-0484-10b7-714c-f726aa8e9cad-f6e44061, #w-node-_4844f3ff-2eaa-3cfd-bb2e-03ba353a888a-f6e44061, #w-node-_4c2a7df1-9127-699e-99ec-01c3873be385-f6e44061, #w-node-cc36c78b-2a1f-e560-b600-3de85fecc46d-f6e44061, #w-node-_07d5d39b-779d-32fb-7a86-bd1b213db760-f6e44061, #w-node-_30f67308-ba0c-72d9-44da-f0de1c76085b-f6e44061, #w-node-_6632fef4-7f8f-f7c3-a7df-8ba86102dc11-7de44065, #w-node-_313a7cb7-a5ee-fa3c-1652-ccc1fcaa9d1b-7de44065, #w-node-_31ffc16a-47e0-6392-3fba-e2feb65364eb-7de44065 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-5be44068 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-5be44068 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-5be44068 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-5be44068 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-5be44068 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-5be44068 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_84403da5-a2ae-76b1-0847-995d79e678a2-5be44068 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_84403da5-a2ae-76b1-0847-995d79e678ab-5be44068 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_84403da5-a2ae-76b1-0847-995d79e678b4-5be44068 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362db-5be44068 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362e4-5be44068 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-d65ee5f3-ed7b-56f0-5e47-6447bcb362ed-5be44068 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-89b3af32 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-89b3af32 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-89b3af32 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-89b3af32 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-89b3af32 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-89b3af32 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-018e5db8 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-018e5db8 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-018e5db8 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-018e5db8 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-018e5db8 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-018e5db8 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-a97ac71d {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-a97ac71d {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-a97ac71d {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-a97ac71d {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f41434b-a97ac71d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-a97ac71d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-43a6640a, #w-node-a0f6633a-37e4-807e-64ef-d92df88d4e22-43a6640a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-da7230aa {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e954-da7230aa {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_9cd4ce6b-7e1b-6120-e8db-fc4db2f7fd8f-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-da7230aa {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-da7230aa {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_30aca526-23c7-0149-cb5d-429a996f995a-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-da7230aa {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-b9debc44-689e-53c0-f322-ba941048628a-da7230aa {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b9debc44-689e-53c0-f322-ba9410486281-da7230aa {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-da7230aa, #w-node-_1a3ce17b-2de9-9186-eb09-704de5233ee9-da7230aa, #w-node-_29140ae6-b94e-d3bb-150f-fa91ed14ea44-da7230aa, #w-node-_3b15c32b-8202-eeef-5dbe-142409e6120c-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e61215-da7230aa {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e6121e-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e61227-da7230aa {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e61230-da7230aa {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e61239-da7230aa {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-da7230aa {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-da7230aa {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-6d0e7999 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e954-6d0e7999 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4df5-6d0e7999 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40caf44d-10e7-d556-c316-013028bc3165-6d0e7999 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-a0f6633a-37e4-807e-64ef-d92df88d4dfe-6d0e7999 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_30aca526-23c7-0149-cb5d-429a996f995a-6d0e7999 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414354-6d0e7999 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_9cd4ce6b-7e1b-6120-e8db-fc4db2f7fd8f-6d0e7999 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b9debc44-689e-53c0-f322-ba941048628a-6d0e7999 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b9debc44-689e-53c0-f322-ba9410486281-6d0e7999 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_1a3ce17b-2de9-9186-eb09-704de5233ee9-6d0e7999, #w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-6d0e7999 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-6d0e7999 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0bb0900e-513b-6dbf-4b71-5b5d1f414342-6d0e7999 {
    grid-area: 1 / 2 / 2 / 4;
  }
}

@media screen and (max-width: 479px) {
  #Message.w-node-_88912c8a-02f7-3b68-0362-874db72f2eac-7ce44062 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a9f8b697-474a-8107-d630-0a8f61eab32d-7ce44062 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #w-node-e2ab6646-a870-8933-61da-8d8413cf4751-3ce44069 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-da7230aa {
    grid-row: 1 / 3;
    grid-column-end: 4;
  }

  #w-node-_30aca526-23c7-0149-cb5d-429a996f995a-da7230aa {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-b9debc44-689e-53c0-f322-ba941048628a-da7230aa {
    grid-row: 2 / 4;
    grid-column-end: 4;
  }

  #w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-da7230aa, #w-node-_29140ae6-b94e-d3bb-150f-fa91ed14ea44-da7230aa {
    grid-column: 2 / 4;
    grid-row-start: 3;
  }

  #w-node-_3b15c32b-8202-eeef-5dbe-142409e61230-da7230aa {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-da7230aa {
    grid-row-end: 4;
    grid-column-end: 4;
  }

  #w-node-_544a2117-13fb-7e5e-15a6-bfa59ab0e94b-6d0e7999 {
    grid-row: 1 / 3;
    grid-column-end: 4;
  }

  #w-node-_30aca526-23c7-0149-cb5d-429a996f995a-6d0e7999 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-b9debc44-689e-53c0-f322-ba941048628a-6d0e7999 {
    grid-row: 2 / 4;
    grid-column-end: 4;
  }

  #w-node-_60ff2b17-38fc-4e06-02a9-a99312467065-6d0e7999 {
    grid-column: 2 / 4;
    grid-row-start: 3;
  }

  #w-node-_01421aaf-951b-0f5f-f71d-10c8be2d9629-6d0e7999 {
    grid-row-end: 4;
    grid-column-end: 4;
  }
}


#w-node-terrex3d-85e44066 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}
