:root {
  --primary--off-white: #efedea;
  --primary--black: black;
  --primary--charcoal: #242320;
  --primary--white: white;
  --primary--forest-green: #092321;
  --primary--gold: #c9baad;
  --primary--olive-green: #96a396;
  --text-color--neutral-lighter: #ccc;
  --text-color--neutral: #666;
}

body {
  background-color: var(--primary--off-white);
  color: var(--primary--black);
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
  line-height: 1.4;
}

a {
  color: var(--primary--black);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}

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

li {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
}

label {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: IBM Plex Mono, sans-serif;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: left;
  margin-top: 1rem;
}

.form-submit-button {
  background-color: var(--primary--charcoal);
  color: var(--primary--white);
  border-top: 1px #ffffff1a;
  border-left: 1px #000;
  border-right: 1px #000;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 140%;
  transition: background-color .2s;
}

.form-submit-button:hover {
  color: var(--primary--charcoal);
  background-color: #ebe9e1;
  border-color: #ffffff4d #ffffff4d #fcfcfc;
}

.small-text {
  font-size: .88rem;
}

.small-text.white {
  color: var(--primary--white);
}

.form-block {
  width: 100%;
}

.form-message-error {
  background-color: #fef3f2;
  margin-top: 2rem;
  padding: .75rem 1rem;
  font-size: 1rem;
}

._12-column-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--primary--forest-green);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: stretch;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

._12-column-grid._4rem {
  grid-row-gap: 4rem;
}

._12-column-grid._4rem.middle-align {
  place-items: center stretch;
}

._12-column-grid.nav {
  grid-template-columns: 1fr 1fr;
  place-items: end stretch;
}

._12-column-grid._8rem {
  grid-row-gap: 8rem;
}

._12-column-grid.white {
  color: var(--primary--off-white);
}

.container {
  width: 100%;
  padding: 8rem 2rem;
}

.container.nav {
  background-color: var(--primary--forest-green);
  border: 1px solid #66666614;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.container.intro {
  padding-top: 12rem;
}

.container.full {
  padding-left: 0;
  padding-right: 0;
}

.container.footer {
  padding-bottom: 1rem;
}

.large-text {
  font-size: 2rem;
}

.style-guide-label {
  color: var(--primary--black);
  background-color: #ebe9e1;
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  display: flex;
}

.form-message-success {
  background-color: #ddd0;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.style-guide-color-swatch.charcoal {
  background-color: #363636;
}

.style-guide-color-swatch.sand {
  border: 1px solid var(--primary--gold);
  background-color: var(--primary--off-white);
}

.style-guide-color-swatch.white {
  background-color: #fdfdfd;
  border: 1px solid #00000012;
}

.style-guide-color-swatch.black {
  background-color: #1b1b1b;
}

.style-guide-color-swatch.dune {
  background-color: var(--primary--gold);
}

.info-page-content {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  display: flex;
}

.style-guide-background {
  border: 1px solid #fff3;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.style-guide-item {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.mono-text {
  color: var(--primary--olive-green);
  -webkit-text-stroke-color: #666;
  text-transform: uppercase;
  font-family: IBM Plex Mono, sans-serif;
  font-size: .88rem;
}

.mono-text.white {
  color: var(--primary--white);
}

.mono-text.neutral-lighter {
  color: var(--text-color--neutral-lighter);
}

.rich-text h5 {
  margin-bottom: 1rem;
}

.rich-text figcaption {
  margin-bottom: 3rem;
}

.rich-text h3 {
  margin-bottom: 1rem;
  font-weight: 400;
}

.rich-text h4, .rich-text h1, .rich-text h2, .rich-text h6 {
  margin-bottom: 1rem;
}

.rich-text p {
  margin-bottom: 3rem;
}

.rich-text ul {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-left: 2.5rem;
}

.rich-text figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.typography-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.color-spacer {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.style-guide-item-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-bottom: 1px solid #ffffff2b;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
}

.style-guide-heading-wrapper {
  margin-bottom: 6rem;
}

.medium-text.white {
  color: var(--primary--off-white);
}

.medium-text.semi-bold {
  font-weight: 600;
}

.medium-text.neutral {
  color: var(--text-color--neutral);
}

.form-input {
  background-color: #fff0;
  border-width: 0 0 1px;
  border-color: #000 #000 #24232045;
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  min-height: 4rem;
  margin-bottom: 2rem;
  padding: 1rem 0 1rem 0;
}

.form-input:focus {
  border-bottom-color: #666;
}

.form-input:focus-visible {
  color: var(--primary--black);
}

.form-input[data-wf-focus-visible] {
  color: var(--primary--black);
}

.form-input.text-area {
  color: var(--primary--black);
  min-height: 8rem;
}

.list {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.logo-link {
  z-index: 999;
  text-decoration: none;
  position: relative;
}

.nav-link-wrapper, .nav-link-wrapper._2 {
  display: flex;
}

.small-logo {
  width: auto;
  height: 2.2rem;
}

.nav-bar {
  z-index: 999;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: var(--primary--white);
  font-size: 3.5rem;
  text-decoration: none;
}

.nav-link:hover {
  opacity: .6;
}

.menu-button-text {
  color: var(--primary--off-white);
  line-height: 100%;
}

.button-menu-wrapper {
  color: var(--primary--off-white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.nav-content {
  z-index: 888;
  background-color: var(--primary--forest-green);
  text-align: right;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 4rem 3rem;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.nav-link-list {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.nav-link-item {
  overflow: hidden;
}

.button-menu {
  z-index: 999;
  color: var(--primary--off-white);
  cursor: pointer;
  height: 1rem;
  display: block;
  position: relative;
  overflow: hidden;
}

.animation-fade-in {
  color: var(--primary--forest-green);
}

.parallax-image-wrapper {
  z-index: 1;
  object-fit: cover;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 90svh;
  display: flex;
  overflow: hidden;
}

.parallax-image {
  filter: brightness(93%);
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100svh;
}

.item-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--primary--forest-green);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: visible;
}

.item-block._250px-width {
  color: var(--primary--white);
  max-width: 250px;
}

.content-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  display: flex;
}

.content-wrapper.intro {
  margin-top: 0;
}

.content-wrapper.intro._4rem {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.margin-bottom.extra-large {
  padding-bottom: 8rem;
}

.margin-bottom.medium {
  margin-bottom: 2rem;
}

.margin-bottom.small {
  margin-bottom: 1rem;
}

.margin-bottom.large {
  margin-bottom: 4rem;
}

.card {
  border-radius: .25rem;
  flex-direction: column;
  flex: 25%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 32em;
  transition: filter .6s cubic-bezier(.645, .045, .355, 1), opacity .6s cubic-bezier(.645, .045, .355, 1), flex-basis .6s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.card:hover {
  flex-basis: 100%;
}

.text-wrapper {
  background-color: var(--primary--forest-green);
  border-radius: 6px;
  padding: .75rem 1.5rem;
}

.view-text-overflow-hide {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
}

.view-text-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.work-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.link-image {
  aspect-ratio: 4 / 5;
  opacity: 1;
  object-fit: cover;
  display: inline-block;
}

.link-image-thumbnail {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  background-color: var(--primary--off-white);
  object-fit: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
  position: relative;
  overflow: hidden;
}

.title-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--primary--forest-green);
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.work-item-content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.work-item-wrapper {
  display: flex;
}

.work-item-wrapper-left {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.work-list-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}

.work-item-wrapper-right {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  align-items: stretch;
  margin-top: 8rem;
  display: flex;
}

.stats-content-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  display: flex;
}

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

.button {
  background-color: var(--primary--forest-green);
  color: #040126;
  text-align: center;
  letter-spacing: -.03rem;
  border-radius: 5px;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  overflow: visible;
}

.button-text-container {
  z-index: 5;
  height: 1.5rem;
  position: relative;
  overflow: hidden;
}

.button-text {
  color: var(--primary--off-white);
  position: relative;
}

.background-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

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

.image-overlay.bottom {
  background-image: linear-gradient(#00000080, #00000080), url('../images/BottomNew.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.background-image-wrapper {
  z-index: -1;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image-wrapper-content {
  z-index: 2;
  color: #fafafa;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50rem;
  padding: 4rem;
  display: flex;
  position: relative;
}

.button-secondary {
  border: 1px solid var(--primary--white);
  border-radius: 5px;
  padding: .75rem 1.5rem;
}

.footer-item-block {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.button-arrow-wrapper {
  position: relative;
  overflow: hidden;
}

.button-link-text {
  font-size: 1rem;
}

.button-link-text.white {
  color: var(--primary--white);
}

.footer-list-block {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.contact-group {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.footer-link {
  color: var(--primary--forest-green);
  text-decoration: none;
}

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

.footer-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.text-span {
  color: var(--primary--forest-green);
}

.button-link {
  text-align: center;
  border-radius: 20rem;
  text-decoration: none;
}

.button-link-icon-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.button-link-icon-2.white {
  filter: invert();
}

.button-underline-progress {
  background-color: #1b1b1b;
  width: 0;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-underline-progress.white {
  background-color: var(--primary--white);
}

.button-link-icon-1 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: relative;
}

.button-link-icon-1.white {
  filter: invert();
}

.footer-logo {
  max-width: 80%;
}

.button-link-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--primary--forest-green);
  align-items: center;
  display: flex;
}

.footer-bottom-bar {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.button-underline {
  background-color: #cac4ae73;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: .25rem;
  display: block;
  position: relative;
}

.overflow-hide {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-end;
  display: block;
  overflow: hidden;
}

.display-heading {
  line-height: 1.2;
}

.display-heading.stat {
  font-family: IBM Plex Mono, sans-serif;
  font-size: 3.7rem;
}

.nav-social-links {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.nav-contact-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.nav-left-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.nav-left-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.social-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: clip;
}

.slide {
  background-color: #f4f3e7;
  width: 51%;
  height: 101%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.slide.left {
  background-color: var(--primary--off-white);
  display: none;
}

.slide.right {
  background-color: var(--primary--off-white);
  display: none;
  inset: 0% 0% 0% auto;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 50svh;
}

.image-reveal-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.logos-content-wrapper {
  width: 100%;
  padding-bottom: 8rem;
}

.logos-list {
  grid-column-gap: 4rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center start;
  margin-top: 2rem;
  margin-right: 2rem;
  display: grid;
}

.logo-image-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.logos-row-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logos-wrapper {
  display: flex;
}

.gradient-block {
  background-image: linear-gradient(90deg, #f7f5ef94, #fff0);
  width: 10%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.gradient-block.right {
  background-image: linear-gradient(270deg, #f7f5efd9, #fff0);
  inset: 0% 0% 0% auto;
}

.logo-image {
  height: 4rem;
}

.divider {
  background-color: var(--text-color--neutral);
  width: 100%;
  height: 1px;
}

.left-column {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 40%;
}

.left-column.team {
  top: 4rem;
}

.sticky-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start stretch;
  display: grid;
}

.sticky-grid.services {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.right-column {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  display: flex;
}

.right-column.team {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.right-column.services {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
}

.servcies-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--primary--forest-green);
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.next-project-text-link {
  text-transform: none;
  font-family: Syne, sans-serif;
  font-size: 3rem;
  text-decoration: none;
}

.next-project-text-link:hover {
  color: var(--text-color--neutral);
}

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

.project-info-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.work-gallery-image-wrapper {
  overflow: hidden;
}

.project-detail-content {
  grid-column-gap: 12rem;
  grid-row-gap: 12rem;
  flex-flow: column;
  margin-top: 0;
  display: flex;
}

.work-gallery-image {
  width: 100%;
  height: 100%;
}

.margin-top.medium, .margin-top.margin-medium {
  margin-top: 2rem;
}

.margin-top.large {
  margin-top: 4rem;
}

.works-collection {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.block-quote {
  margin-bottom: 3rem;
}

.team-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.team-card-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.team-info-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.table-row-background {
  background-color: var(--primary--gold);
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.arrow-up-icon {
  z-index: 2;
  background-image: url('../images/Arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: relative;
}

.project-text {
  z-index: 2;
  color: var(--primary--black);
  position: relative;
}

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

.table-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--text-color--neutral);
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: border-color .35s;
  display: grid;
  position: relative;
}

.table-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.team-image {
  width: 100%;
  height: 100%;
}

.right-column-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.team-section-wrapper {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  display: flex;
}

.all-members-collection-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.service-item {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: flex;
}

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

._120px-block {
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 6rem;
  max-width: 6rem;
  display: flex;
}

.service-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.accordion-title-wrapper {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.description-wrapper {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.accordion-item-wrapper {
  cursor: pointer;
  margin-bottom: 0;
}

.accordion-item-wrapper.w--current {
  background-color: #f7f7f4;
  border-bottom-style: none;
  border-radius: 5px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0 1rem;
  position: relative;
  overflow: hidden;
}

.accordion-icon {
  filter: invert();
  justify-content: center;
  align-items: center;
  width: .9rem;
  margin-left: 1rem;
  display: flex;
}

.accordion-list-wrapper {
  padding-left: 0;
  list-style-type: none;
}

.accordion-component {
  margin-left: 8rem;
}

.form-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.contact-block-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

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

.go-back-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.back-button-arrow {
  width: 1rem;
  height: 1rem;
  transform: rotate(-180deg);
}

.back-button-arrow.white {
  filter: invert();
}

.video-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.heading-content {
  color: var(--primary--white);
  background-image: url('../images/Boreal-White.svg'), url('../images/HeaderAdjusted.jpg');
  background-position: 20px 20px, 50%;
  background-repeat: no-repeat, repeat;
  background-size: 150px, cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100svh;
  padding: 8rem 2rem 2rem;
  display: flex;
}

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

.utility-page-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

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

.heading-wrapper {
  margin-left: auto;
}

.hero-text-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: flex-start;
  min-width: 290px;
  display: flex;
}

.heading-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70svh;
  display: flex;
}

.work-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

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

.hero-item-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.loader-trigger {
  display: none;
}

.headerh1 {
  color: var(--primary--white);
  text-align: right;
  width: 600px;
  font-family: Manrope, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
}

.sectionbranding {
  background-image: url('../images/Risorsa-1b.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.link-image---full {
  aspect-ratio: 4 / 5;
  opacity: 1;
  object-fit: contain;
  width: 100%;
  display: inline-block;
}

.map {
  border: 2.5px solid var(--primary--gold);
}

@media screen and (max-width: 991px) {
  ._12-column-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: minmax(16px, 1fr) 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .nav-link-wrapper._3 {
    text-align: right;
  }

  .nav-link {
    font-size: 3rem;
  }

  .nav-content {
    padding: 4rem;
    display: none;
  }

  .parallax-image-wrapper {
    height: 70svh;
  }

  .parallax-image {
    height: 80svh;
  }

  .margin-bottom.extra-large {
    padding-bottom: 6rem;
  }

  .text-wrapper {
    display: none;
  }

  .link-image {
    object-fit: cover;
  }

  .work-list-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .sticky-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .sticky-grid.services {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .right-column {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .next-project-text-link {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .project-detail-content {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .team-content-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .table-row {
    grid-template-columns: 1fr 3fr;
  }

  ._120px-block {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-content-wrapper {
    flex-flow: column;
  }

  .accordion-component {
    margin-left: 0;
  }

  .work-image-thumnail, .link-image---full {
    object-fit: cover;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .75rem;
  }

  p {
    margin-bottom: 0;
  }

  ._12-column-grid {
    grid-template-columns: minmax(16px, 1fr);
    grid-auto-columns: 1fr;
  }

  ._12-column-grid.nav {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .container {
    padding: 4rem 1rem;
  }

  .container.nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .container.intro {
    padding-top: 8rem;
  }

  .large-text {
    font-size: 1.5rem;
  }

  .form-input {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 2.25rem;
  }

  .menu-button-text {
    color: var(--primary--white);
  }

  .nav-content {
    padding: 4rem 2rem 2rem;
    display: none;
  }

  .nav-link-list {
    justify-content: center;
    align-items: flex-start;
  }

  .button-menu {
    display: block;
  }

  .content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .content-wrapper.intro {
    margin-top: 4rem;
  }

  .content-wrapper.intro._4rem {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .margin-bottom.extra-large {
    padding-bottom: 4rem;
  }

  .work-list-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .work-item-wrapper-right {
    margin-top: 0;
  }

  .image-wrapper-content {
    min-height: 32rem;
    padding: 2rem;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .footer-bottom-bar {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .display-heading {
    font-size: 10.5vw;
  }

  .display-heading.stat {
    font-size: 4rem;
  }

  .nav-social-links {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: row;
  }

  .nav-left-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-image {
    min-height: 60svh;
  }

  .logos-content-wrapper {
    padding-bottom: 4rem;
  }

  .logos-list {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    margin-top: 0;
    padding-top: 1rem;
  }

  .logo-image-wrapper {
    padding: .75rem 1rem;
  }

  .left-column {
    margin-bottom: 4rem;
    position: static;
  }

  .left-column.team {
    margin-top: 4rem;
  }

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

  .right-column {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .right-column.services {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .next-project-text-link {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .project-detail-content {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .works-collection {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .team-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .arrow-up-icon {
    width: 20px;
    height: 20px;
  }

  .table-row {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .right-column-item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .team-section-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .all-members-collection-wrapper, ._6-column-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .grid-image-wrapper {
    aspect-ratio: 1;
  }

  .service-item {
    flex-flow: column;
  }

  ._120px-block {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .accordion-item {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-component {
    margin-left: 0;
  }

  .heading-content {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    padding: 4rem 1rem;
  }

  .utility-page-content {
    width: 90%;
  }

  .heading-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: flex-end;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .small-text {
    font-size: .9rem;
  }

  ._12-column-grid._8rem {
    grid-row-gap: 4rem;
  }

  .container {
    padding: 3rem 1rem;
  }

  .container.nav {
    justify-content: space-between;
    display: flex;
  }

  .logo-link {
    z-index: 999;
    position: relative;
  }

  .nav-link-wrapper {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    text-decoration: none;
    display: flex;
  }

  .nav-link {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .menu-button-text {
    color: var(--primary--black);
    font-size: 1rem;
    line-height: 100%;
  }

  .button-menu-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }

  .nav-content {
    width: 101%;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: none;
  }

  .nav-link-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .nav-link-item {
    overflow: hidden;
  }

  .button-menu {
    z-index: 999;
    height: 1rem;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .parallax-image {
    object-fit: cover;
    object-position: 50% 50%;
    height: 100svh;
  }

  .stats-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .footer-bottom-bar {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem;
    display: flex;
  }

  .display-heading-wrapper {
    width: 100%;
  }

  .display-heading.stat {
    font-size: 30px;
  }

  .logos-list {
    justify-content: center;
  }

  .logo-image-wrapper {
    justify-content: center;
    align-items: flex-start;
  }

  .left-column.team {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .project-detail-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .arrow-up-icon {
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .project-text {
    max-width: 90%;
  }

  .table-row {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 6fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
    position: relative;
  }

  ._6-column-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .grid-image-wrapper {
    aspect-ratio: 1;
  }

  ._120px-block {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .accordion-item {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: flex-end;
    align-items: center;
    padding: 4rem 1rem;
  }

  .heading-wrapper {
    width: 100%;
  }

  .heading-content-wrapper {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .headerh1 {
    text-align: left;
    width: auto;
    font-size: 32px;
    line-height: 1.2;
  }
}

#w-node-bc989302-d4ef-3b31-2768-02ee9f193719-59876743 {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-b6061bad-7fa7-62ab-517e-9dd43031efa2-59876743 {
  grid-area: 1 / 1 / 2 / 3;
  align-self: end;
}

#w-node-dbc962c3-6555-c81a-8d6a-7e9d51fb4e61-59876743 {
  grid-area: 1 / 10 / 2 / 13;
  place-self: end;
}

#w-node-f54cf3aa-a8df-7ba5-9fbd-7dbcb938c598-59876743 {
  grid-area: 1 / 5 / 2 / 8;
}

#w-node-_1cead678-550d-6f31-0981-f941e189c66d-59876743, #w-node-dc5eaf11-4567-fddd-4c0b-215764e0578e-59876743 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-dc5eaf11-4567-fddd-4c0b-215764e05792-59876743 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_253211d1-8da7-a4f3-802e-4ca5fba73751-59876743 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-f1fdae8f-3a91-e98a-6adf-500898fd290b-59876743 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_45726e7a-436c-d8b7-0156-dc7cb3554d34-59876743, #w-node-d4280413-cca7-209a-8fbd-7d3773b6fd1e-59876743 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_14322331-c38f-c1ba-2932-f8201753f620-59876743 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_14322331-c38f-c1ba-2932-f8201753f61f-59876743 {
  grid-area: 2 / 1 / 3 / 7;
}

#w-node-_14322331-c38f-c1ba-2932-f8201753f623-59876743 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_8c256ad6-69f9-fa3b-5443-28681aeeea96-59876743 {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_8c256ad6-69f9-fa3b-5443-28681aeeea97-59876743 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-b74c28ea-1712-0c13-3f91-6ea8bcebc829-59876743, #w-node-_719c3283-d709-6fc0-a6a1-7f1d0fd0e746-59876743 {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-eb45bf93-b414-9b2d-6bfa-5dcf65befa3e-59876743 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-eb45bf93-b414-9b2d-6bfa-5dcf65befa42-59876743 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_228bf5ab-9d8b-8022-65de-929811b32536-59876743 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-a6d3f65b-8c0f-1575-5fb4-747198ed0296-59876743 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_46f12fbc-606d-46d5-74f7-514c7ea6be8e-59876743 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-fbbaf7f3-7922-5bdb-95bc-144a967984d8-59876743, #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984de-59876743 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-fbbaf7f3-7922-5bdb-95bc-144a967984e7-59876743 {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-fbbaf7f3-7922-5bdb-95bc-144a967984f7-59876743 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-fbbaf7f3-7922-5bdb-95bc-144a96798511-59876743 {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-f0aa79d0-d44d-ffad-339a-91ba0c2186b0-0c218695, #w-node-f0aa79d0-d44d-ffad-339a-91ba0c2186bb-0c218695 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f0aa79d0-d44d-ffad-339a-91ba0c2186c0-0c218695 {
  grid-area: 2 / 1 / 2 / 3;
}

#w-node-f0aa79d0-d44d-ffad-339a-91ba0c21869b-0c218695 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: end;
}

#w-node-_535161c8-9d0f-41f5-8b02-247614968329-59876745, #w-node-_535161c8-9d0f-41f5-8b02-24761496832f-59876745, #w-node-_535161c8-9d0f-41f5-8b02-247614968335-59876745, #w-node-_535161c8-9d0f-41f5-8b02-24761496833b-59876745, #w-node-_18b79a49-e9ca-83d5-47f5-1ff6f8ac7e81-59876745, #w-node-_535161c8-9d0f-41f5-8b02-247614968345-59876745 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f31-4b5f0f2d, #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f38-4b5f0f2d {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f41-4b5f0f2d {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f51-4b5f0f2d {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f5d-4b5f0f2d {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f69-4b5f0f2d {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ebe-59876746 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec3-59876746 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec8-59876746 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ecc-59876746 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ed0-59876746 {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126715-59876746 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12671d-59876746 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126720-59876746 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126724-59876746 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126726-59876746 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126728-59876746 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12672a-59876746 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12672e-59876746 {
  grid-area: 1 / 1 / 3 / 7;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126731-59876746 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126734-59876746 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126738-59876746 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12673a-59876746 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12673e-59876746 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_3db113c8-d280-d910-78f3-a83afff1fe0e-59876747 {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-_3db113c8-d280-d910-78f3-a83afff1fe12-59876747 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-d670d9c6-73d1-1a55-501b-03f04547f7e9-59876748 {
  grid-area: 1 / 1 / 2 / 11;
}

#w-node-d670d9c6-73d1-1a55-501b-03f04547f7ed-59876748 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-d670d9c6-73d1-1a55-501b-03f04547f7f0-59876748 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d670d9c6-73d1-1a55-501b-03f04547f7f1-59876748 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_88f56359-3d4e-088a-b072-9767bc6598a5-59876748 {
  grid-area: 1 / 3 / 2 / 10;
}

#w-node-a07f4513-0d81-053f-748c-62510ccaa8e4-59876748 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-ae7391fc-3bc1-9435-b943-0a51b17587a1-59876748 {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-ae7391fc-3bc1-9435-b943-0a51b17587ab-59876748 {
  grid-area: 3 / 9 / 4 / 13;
}

#w-node-ae7391fc-3bc1-9435-b943-0a51b17587b3-59876748 {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-ee139667-3bbb-b946-bf4f-60e2025e1888-59876749 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-ee139667-3bbb-b946-bf4f-60e2025e188a-59876749 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_0d6b6a94-4933-e0d8-a5cf-8a30881dfedd-59876749 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_5d457023-f901-e423-c372-88b8dfcf46b1-59876749 {
  grid-area: 1 / 8 / 2 / 12;
}

#w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af02-59876749 {
  grid-area: 3 / 1 / 4 / 6;
}

#w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af03-59876749 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_9e315206-1d8f-c50c-ddda-6fe70060e8f6-59876749 {
  grid-area: 2 / 1 / 3 / 7;
}

#w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af08-59876749 {
  grid-area: 2 / 8 / 3 / 12;
}

#w-node-_2b7725e0-6fd1-85b9-089f-dd34af43051b-59876749 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_2b7725e0-6fd1-85b9-089f-dd34af43051f-59876749 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_3c9c601e-c9b8-f902-fefb-45c879303fc8-59876749 {
  grid-area: 2 / 1 / 3 / 10;
}

#w-node-b7019c5f-a71e-2e00-a282-79cff7edf141-59876749 {
  grid-area: 1 / 10 / 2 / 11;
}

#w-node-_095f9946-ad9f-ec79-c05a-5057048a2b37-59876749 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_095f9946-ad9f-ec79-c05a-5057048a2b3a-59876749 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_095f9946-ad9f-ec79-c05a-5057048a2b3d-59876749 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_095f9946-ad9f-ec79-c05a-5057048a2b40-59876749 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-_2b5a94d5-0845-54e1-f6ec-af7a858c0bc6-59876749 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2b5a94d5-0845-54e1-f6ec-af7a858c0bc9-59876749 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2b5a94d5-0845-54e1-f6ec-af7a858c0bcc-59876749 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_2b5a94d5-0845-54e1-f6ec-af7a858c0bcf-59876749 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-_47003540-3dcf-ca02-276c-f259ed8419f7-59876749 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_47003540-3dcf-ca02-276c-f259ed8419fa-59876749 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_47003540-3dcf-ca02-276c-f259ed8419fd-59876749 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_47003540-3dcf-ca02-276c-f259ed841a00-59876749 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-_733ec2f5-8e4c-52be-b16e-f2ac3ee353d1-59876749 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_733ec2f5-8e4c-52be-b16e-f2ac3ee353d4-59876749 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_733ec2f5-8e4c-52be-b16e-f2ac3ee353d7-59876749 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_733ec2f5-8e4c-52be-b16e-f2ac3ee353da-59876749 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-_21f2e186-d565-c95e-8998-ed612173ebb3-59876749 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_21f2e186-d565-c95e-8998-ed612173ebb6-59876749 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_21f2e186-d565-c95e-8998-ed612173ebb9-59876749 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_21f2e186-d565-c95e-8998-ed612173ebbc-59876749 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: end;
}

#w-node-c72b1999-1b77-a20e-130e-df54fba0d729-59876749 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-c72b1999-1b77-a20e-130e-df54fba0d72d-59876749 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-c72b1999-1b77-a20e-130e-df54fba0d735-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d737-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d739-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d73b-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d73d-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d73f-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d741-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d743-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d746-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d748-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d74a-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d74c-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d74e-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d750-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d752-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d754-59876749 {
  justify-self: center;
}

#w-node-_4d198f9c-8672-5dcd-4b92-fdfc26ff3d76-5987674b, #w-node-_882b4686-e843-1027-98f6-8a88f864ed14-5987674c {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-_882b4686-e843-1027-98f6-8a88f864ed18-5987674c {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_2170eabc-ff84-7a25-c78a-2a71f6ac0065-5987674c {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-_18ad2da1-58d6-8707-62fe-4e18751c8ec9-5987674c {
  grid-area: 2 / 1 / 5 / 3;
}

#w-node-e25793d7-18f9-e770-d014-bb592c3b05fb-5987674c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_444b4413-2ff2-65fb-29f4-26181b7598b5-5987674c {
  grid-area: 3 / 3 / 6 / 7;
}

#w-node-_444b4413-2ff2-65fb-29f4-26181b7598b6-5987674c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_6520f610-e789-2e45-2b94-87668379cd6c-5987674c {
  grid-area: 1 / 3 / 3 / 6;
}

#w-node-_6520f610-e789-2e45-2b94-87668379cd6d-5987674c {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b1032b05-d1dc-5e26-403b-f89e4e30ac56-5987674c {
  grid-area: 1 / 6 / 3 / 7;
}

#w-node-_900c459f-bae7-8915-f5ac-b7c62317063c-5987674c {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_900c459f-bae7-8915-f5ac-b7c623170640-5987674c {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_900c459f-bae7-8915-f5ac-b7c623170643-5987674c {
  grid-area: 1 / 4 / 2 / 6;
}

#w-node-_900c459f-bae7-8915-f5ac-b7c623170644-5987674c {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_900c459f-bae7-8915-f5ac-b7c623170649-5987674c {
  grid-area: 1 / 6 / 2 / 9;
}

#w-node-_7946db10-d8cf-b275-bc0e-9ea3f380b7e5-5987674c {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-_9aa30c71-a80b-392b-1104-46143190e682-5987674c {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_9aa30c71-a80b-392b-1104-46143190e688-5987674c {
  grid-area: 1 / 4 / 2 / 13;
}

@media screen and (max-width: 991px) {
  #w-node-bc989302-d4ef-3b31-2768-02ee9f193719-59876743 {
    grid-column: 3 / 7;
  }

  #w-node-dbc962c3-6555-c81a-8d6a-7e9d51fb4e61-59876743 {
    grid-column: 6 / 9;
  }

  #w-node-_1cead678-550d-6f31-0981-f941e189c66d-59876743, #w-node-dc5eaf11-4567-fddd-4c0b-215764e0578e-59876743, #w-node-_14322331-c38f-c1ba-2932-f8201753f620-59876743 {
    grid-column-end: 9;
  }

  #w-node-_14322331-c38f-c1ba-2932-f8201753f61f-59876743 {
    grid-column-end: 5;
  }

  #w-node-_8c256ad6-69f9-fa3b-5443-28681aeeea96-59876743 {
    grid-column: 5 / 9;
  }

  #w-node-b74c28ea-1712-0c13-3f91-6ea8bcebc829-59876743 {
    grid-column-end: 9;
  }

  #w-node-_719c3283-d709-6fc0-a6a1-7f1d0fd0e746-59876743 {
    grid-row: 3 / 4;
    grid-column-end: 9;
  }

  #w-node-eb45bf93-b414-9b2d-6bfa-5dcf65befa3e-59876743 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_228bf5ab-9d8b-8022-65de-929811b32536-59876743, #w-node-a6d3f65b-8c0f-1575-5fb4-747198ed0296-59876743 {
    grid-column-end: 9;
  }

  #w-node-_46f12fbc-606d-46d5-74f7-514c7ea6be8e-59876743 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-d4a78d86-1898-fcfb-58dd-b4bc7b86b06f-59876743 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984d8-59876743 {
    grid-column-end: 9;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984e7-59876743 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984f7-59876743 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a96798511-59876743 {
    grid-row: 4 / 5;
  }

  #w-node-f0aa79d0-d44d-ffad-339a-91ba0c2186b0-0c218695 {
    grid-column-end: 5;
  }

  #w-node-f0aa79d0-d44d-ffad-339a-91ba0c21869b-0c218695 {
    grid-column: 5 / 9;
  }

  #w-node-_535161c8-9d0f-41f5-8b02-247614968329-59876745, #w-node-_535161c8-9d0f-41f5-8b02-24761496832f-59876745, #w-node-_535161c8-9d0f-41f5-8b02-247614968335-59876745, #w-node-_535161c8-9d0f-41f5-8b02-24761496833b-59876745, #w-node-_18b79a49-e9ca-83d5-47f5-1ff6f8ac7e81-59876745, #w-node-_535161c8-9d0f-41f5-8b02-247614968345-59876745 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f31-4b5f0f2d {
    grid-column-end: 9;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f41-4b5f0f2d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f51-4b5f0f2d {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f5d-4b5f0f2d {
    grid-area: 2 / 5 / 3 / 7;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f69-4b5f0f2d {
    grid-row: 4 / 5;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ebe-59876746, #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec3-59876746 {
    grid-column-end: 9;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec8-59876746 {
    grid-column-end: 3;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ecc-59876746 {
    grid-column: 3 / 6;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ed0-59876746 {
    grid-column: 6 / 9;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126715-59876746 {
    grid-column-end: 9;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12671d-59876746 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12672e-59876746 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126731-59876746 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12673e-59876746 {
    grid-column: 4 / 9;
  }

  #w-node-_3db113c8-d280-d910-78f3-a83afff1fe0e-59876747, #w-node-d670d9c6-73d1-1a55-501b-03f04547f7e9-59876748, #w-node-d670d9c6-73d1-1a55-501b-03f04547f7f0-59876748 {
    grid-column-end: 9;
  }

  #w-node-_88f56359-3d4e-088a-b072-9767bc6598a5-59876748 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-a07f4513-0d81-053f-748c-62510ccaa8e4-59876748 {
    grid-area: 3 / 1 / 4 / 9;
  }

  #w-node-ee139667-3bbb-b946-bf4f-60e2025e1888-59876749 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-ee139667-3bbb-b946-bf4f-60e2025e188a-59876749, #w-node-_0d6b6a94-4933-e0d8-a5cf-8a30881dfedd-59876749 {
    grid-column-end: 9;
  }

  #w-node-_5d457023-f901-e423-c372-88b8dfcf46b1-59876749 {
    grid-column: 6 / 9;
  }

  #w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af02-59876749, #w-node-_9e315206-1d8f-c50c-ddda-6fe70060e8f6-59876749 {
    grid-column-end: 5;
  }

  #w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af08-59876749 {
    grid-column: 6 / 9;
  }

  #w-node-_2b7725e0-6fd1-85b9-089f-dd34af43051b-59876749, #w-node-_3c9c601e-c9b8-f902-fefb-45c879303fc8-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d729-59876749 {
    grid-column-end: 9;
  }

  #w-node-_8d2b5ea0-77fe-a4b6-674a-b21bd10aa87f-5987674a {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_4d198f9c-8672-5dcd-4b92-fdfc26ff3d76-5987674b, #w-node-_882b4686-e843-1027-98f6-8a88f864ed14-5987674c {
    grid-column-end: 9;
  }

  #w-node-_2170eabc-ff84-7a25-c78a-2a71f6ac0065-5987674c {
    grid-column: 1 / 9;
  }

  #w-node-_900c459f-bae7-8915-f5ac-b7c62317063c-5987674c {
    grid-column-end: 9;
  }

  #w-node-_900c459f-bae7-8915-f5ac-b7c623170643-5987674c {
    grid-column: 3 / 9;
  }

  #w-node-_900c459f-bae7-8915-f5ac-b7c623170649-5987674c {
    grid-area: 2 / 3 / 3 / 9;
  }

  #w-node-_7946db10-d8cf-b275-bc0e-9ea3f380b7e5-5987674c {
    grid-area: 3 / 3 / 4 / 9;
  }

  #w-node-_9aa30c71-a80b-392b-1104-46143190e682-5987674c {
    grid-column-end: 4;
  }

  #w-node-_9aa30c71-a80b-392b-1104-46143190e688-5987674c {
    grid-area: 1 / 4 / 3 / 9;
  }
}

@media screen and (max-width: 767px) {
  #w-node-bc989302-d4ef-3b31-2768-02ee9f193719-59876743 {
    grid-column: 1 / 5;
  }

  #w-node-b6061bad-7fa7-62ab-517e-9dd43031efa2-59876743 {
    grid-column-end: 5;
  }

  #w-node-dbc962c3-6555-c81a-8d6a-7e9d51fb4e61-59876743 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: start;
  }

  #w-node-_1cead678-550d-6f31-0981-f941e189c66d-59876743, #w-node-dc5eaf11-4567-fddd-4c0b-215764e0578e-59876743 {
    grid-column: 1 / 5;
  }

  #w-node-_14322331-c38f-c1ba-2932-f8201753f620-59876743 {
    grid-column-end: 5;
  }

  #w-node-_14322331-c38f-c1ba-2932-f8201753f61f-59876743 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_8c256ad6-69f9-fa3b-5443-28681aeeea96-59876743 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-b74c28ea-1712-0c13-3f91-6ea8bcebc829-59876743 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-eb45bf93-b414-9b2d-6bfa-5dcf65befa3e-59876743 {
    grid-column: 1 / 5;
  }

  #w-node-_228bf5ab-9d8b-8022-65de-929811b32536-59876743, #w-node-a6d3f65b-8c0f-1575-5fb4-747198ed0296-59876743, #w-node-_46f12fbc-606d-46d5-74f7-514c7ea6be8e-59876743, #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984d8-59876743 {
    grid-column-end: 5;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984e7-59876743 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a967984f7-59876743 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-fbbaf7f3-7922-5bdb-95bc-144a96798511-59876743 {
    grid-row: 5 / 6;
    grid-column-end: 3;
  }

  #w-node-f0aa79d0-d44d-ffad-339a-91ba0c2186b0-0c218695 {
    grid-row: 2 / 3;
  }

  #w-node-f0aa79d0-d44d-ffad-339a-91ba0c21869b-0c218695 {
    grid-column: 1 / 5;
    justify-self: start;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f31-4b5f0f2d {
    grid-column-end: 5;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f41-4b5f0f2d {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f51-4b5f0f2d {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f5d-4b5f0f2d {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_8dfdbd3d-169b-b32b-b21a-1c814b5f0f69-4b5f0f2d {
    grid-row: 5 / 6;
    grid-column-end: 3;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ebe-59876746, #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec3-59876746, #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ec8-59876746 {
    grid-column-end: 5;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ecc-59876746 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_12a4adc4-607c-0f8f-ad87-b4b164c65ed0-59876746 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126715-59876746 {
    grid-column-end: 5;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12671d-59876746 {
    grid-column: 1 / 5;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126726-59876746 {
    grid-column-end: 3;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126728-59876746 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12672a-59876746 {
    grid-row-start: 4;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12672e-59876746 {
    grid-column-end: 5;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa126731-59876746, #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12673e-59876746, #w-node-_3db113c8-d280-d910-78f3-a83afff1fe0e-59876747, #w-node-d670d9c6-73d1-1a55-501b-03f04547f7e9-59876748, #w-node-d670d9c6-73d1-1a55-501b-03f04547f7f0-59876748 {
    grid-column: 1 / 5;
  }

  #w-node-_88f56359-3d4e-088a-b072-9767bc6598a5-59876748 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a07f4513-0d81-053f-748c-62510ccaa8e4-59876748 {
    grid-column: 1 / 5;
  }

  #w-node-ee139667-3bbb-b946-bf4f-60e2025e1888-59876749, #w-node-ee139667-3bbb-b946-bf4f-60e2025e188a-59876749 {
    grid-column-end: 5;
  }

  #w-node-_0d6b6a94-4933-e0d8-a5cf-8a30881dfedd-59876749, #w-node-_5d457023-f901-e423-c372-88b8dfcf46b1-59876749 {
    grid-column: 1 / 5;
  }

  #w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af02-59876749 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9e315206-1d8f-c50c-ddda-6fe70060e8f6-59876749 {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-_7a7dcf06-319a-bc5f-fcf4-be5a1f39af08-59876749 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_2b7725e0-6fd1-85b9-089f-dd34af43051b-59876749, #w-node-_3c9c601e-c9b8-f902-fefb-45c879303fc8-59876749, #w-node-c72b1999-1b77-a20e-130e-df54fba0d729-59876749, #w-node-_4d198f9c-8672-5dcd-4b92-fdfc26ff3d76-5987674b, #w-node-_882b4686-e843-1027-98f6-8a88f864ed14-5987674c, #w-node-_2170eabc-ff84-7a25-c78a-2a71f6ac0065-5987674c {
    grid-column: 1 / 5;
  }

  #w-node-_18ad2da1-58d6-8707-62fe-4e18751c8ec9-5987674c {
    grid-row: 1 / 2;
    grid-column-end: 5;
  }

  #w-node-_444b4413-2ff2-65fb-29f4-26181b7598b5-5987674c {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_6520f610-e789-2e45-2b94-87668379cd6c-5987674c {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-b1032b05-d1dc-5e26-403b-f89e4e30ac56-5987674c {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_900c459f-bae7-8915-f5ac-b7c62317063c-5987674c, #w-node-_900c459f-bae7-8915-f5ac-b7c623170643-5987674c {
    grid-column: 1 / 5;
  }

  #w-node-_900c459f-bae7-8915-f5ac-b7c623170649-5987674c {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_7946db10-d8cf-b275-bc0e-9ea3f380b7e5-5987674c {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9aa30c71-a80b-392b-1104-46143190e682-5987674c {
    grid-column-end: 5;
  }

  #w-node-_9aa30c71-a80b-392b-1104-46143190e688-5987674c {
    grid-row-start: 2;
    grid-column-start: 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bc989302-d4ef-3b31-2768-02ee9f193719-59876743 {
    grid-column-end: 5;
  }

  #w-node-_16ab10ee-3ae6-eaf8-e6b3-f7bbfa12673e-59876746 {
    grid-column-end: 3;
  }

  #w-node-_18ad2da1-58d6-8707-62fe-4e18751c8ec9-5987674c {
    grid-row: 1 / 2;
    grid-column-end: 5;
  }

  #w-node-_444b4413-2ff2-65fb-29f4-26181b7598b5-5987674c {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_6520f610-e789-2e45-2b94-87668379cd6c-5987674c {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-b1032b05-d1dc-5e26-403b-f89e4e30ac56-5987674c {
    grid-area: 4 / 1 / 5 / 5;
  }
}


