:root {
  --heading: #1f1717;
  --paragraphs: #4f4d49;
  --accent-2: #fbbbb7;
  --light: #f6eee3;
  --border: #d3cdc3;
  --accent-1: #fbd85f;
}

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--heading);
  color: var(--paragraphs);
  flex-direction: column;
  justify-content: flex-start;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 1.75em;
  display: flex;
}

h1 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 28px;
  font-family: Marcellus, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.24em;
}

h2 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 27px;
  font-family: Marcellus, sans-serif;
  font-size: 57px;
  font-weight: 400;
  line-height: 1.26em;
}

h3 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 26px;
  font-family: Marcellus, sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.26em;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Marcellus, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.26em;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Marcellus, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.28em;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 14px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
}

p {
  margin-bottom: 30px;
}

a {
  border-bottom: 2px solid var(--accent-2);
  color: var(--heading);
  text-decoration: none;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

a:hover {
  border-bottom-color: var(--heading);
}

ul, ol {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 36px;
}

li {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
}

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

blockquote {
  border-left: 2px solid var(--accent-2);
  color: var(--heading);
  margin-bottom: 30px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.7em;
}

figure {
  margin-top: 40px;
  margin-bottom: 40px;
}

figcaption {
  text-align: center;
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  line-height: 1.6em;
}

.navbar {
  z-index: 100;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.brand {
  border-bottom-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 13px;
  transition-property: none;
  display: flex;
  position: relative;
}

.logo {
  outline-color: var(--paragraphs);
  outline-offset: 0px;
  mix-blend-mode: exclusion;
  outline-width: 3px;
  outline-style: none;
  width: auto;
  height: 40px;
}

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

.line-top {
  flex: 1;
  width: 100%;
  height: 1px;
  position: relative;
}

.grid-navbar {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 25px 50px;
}

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

.nav-link {
  z-index: 10;
  border-bottom-style: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex;
  position: relative;
}

.nav-text {
  color: var(--heading);
  text-align: center;
  font-size: 17px;
  line-height: 1.2em;
}

.nav-text.light {
  color: var(--light);
  text-align: center;
}

.circle {
  z-index: -10;
  border: 1px solid var(--heading);
  opacity: 0;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.circle.light {
  border-color: var(--light);
}

.menu-button-open {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

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

.menu-navbar {
  border-bottom-style: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  display: flex;
  position: relative;
}

.nav-menu {
  z-index: 150;
  background-color: var(--heading);
  width: 100%;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.nav-menu.dark {
  background-color: #1a1313;
  display: none;
}

.space-link {
  background-color: var(--heading);
  opacity: .2;
  width: 1px;
  height: 9px;
  margin-left: 3px;
  margin-right: 3px;
}

.space-link.light {
  background-color: var(--light);
}

.line-fill-top---left {
  background-color: var(--heading);
  width: 100%;
  margin-left: auto;
  position: absolute;
  inset: 0%;
}

.line-fill-top---left.light {
  background-color: var(--light);
  opacity: .2;
}

.line-fill-top---right {
  background-color: var(--heading);
  width: 100%;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.line-fill-top---right.light {
  background-color: var(--light);
  opacity: .2;
}

.menu-link {
  opacity: .4;
  color: var(--light);
  border-bottom-style: none;
  padding: 30px 25px;
  font-family: Marcellus, sans-serif;
  font-size: 72px;
  line-height: 1em;
  transition-property: opacity;
}

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

.menu-link.w--current {
  color: var(--light);
}

.menu-block-links {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.grid-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  place-items: stretch center;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

.line-menu {
  background-color: var(--light);
  opacity: .2;
  width: 1px;
  height: 100%;
  min-height: 30px;
}

.menu-button-close {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: fixed;
  inset: 25px 50px auto auto;
}

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

.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85vh;
}

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

.grid-hero {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  perspective: 1000px;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  place-items: center;
  width: 100%;
  height: 100vh;
  padding: 100px 70px 50px;
  position: fixed;
  inset: 0% 0% auto;
  overflow: auto;
}

.line-hero {
  width: 1px;
  height: 100%;
  min-height: 40px;
  position: relative;
}

.line-fill-hero---top {
  background-color: var(--paragraphs);
  height: 100%;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.line-fill-hero---top.light {
  background-color: var(--light);
  opacity: .2;
}

.block-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1030px;
  padding-top: 25px;
  padding-bottom: 45px;
  display: flex;
}

.block-hero.single {
  padding-bottom: 5px;
}

.paragraph-hero {
  color: var(--border);
  max-width: 600px;
  margin-bottom: 38px;
  font-size: 20px;
  line-height: 1.6em;
}

.paragraph-hero.light {
  opacity: .45;
  color: var(--light);
}

.button {
  border: 1px solid var(--light);
  box-shadow: 3px 3px 0 0 var(--light);
  color: var(--light);
  text-align: center;
  background-color: #0000;
  padding: 14px 33px;
  font-size: 17px;
  line-height: 1.2em;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  box-shadow: 0 0 0 0 var(--heading);
  transform: translate(0, 4px);
}

.button.small {
  padding: 10px 22px;
  font-size: 15px;
}

.heading-hero {
  color: var(--light);
  margin-bottom: 20px;
}

.heading-hero.light {
  color: var(--light);
}

.line-fill-hero---down {
  background-color: var(--paragraphs);
  height: 100%;
  margin-bottom: auto;
  position: absolute;
  inset: 0%;
}

.line-fill-hero---down.light {
  background-color: var(--light);
  opacity: .2;
}

.section {
  z-index: 10;
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 60px;
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  position: relative;
}

.section.dark {
  background-color: var(--heading);
  padding-left: 20px;
  padding-right: 20px;
}

.collection-list-wrapper---a {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 200px;
}

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

.img-project {
  object-fit: cover;
  width: 100%;
  height: 600px;
}

.img-project.page {
  height: 300px;
}

.link-img-project {
  border-bottom-style: none;
  transition-property: none;
  overflow: hidden;
}

.project-img-block---a {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-heading-project {
  border-bottom-style: none;
  transition-property: none;
  position: relative;
}

.collection-item---a {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-project {
  color: var(--light);
  margin-bottom: 0;
}

.heading-project.light {
  color: var(--light);
}

.project-subtitle {
  color: var(--light);
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.2em;
}

.project-subtitle.light {
  opacity: .55;
  color: var(--light);
}

.project-text-block---a {
  text-align: center;
  max-width: 670px;
  margin-top: 55px;
}

.empty-state {
  border: 1px solid var(--heading);
  background-color: var(--light);
  text-align: center;
}

.empty-state.light {
  border-color: var(--light);
  background-color: var(--heading);
}

.text-empty {
  color: var(--heading);
  font-size: 17px;
}

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

.footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: .2;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  width: 100%;
}

.line-footer {
  background-color: var(--heading);
  flex: 1;
  width: 100%;
  height: 1px;
  position: relative;
}

.line-footer.light {
  background-color: var(--light);
}

.links-footer {
  justify-content: center;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  overflow: visible;
}

.bg-color-gradient {
  z-index: -50;
  background-image: radial-gradient(circle farthest-corner at 100% 0%, var(--accent-2), #fbbbb700 59%), radial-gradient(circle farthest-corner at 0% 100%, var(--accent-1), #fbd85f00 38%);
  position: fixed;
  inset: 0%;
}

.bg-color-gradient.dark {
  background-image: radial-gradient(circle at 100% 0, #ab10ff29, #ab10ff00 46%), radial-gradient(circle at 0 100%, #f0154545, #f0154500 38%);
  display: block;
  overflow: visible;
}

.heading-hero-large {
  margin-bottom: 20px;
  font-size: 90px;
  line-height: 1.1em;
}

.heading-hero-large.light {
  color: var(--light);
}

.collection-list-wrapper---b {
  width: 100%;
  max-width: 2000px;
  margin-bottom: 200px;
}

.collection-item---b {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.collection-item---b:nth-child(2n) {
  flex-direction: row-reverse;
}

.project-img-block---b {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.project-text-block---b {
  text-align: left;
  width: 50%;
  margin-top: 35px;
  margin-bottom: 35px;
  padding-left: 5%;
  padding-right: 5%;
}

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

.grid-half {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: start center;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.sticky-half {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 100px 10% 50px;
  display: flex;
  position: sticky;
  top: 0;
}

.block-half {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 150px 10% 50px;
  display: flex;
}

.line-half {
  height: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.collection-list-wrapper---c {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 200px;
}

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

.collection-item---c {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.project-img-block---c {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-text-block---c {
  text-align: center;
  max-width: 580px;
  margin-top: 55px;
}

.grid-single {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  perspective: 1000px;
  grid-template-rows: 70px auto 70px;
  grid-template-columns: 1fr;
  place-items: center;
  width: 100%;
  padding: 100px 70px 0;
}

.section-single {
  margin-top: 0;
}

.collection-list-wrapper---page {
  width: 100%;
  max-width: 2000px;
  margin-bottom: 200px;
}

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

.collection-item---page {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 60px;
  display: grid;
}

.project-img-block---page {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-text-block---page {
  text-align: left;
  max-width: 670px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 8%;
}

.utility-page-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-top: 100px;
  padding-bottom: 50px;
  display: grid;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 310px;
  margin-bottom: 0;
  margin-left: 14px;
  margin-right: 14px;
  display: flex;
}

.rich-text-block {
  max-width: 790px;
  margin-top: 60px;
  margin-bottom: 70px;
}

.block-img-project-single {
  perspective: 1000px;
  max-width: 1400px;
}

.form-block {
  width: 100%;
}

.text-field {
  border: 1px solid var(--border);
  color: var(--border);
  background-color: #0000;
  height: 52px;
  padding: 15px;
  font-size: 17px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.text-field::placeholder {
  color: var(--border);
}

.textarea {
  border: 1px solid var(--border);
  color: var(--border);
  background-color: #0000;
  min-height: 120px;
  margin-bottom: 20px;
  padding: 15px;
  font-size: 17px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

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

.textarea::placeholder {
  color: var(--border);
}

.form {
  grid-column-gap: 17px;
  grid-row-gap: 7px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch center;
  display: grid;
}

.error-message {
  background-color: var(--accent-2);
  margin-top: 20px;
  padding: 15px;
}

.text-error {
  color: var(--heading);
}

.success-message {
  background-color: var(--accent-1);
}

.text-success {
  color: var(--heading);
}

.page-content {
  width: 100%;
  max-width: 790px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.grid-page-img {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 1000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 950px) 1fr;
  width: 100%;
  max-width: 2000px;
}

.img-page {
  object-fit: cover;
  width: 100%;
  height: 700px;
}

.grid-list {
  border-top: 1px solid var(--border);
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  margin-bottom: 30px;
  padding-top: 10px;
}

.list-subtitle {
  color: var(--border);
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.2em;
}

.heading-list {
  color: var(--border);
  margin-bottom: 10px;
}

.heading-list.dm-sans {
  font-family: DM Sans, sans-serif;
}

.approach {
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
  margin-right: 24%;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.approach.right {
  margin-left: 24%;
  margin-right: 0%;
}

.number {
  color: var(--border);
  margin-right: 30px;
  font-family: Marcellus, sans-serif;
  font-size: 115px;
  line-height: 1em;
}

.heading-approach {
  color: var(--border);
  margin-bottom: 8px;
}

.paragraph-approach {
  color: var(--border);
  margin-bottom: 0;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 60px;
  margin-bottom: 60px;
}

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

.image-licensing {
  width: 100%;
}

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

.color {
  border: 1px solid var(--border);
  background-color: var(--light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

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

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

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

.color.accent-1 {
  background-color: var(--accent-1);
}

.color.accent-2 {
  background-color: var(--accent-2);
}

.text-color {
  color: var(--heading);
  font-size: 17px;
  line-height: 1.2em;
}

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

.block-buttons {
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 25px;
  display: flex;
}

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

.grid-buttons {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: auto;
  place-items: center start;
}

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

.button-light {
  border: 1px solid var(--light);
  box-shadow: 3px 3px 0 0 var(--light);
  color: var(--light);
  background-color: #0000;
  padding: 14px 33px;
  font-size: 17px;
  line-height: 1.2em;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button-light:hover {
  border-bottom-color: var(--light);
  box-shadow: 0 0 0 0 var(--light);
  transform: translate(0, 4px);
}

.button-light.small {
  padding: 10px 22px;
  font-size: 15px;
}

.section-splash {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.section-splash.dark {
  background-color: var(--heading);
}

.splash-navbar {
  z-index: 100;
  width: 100%;
  margin-bottom: 90px;
  padding-top: 4px;
  padding-bottom: 4px;
  position: sticky;
  top: 0;
}

.splash {
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 90px auto;
  display: flex;
}

.link-img-splash {
  border: 1px solid var(--border);
  width: 100%;
  margin-bottom: 6px;
  transition-property: none;
  position: relative;
}

.link-img-splash:hover {
  border-color: var(--border);
}

.link-img-splash.dark {
  border-color: #f6eee333;
}

.img-splash {
  position: absolute;
  inset: 0%;
}

.footer-splash {
  margin-top: 150px;
  padding-left: 50px;
  padding-right: 50px;
}

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

.link {
  color: var(--border);
}

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

.heading-2 {
  color: var(--light);
}

.paragraph {
  color: var(--border);
}

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

.heading-3 {
  color: var(--light);
}

.paragraph-2, .paragraph-3, .link-2, .heading-4, .heading-5, .link-3, .link-4, .link-5, .link-6, .link-7, .link-8, .heading-6, .heading-7 {
  color: var(--border);
}

.background-video {
  min-width: 110%;
  min-height: 700px;
  display: block;
  position: relative;
}

.background-video.project_video {
  min-width: 100%;
  min-height: 800px;
}

.collection-list-wrapper---a-copy {
  background-color: #0000;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 200px;
}

.project_tile {
  min-width: 100%;
}

.tile_inside {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  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;
  position: relative;
}

.div-block {
  flex: 0 auto;
  align-self: center;
  min-width: 100%;
  min-height: 100%;
}

.div-block.full_project {
  margin-bottom: 200px;
}

.collection-list-wrapper---page-copy {
  width: 100%;
  max-width: 2000px;
  margin-bottom: 200px;
}

.collection-list---page-copy {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item---page-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 60px;
  display: grid;
}

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

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 26px;
  }

  .grid-navbar {
    padding: 18px 25px;
  }

  .menu-link {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 60px;
  }

  .grid-menu {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .menu-button-close {
    top: 18px;
    right: 25px;
  }

  .grid-hero {
    padding: 85px 40px 40px;
  }

  .section {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .collection-list-wrapper---a {
    margin-bottom: 150px;
  }

  .collection-list---a {
    grid-row-gap: 150px;
  }

  .img-project {
    height: 500px;
  }

  .img-project.page {
    height: 250px;
  }

  .project-text-block---a {
    margin-top: 40px;
  }

  .links-footer {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .heading-hero-large {
    font-size: 72px;
  }

  .collection-list-wrapper---b {
    margin-bottom: 150px;
  }

  .project-text-block---b {
    margin-top: 25px;
    margin-bottom: 25px;
  }

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

  .sticky-half {
    min-height: auto;
    padding: 180px 40px 40px;
    position: relative;
  }

  .block-half {
    padding: 40px 40px 0;
  }

  .line-half {
    display: none;
  }

  .collection-list-wrapper---c {
    margin-bottom: 150px;
  }

  .collection-list---c {
    grid-row-gap: 150px;
  }

  .project-text-block---c {
    margin-top: 40px;
  }

  .grid-single {
    padding-top: 85px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .collection-list-wrapper---page {
    margin-bottom: 150px;
  }

  .collection-list---page {
    grid-row-gap: 40px;
  }

  .collection-item---page {
    padding-top: 40px;
  }

  .utility-page-wrap {
    padding-top: 85px;
    padding-bottom: 40px;
  }

  .page-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .img-page {
    height: 500px;
  }

  .splash {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .footer-splash {
    margin-top: 120px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .collection-list-wrapper---a-copy, .collection-list-wrapper---page-copy {
    margin-bottom: 150px;
  }

  .collection-list---page-copy {
    grid-row-gap: 40px;
  }

  .collection-item---page-copy {
    padding-top: 40px;
  }
}

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

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 33px;
  }

  h4 {
    font-size: 27px;
  }

  h5 {
    font-size: 23px;
  }

  h6 {
    font-size: 18px;
  }

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

  .menu-link {
    padding: 22px 20px;
    font-size: 46px;
  }

  .menu-block-links {
    padding: 15px;
  }

  .menu-button-close {
    right: 15px;
  }

  .grid-hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .paragraph-hero {
    font-size: 18px;
  }

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

  .collection-list-wrapper---a {
    margin-bottom: 120px;
  }

  .collection-list---a {
    grid-row-gap: 120px;
  }

  .img-project {
    height: 400px;
  }

  .links-footer {
    flex-direction: column;
  }

  .heading-hero-large {
    font-size: 64px;
  }

  .collection-list-wrapper---b {
    margin-bottom: 120px;
  }

  .collection-item---b, .collection-item---b:nth-child(2n) {
    flex-direction: column;
  }

  .project-img-block---b {
    width: 100%;
  }

  .project-text-block---b {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .collection-list---b {
    grid-row-gap: 120px;
  }

  .sticky-half {
    padding: 150px 30px 20px;
  }

  .block-half {
    padding-left: 30px;
    padding-right: 30px;
  }

  .collection-list-wrapper---c {
    margin-bottom: 120px;
  }

  .collection-list---c {
    grid-row-gap: 120px;
  }

  .grid-single {
    padding-left: 30px;
    padding-right: 30px;
  }

  .collection-list-wrapper---page {
    margin-bottom: 120px;
  }

  .img-page {
    height: 400px;
  }

  .grid-list {
    grid-template-columns: 2fr 3fr;
  }

  .approach {
    margin-right: 0%;
  }

  .approach.right {
    margin-left: 0%;
  }

  .number {
    font-size: 80px;
  }

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

  .grid-buttons {
    grid-template-columns: auto;
  }

  .splash-navbar {
    margin-bottom: 60px;
  }

  .footer-splash {
    padding-left: 15px;
    padding-right: 15px;
  }

  .collection-list-wrapper---a-copy, .collection-list-wrapper---page-copy {
    margin-bottom: 120px;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 21px;
  }

  .grid-navbar {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding: 10px 5px;
  }

  .nav-link, .menu-navbar {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-link {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 40px;
  }

  .grid-menu {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .menu-button-close {
    top: 10px;
    right: 5px;
  }

  .section-hero {
    height: 60vh;
  }

  .grid-hero {
    height: 70vh;
    padding: 70px 20px 20px;
  }

  .paragraph-hero {
    margin-bottom: 28px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.dark {
    padding-left: 4px;
    padding-right: 4px;
  }

  .collection-list-wrapper---a {
    margin-bottom: 100px;
  }

  .collection-list---a {
    grid-row-gap: 100px;
  }

  .img-project {
    height: 300px;
  }

  .img-project.page {
    height: 200px;
  }

  .project-text-block---a {
    margin-top: 30px;
  }

  .heading-hero-large {
    font-size: 54px;
  }

  .collection-list-wrapper---b {
    margin-bottom: 100px;
  }

  .project-text-block---b {
    margin-top: 30px;
  }

  .collection-list---b {
    grid-row-gap: 100px;
  }

  .sticky-half, .block-half {
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-list-wrapper---c {
    margin-bottom: 100px;
  }

  .collection-list---c {
    grid-row-gap: 100px;
  }

  .project-text-block---c {
    margin-top: 30px;
  }

  .grid-single {
    padding-top: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-list-wrapper---page {
    margin-bottom: 100px;
  }

  .collection-item---page {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .project-text-block---page {
    margin-top: 30px;
    margin-bottom: 15px;
    margin-right: 0%;
  }

  .utility-page-wrap {
    padding-top: 70px;
    padding-bottom: 20px;
  }

  .rich-text-block {
    margin-top: 40px;
    margin-bottom: 50px;
  }

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

  .page-content {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .img-page {
    height: 300px;
  }

  .approach {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .number {
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 70px;
  }

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

  .button-light {
    display: none;
  }

  .splash {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer-splash {
    margin-top: 80px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .background-video {
    object-fit: fill;
    min-width: 110%;
    min-height: 100px;
    max-height: 200px;
  }

  .background-video.project_video {
    min-width: 100%;
    min-height: auto;
  }

  .collection-list-wrapper---a-copy, .collection-list-wrapper---page-copy {
    margin-bottom: 100px;
  }

  .collection-item---page-copy {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
}

#w-node-_4d332e4f-9e02-a1dd-0038-06b964cc4c78-9f6433a8 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a1e2452d-c058-c9f4-e474-8b9ba020359e-9f6433a8 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_4d332e4f-9e02-a1dd-0038-06b964cc4c78-f644550e {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (max-width: 767px) {
  #w-node-ec164908-b094-ca6e-222f-1c37e31ba4c5-9f6433a8, #w-node-f409955f-2f35-fd50-0dc7-0df05b3532d0-0a8acb2b, #w-node-ec164908-b094-ca6e-222f-1c37e31ba4c5-f644550e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ad826445-c0be-291e-0ce4-d7cfcf53cbc0-65d0dce8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


