@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Pt root ui;
  src: url('../fonts/PT-Root-UI_Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mazius Extraitalic;
  src: url('../fonts/MAZIUSREVIEW20.09-Extraitalic.woff') format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Ppneuemontreal book;
  src: url('../fonts/PPNeueMontreal-Book.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-ThinItalic.ttf') format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ppneuemontreal;
  src: url('../fonts/PPNeueMontreal-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --primary-black: #040000;
  --primary-red: #af2d2f;
  --light-grey: #d3d2d3;
  --black-transparent: #0000004d;
  --darkblack: #1f1f1f;
}

.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 {
  color: #fff;
  cursor: none;
  background-color: #fff;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
  font-size: 110px;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
}

h4 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

h5 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Italiana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

p {
  color: #fff;
  margin-bottom: 0;
  font-family: Pt root ui, Verdana, sans-serif;
}

a {
  color: #fff;
  cursor: none;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

ul, ol {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-right: 5px solid var(--primary-black);
  border-left: 5px solid var(--primary-black);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-family: Italiana, sans-serif;
  font-size: 2em;
  line-height: 1.3;
}

figure {
  margin-bottom: 10px;
  padding-bottom: 0;
}

figcaption {
  color: #a5a5a5;
  text-align: center;
  margin-top: 5px;
}

.grid-8-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-8-columns.about-main-grid {
  min-height: 300vh;
}

.grid-8-columns.width-100pct {
  width: 100%;
  display: none;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 20px;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px 60px;
  transition: background-color .4s;
}

.button:hover {
  background-color: #ffffff61;
}

.content {
  display: block;
  position: relative;
}

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

.content.social-links-content {
  text-align: left;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.content.footer-socket-links-content {
  justify-content: flex-end;
  display: flex;
}

.content.vertical-align-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.section {
  z-index: 1;
  justify-content: center;
  padding: 0 10vw 3em;
  display: flex;
  position: relative;
}

.section.hero-section {
  height: 600vh;
  padding-top: 100px;
}

.section.hero {
  min-height: 100vh;
  padding-top: 100px;
}

.section.hero.contact {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 170vh;
  padding-top: 20vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.section.video-section {
  z-index: 0;
  flex-direction: row;
  align-items: stretch;
  min-height: 200vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.footer.dark {
  cursor: none;
  background-color: #0000;
  background-image: linear-gradient(#04000003, #040000);
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  padding-left: 7em;
  padding-right: 7em;
  display: flex;
}

.section.small-hero {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding-top: 100px;
  display: flex;
}

.section.small-hero.sticky {
  z-index: auto;
  opacity: 1;
  position: sticky;
  inset: 0% 0% auto;
}

.section.work-list {
  z-index: auto;
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.section.work-list.z-index-0 {
  z-index: 0;
}

.section.no-padding-top {
  padding-top: 0;
}

.image-container {
  object-fit: cover;
  border: 0 #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.sticky {
  position: sticky;
  top: 100px;
}

.sticky.z-index-2 {
  z-index: 2;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.list-link-footer {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.link {
  padding-bottom: 4px;
  text-decoration: none;
  overflow: hidden;
}

.link:hover {
  color: #000;
  text-decoration: none;
}

.subscribe-form {
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--primary-red);
  text-align: center;
  letter-spacing: 1px;
  text-indent: 0;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  width: 80px;
  height: 70px;
  margin-left: -1px;
  padding: 10px;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

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

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

.navbar {
  z-index: 1;
  background-color: #0000;
  margin-left: 3rem;
  margin-right: 3rem;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  top: auto;
  bottom: 0;
}

.nav-wrapper {
  z-index: 99;
  background-color: #0000;
  background-image: linear-gradient(#fff, #fff0);
  width: 100%;
  margin-bottom: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-wrapper.dark {
  background-color: #0000;
  background-image: linear-gradient(#040000cc, #04000000);
}

.nav-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch center;
  place-items: center stretch;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.nav-link {
  color: var(--primary-black);
  margin-left: 40px;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  transition: color .2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: #000;
  text-decoration: none;
}

.nav-link.white {
  color: #fff;
  display: block;
}

.nav-link.white.blog, .nav-link.white.me, .nav-link.white.contact, .nav-link.blog, .nav-link.me, .nav-link.contact {
  display: none;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
  display: flex;
}

.link-underline {
  background-color: var(--primary-black);
  width: 100%;
  height: 1px;
  margin-top: 2px;
  padding-top: 0;
}

.link-underline.nav-underline-right {
  width: 50px;
  height: 2px;
  margin-top: 2px;
  position: absolute;
  inset: 0% auto 0% 8px;
}

.link-underline.nav-underline-right.white {
  background-color: #fff;
}

.link-underline.nav-underline-left {
  width: 100px;
  height: 2px;
  margin-top: 2px;
  position: absolute;
  inset: 0% 8px 0% auto;
}

.link-underline.nav-underline-left.white, .link-underline.light {
  background-color: #fff;
}

.nav-item-text {
  opacity: 1;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link {
  color: #000;
  transition: color .2s;
}

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

.brand-image {
  width: auto;
  height: 35px;
  padding-left: 0;
}

.brand {
  padding-left: 0;
}

.licensing {
  border: 0 #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 20px;
  display: flex;
}

.success-message {
  border: 1px solid var(--light-grey);
  color: #000;
  background-color: #fff;
  margin-top: 14px;
  margin-bottom: 14px;
}

.error-message {
  color: var(--primary-red);
  background-color: #f1f1f161;
  padding: 16px;
  font-size: 18px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

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

.container {
  margin-top: 4vh;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: relative;
}

.collection-list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.product-title {
  z-index: 1;
  opacity: 0;
  color: #fff;
  text-align: center;
  font-size: 88px;
  display: block;
}

.product-title.on-white-page {
  opacity: 1;
}

.project-item-content {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: fixed;
  top: 75vh;
  left: 0;
  right: 0;
}

.project-item-content:hover {
  text-decoration: none;
}

.project-item-content._1, .project-item-content._2, .project-item-content._3, .project-item-content._4, .project-item-content._5 {
  transform: none;
}

.project-item-content.relative {
  z-index: 3;
  width: auto;
  position: relative;
  top: 0;
}

.project-item-content.relative:hover {
  text-decoration: none;
}

.project-collection-list-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.project-collection-list-wrapper._2 {
  top: 4%;
  left: -4%;
}

.project-collection-list-wrapper._4 {
  top: -5%;
  left: 1%;
}

.project-collection-list-wrapper._5, .project-collection-list-wrapper._6, .project-collection-list-wrapper._7 {
  top: -2%;
  left: -2%;
}

.hero-text {
  z-index: 2;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
  font-size: 175px;
  font-weight: 400;
  line-height: 1;
  position: relative;
}

.hero-text.white-text {
  font-size: 200px;
}

.hero-text.text-left.white-text {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 8vw;
  font-weight: 800;
}

.project-background {
  z-index: -1;
  opacity: 0;
  position: fixed;
  inset: 0 0% 0% -10vw;
}

.project-background.image {
  opacity: .2;
  filter: blur(100px);
  display: none;
  position: absolute;
  inset: 0%;
}

.project-background.color {
  z-index: 1;
  opacity: 0;
  width: 120vw;
  height: 500vh;
  inset: 0% 0% 0% -10vw;
}

.project-background.color.full-height {
  background-color: #0000;
  width: 100%;
  height: 140%;
  top: -30%;
  left: 0;
}

.project-item-image {
  object-fit: cover;
  width: 40vw;
  max-width: none;
  height: 85vh;
}

.project-item-image._1 {
  filter: brightness(80%) grayscale();
}

.project-item-image._2 {
  filter: grayscale();
}

.project-item-image._3 {
  filter: contrast(90%) grayscale();
}

.project-item-image._4 {
  filter: contrast(110%) grayscale();
}

.project-item-image._5 {
  filter: contrast(150%) brightness(50%) grayscale();
}

.project-item-image.width-100 {
  width: 100%;
  height: auto;
}

.projects-collection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 85vh 0% 0%;
}

.project-item-title-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-content {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 70vh;
  display: flex;
  position: relative;
}

.hero-content.small {
  justify-content: center;
  height: 60vh;
}

.grid-6-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: #000;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-4-columns {
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: none;
}

.about-images-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
  margin-top: 180px;
  display: flex;
  position: sticky;
  top: 10vh;
}

.content-sticky {
  position: sticky;
  top: 100px;
}

.about-image {
  object-fit: cover;
  width: 100%;
  height: 60vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-image._2 {
  transform: rotate(-10deg);
}

.about-image._3 {
  transform: rotate(5deg);
}

.about-image._4 {
  transform: rotate(12deg);
}

.about-image._5 {
  transform: translate(0, 30px);
}

.about-image-container {
  width: 90%;
  height: 60vh;
  position: absolute;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

.skew-on-load-anim-1, .skew-on-load-anim-2 {
  position: relative;
}

.fade-in-from-bottom-on-load {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.hero-content-middle-80 {
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  margin-top: 180px;
  display: flex;
}

.background-video {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
}

.video-side-content.right {
  text-align: right;
}

.grid-9-columns {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.scrollable-box-item {
  width: 100%;
  margin-top: 2em;
}

.scrollable-box-item:hover {
  text-decoration: none;
}

.scrollable-box-item.middle {
  margin-top: 6em;
}

.scrollable-image-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.scrollable-image {
  background-image: url('../images/personal-4.jpg');
  background-position: 50%;
  background-size: cover;
  height: 70vh;
  position: absolute;
  inset: 0%;
}

.scrollable-image._2 {
  background-image: url('../images/phone-on-grass.jpeg');
}

.scrollable-image._3 {
  background-image: url('../images/friendly.jpg');
}

.white-text {
  color: #fff;
}

.about-images-overlay {
  opacity: 0;
  background-color: #fff;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.video-content-sticky {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 80vh;
  display: flex;
  position: sticky;
  top: 10vh;
  overflow: visible;
}

.content-padding {
  padding-bottom: 2em;
}

.style-heading-title {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.nav-link-circle {
  border: 2px solid var(--primary-black);
  background-color: #0000;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  position: absolute;
  inset: auto auto 0 50%;
}

.nav-link-circle.white {
  border-color: #fff;
}

.dark {
  color: #fff;
  cursor: none;
  background-color: #000;
  font-weight: 400;
}

.contact-form {
  margin-bottom: 0;
  padding: 0;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.form-input {
  border-style: none solid solid;
  border-width: 0 0 2px;
  border-color: var(--primary-black) black var(--primary-black) var(--primary-black);
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  height: auto;
  margin-bottom: 0;
  padding: 20px 5px;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: background-color .2s;
}

.form-input:focus {
  border-bottom-color: var(--primary-black);
  background-color: #000;
}

.form-input::placeholder {
  color: #fff;
  background-color: #fff0;
}

.navbar-background {
  z-index: 0;
  background-color: var(--primary-black);
  opacity: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.navbar-background.white {
  background-color: #fff;
}

.text-xl {
  text-transform: none;
  font-family: PT Serif, serif;
  font-size: 32px;
}

.text-xl.white-text {
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 18px;
}

.skew-on-home-load-1, .skew-on-home-load-2, .skew-on-home-load-3 {
  position: relative;
}

.hero-text-container {
  text-align: center;
  margin-bottom: 3em;
}

.font-lato {
  font-family: Lato, sans-serif;
}

.font-lato.white-text {
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 18px;
  display: block;
}

.heading-container {
  margin-bottom: 3em;
}

.footer-link-container {
  margin-left: 40px;
  display: inline-block;
}

.footer-socket {
  border-top: 1px solid var(--primary-black);
  margin-top: 3em;
  padding-top: 3em;
}

.footer-socket.white-border {
  border-top-color: #fff;
  display: none;
}

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

.bold-text {
  font-weight: 700;
}

.bold-text.white-text, .bold-text.white-text:hover {
  color: #fff;
}

.no-margin-top {
  margin-top: 0;
}

.project-collection-item {
  width: 100%;
  margin-bottom: 3em;
}

.project-collection-item:nth-child(odd) {
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
}

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

.project-collection-item:first-child, .project-collection-item:last-child {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.project-item-image-with-text {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40vw;
  height: auto;
  display: flex;
}

.text-medium {
  font-size: 20px;
  display: block;
}

.project-item-summary {
  display: block;
}

.project-item-background-stretch {
  opacity: .7;
  position: absolute;
  inset: 0%;
}

.available-freelance-container {
  z-index: 3;
  background-image: url('../images/arrow-black-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 270px;
  position: absolute;
  inset: -170px auto auto 0%;
}

.available-for-freelance-icon {
  width: 100%;
}

.paragraph-with-border {
  margin-bottom: 10px;
}

.about-video-lightbox {
  background-color: #0000004d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.video-play-icon {
  width: auto;
  height: 100%;
}

.accordion {
  border-top: 1px solid #e3e3e3;
}

.accordion.last {
  border-bottom: 1px solid #e3e3e3;
}

.accordion-header {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.accordion-header:hover {
  background-color: #00000005;
}

.accordion-body {
  padding-left: 30%;
  padding-right: 20%;
  overflow: hidden;
}

.accordion-number {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  min-width: 30%;
  min-height: 200px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.accordion-icon-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 20%;
  min-height: 200px;
  display: flex;
}

.accordion-title-text {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.accordion-title {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.accordion-icon {
  width: 60px;
  height: 60px;
}

.accordion-body-content {
  padding-top: 2em;
  padding-bottom: 2em;
}

.position-relative {
  position: relative;
}

.blog-collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-item:nth-child(odd) {
  margin-top: -20px;
}

.blog-item:nth-child(2n) {
  padding-top: 40px;
}

.blog-item:first-child {
  margin-top: 0;
  padding-top: 0;
}

.contact-images-container {
  flex: 1;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  margin-top: -100px;
  display: block;
  position: relative;
}

.contact-image-content {
  width: 30vw;
  height: 50vh;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.contact-image-content._2 {
  height: 40vh;
  inset: -10% 0% auto auto;
}

.contact-image-content._3 {
  z-index: -1;
  height: 60vh;
  top: 40%;
  left: 23%;
}

.contact-image-content._4 {
  height: 45vh;
  inset: auto 10% 10% auto;
}

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

.contact-image-scrollable {
  z-index: -1;
  width: 100%;
  height: 130%;
  position: absolute;
  inset: 0%;
}

.contact-image-overlay {
  opacity: 1;
  background-color: #fff;
  height: 100%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.contact-image-container {
  z-index: -1;
  width: auto;
  height: auto;
  position: absolute;
  inset: 3px;
  overflow: hidden;
}

.licensing-image {
  width: 60px;
}

.content-with-padding {
  flex-direction: row;
  justify-content: flex-start;
  padding-bottom: 45px;
  display: flex;
}

.license-item-description {
  margin-bottom: 20px;
}

.product-details-image {
  width: 80%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-details-title {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.project-details-list-item {
  margin-bottom: 2em;
}

.project-details-list-item.last {
  margin-bottom: 0;
}

.horizontal-line {
  background-color: #4a4a4a;
  width: 100%;
  height: 1px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.dark-rich-text {
  background-color: var(--primary-black);
  color: #fff;
}

.dark-rich-text p, .dark-rich-text h1, .dark-rich-text h3 {
  color: #fff;
}

.dark-rich-text li {
  color: #e7e7e7;
}

.dark-rich-text a, .dark-rich-text h4 {
  color: #fff;
}

.dark-rich-text figcaption {
  color: #fff9;
}

.dark-rich-text h5 {
  color: #fff;
}

.dark-rich-text blockquote {
  color: #fff;
  border-left-color: #fff;
  border-right-color: #fff;
}

.dark-rich-text h6, .dark-rich-text h2 {
  color: #fff;
}

.background-dark {
  z-index: -1;
  background-color: var(--primary-black);
  position: absolute;
  inset: 0%;
}

.rich-text p, .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6, .rich-text ol, .rich-text ul {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text.dark-rich-text {
  display: none;
}

.project-details-grid-images {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: baseline center;
  padding-bottom: 0;
  display: grid;
}

.project-details-grid-image {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.project-details-grid-image:nth-child(odd) {
  margin-top: -20px;
}

.project-details-grid-image:nth-child(2n) {
  padding-top: 40px;
}

.project-details-grid-image:first-child {
  margin-top: 0;
  padding-top: 0;
}

.post-details-image {
  width: 100%;
  margin-bottom: 2em;
}

.post-item-category {
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 700;
}

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

.contact-info-content {
  margin-bottom: 3em;
}

.text-block {
  color: #000;
  text-transform: none;
  font-family: Vollkorn, serif;
  font-size: 24px;
}

.text-block:hover {
  text-decoration: none;
}

.text-block.white {
  color: #fff;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.video {
  position: static;
}

.video-2, .video-3, .video-4, .video-5 {
  margin-bottom: 40px;
}

.grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template: ". Area" 1fr
                 ". ."
                 / 1fr 1fr;
}

.background-video-2 {
  width: 100%;
  height: 100%;
}

.container-3 {
  padding-right: 30px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.grid-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area-6 Area-6"
                 "Area-4 Area-4"
                 "Area-7 Area-8"
                 "Area-5 Area"
                 "Area-2 Area"
                 "Area-2 Area-9"
                 "Area-3 Area-3"
                 "Area-10 Area-10"
                 "Area-11 Area-11"
                 / 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  display: grid;
}

.div-block {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 309.375px;
  display: flex;
}

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

.div-block-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.background-video-3 {
  height: 977.77px;
}

.about-video-lightbox-1, .about-video-lightbox-2, .about-video-lightbox-3 {
  background-color: #0000004d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.div-block-4 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-video-4 {
  height: 722.083px;
}

.about-video-lightbox-4 {
  background-color: var(--black-transparent);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.div-block-5 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-video-5 {
  height: 722.083px;
}

.about-video-lightbox-5 {
  background-color: #0000004d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.div-block-6 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 309.375px;
  display: flex;
}

.about-video-lightbox-6 {
  background-color: #0000004d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.image-2 {
  max-width: 500px;
}

.collection-list-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 45vw;
  height: 20vw;
}

.lightbox-link.lchc, .lightbox-link.lchc-copy {
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vw;
}

.lightbox-link-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45vw;
}

.lightbox-link-copy.lchc {
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vw;
}

.lightbox-link-copy.lchc-copy {
  background-image: none;
}

.div-block-7 {
  justify-content: center;
  align-items: flex-start;
  max-height: 32vw;
  display: flex;
  overflow: hidden;
}

.cursor {
  z-index: 5000;
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: opacity .2s;
  display: flex;
  position: fixed;
}

.cursor-dot {
  background-color: #fff;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  display: flex;
}

.cursor-big {
  border: 2px solid #fff;
  border-radius: 100%;
  width: 75px;
  height: 75px;
  position: absolute;
}

.div-block-8 {
  display: block;
}

.div-block-5-copy {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.div-block-6-copy {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  height: 309.375px;
  display: flex;
}

.div-block-9 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-video-lightbox-6-copy, .about-video-lightbox-7 {
  background-color: #0000004d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.body {
  cursor: none;
  background-color: #000;
}

.nav-wrapper-copy {
  z-index: 99;
  background-color: #0000;
  background-image: linear-gradient(#fff, #fff0);
  width: 100%;
  margin-bottom: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-wrapper-copy.dark {
  cursor: none;
  background-color: #0000;
  background-image: linear-gradient(#040000cc, #04000000);
  position: fixed;
  bottom: auto;
}

.section-3 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 95vh;
  padding-bottom: 5vh;
  padding-left: 7rem;
  padding-right: 7rem;
  display: flex;
}

.textwrapper {
  position: absolute;
  inset: 0%;
}

.heading {
  color: #fff;
  text-shadow: 0 0 100px #000;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 8vw;
  font-weight: 800;
  line-height: .9;
  position: static;
  inset: 0% 0% 0% -65px;
}

.text-block-2 {
  opacity: .5;
  color: #fff;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  right: -30px;
  transform: rotate(90deg);
}

.div-block-10 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-11 {
  flex-direction: column;
  margin-bottom: 40px;
  display: flex;
}

.div-block-12 {
  background-color: #fff;
  height: 1px;
  margin-top: 40px;
  display: block;
}

.section-4 {
  padding-left: 3em;
  padding-right: 3em;
}

.text-block-3 {
  color: #fff;
  padding-left: 5px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
}

.div-block-13 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5vh;
  display: flex;
  position: static;
  inset: 10% 0% 0%;
}

.div-block-14 {
  width: 100vw;
  height: 30vh;
  position: absolute;
}

.image-4 {
  filter: invert();
  width: 30px;
}

.div-block-15 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 0;
  display: none;
  position: static;
}

.text-block-4 {
  opacity: 1;
  color: #fff;
  text-align: right;
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.image-5 {
  height: 75vh;
}

.div-block-16 {
  color: #fff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  height: 75vh;
  text-decoration: none;
  display: flex;
}

.div-block-17 {
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  display: flex;
}

.div-block-18 {
  z-index: -10;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 7% 0% auto;
}

.image-6 {
  width: 30vw;
  position: relative;
  top: -40px;
}

.link-block {
  align-items: flex-start;
  position: relative;
}

.text-block-5 {
  color: #fff;
  padding-bottom: 10px;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 18px;
  font-weight: 500;
  position: sticky;
  top: auto;
}

.div-block-19 {
  position: relative;
  bottom: -111px;
}

.image-7 {
  height: 60vh;
}

.div-block-20 {
  flex-direction: column;
  justify-content: space-between;
}

.div-block-21 {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.heading-2 {
  color: #fff;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-decoration: none;
}

.div-block-22 {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.div-block-23 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.collection-item-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.div-block-24 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.div-block-25 {
  height: 100vh;
  position: absolute;
}

.div-block-26 {
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: -307.729px;
}

.section-5 {
  justify-content: center;
  align-items: center;
  padding-left: 3em;
  padding-right: 3em;
}

.body0 {
  cursor: none;
  background-color: #000;
}

.section-3-copy {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 7rem;
  padding-right: 7rem;
  display: flex;
}

.section-6 {
  padding-left: 3em;
  padding-right: 3em;
}

.div-block-13-copy {
  justify-content: center;
  margin-top: 10vh;
  display: flex;
}

.div-block-11-copy {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-block-3-copy {
  opacity: .5;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
}

.heading-copy {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: aktiv-grotesk-extended, sans-serif;
  font-size: 8vw;
  font-weight: 800;
  line-height: .9;
}

.div-block-27 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  height: 100vh;
}

.div-block-28 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-29 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 80vw;
  max-width: 100%;
  height: 75ch;
}

.nav-link-2 {
  color: #1f1f1f;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.nav-link-2.right-margin {
  margin-right: 1.5vw;
}

.nav-link-2.right-margin.white {
  z-index: 10;
  color: #fff;
  position: relative;
}

.dot {
  background-color: #1f1f1f;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  margin-left: 4px;
  margin-right: 4px;
}

.dot.white {
  background-color: #fff;
}

.menu-row {
  align-items: center;
  width: 100%;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
  display: flex;
}

.hamburger-bar {
  background-color: #1f1f1f;
  width: 100%;
  height: 1px;
}

.hamburger-bar.bottom {
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  bottom: 10px;
}

.hamburger-bar.top {
  background-color: #fff;
  position: absolute;
  top: 10px;
}

.hamburger-bar.bottom {
  position: absolute;
  bottom: 10px;
}

.hamburger-bar.bottom.white {
  z-index: 100;
  background-color: #fff;
}

.hamburger-bar.bottom.black {
  background-color: #000;
}

.hamburger-bar.top {
  position: absolute;
  top: 10px;
}

.hamburger-bar.top.white {
  z-index: 100;
  background-color: #fff;
}

.hamburger-bar.top.black {
  background-color: #000;
}

.menu {
  z-index: 99;
  color: #fff;
  background-color: #1f1f1f;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.menu.white {
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
}

.menu-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5.625vw 10vw;
  display: flex;
}

.hamburger-wrap {
  z-index: 100;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  position: relative;
}

.align-horizontally {
  cursor: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.number-wrap {
  position: absolute;
  inset: 0 -1.75vw auto auto;
}

.number-wrap:hover {
  text-decoration: none;
}

.menu-link-block {
  color: #fff;
  font-weight: 500;
  position: relative;
}

.menu-text {
  color: #fff;
  letter-spacing: -.5vw;
  font-size: 6vw;
}

.menu-text._1 {
  color: #fff;
}

.navbar-2 {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8vw;
  display: flex;
}

.navbar-2.full-black {
  cursor: none;
}

._1vw-text {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1vw;
  display: inline;
}

._1vw-text._0-85vw-top-margin {
  margin-top: .85vw;
  display: block;
}

._1vw-text.white {
  color: #fff;
}

._4-5vw-title {
  letter-spacing: -.15vw;
  font-size: 4.5vw;
  font-weight: 700;
}

._4-5vw-title.bottom-margin {
  margin-bottom: 2.5vw;
  line-height: 1;
}

._1-4vw-paragraph {
  margin-bottom: 0;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 1.4vw;
}

._1-4vw-paragraph.align-right {
  text-align: right;
}

.services-accordion-wrap {
  border-top: 1px solid #1f1f1f;
}

.services-accordion-wrap.last {
  border-bottom: 1px solid #1f1f1f;
}

._100-width {
  width: 100%;
}

._100-width.negative-top-margin {
  margin-top: -5vw;
}

._100-width.top-margin {
  margin-top: 5vw;
}

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

._100-width.right {
  object-fit: cover;
  height: 15vw;
}

._100-width.right._100-height {
  object-position: 50% 50%;
  width: 100%;
  height: 55vh;
}

._100-width.left {
  object-fit: cover;
  height: 15vw;
}

._100-width.left._100-height {
  width: 100%;
  height: 36vw;
}

._12-columns-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 8vw;
  padding-right: 8vw;
}

._12-columns-grid.case {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

._2-125vw-text {
  color: #fff;
  margin-bottom: 0;
  font-size: 2.125vw;
  font-weight: 300;
  line-height: 1.2;
}

._2-125vw-text.justify {
  text-align: justify;
}

._2-125vw-text.bottom-margin {
  margin-bottom: 2.5vw;
}

._2-125vw-text.mazius {
  color: #fff;
}

._2-125vw-text.small-bottom-margin {
  margin-bottom: 1.25vw;
}

.underline {
  color: #fff;
  background-color: #fff;
  width: 100%;
  height: 1px;
}

.underline._3px {
  height: 3px;
}

.services-accordion-button {
  cursor: pointer;
  border-top: 2px #e8e6e4;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75vw;
  margin-bottom: 1.75vw;
  display: grid;
}

.section-7 {
  z-index: 10;
  padding: 5.625vw 10vw;
  display: block;
  position: relative;
}

.section-7.black {
  z-index: 0;
  color: #fff;
  background-color: #1f1f1f;
  padding-left: 7vw;
  padding-right: 7vw;
}

.accordion-arrow {
  letter-spacing: -.15vw;
  font-size: 4.5vw;
  font-weight: 700;
}

._11vw-number {
  letter-spacing: -.15vw;
  margin-top: -.85vw;
  font-size: 11vw;
  font-weight: 700;
  line-height: 1;
}

.accordion-content {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

._8-columns-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._8-columns-grid.row-spacing {
  grid-row-gap: 2.5vw;
}

.simmetric-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.simmetric-grid.left {
  justify-items: start;
}

.simmetric-grid.large-rows-spacing {
  grid-row-gap: 8vw;
}

.container-4 {
  width: 100%;
}

.container-4.centered {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-block-3 {
  color: #1f1f1f;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
  overflow: hidden;
}

.link-block-3.bottom-margin {
  margin-bottom: 2.5vw;
}

.link-block-3.white {
  color: #fff;
}

._2-1vw-title {
  color: #1f1f1f;
  letter-spacing: -.1vw;
  font-size: 2.1vw;
  font-weight: 500;
  line-height: .86;
}

._2-1vw-title.bottom-margin.white {
  color: #fff;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
}

._2-1vw-title.white {
  color: #fff;
  font-family: Pt root ui, Verdana, sans-serif;
}

.trophy {
  width: 50%;
  margin-top: -2.5vw;
}

._12-5vw-title {
  text-align: left;
  font-size: 12.5vw;
  line-height: .8;
  position: relative;
}

.accordion-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: .75vw;
  padding-bottom: 2.5vw;
  display: grid;
}

.pic-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

._85-width {
  width: 85%;
}

._85-width.cover {
  object-fit: cover;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.align-left {
  align-items: center;
  display: flex;
}

.align-left.vertically {
  flex-direction: column;
  align-items: flex-start;
}

._7-5vw-title {
  letter-spacing: -.1vw;
  font-size: 7.5vw;
  line-height: .9;
  position: relative;
}

._7-5vw-title.centered {
  color: #fff;
  text-align: center;
  font-size: 7.6vw;
}

.text-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.text-wrap.centered {
  align-items: center;
}

.text-wrap.centered.contact {
  align-items: flex-start;
}

.bar {
  background-color: #1f1f1f;
  width: 100%;
  height: 100%;
}

._3-columns-link {
  grid-row-gap: 1.25vw;
  color: #1f1f1f;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr auto;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 1.25vw;
  font-size: 1.125vw;
  font-weight: 400;
  display: grid;
}

._18vw-title {
  color: #fff;
  text-align: center;
  font-size: 18vw;
  line-height: .875;
}

._1-125vw-text {
  font-size: 1vw;
  display: inline;
}

._1-4vw-text {
  margin-bottom: 0;
  font-size: 1.4vw;
}

.bar-wrap {
  background-color: #1f1f1f33;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  overflow: hidden;
}

.body-2 {
  color: #fff;
  background-color: #000;
  font-weight: 300;
}

.text-block-6, .text-block-7 {
  color: #fff;
}

._8-columns-grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

._11-4vw-title {
  z-index: 1;
  letter-spacing: -.25vw;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 11.4vw;
  line-height: 1;
  position: relative;
}

._11-4vw-title._0-9-line-height {
  color: #fff;
  line-height: .9;
}

._11-4vw-title._0-5-left-margin {
  color: #fff;
  margin-left: .5vw;
}

._11-4vw-title.align-right {
  color: #fff;
  text-align: right;
  margin-right: 2vw;
}

.horizontal-divider {
  background-color: #fff;
  width: 100%;
  height: 1px;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
}

.project-name-hover {
  z-index: 1;
  transform-origin: 0%;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Dorsa, sans-serif;
  font-size: 24vw;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  left: 0;
  overflow: hidden;
}

.image-holder {
  position: fixed;
  inset: 0%;
}

.work-link {
  z-index: 10;
  color: #fff;
  width: auto;
  height: auto;
  display: block;
  position: relative;
}

.work-link:hover {
  color: #fff;
  text-decoration: none;
}

.project-name-relative {
  z-index: 1;
  color: #ffffff59;
  text-transform: uppercase;
  font-family: Dorsa, sans-serif;
  font-size: 24vw;
  font-weight: 400;
  line-height: 1;
  position: relative;
}

.project-name-wrap {
  z-index: 1;
  align-items: center;
  padding-right: .8vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-name-wrap:hover {
  text-decoration: none;
}

.work-item {
  z-index: 100;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.work-overlay {
  z-index: 1;
  background-color: #1f1f1f4d;
  position: absolute;
  inset: 0%;
}

.div-block-30 {
  z-index: 100;
  position: relative;
}

.section-8 {
  padding: 5.625vw 10vw;
  display: none;
  position: relative;
}

.case-study-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.work-thumbnail {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 35vh;
}

.loading-animation-bar-wrap {
  z-index: 1000;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading-animation-bar {
  z-index: 2;
  background-color: var(--darkblack);
  width: 0%;
  height: 1vh;
  position: absolute;
  top: 0;
  left: 0;
}

.blocker {
  z-index: 1;
  color: var(--darkblack);
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.number-wrap-2 {
  position: absolute;
  inset: 0 -1.75vw auto auto;
}

.menudivider {
  letter-spacing: -.5vw;
  font-size: 6vw;
}

.hamburger-wrap-white {
  z-index: 100;
  cursor: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  position: relative;
}

.section-9 {
  padding: 11.25vw 10vw 5.625vw 8vw;
  display: block;
  position: relative;
}

.section-9.full-black {
  color: #fff;
  background-color: #fff0;
  height: 100vh;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  position: static;
}

.section-9.full-black.intro {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section-9.full-black.hero {
  height: 80vh;
  padding-bottom: 0;
  display: flex;
}

.section-9.no-lateral-padding {
  padding: 5.625vw 0 0;
}

.section-9.no-padding {
  padding: 0;
}

.section-9.footer {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 2vw;
  display: flex;
  position: static;
}

.circle-blur-blue {
  filter: blur(100px);
  background-image: linear-gradient(132deg, #0026e3 27%, #006bd6 50%, #0047f0 79%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 50vh;
  height: 50vh;
  margin-top: 5vh;
  margin-right: 5vw;
  display: none;
  position: absolute;
  top: -5%;
  right: 0%;
}

.circle-blur-yellow {
  filter: blur(100px);
  background-image: linear-gradient(132deg, #8f9900 27%, #bfcc00 50%, #efff00 79%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 50vh;
  height: 50vh;
  display: none;
  position: absolute;
  bottom: 0%;
  left: 0%;
}

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

._3-columns-grid.no-row-margins {
  z-index: 5;
  grid-row-gap: 0vw;
  position: relative;
}

._10vw-title {
  color: #fff;
  text-shadow: 0 0 50px #00000040;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
  font-size: 10vw;
  line-height: .9;
}

._10vw-title.left-margin {
  color: #fff;
  margin-left: 5vw;
}

._6vw-title {
  text-align: left;
  letter-spacing: -.03em;
  margin-top: 13px;
  margin-bottom: 16px;
  font-size: 6vw;
}

._6vw-title.center {
  color: #fff;
  text-align: center;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
}

.image-span {
  background-image: url('../images/priorityhousecompressed.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 9.75vw;
  height: 6.5vw;
  display: inline-block;
}

.image-span-3 {
  background-image: url('../images/desertpainting-cybertruckdesertcompressed.jpg');
  background-position: 50%;
  background-size: cover;
  width: 10vw;
  min-width: 0;
  height: 6.5vw;
  display: inline-block;
}

.image-span-2 {
  background-image: url('../images/travfirecompressed.jpg');
  background-position: 50%;
  background-size: cover;
  width: 6.5vw;
  height: 6.5vw;
  display: inline-block;
}

.image-span-4 {
  background-image: url('../images/alleyrun.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 9.75vw;
  height: 6.5vw;
  display: inline-block;
}

.awards-wrap {
  border-top: 1px solid #1f1f1f;
  padding-top: 1.5vw;
  padding-bottom: 1.5vw;
}

.awards-wrap.last {
  border-bottom: 1px solid #1f1f1f;
}

.awards-wrap.last.white {
  border-bottom-color: #fff;
}

.awards-wrap.white {
  border-top-color: #fff;
}

._6-columns-grid {
  grid-row-gap: 1.5vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._6-columns-grid._4vw-margin {
  grid-column-gap: 4vw;
  grid-row-gap: 0vw;
}

._6-columns-grid._4vw-margin.move-left {
  justify-items: start;
}

.underline-2 {
  background-color: #1d1d1f;
  width: 100%;
  height: 1px;
}

.underline-2._3px {
  height: 3px;
}

.underline-2._3px.white {
  background-color: #fff;
}

.email-text {
  letter-spacing: -.4vw;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 5.5vw;
  font-weight: 500;
  line-height: 1;
}

.work-grid {
  color: #1f1f1f;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr 1fr;
  grid-auto-columns: 1fr;
  font-weight: 400;
  display: grid;
}

.work-grid.left-column-is-larger {
  grid-template-columns: 7.5fr .5fr 2fr;
}

.work-grid.right-column-is-larger {
  grid-template-columns: 2fr .5fr 7.5fr;
}

._1-25vw-text.white {
  color: #fff;
}

._1-25vw-text.white.hide-on-portrait {
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 1.25vw;
  display: none;
}

.overflow-hidden-2 {
  overflow: hidden;
}

.overflow-hidden-2.right, .overflow-hidden-2.left {
  position: relative;
}

.bottom-margin {
  margin-bottom: 2.8125vw;
}

.vertical-column {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

._2-4vw-h3 {
  color: #1f1f1f;
  margin-bottom: 0;
  font-size: 2.4vw;
  line-height: 1;
}

._2-4vw-h3.white {
  color: #fff;
}

._2-4vw-h3.white.xs-margin {
  margin-top: .375vw;
  margin-bottom: .625vw;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
}

.video-7 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.video-section {
  z-index: -1;
  background-color: #000;
  margin-top: -100vh;
  position: sticky;
  top: 0;
}

.video-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.video-effect-sticky {
  width: 100%;
  position: sticky;
  top: 0;
}

.video-effect-height {
  width: 100%;
  min-height: 200vh;
}

.text-block-8 {
  z-index: 100;
  color: #fff;
  font-family: Pt root ui, Verdana, sans-serif;
  position: relative;
}

.text-block-8:hover {
  color: #fff;
  text-decoration: none;
}

.text-block-8.black {
  color: #000;
}

.logo {
  margin-bottom: 2.5vw;
}

.project-title {
  color: #fff;
  font-family: Mazius Extraitalic, Palatino Linotype, sans-serif;
  font-size: 5vw;
}

.project-h2 {
  color: #fff;
  letter-spacing: -.1vw;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 2.5vw;
  font-weight: 500;
}

.rich-text-2 {
  text-align: justify;
}

.div-block-31 {
  color: #fff;
  font-family: Pt root ui, Verdana, sans-serif;
}

.div-block-32 {
  z-index: 2000;
  cursor: none;
  position: fixed;
  inset: 0% 0% auto;
}

.collection-list-3 {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

.div-block-33 {
  object-position: 50% 50%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 35vh;
}

.lightbox-link-2 {
  object-position: 50% 0%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
}

.collection-item-3 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 5vh;
  overflow: hidden;
}

.div-block-34 {
  z-index: 5;
  align-items: center;
  padding-right: 30px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.link-block-4 {
  background-color: var(--black-transparent);
  color: #fff;
  border-radius: 100%;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
}

.image-8 {
  height: 100%;
}

.text-block-9 {
  z-index: 5001;
  opacity: 0;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  margin-right: -25px;
  font-family: Pt root ui, Verdana, sans-serif;
  position: relative;
}

.heroname {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
  inset: 0%;
}

.overflow-hidden-2-copy, .overflow-hidden-2-copy-copy {
  overflow: hidden;
}

.section-9-copy.no-lateral-padding {
  padding-left: 0;
  padding-right: 0;
}

.section-9-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  padding: 0 10vw 5.625vw;
  display: block;
  position: relative;
}

.section-9-copy.full-black {
  color: #fff;
  background-color: #fff0;
  height: 80vh;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}

.paragraph {
  margin-top: 25px;
  font-weight: 300;
}

.collection-item-4 {
  height: 75vh;
}

.heading-3 {
  color: #fff;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 1.8vw;
  font-weight: 400;
}

.link-2 {
  color: #fff;
  text-decoration: underline;
}

.link-2:hover {
  color: #fff;
  font-weight: 400;
}

.div-block-37 {
  width: 80vw;
  overflow: hidden;
}

.link-block-5 {
  z-index: 100;
  display: none;
  position: relative;
}

.grid-4 {
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: flex;
}

.lightbox-link-3 {
  width: 100%;
  max-width: 100%;
  height: 30vh;
}

.div-block-38 {
  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: 100%;
  overflow: hidden;
}

.div-block-39 {
  z-index: 0;
  background-image: linear-gradient(#00000080, #fff0 94%);
  position: absolute;
  inset: 0%;
}

.rich-text-block {
  color: #fff;
}

.body-3 {
  background-color: #000;
}

.div-block-40 {
  color: #fff;
  margin-top: 26px;
}

.heading-4 {
  color: #fff;
}

.body-4 {
  background-color: #000;
}

.div-block-41 {
  z-index: 2000;
  position: fixed;
  inset: 0% 0% auto;
}

.text-block-10 {
  z-index: 100;
  position: relative;
}

.link-3 {
  color: #fff;
  text-decoration: underline;
}

.link-3:hover {
  color: #fff;
  font-weight: 400;
}

.paragraph-2 {
  margin-bottom: 5vh;
}

.section-9-copy.footer {
  align-items: center;
  height: 80vh;
  display: flex;
  position: static;
}

.section-9-copy-copy {
  padding: 0 10vw 5.625vw 8vw;
  display: block;
  position: relative;
}

.section-9-copy-copy.full-black {
  color: #fff;
  background-color: #fff0;
  height: 100vh;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  position: static;
}

.section-9-copy-copy.full-black.intro {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section-9-copy-copy.full-black.hero {
  height: 80vh;
  padding-bottom: 0;
  display: flex;
}

.section-9-copy-copy.no-lateral-padding {
  padding: 5.625vw 0 0;
}

.section-9-copy-copy.no-padding {
  padding: 0;
}

.section-9-copy-copy.footer {
  align-items: center;
  height: 80vh;
  display: flex;
  position: static;
}

.image-10 {
  z-index: 750;
  width: 35vw;
}

.div-block-42 {
  perspective: 1000px;
}

.div-block-43 {
  z-index: 2;
  perspective: 2000px;
  perspective-origin: 50%;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 10vw 5vw 30vw 15vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.highlight {
  opacity: .15;
  filter: blur(15px);
  background-color: #fff;
  border-radius: 50%;
  width: 25vw;
  height: 25vw;
  margin: 20px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-44 {
  position: relative;
  overflow: hidden;
}

.div-block-45 {
  overflow: hidden;
}

.html-embed-2 {
  position: fixed;
}

.div-block-46 {
  margin-top: 5px;
}

.expand {
  z-index: 5;
  color: #000;
  font-family: Pt root ui, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: none;
  position: absolute;
}

.text-block-11 {
  display: none;
}

.viewoverlay {
  z-index: 5;
  opacity: 0;
  background-color: #00000080;
  transition: opacity .75s cubic-bezier(.19, 1, .22, 1);
  position: absolute;
  inset: -.5%;
}

.viewoverlay:hover {
  opacity: 1;
}

.text-block-12 {
  color: #fff;
  font-size: 1.25vw;
}

.div-block-47 {
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 1vw 1vw auto;
}

.viewmore {
  filter: invert();
  height: 1.25vw;
  padding-left: 5px;
  display: block;
  position: static;
  inset: auto 2.5% 2.5% auto;
}

.viewmorearrow {
  filter: invert();
  height: 5%;
  padding-left: 5px;
  display: none;
  position: absolute;
  inset: auto 2.5% 2.5% auto;
}

.heading-5 {
  color: #fff;
  font-size: 4vw;
}

.text-block-13 {
  font-size: 1.5vw;
}

.section-9-copy {
  padding: 11.25vw 10vw 0 8vw;
  display: block;
  position: relative;
}

.section-9-copy.full-black {
  color: #fff;
  background-color: #fff0;
  height: 100vh;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  position: static;
}

.section-9-copy.full-black.intro {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section-9-copy.full-black.hero {
  height: 80vh;
  padding-bottom: 0;
  display: flex;
}

.section-9-copy.no-lateral-padding {
  padding: 5.625vw 0 0;
}

.section-9-copy.no-padding {
  padding: 0;
}

.section-9-copy.footer {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 2vw;
  display: flex;
  position: static;
}

.text-block-14 {
  text-align: center;
  display: none;
}

.body-5, .body-6 {
  background-color: #000;
}

.navbar-3 {
  background-color: #ddd0;
  justify-content: space-between;
  align-items: stretch;
  width: 100vw;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.brand-2 {
  flex: 1;
}

.image-11 {
  height: 30px;
  margin-right: 10px;
}

.image-12 {
  width: 100px;
}

.container-5 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin: 30px 0;
  display: flex;
}

.button-2 {
  color: #000;
  background-color: #fff;
  border-radius: 245px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  display: flex;
}

.button-2:hover {
  color: #000;
  text-decoration: none;
}

.heading-6 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ppneuemontreal, sans-serif;
  font-size: 72px;
  font-weight: 500;
}

.section-10 {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
}

.div-block-48 {
  width: 80vw;
  height: 60vh;
}

.heading-7 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 150px;
  line-height: .8;
}

.div-block-49 {
  display: flex;
}

@media screen and (min-width: 1440px) {
  .lightbox-link.lchc, .lightbox-link.lchc-copy {
    width: 40vw;
    height: 35vw;
  }

  .lightbox-link-copy {
    width: 40vw;
  }

  .lightbox-link-copy.lchc, .lightbox-link-copy.lchc-copy {
    width: 40vw;
    height: 35vw;
  }

  .div-block-7 {
    max-height: 28vw;
  }

  .text-block-12 {
    bottom: 5%;
    right: 5%;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 24px;
  }

  h2 {
    font-size: 80px;
  }

  h5 {
    font-size: 28px;
  }

  p {
    font-size: 24px;
    line-height: 1.25;
  }

  .button {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 23px;
  }

  .section.footer.dark {
    justify-content: space-around;
  }

  .link, .list-item-footer {
    display: block;
  }

  .nav-container {
    margin-left: 10px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

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

  .nav-item-text {
    font-size: 16px;
  }

  .container {
    align-items: center;
    width: 80vw;
    overflow: visible;
  }

  .hero-text.white-text {
    font-size: 250px;
  }

  .hero-text.text-left.white-text {
    text-transform: uppercase;
  }

  .project-item-image {
    object-fit: cover;
    overflow: hidden;
  }

  .project-item-image._3 {
    filter: brightness(90%) contrast(105%) grayscale();
  }

  .grid-4-columns {
    display: none;
  }

  .text-xl.white-text, .font-lato.white-text {
    font-size: 24px;
  }

  .about-video-lightbox {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .contact-image-overlay {
    background-color: #fff;
  }

  .text-block.white {
    font-size: 16px;
  }

  .background-video-2 {
    height: 100ch;
  }

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

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

  .container-3 {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: auto 0% 0% auto;
  }

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

  .background-video-3 {
    height: 100ch;
  }

  .about-video-lightbox-1, .about-video-lightbox-2, .about-video-lightbox-3 {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .background-video-4 {
    height: 100ch;
  }

  .about-video-lightbox-4 {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .background-video-5 {
    width: 100%;
    height: 100ch;
  }

  .about-video-lightbox-5 {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .background-video-6 {
    height: 100ch;
  }

  .about-video-lightbox-6 {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .collection-list-wrapper {
    display: flex;
  }

  .lightbox-link-copy {
    width: 38vw;
  }

  .div-block-7 {
    max-height: 27vw;
  }

  .cursor-big {
    cursor: none;
  }

  .about-video-lightbox-6-copy, .about-video-lightbox-7 {
    justify-content: center;
    width: 103px;
    display: flex;
  }

  .heading {
    font-size: 8vw;
  }

  .text-block-2 {
    font-size: 16px;
  }

  .div-block-15 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .text-block-4 {
    font-size: 16px;
  }

  .div-block-16 {
    width: 65vw;
  }

  .text-block-5 {
    padding-bottom: 10px;
  }

  .div-block-22 {
    align-items: center;
  }

  .div-block-23 {
    width: 65vw;
  }

  .section-5 {
    padding-left: 7em;
    padding-right: 7em;
  }

  .heading-copy {
    font-size: 5vw;
  }

  ._100-width.right._100-height {
    height: 75vh;
  }

  .section-9 {
    padding-top: 2.8125vw;
    padding-bottom: 2.8125vw;
    padding-right: 8vw;
    position: static;
  }

  .section-9.footer {
    justify-content: space-between;
    align-items: flex-start;
    height: 80vh;
    display: flex;
  }

  .div-block-33 {
    height: 55vh;
  }

  .lightbox-link-2.digitalart {
    height: 35vh;
    min-height: 0;
  }

  .section-9-copy {
    padding-top: 2.8125vw;
    padding-bottom: 2.8125vw;
  }

  .div-block-36 {
    overflow: hidden;
  }

  .collection-item-4 {
    height: 85vh;
  }

  .heading-3 {
    font-size: 1.5vw;
  }

  .video-8 {
    display: none;
  }

  .link-2 {
    color: #fff;
    text-decoration: underline;
  }

  .link-2:hover {
    color: #fff;
    font-weight: 400;
  }

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

  .section-9-copy.footer {
    align-items: center;
    height: 80vh;
    display: flex;
  }

  .section-9-copy-copy {
    padding-top: 2.8125vw;
    padding-bottom: 2.8125vw;
    padding-right: 8vw;
    position: static;
  }

  .section-9-copy-copy.footer {
    align-items: center;
    height: 80vh;
    display: flex;
  }

  .image-10 {
    width: 30vw;
  }

  .div-block-43 {
    margin: 10vw 10vw 0 0;
  }

  .highlight {
    width: 20vw;
    height: 20vw;
  }

  .div-block-46 {
    align-self: center;
  }

  .section-9-copy {
    padding-top: 2.8125vw;
    padding-bottom: 2.8125vw;
    padding-right: 8vw;
    position: static;
  }

  .section-9-copy.footer {
    justify-content: space-between;
    align-items: flex-start;
    height: 80vh;
    display: flex;
  }
}

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

  h3 {
    font-size: 36px;
  }

  h5 {
    font-size: 20px;
  }

  blockquote {
    font-size: 1.5em;
  }

  .grid-8-columns.about-main-grid {
    width: 100%;
  }

  .content.social-links-content {
    text-align: right;
  }

  .content.footer-socket-links-content {
    justify-content: flex-start;
  }

  .section {
    padding: 2em;
  }

  .section.hero {
    min-height: auto;
  }

  .section.hero.contact {
    padding-top: 15vh;
  }

  .section.footer.dark {
    padding-left: 3em;
    padding-right: 3em;
  }

  .sticky, .sticky.image {
    display: block;
  }

  .navbar {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .nav-wrapper {
    inset: 0% 0% auto;
  }

  .nav-container {
    z-index: 1;
    height: auto;
    padding: 1em;
    position: relative;
  }

  .nav-link {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    display: block;
  }

  .nav-link.white.w--current {
    font-weight: 700;
  }

  .nav-menu {
    background-color: var(--primary-black);
    border-bottom: 2px solid #fff;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: 0;
    padding: 1em;
    display: block;
    position: absolute;
    inset: 80px 0% auto;
  }

  .nav-menu.nav-menu-white {
    border-bottom: 2px solid var(--primary-black);
    background-color: #fff;
  }

  .link-underline {
    display: none;
  }

  .menu-button {
    color: var(--primary-black);
    background-color: #fff;
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    transition: background-color .3s;
    display: flex;
    position: relative;
  }

  .menu-button:hover, .menu-button.w--open {
    background-color: #fafafa;
  }

  .menu-button.dark {
    background-color: #04000066;
  }

  .menu-button.dark:hover, .menu-button.dark.w--open {
    background-color: #04000099;
  }

  .brand-image {
    height: 30px;
  }

  .licensing {
    padding-left: 0;
  }

  .container {
    display: block;
  }

  .hero-text {
    font-size: 110px;
  }

  .hero-text.white-text {
    font-size: 15vw;
  }

  .hero-text.text-left.white-text {
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 800;
  }

  .project-item-image._1, .project-item-image._2, .project-item-image._3, .project-item-image._4 {
    width: 80vw;
    height: 80vw;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-content.small {
    height: auto;
  }

  .grid-6-columns, .grid-4-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .about-images-container {
    align-items: center;
  }

  .about-image-container {
    width: 60%;
  }

  .text-center {
    display: block;
  }

  .hero-content-middle-80 {
    min-height: auto;
  }

  .nav-link-circle {
    display: none;
  }

  .navbar-background {
    display: block;
  }

  .menu-button-icon {
    border-top: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    width: 26px;
    height: 12px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    inset: 19px auto auto 12px;
  }

  .menu-button-icon.light {
    border-top-color: #fff;
    border-bottom-color: #fff;
  }

  .text-xl {
    font-size: 28px;
  }

  .hero-text-container {
    margin-bottom: 2em;
  }

  .footer-link-container {
    margin-left: 0;
    margin-right: 10px;
  }

  .project-item-image-with-text {
    width: 60vw;
  }

  .available-freelance-container {
    width: 200px;
    top: -130px;
  }

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

  .contact-images-container {
    margin-top: -10px;
  }

  .contact-image-content._2 {
    width: 40vw;
    top: -5%;
  }

  .contact-image-content._3 {
    width: 35vw;
    top: 30%;
  }

  .contact-image-content._4 {
    width: 35vw;
    bottom: 0%;
    right: -5%;
  }

  .contact-image-content._1 {
    z-index: 1;
  }

  .product-details-title {
    padding-top: 5vh;
    padding-bottom: 0;
  }

  .project-details-grid-images {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .project-details-grid-image {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-self: center;
    width: auto;
    margin-top: -40px;
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
  }

  .content-width-100 {
    width: 100%;
  }

  .div-block-2, .div-block-3, .div-block-4, .div-block-5, .div-block-6 {
    height: 309.375px;
  }

  .collection-list-wrapper {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
  }

  .lightbox-link {
    height: 50%;
    display: block;
  }

  .lightbox-link.lchc, .lightbox-link.lchc-copy {
    width: 90vw;
    height: 75vw;
  }

  .lightbox-link-copy {
    width: 90vw;
    display: block;
  }

  .lightbox-link-copy.lchc, .lightbox-link-copy.lchc-copy {
    width: 90vw;
    height: 75vw;
  }

  .image-3 {
    width: 200vw;
    max-width: 100%;
  }

  .div-block-7 {
    max-height: none;
  }

  .cursor {
    display: none;
  }

  .div-block-5-copy, .div-block-6-copy, .div-block-9 {
    height: 309.375px;
  }

  .nav-wrapper-copy {
    inset: 0% 0% auto;
  }

  .nav-link-2 {
    font-size: 13px;
  }

  ._1vw-text {
    font-size: 10px;
  }

  ._1-4vw-paragraph {
    font-size: 13px;
  }

  ._100-width._100-height {
    width: 100vw;
    height: 100vw;
  }

  ._12-columns-grid {
    grid-template-columns: 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333%;
  }

  ._12-columns-grid.case {
    grid-template-columns: 1fr 1fr;
  }

  .services-accordion-button {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .section-7.black {
    display: block;
  }

  .container-4.centered {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  ._1-125vw-text {
    font-size: 12px;
  }

  ._1-4vw-text {
    font-size: 13px;
  }

  .image-holder {
    margin-bottom: 20px;
    position: static;
  }

  .work-item {
    flex-direction: column;
    display: flex;
  }

  .work-overlay {
    opacity: 0;
  }

  .section-8 {
    display: block;
  }

  .work-thumbnail {
    height: 100%;
  }

  .circle-blur-blue {
    opacity: .7;
    filter: blur(68px);
    width: 30vw;
    height: 30vw;
    display: none;
  }

  .circle-blur-yellow {
    opacity: .7;
    filter: blur(68px);
    width: 30vw;
    height: 30vw;
  }

  ._10vw-title {
    font-size: 12vw;
  }

  ._6vw-title {
    max-width: 640px;
    font-size: 55px;
  }

  .image-span, .image-span-3 {
    width: 82.5px;
    height: 55px;
  }

  .image-span-2 {
    width: 46.5px;
    height: 55px;
  }

  .image-span-4 {
    width: 82.5px;
    height: 55px;
  }

  ._6-columns-grid {
    grid-template-columns: 16.6667% 16.6667% 16.6667% 16.6667% 16.6667% 16.6667%;
  }

  ._1-25vw-text {
    font-size: 12px;
  }

  ._2-4vw-h3 {
    font-size: 18px;
  }

  ._2-4vw-h3.white.xs-margin {
    font-size: 4vw;
  }

  .div-block-39 {
    background-image: linear-gradient(#000, #000);
  }

  .image-10 {
    width: 50vw;
  }

  .text-block-11 {
    color: #bebebe;
    font-size: 12px;
    display: block;
  }

  .viewoverlay {
    display: none;
  }

  .viewmore {
    height: auto;
    max-height: 5%;
    display: block;
  }

  .viewmorearrow {
    height: auto;
    max-height: 5vw;
    display: block;
  }
}

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

  h2 {
    font-size: 50px;
  }

  .grid-8-columns {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .content.vertical-center {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .content.social-links-content {
    text-align: left;
    justify-content: flex-start;
  }

  .content.footer-socket-links-content {
    justify-content: flex-start;
  }

  .content.vertical-align-right {
    align-items: flex-start;
  }

  .section {
    padding-left: 1em;
    padding-right: 1em;
    overflow: visible;
  }

  .section.hero.contact {
    padding-top: 10vh;
  }

  .section.footer.dark {
    padding-left: 1em;
    padding-right: 1em;
  }

  .section.small-hero {
    min-height: 60vh;
  }

  .product-title {
    font-size: 70px;
  }

  .project-item-content {
    top: 70vh;
  }

  .hero-text {
    font-size: 70px;
  }

  .hero-text.white-text {
    font-size: 75px;
  }

  .hero-text.text-left.white-text {
    font-size: 10vw;
  }

  .project-item-image {
    width: 70vw;
  }

  .hero-content {
    height: 60vh;
  }

  .grid-6-columns, .grid-4-columns {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .about-images-container {
    margin-top: 50px;
  }

  .about-image-container {
    width: 80%;
  }

  .background-video {
    justify-content: center;
  }

  .video-side-content.right {
    text-align: left;
  }

  .grid-9-columns {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .scrollable-box-item.middle {
    margin-top: 0;
  }

  .video-content-sticky {
    height: auto;
  }

  .text-xl {
    font-size: 18px;
  }

  .hero-text-container {
    margin-bottom: 1em;
  }

  .heading-container {
    margin-bottom: 2em;
  }

  .footer-link-container {
    margin-left: 0;
    margin-right: 10px;
  }

  .footer-socket {
    margin-top: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .project-item-image-with-text {
    width: 70vw;
  }

  .project-item-summary {
    display: none;
  }

  .available-freelance-container {
    width: 190px;
    top: -140px;
  }

  .about-video-lightbox {
    margin-bottom: 0;
  }

  .accordion-body {
    padding-left: 0%;
    padding-right: 0%;
  }

  .accordion-number {
    justify-content: center;
    width: 20%;
    min-width: 20%;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .accordion-icon-container {
    min-height: auto;
    padding-bottom: 20px;
    position: absolute;
    inset: auto auto 0% 0%;
  }

  .accordion-title {
    justify-content: flex-start;
    min-height: 150px;
  }

  .accordion-icon {
    width: 50px;
    height: 50px;
  }

  .contact-image-content._3 {
    width: 50vw;
    left: 13%;
  }

  .contact-image-content._1 {
    width: 50vw;
  }

  .project-details-list-item {
    margin-bottom: 1em;
  }

  .project-details-grid-images {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: center;
    align-items: center;
  }

  .project-details-grid-image {
    align-items: center;
    margin-top: -65px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .background-video-2 {
    width: auto;
    height: 1000px;
  }

  .container-3 {
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
    padding-right: 0;
    display: flex;
    inset: auto 0% 0%;
  }

  .background-video-1, .background-video-3 {
    height: 1000px;
  }

  .about-video-lightbox-1, .about-video-lightbox-2, .about-video-lightbox-3 {
    margin-bottom: 0;
  }

  .background-video-4 {
    height: 1000px;
  }

  .about-video-lightbox-4 {
    margin-bottom: 0;
  }

  .background-video-5 {
    height: 1000px;
  }

  .about-video-lightbox-5 {
    margin-bottom: 0;
  }

  .background-video-6 {
    height: 1000px;
  }

  .about-video-lightbox-6 {
    margin-bottom: 0;
  }

  .lightbox-link, .lightbox-link-copy {
    align-self: center;
    margin-top: 40px;
  }

  .background-video-9 {
    height: 1000px;
  }

  .about-video-lightbox-6-copy, .about-video-lightbox-7 {
    margin-bottom: 0;
  }

  .section-3 {
    justify-content: space-between;
    height: 100vh;
    padding-bottom: 0;
  }

  .heading {
    margin-bottom: 15px;
    font-size: 10vw;
  }

  .div-block-11 {
    margin-bottom: -20px;
  }

  .section-4 {
    margin-top: -15vh;
    padding-left: 1em;
    padding-right: 1em;
  }

  .text-block-3 {
    font-size: 14px;
  }

  .div-block-13 {
    flex: 1;
  }

  .div-block-15 {
    margin-bottom: 20px;
    position: absolute;
    inset: auto 0% 0%;
  }

  .text-block-4 {
    align-self: auto;
  }

  .div-block-16 {
    height: 50vh;
  }

  .text-block-5 {
    display: none;
  }

  .section-5 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .section-3-copy {
    justify-content: space-between;
    padding-bottom: 0;
  }

  .section-6 {
    padding-left: 1em;
    padding-right: 1em;
  }

  .div-block-13-copy {
    flex: 1;
  }

  .div-block-11-copy {
    margin-bottom: -20px;
  }

  .text-block-3-copy {
    font-size: 14px;
  }

  .heading-copy {
    margin-bottom: 15px;
    font-size: 10vw;
  }

  .dot {
    width: 5px;
    height: 5px;
  }

  .navbar-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  ._12-columns-grid {
    grid-template-columns: 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333% 8.33333%;
    margin-top: 4vh;
    padding-left: 35px;
    padding-right: 35px;
    display: block;
  }

  ._2-125vw-text {
    font-size: 14px;
  }

  ._2-125vw-text.mazius {
    font-size: 16px;
  }

  .section-7 {
    padding: 45px 35px;
  }

  .section-7.black {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._8-columns-grid {
    grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
  }

  ._8-columns-grid.row-spacing {
    grid-row-gap: 10px;
  }

  ._2-1vw-title {
    font-size: 14px;
  }

  .trophy {
    width: 70%;
  }

  ._3-columns-link {
    font-size: 12px;
  }

  ._8-columns-grid-2 {
    grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
  }

  .horizontal-divider {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .section-8 {
    padding: 45px 35px;
  }

  .work-thumbnail {
    height: 80vh;
  }

  .menudivider {
    font-size: 8vw;
  }

  .section-9 {
    padding: 45px 35px;
  }

  .section-9.full-black.hero {
    padding-top: 0;
  }

  .section-9.no-lateral-padding {
    padding-top: 10vh;
  }

  .circle-blur-blue, .circle-blur-yellow {
    opacity: .9;
    filter: blur(68px);
  }

  ._3-columns-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
  }

  ._6vw-title {
    margin-bottom: 13px;
    font-size: 48px;
  }

  .image-span, .image-span-3 {
    width: 72px;
    height: 48px;
  }

  .image-span-2 {
    width: 40.5px;
    height: 48px;
  }

  .image-span-4 {
    width: 72px;
    height: 48px;
  }

  .awards-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  ._6-columns-grid._4vw-margin {
    grid-column-gap: 0vw;
  }

  ._6-columns-grid._4vw-margin.move-left {
    grid-column-gap: 4vw;
  }

  .work-grid.left-column-is-larger {
    grid-template-columns: 7.5fr 30px 2fr;
  }

  .work-grid.right-column-is-larger {
    grid-template-columns: 2fr 30px 7.5fr;
  }

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

  ._2-4vw-h3.white.xs-margin {
    margin-top: 3px;
    margin-bottom: 5px;
  }

  .project-h2 {
    font-size: 18px;
  }

  .collection-list-3 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-33 {
    margin-bottom: 50px;
  }

  .heroname {
    top: 20vh;
  }

  .div-block-39 {
    background-image: linear-gradient(#000, #000);
  }

  .section-9-copy, .section-9-copy-copy {
    padding: 45px 35px;
  }

  .image-10 {
    width: 60vw;
  }

  .div-block-43 {
    z-index: 0;
    margin-top: 20vh;
  }

  .section-9-copy {
    padding: 45px 35px;
  }

  .section-9-copy.full-black.hero {
    padding-top: 0;
  }

  .section-9-copy.no-lateral-padding {
    padding-top: 10vh;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 21px;
  }

  p {
    font-size: 16px;
  }

  blockquote {
    border-left-width: 3px;
    border-right-width: 3px;
    margin-left: -.5rem;
    margin-right: -.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1.3em;
  }

  .content.social-links-content {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content.footer-socket-links-content {
    flex-direction: column;
  }

  .section.hero-section {
    height: 480vh;
  }

  .section.small-hero {
    min-height: auto;
  }

  .section.small-hero.sticky {
    min-height: 60vh;
  }

  .sticky {
    padding-top: 40px;
  }

  .sticky.image {
    display: none;
  }

  .subscribe-form-block {
    width: 100%;
  }

  .nav-container {
    grid-template-columns: minmax(auto, auto) 1fr auto;
  }

  .nav-menu {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    left: 0;
  }

  .utility-page-content {
    width: 90%;
  }

  .product-title {
    font-size: 45px;
  }

  .project-collection-list-wrapper {
    height: 80vh;
  }

  .hero-text {
    font-size: 40px;
  }

  .hero-text.white-text {
    font-size: 15vw;
  }

  .hero-text.text-left.white-text {
    font-size: 11vw;
  }

  .project-item-image {
    height: 60vh;
  }

  .hero-content {
    justify-content: center;
  }

  .about-images-container {
    margin-top: 0;
  }

  .about-image._2 {
    transform: rotate(-5deg);
  }

  .about-image._3 {
    transform: rotate(4deg);
  }

  .about-image._4 {
    transform: rotate(6deg);
  }

  .about-image._5 {
    transform: translate(0);
  }

  .about-image-container {
    width: 90%;
  }

  .font-lato.light-in-mobile-view {
    font-weight: 300;
  }

  .project-item-image-with-text {
    width: 80vw;
  }

  .available-freelance-container {
    width: 160px;
    top: -120px;
  }

  .accordion-number {
    padding-top: 20px;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

  .blog-item:nth-child(odd) {
    margin-top: 0;
  }

  .blog-item:nth-child(2n) {
    padding-top: 0;
  }

  .contact-image-content._2 {
    width: 50vw;
    top: 0%;
  }

  .contact-image-content._3 {
    width: 70vw;
    height: 40vh;
    top: 40%;
  }

  .contact-image-content._4 {
    width: 70vw;
    height: 40vh;
  }

  .contact-image-content._1 {
    width: 60vw;
    height: 40vh;
    top: 5%;
  }

  .product-details-image {
    width: 100%;
  }

  .rich-text ol, .rich-text ul {
    padding-left: 20px;
  }

  .project-details-grid-image {
    margin-top: -50px;
    margin-bottom: -25px;
  }

  .project-details-grid-image:nth-child(odd) {
    margin-top: 0;
  }

  .project-details-grid-image:nth-child(2n) {
    padding-top: 50px;
  }

  .post-details-image {
    margin-bottom: 1em;
  }

  .background-video-2 {
    width: 80vw;
    height: 142.222vw;
  }

  .container-3 {
    padding-bottom: 0;
    inset: 0%;
  }

  .background-video-1 {
    width: 80vw;
    height: 45vw;
  }

  .grid-3 {
    flex-direction: column;
    grid-template-columns: 1fr;
    grid-template-areas: "Area-3 Area"
                         "Area-2 Area"
                         "Area-2 Area"
                         "Area-2 .";
    grid-auto-flow: row;
    align-items: center;
    display: flex;
  }

  .div-block, .div-block-2, .div-block-3 {
    align-items: center;
    height: auto;
    margin-bottom: 30px;
  }

  .background-video-3 {
    width: 80vw;
    height: 142.222vw;
  }

  .div-block-4 {
    align-items: center;
    height: auto;
    margin-bottom: 30px;
  }

  .background-video-4 {
    width: 80vw;
    height: 100vw;
  }

  .div-block-5 {
    align-items: center;
    height: auto;
    margin-bottom: 30px;
  }

  .background-video-5 {
    width: 80vw;
    height: 100vw;
  }

  .div-block-6 {
    align-items: center;
    height: auto;
    margin-bottom: 30px;
  }

  .background-video-6 {
    width: 80vw;
    height: 45vw;
  }

  .lightbox-link, .lightbox-link-copy {
    margin-top: 20px;
  }

  .div-block-7 {
    margin-bottom: 20px;
  }

  .div-block-5-copy, .div-block-6-copy, .div-block-9 {
    align-items: center;
    height: auto;
    margin-bottom: 30px;
  }

  .background-video-9 {
    width: 80vw;
    height: 45vw;
  }

  .section-3 {
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading {
    font-size: 11vw;
  }

  .div-block-11 {
    margin-bottom: 5px;
  }

  .section-4 {
    margin-top: -20vh;
  }

  .div-block-15 {
    margin-bottom: 20px;
    inset: auto 0% 5%;
  }

  .text-block-4 {
    text-align: left;
  }

  .collection-item-2 {
    height: 75vh;
  }

  .section-3-copy {
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .div-block-11-copy {
    margin-bottom: 5px;
  }

  .heading-copy {
    font-size: 11vw;
  }

  .menu-row {
    flex-direction: column;
  }

  .menu.white {
    justify-content: center;
    align-items: center;
  }

  .navbar-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._4-5vw-title {
    font-size: 24px;
  }

  ._100-width._100-height {
    object-position: 50% 50%;
  }

  ._100-width.right, ._100-width.right._100-height {
    height: auto;
  }

  ._100-width.left._100-height {
    width: 100%;
    height: auto;
  }

  ._12-columns-grid {
    margin-top: 4vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._12-columns-grid.case {
    grid-template-columns: 1fr;
  }

  .section-7 {
    padding: 30px 20px;
  }

  .section-7.black {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-arrow {
    font-size: 24px;
  }

  ._8-columns-grid {
    display: block;
  }

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

  ._2-1vw-title.white {
    margin-bottom: 10px;
  }

  .trophy {
    width: 90%;
    margin-top: 20px;
  }

  .accordion-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  ._85-width.cover {
    width: 100%;
    position: static;
  }

  .text-wrap.centered {
    margin-bottom: 30px;
  }

  .section-8 {
    padding: 30px 20px;
  }

  .work-thumbnail {
    height: 60vh;
  }

  .menudivider {
    font-size: 15vw;
  }

  .section-9 {
    padding: 30px 20px;
  }

  .section-9.full-black {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-9.full-black.intro {
    height: 50vh;
  }

  .section-9.full-black.hero {
    height: 90vh;
  }

  .section-9.no-lateral-padding {
    padding-top: 10vh;
  }

  .section-9.footer {
    height: 50vh;
  }

  .circle-blur-blue, .circle-blur-yellow {
    width: 40vw;
    height: 40vw;
  }

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

  ._3-columns-grid.no-row-margins {
    flex-direction: column;
    display: flex;
  }

  ._10vw-title {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 15vw;
  }

  ._10vw-title.left-margin {
    margin-left: 0;
  }

  ._6vw-title {
    font-size: 36px;
  }

  .image-span, .image-span-3 {
    width: 54px;
    height: 36px;
  }

  .image-span-2 {
    width: 30.5px;
    height: 36px;
  }

  .image-span-4 {
    width: 54px;
    height: 36px;
  }

  ._6-columns-grid._4vw-margin.awards {
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
  }

  .work-grid.left-column-is-larger {
    flex-direction: column;
    grid-template-columns: 7.5fr 20px 2fr;
    align-items: flex-start;
    display: flex;
  }

  .work-grid.right-column-is-larger {
    flex-direction: column;
    grid-template-columns: 2fr 20px 7.5fr;
    align-items: flex-start;
    display: flex;
  }

  .overflow-hidden-2.left {
    display: none;
  }

  .vertical-column {
    flex-direction: row;
  }

  ._2-4vw-h3.white.xs-margin {
    font-size: 10vw;
  }

  .project-title {
    font-size: 27px;
  }

  .heroname {
    align-items: center;
  }

  .overflow-hidden-2-copy.left, .overflow-hidden-2-copy-copy.right, .overflow-hidden-2-copy-copy.left {
    display: none;
  }

  .section-9-copy.full-black {
    justify-content: center;
    align-items: center;
    height: auto;
    display: flex;
  }

  .collection-item-4 {
    height: auto;
    margin-bottom: 30px;
  }

  .heading-3 {
    font-size: 5vw;
  }

  .grid-4 {
    flex-direction: column;
  }

  .section-9-copy-copy {
    padding: 30px 20px;
  }

  .section-9-copy-copy.full-black {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-10 {
    width: 70vw;
  }

  .div-block-43 {
    margin-bottom: 0;
    position: absolute;
    inset: 0%;
  }

  .heading-5 {
    font-size: 10vw;
  }

  .text-block-13 {
    font-size: 5vw;
  }

  .section-9-copy {
    padding: 30px 20px;
  }

  .section-9-copy.full-black {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-9-copy.full-black.intro {
    height: 50vh;
  }

  .section-9-copy.full-black.hero {
    height: 90vh;
  }

  .section-9-copy.no-lateral-padding {
    padding-top: 10vh;
  }

  .section-9-copy.footer {
    height: 50vh;
  }

  .text-block-14 {
    color: #8d8d8d;
    font-size: 14px;
    display: block;
  }
}

#w-node-bfc9b9db-dd20-badf-8c0b-dc67738eb122-fb3fd474 {
  justify-self: center;
}

#w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-ccdf5512-2d12-253c-14b6-512d38737fb6-5e90ae30 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0474efdc-4794-77cb-d382-76785e90ae3f-5e90ae30 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-f5857b73, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-f5857b73 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-63857b74, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-63857b74 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-e4219829-99eb-a3ab-49d2-aaf6a7244fe2-91857b78 {
  grid-area: 1 / 2 / 2 / 8;
  align-self: center;
}

#w-node-_122a7f41-47b0-3d01-e2f0-df8f4909bb54-91857b78, #w-node-efd214e1-7013-ba52-98b2-edc433dfb0a4-91857b78 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4a05e03a-7d3b-ca30-88cb-602630517126-91857b78 {
  grid-area: Area-3;
}

#w-node-_343f1ef0-96eb-934c-853d-61c8db3fcce5-91857b78 {
  grid-area: Area-5;
}

#w-node-f68429ce-ec0b-44dd-34fe-b61a9582c8df-91857b78 {
  grid-area: Area-10;
}

#w-node-d527aba8-11f4-73b0-85f6-8b7d9c781564-91857b78 {
  grid-area: Area-11;
}

#w-node-_7385dd61-3362-1426-b05f-c8eda5a838db-91857b78 {
  grid-area: Area-7;
}

#w-node-_809211a5-52fc-9de9-93cb-4ba7635601ed-91857b78 {
  grid-area: Area-8;
}

#w-node-_468390c4-a8e0-7565-ebb8-5476d7f9fbfc-91857b78 {
  grid-area: Area;
}

#w-node-acd124cc-3b8b-e4ec-1695-1fdb9c87ef17-91857b78 {
  grid-area: Area-2;
}

#w-node-a70e5d45-5df3-f015-61ad-05c1fb6ab021-91857b78 {
  grid-area: Area-9;
}

#w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a44-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a4c-45767a41 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a4e-45767a41 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a52-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a58-45767a41 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a66-45767a41 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a69-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a72-45767a41 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dd293969-f790-f28b-6352-5cc42595dd8a-9e857b79 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e0c2433c-f6db-da27-6bd3-875673298a07-9e857b79 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_26c3a33f-aa0e-0404-85b7-d60021f102ba-9e857b79, #w-node-e20dba0d-b8b4-352e-aaed-a37e07e62099-9e857b79, #w-node-c72bab12-3dfc-a767-dfa1-c82a5b1c5ab9-9e857b79 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d679e879-0f57-9801-18de-96d8195a28a8-9e857b79 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-d679e879-0f57-9801-18de-96d8195a28ba-9e857b79, #w-node-d679e879-0f57-9801-18de-96d8195a28c5-9e857b79, #w-node-d679e879-0f57-9801-18de-96d8195a28d0-9e857b79 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_82c83d9e-c13e-41b3-c06f-49265b33eb35-3b857b7a {
  grid-area: 1 / 1 / 4 / 3;
}

#w-node-_499c0954-466c-6973-9cd4-afc57b2ab214-3b857b7a {
  grid-area: 2 / 7 / 3 / 9;
}

#w-node-_0e3f8e2c-2676-9e1b-2194-08693b8cc8cf-3b857b7a {
  grid-area: 2 / 2 / 4 / 5;
}

#w-node-c1b8a8e3-e849-059b-c5b2-5b014895ed14-3b857b7a {
  grid-area: 3 / 5 / 5 / 8;
}

#w-node-_553cdc09-9f97-f8cd-447f-9dabc614e705-3b857b7a {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70a-3b857b7a, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70c-3b857b7a, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70e-3b857b7a, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e712-3b857b7a, #w-node-_588f1459-ca34-3829-2763-5fd9c5c3cd0e-3b857b7a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f680f945-36d6-cee2-dcc6-4b46381f138b-0e857b7b {
  grid-area: 1 / 3 / 2 / 7;
}

#w-node-_118868cc-7b8b-8fcb-ab58-2ee74b0b5cf3-84f5036a {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_118868cc-7b8b-8fcb-ab58-2ee74b0b5cf5-84f5036a {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_118868cc-7b8b-8fcb-ab58-2ee74b0b5cf7-84f5036a {
  grid-area: 3 / 2 / 4 / 4;
}

#w-node-_0e93db6a-3cd6-b47c-3afd-3eb1d409c148-84f5036a {
  grid-area: 1 / 3 / 2 / 4;
}

@media screen and (min-width: 1920px) {
  #w-node-_122a7f41-47b0-3d01-e2f0-df8f4909bb54-91857b78, #w-node-efd214e1-7013-ba52-98b2-edc433dfb0a4-91857b78, #w-node-_4a05e03a-7d3b-ca30-88cb-602630517126-91857b78 {
    grid-area: Area-3;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_3e81723f-6596-ee3d-49f4-989ffb3fd492-fb3fd474 {
    justify-self: end;
  }

  #w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30 {
    grid-column: span 5 / span 5;
  }

  #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30 {
    grid-column: span 6 / span 6;
  }

  #w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30 {
    grid-column: span 4 / span 4;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-f5857b73, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-f5857b73, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-63857b74, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-63857b74 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a44-45767a41 {
    grid-column: span 5 / span 5;
  }

  #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a4c-45767a41 {
    grid-column: span 6 / span 6;
  }

  #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a69-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a72-45767a41 {
    grid-column: span 4 / span 4;
  }

  #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-9e857b79, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-9e857b79, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e705-3b857b7a {
    grid-column: span 8 / span 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fb6-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30, #w-node-_0474efdc-4794-77cb-d382-76785e90ae3f-5e90ae30, #w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30 {
    grid-column: span 2 / span 2;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-f5857b73, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-f5857b73, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-63857b74, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-63857b74 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a44-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a4c-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a4e-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a52-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a58-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a66-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a69-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a72-45767a41, #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-9e857b79, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-9e857b79 {
    grid-column: span 2 / span 2;
  }

  #w-node-d679e879-0f57-9801-18de-96d8195a28a8-9e857b79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e705-3b857b7a {
    grid-column: span 2 / span 2;
  }

  #w-node-f680f945-36d6-cee2-dcc6-4b46381f138b-0e857b7b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3e81723f-6596-ee3d-49f4-989ffb3fd477-fb3fd474 {
    justify-self: start;
  }

  #w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30 {
    grid-column: span 2 / span 2;
  }

  #w-node-e4219829-99eb-a3ab-49d2-aaf6a7244fe2-91857b78 {
    grid-column-end: 12;
  }

  #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a52-45767a41, #w-node-_664b60b4-3dc0-d1e1-be6a-9d4f45767a58-45767a41 {
    grid-column: span 2 / span 2;
  }

  #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70a-3b857b7a, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70c-3b857b7a, #w-node-_553cdc09-9f97-f8cd-447f-9dabc614e70e-3b857b7a, #w-node-a8e55045-4d46-b589-0058-0176c3635e1a-0e857b7b, #w-node-_46c6ecee-2c39-39b7-77cd-31af3b377613-2b857b7e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt root ui';
  src: url('../fonts/PT-Root-UI_Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mazius Extraitalic';
  src: url('../fonts/MAZIUSREVIEW20.09-Extraitalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal book';
  src: url('../fonts/PPNeueMontreal-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mazius Extraitalic';
  src: url('../fonts/MAZIUSREVIEW20.09-Extraitalic.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}