:root {
  --black-90: #000000e6;
  --white-smoke: #f5f5f5;
  --black-40: #0006;
  --white-100: #fff;
  --black-10: #0000001a;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

h1 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%;
}

h5 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 140%;
}

h6 {
  color: var(--black-90);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

p {
  color: var(--black-90);
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  line-height: 140%;
}

a {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  text-decoration: underline;
}

ul {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

ol {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

li {
  font-size: .9rem;
}

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

label {
  color: var(--black-90);
  margin-bottom: .5rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

blockquote {
  background-color: var(--white-smoke);
  color: var(--black-90);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 1rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1.2rem;
  line-height: 140%;
}

figure {
  margin-bottom: 4rem;
}

figcaption {
  color: var(--black-40);
  text-align: center;
  margin-top: .5rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.submit-button {
  color: #fff;
  background-color: #171718;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  line-height: 140%;
}

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

._0-5-rem-gap-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.typo-list {
  grid-row-gap: 4rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-field {
  color: #171718;
  background-color: #f5f5f5;
  border: 1px #000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  line-height: 140%;
}

.select-field {
  color: #000000e6;
  border: 1px #000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  line-height: 140%;
}

.style-guide-item {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

._12-column-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

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

.info-page-content {
  grid-row-gap: 7rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rich-text h1 {
  margin-bottom: 2rem;
}

.rich-text h2 {
  margin-bottom: 1.5rem;
}

.rich-text p {
  color: var(--black-40);
  margin-bottom: 4rem;
}

.rich-text h3 {
  margin-bottom: 1.5rem;
}

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

.rich-text ol, .rich-text ul {
  margin-bottom: 2rem;
}

.rich-text blockquote {
  margin-bottom: 4rem;
}

.error-message {
  margin-top: 2rem;
  padding: .75rem 1rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
}

.standard-text {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-style: normal;
  line-height: 140%;
}

.standard-text.black-50 {
  color: #868686;
}

.standard-text.hero-section {
  text-align: center;
  padding-bottom: 0;
  font-size: .9rem;
}

.standard-text.white {
  color: var(--white-100);
}

.standard-text.serif-testimonial {
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
}

.large-text {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  line-height: 140%;
}

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

.success-message {
  color: #000000e6;
  background-color: #f5f5f5;
  padding: .75rem 1rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
}

.color-swatch {
  width: 100%;
  height: 10rem;
}

.color-swatch.white-100 {
  background-color: var(--white-100);
  border: 1px solid #0000001a;
}

.color-swatch.whitesmoke {
  background-color: var(--white-smoke);
}

.color-swatch.black-100 {
  background-color: var(--black-90);
}

.color-swatch.black-50 {
  background-color: var(--black-40);
}

.color-swatch.black-10 {
  background-color: var(--black-10);
}

.container {
  min-height: 80px;
  padding: 0 .75rem;
}

.container.footer, .container.project-detail-header {
  min-height: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.container.project-detail {
  padding: 6rem .75rem 0;
}

.container.hero-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.container.header {
  min-height: 0;
  padding: .75rem 1rem;
}

.container.info-page {
  padding-top: 4rem;
}

.container.header-add {
  min-height: 0;
  padding: .75rem 1rem;
}

.container.project-detail-header-2 {
  padding: 0 .75rem;
}

.container.cv-section {
  padding-top: 0;
  padding-bottom: 0;
}

.container.references {
  background-color: #fff;
  padding-bottom: 0;
}

.text-area {
  color: #171718;
  background-color: #f5f5f5;
  border: 1px #000;
  min-height: 6rem;
  margin-bottom: 2rem;
  padding: .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 140%;
}

.info-page-heading-wrapper {
  margin-bottom: 5rem;
}

.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: 50%;
  display: flex;
}

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

.form-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

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

.logo-wrapper {
  grid-column-gap: .75rem;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.description-text {
  color: var(--black-40);
  font-family: Inter Tight, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 130%;
}

.logo-image {
  width: 48px;
  height: 48px;
}

.nav-link-wrapper {
  grid-column-gap: 1rem;
  display: flex;
}

.nav-link {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  text-decoration: none;
}

.nav-link:hover {
  opacity: .5;
  color: var(--black-40);
}

.green-dot {
  background-color: #2d9c4c;
  border-radius: 20px;
  width: 8px;
  height: 8px;
}

.working-status {
  grid-column-gap: .5rem;
  background-color: var(--white-smoke);
  border-radius: 1000px;
  align-items: center;
  padding: .4rem .8rem;
  display: flex;
}

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

.about-content-block {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.about-content-block.testimonial {
  background-color: #fff;
  padding: 2rem;
}

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

.contact-link-block {
  text-decoration: none;
}

.footer-link-wrapper {
  grid-column-gap: 1.5rem;
  align-items: center;
  display: flex;
}

.footer-link {
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  text-decoration: none;
}

.footer-link:hover {
  opacity: .5;
  color: var(--black-40);
}

.footer-bottom-bar {
  border-top: 1px solid var(--black-10);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

.project-detail-title {
  font-size: 5vw;
  line-height: 120%;
}

.social-link-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-info-wrapper {
  grid-row-gap: 20rem;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.link-arrow {
  width: 12px;
}

.social-link {
  grid-column-gap: .4rem;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-arrow-wrapper {
  flex-direction: column;
  width: 12px;
  height: 12px;
  display: flex;
  overflow: hidden;
}

.back-to-top-link {
  text-decoration: none;
  display: flex;
}

.back-to-top-link:hover {
  opacity: .5;
}

.empy-state {
  background-color: var(--white-smoke);
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 140%;
}

.back-arrow {
  width: 16px;
}

.back-to-home-button {
  grid-column-gap: .25rem;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.back-arrow-icon-wrapper {
  display: flex;
}

.back-arrow-icon-mask {
  width: 16px;
  height: 16px;
  overflow: hidden;
}

.project-detail-info-item {
  grid-column-gap: .25rem;
  display: flex;
}

.project-detail-info-item.center {
  justify-content: flex-start;
  align-items: center;
}

.project-detail-info-wrapper {
  grid-column-gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.project-detail-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: grid;
}

.back-to-home-button-wrapper:hover {
  opacity: .5;
}

.medium-text {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: 1.3rem;
  line-height: 140%;
}

.project-detail-content-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  margin-bottom: 4rem;
  display: flex;
}

.project-intro {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.project-intro.hide {
  display: none;
}

.project-content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border-top: 1px solid var(--black-10);
  flex-flow: column;
  padding-top: 1rem;
  display: flex;
}

.project-gallery {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.next-project-block {
  border-top: 1px solid var(--black-10);
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.next-project-link {
  text-decoration: none;
}

.next-project-link:hover {
  opacity: .5;
}

.logo-block {
  display: flex;
}

.hero-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 125%;
}

.hero-heading.small {
  font-size: 1rem;
}

.hero-heading.cv {
  text-align: left;
  font-size: 1.5rem;
}

.hero-heading.updated {
  font-size: 2.7rem;
}

.section-heading-text-wrapper {
  border-top: 1px solid var(--black-10);
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 3rem;
  padding-top: 1rem;
  display: flex;
}

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

.collection-list-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-items: stretch;
  display: grid;
}

.work-thumbnail {
  z-index: 3;
  object-fit: cover;
  object-position: 50% 25%;
  border: 1px solid #fff3;
  width: 100%;
  height: 100%;
  position: relative;
}

.work-item {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  background-color: var(--white-smoke);
  flex-flow: column;
  align-items: center;
  width: 100%;
  height: 22rem;
  min-height: 15rem;
  max-height: 25rem;
  padding: 0;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-info-wrapper {
  z-index: 3;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.hover-background {
  display: none;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.thumbnail-background {
  z-index: 1;
  object-fit: cover;
  width: auto;
  height: 100%;
}

.mask {
  z-index: 2;
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

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

.about-item-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-top: 1px solid var(--black-10);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: grid;
}

.text-list {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.experience-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.small-text {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: .8rem;
  line-height: 140%;
}

.small-text.black-40 {
  color: #00000080;
}

.contact-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 2rem;
}

.contact-link {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.contact-link:hover {
  opacity: .5;
}

.contact-link.nav {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .88rem;
}

.serif-link {
  font-family: Instrument Serif, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

.serif-link:hover {
  opacity: .5;
}

.serif-link.big {
  color: #7b7c6f;
  font-size: 2.2rem;
}

.serif-link.big.colored {
  color: #b4a371e6;
}

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

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: Inter Tight, sans-serif;
  font-size: .75rem;
  line-height: 120%;
  text-decoration: none;
}

.header-content-wrapper {
  justify-content: space-between;
  display: flex;
}

.project-title-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.live-project-button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.live-project-button:hover {
  opacity: .5;
}

.project-year {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: 1.3rem;
  line-height: 140%;
}

.standard-text-2 {
  color: #000000e6;
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-style: normal;
  line-height: 140%;
}

.standard-text-2.black-50 {
  color: #00000080;
}

.back-to-home-button-wrapper-2:hover {
  opacity: .5;
}

.work-grid {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.work-12 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.work-12.fullsize {
  width: 100%;
}

.work-6 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.work-6._50 {
  width: 50%;
}

.testflex {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.testflex.hide {
  display: none;
}

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

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

.grid-100 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.work-clip {
  width: 100%;
}

.large-text-serif {
  font-family: Instrument Serif, sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

.background-video {
  object-fit: cover;
  height: 30vh;
}

.background-video-2 {
  z-index: 5;
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 80%;
  position: relative;
  overflow: hidden;
}

.div-block {
  background-color: #efefef;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 4rem;
  display: flex;
  position: relative;
}

.faq2_answer {
  overflow: hidden;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.margin-bottom, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.section_faq2 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
}

.text-size-medium {
  font-size: 1.125rem;
}

.faq2_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-top: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.button {
  color: var(--black-90);
  text-align: center;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: .5rem 1.125rem;
  text-decoration: none;
}

.button.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.faq2_icon-wrapper {
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.faq2_list {
  border-bottom: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.margin-top, .margin-top.margin-xxlarge, .margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.faq2_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.link-gray {
  color: var(--black-40);
}

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

.large-text-heading {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: 1.2rem;
  line-height: 140%;
}

.work-text {
  flex-flow: column;
  margin-top: .25rem;
  display: flex;
}

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

.section {
  border-bottom: 1px solid #e9e9e9;
}

.header-addon {
  background-color: #bfc3b6;
}

.header-addon.hide {
  display: flex;
}

.section-2 {
  background-color: #fff;
  padding-bottom: 8rem;
}

.section-3 {
  background-color: #7b7c6f;
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.time-content-wrapper {
  width: 25%;
  display: flex;
}

.time-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.location-row {
  background-color: #f6da00;
  justify-content: space-between;
  width: 100%;
  height: 10rem;
  transition: background-color .8s;
  position: relative;
}

.location-row.closed {
  background-color: #0a100d00;
  border-bottom: 1px solid #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.location-row.open {
  background-color: #a22c2900;
  border-bottom: 1px solid #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.row-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.location-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 83%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.location-content-wrapper {
  color: #d6d5c9;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.city-time {
  font-size: 3.125rem;
  line-height: 1;
}

.city-name {
  color: var(--white-100);
  letter-spacing: -.045em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.time-based-circle {
  background-color: #ad1600;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}

.time-based-circle.open {
  background-color: #d6d5c9;
}

.time-based-circle.evening {
  transform-origin: 50%;
  background-color: #b89d3b;
  width: 1.2rem;
  height: 1.2rem;
  transform: perspective(400px);
}

.time-based-circle.evening.green {
  background-color: #3dce3d;
  width: 1rem;
  height: 1rem;
}

.time-based-circle.closed {
  background-color: #0075c4;
}

.time-message {
  font-size: 1.5rem;
  line-height: 1;
}

.timezone-code, .blinking-css {
  display: none;
}

.div-block-3 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.spacer {
  height: 0;
}

.spacer._50 {
  height: 50px;
}

.spacer._100 {
  height: 6.25rem;
}

.spacer._40 {
  height: 1rem;
}

.spacer._70 {
  height: 4.375rem;
}

.navbar1_dropdown-list.w--open {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  padding: .5rem;
}

.navbar1_menu-button {
  padding: 0;
}

.navbar1_menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar1_dropdown-link {
  padding: .5rem 1rem;
}

.navbar1_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar1_menu-links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.navbar1_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar1_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem .25rem;
  display: none;
}

.navbar1_link {
  padding: .5rem .25rem;
  font-size: .75rem;
}

.navbar1_link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar1_link.underlined {
  text-decoration: underline;
}

.navbar1_component {
  z-index: 9999999;
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: auto;
  padding-left: .75rem;
  padding-right: .75rem;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar1_logo-link {
  padding-left: 0;
}

.navbar1_menu {
  align-items: center;
  display: flex;
  position: static;
}

.div-block-4 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.hide {
  display: none;
}

.div-block-5 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.testimonial-image-div {
  display: none;
}

.client-name {
  color: var(--black-90);
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.client-name.black-50 {
  color: #868686;
}

.client-name.hero-section {
  text-align: center;
  font-size: .9rem;
}

.client-name.white {
  color: var(--white-100);
}

.client-name.serif-testimonial {
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%;
}

.about-item-wrapper-testimonial {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-top: 1px solid var(--black-10);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: grid;
}

.div-block-6 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #efefef;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block-7 {
  width: 400px;
  height: 50px;
  position: absolute;
  inset: auto 0% 0%;
}

.background-video-3 {
  width: auto;
  height: 50px;
}

.background-video-4 {
  width: 300px;
  height: 40px;
}

.div-block-8 {
  z-index: 2;
  position: static;
}

.div-block-9 {
  background-color: #efefef;
  width: 100%;
  height: 27.6rem;
  position: relative;
}

.background-video-arena {
  width: 10rem;
  height: 18.75rem;
}

.div-block-10 {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  position: static;
}

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

.form_checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.form_message-success {
  background-color: var(--\<unknown\|relume-variable-background-color-6\>);
  color: var(--\<unknown\|relume-variable-text-color-4\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.button-2 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.form_checkbox-label {
  margin-bottom: 0;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.form_input {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  height: auto;
  min-height: 2.75rem;
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  border-radius: 0;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.form_input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form_message-error {
  background-color: var(--\<unknown\|relume-variable-background-color-8\>);
  color: var(--\<unknown\|relume-variable-text-color-5\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.text-style-link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  text-decoration: underline;
}

.form_checkbox-icon {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form_checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form_checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.error-text {
  color: #e23939;
}

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

.section_contact1 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
}

.form_field-wrapper {
  position: relative;
}

.contact1_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

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

.div-block-11 {
  flex-flow: column;
  display: flex;
}

.available-tag {
  grid-column-gap: .25rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  display: flex;
}

.available-tag.hide {
  display: none;
}

.div-block-12 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.project-nav-div {
  grid-column-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.back-to-home-button-wrapper-3:hover {
  opacity: .5;
}

.tooltip-wrapper {
  z-index: 999;
  color: #1b851e;
  background-color: #c3faaf;
  border-radius: 6px;
  display: block;
  position: fixed;
  inset: 12px auto auto 12px;
}

.project-title-wrapper-2 {
  color: #000;
  margin-top: .4em;
  text-decoration: none;
}

.tutorial-link {
  color: #edebd1;
  letter-spacing: .08em;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 999em;
  padding: .8em 4em .7em;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.tutorial-link:hover {
  color: #000;
  background-color: #0000;
  border-style: dashed;
}

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

.info-wrapper {
  margin-bottom: 2em;
}

.tooltip-text {
  color: #326a1d;
  padding: .3em .7em;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.infotext {
  color: #7d7d7d;
  margin-bottom: 0;
  font-size: .875em;
  line-height: 1.4em;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
}

.title6 {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2em;
}

.has-tooltip {
  text-decoration: none;
}

.title1 {
  font-size: 4.25em;
  font-weight: 600;
  line-height: 1.1em;
}

.project-subtitle-wrapper {
  margin-top: 2em;
}

.tutorial-button-wrapper {
  margin-top: 8.4em;
}

.work-link-copy {
  width: 100%;
  text-decoration: none;
}

.text-span, .medium-span {
  font-weight: 500;
}

.section-4 {
  padding-bottom: 8rem;
  position: relative;
}

.summary-div {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.div-block-13 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.tag {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.cv {
  padding-top: 2rem;
}

.case-studies {
  background-color: #fff;
}

.case-study {
  border-bottom: .0625rem solid var(--black-10);
  height: 4rem;
  color: var(--black-90);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  padding-bottom: 1.1rem;
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.case-study.w--current {
  border-bottom-color: #0000001a;
  border-left: 5px solid #b89c3b;
}

.case-study---bg {
  background-color: #b89c3b;
  position: absolute;
  inset: 0%;
  transform: translate(0, -100%);
}

.case-study---item {
  text-align: right;
  width: 25%;
  padding-left: 1rem;
  padding-right: 1rem;
  font-family: Inter Tight, sans-serif;
  font-weight: 400;
  position: relative;
}

.case-study---item.x-title {
  text-align: left;
  text-transform: none;
  width: 50%;
  padding-right: 4rem;
  font-family: Inter Tight, sans-serif;
  font-weight: 400;
}

.case-study---item.huge {
  color: #fff;
  width: 50%;
  padding-left: 0;
  padding-right: 4rem;
}

.case-study---item.client {
  text-align: left;
  font-family: Inter Tight, sans-serif;
  font-weight: 400;
}

.refereces-block {
  border-top: 1px solid var(--black-10);
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.hero-section {
  padding-bottom: 4rem;
}

.hero-section.hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.div-block-14 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.text-block {
  font-size: 12px;
}

.secondary-navigation {
  z-index: 9999;
  background-color: #fefefe;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.secondary-navigation.hide {
  display: none;
}

.heading-5 {
  font-weight: 300;
}

.secondary-menu-left {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  justify-content: space-between;
  display: flex;
}

.submit {
  color: #fffffe;
  background-color: #000;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.submit:hover {
  color: #fbff00;
}

.close {
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.close:hover {
  color: #fbff00;
}

.heading-5-copy {
  font-size: .75rem;
  font-weight: 300;
}

.div-block-15 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.div-block-16 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.text-block-2 {
  color: var(--black-40);
  font-size: .75rem;
}

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

.button-small {
  color: var(--white-100);
  background-color: #7b7c70;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.button-small:hover {
  background-color: var(--black-90);
  color: #fff;
}

.cta {
  color: #fffffe;
  background-color: #000;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-block;
}

.cta:hover {
  color: #fbff00;
}

.link-block-2 {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.backup {
  background-color: #fff;
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 3rem;
  padding-left: .75rem;
  padding-right: .75rem;
  display: none;
}

.text-block-3 {
  color: var(--black-40);
  font-size: .77rem;
}

.content-block {
  justify-content: center;
  align-items: center;
  width: 290px;
  display: flex;
  position: absolute;
  inset: 0% auto;
}

.artist-details {
  z-index: 3;
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
}

.titles {
  color: #fff;
  background-color: #000be4;
  border-radius: 50px;
  padding: 6px 8px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 12px;
  display: inline-block;
}

.testimonial---bg {
  z-index: 0;
  background-color: #b89c3b;
  position: absolute;
  inset: 0%;
  transform: translate(0, -100%);
}

.marquee-snap {
  text-align: left;
  height: 2em;
  position: relative;
  overflow: hidden;
}

.marquee_track-snap {
  width: 100%;
  height: 100%;
  line-height: 1.5rem;
  position: relative;
}

.marquee_item-snap {
  width: 100%;
  height: 100%;
}

.marquee_text {
  color: var(--black-40);
  font-size: .77rem;
  font-weight: 400;
  line-height: 1.8rem;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.2rem;
    line-height: 130%;
  }

  h2 {
    font-size: 2.6rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 1.6rem;
  }

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

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-wrapper {
    margin-top: 2rem;
  }

  .header-container {
    grid-template-columns: 1fr 2fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .project-detail-title {
    font-size: 8vw;
  }

  .contact-info-wrapper {
    grid-row-gap: 10rem;
  }

  .hero-heading {
    font-size: 1.8rem;
  }

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

  .project-title-wrapper {
    margin-bottom: 0;
  }

  .div-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .city-time {
    font-size: 2rem;
  }

  .city-name {
    font-size: 4rem;
  }

  .time-based-circle {
    width: 4rem;
    height: 4rem;
  }

  .navbar1_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar1_dropdown-list.w--open {
    border-style: none;
    padding: 0;
  }

  .menu-icon1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

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

  .navbar1_menu-buttons {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    margin-left: 0;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .navbar1_dropdown-link {
    width: auto;
    padding: .75rem 0 .75rem 5%;
  }

  .navbar1_menu-dropdown {
    width: 100%;
    font-size: 1.125rem;
  }

  .menu-icon1_line-top {
    background-color: var(--black-90);
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar1_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    display: flex;
  }

  .navbar1_link {
    width: auto;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .menu-icon1_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon1_line-middle {
    background-color: var(--black-90);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar1_menu {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar1_menu.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .menu-icon1_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .background-video-4 {
    width: 200px;
    height: 30px;
  }

  .background-video-arena {
    width: 7rem;
    height: 12rem;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

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

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

  .container.project-detail, .container.project-detail-header-2 {
    padding-top: 4rem;
  }

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

  .header-container {
    border-bottom: 1px solid var(--black-10);
  }

  .about-content-block {
    grid-row-gap: 2rem;
    margin-top: 2rem;
  }

  .footer-link-wrapper {
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content-wrapper {
    grid-row-gap: 1.5rem;
  }

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

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

  .hero-heading {
    font-size: 1.5rem;
  }

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

  .contact-block {
    margin-top: 3rem;
    position: static;
  }

  .project-year {
    font-size: 1rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .faq2_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .faq2_icon-wrapper {
    width: 1.75rem;
    height: 1.75rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .large-text-heading, .city-time {
    font-size: 1.5rem;
  }

  .time-message {
    font-size: 1.25rem;
  }

  .navbar1_component {
    height: auto;
    min-height: 4rem;
  }

  .navbar1_logo-link {
    padding-left: 0;
  }

  .navbar1_menu.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .infotext {
    font-size: 1em;
    line-height: 1.3em;
  }

  .title6 {
    font-size: .9em;
  }

  .title1 {
    font-size: 3.2em;
  }

  .case-study {
    height: auto;
    font-size: .8rem;
  }

  .backup {
    height: auto;
    min-height: 4rem;
  }
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .9rem;
  }

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

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

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

  .rich-text h3, .rich-text h4, .rich-text h5 {
    margin-bottom: .75rem;
  }

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

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

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

  .color-swatch {
    height: 5rem;
  }

  .container {
    padding: 0 .75rem;
  }

  .container.project-detail-header {
    border-bottom-style: none;
  }

  .container.project-detail {
    padding-top: 3rem;
  }

  .container.hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .container.project-detail-header-2 {
    padding-top: 0;
  }

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

  .header-container {
    padding-top: 4rem;
  }

  .working-status {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: absolute;
    top: 1rem;
    right: 0;
  }

  .about-content-block.testimonial {
    padding: 0;
  }

  .footer-link-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-content-wrapper {
    grid-row-gap: 1rem;
  }

  .project-detail-title {
    font-size: 3rem;
  }

  .social-link-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .contact-info-wrapper {
    grid-row-gap: 6rem;
  }

  .project-detail-info-item {
    flex-direction: column;
  }

  .project-detail-info-item.center {
    flex-flow: row;
    order: 1;
    display: flex;
  }

  .project-detail-info-item.center.hide-mobile-portrait {
    display: none;
  }

  .project-detail-info-item.center.hide {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .project-detail-info-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start stretch;
    display: grid;
  }

  .project-detail-info-wrapper.hide, .project-detail-info-wrapper.hide-mobile {
    display: none;
  }

  .project-detail-header {
    flex-direction: column;
  }

  .back-to-home-button-wrapper {
    border-bottom: 1px solid var(--black-10);
    margin-bottom: 2rem;
    margin-left: -.75rem;
    margin-right: -.75rem;
    padding-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .medium-text {
    font-size: 1.2rem;
  }

  .project-detail-content-wrapper {
    grid-row-gap: 3rem;
  }

  .project-content {
    border-top-style: solid;
  }

  .project-content.header {
    border-top-style: none;
  }

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

  .next-project-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .next-project {
    margin-bottom: 1rem;
  }

  .hero-heading {
    font-size: 1.2rem;
  }

  .hero-heading.updated {
    font-size: 1.7rem;
  }

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

  .work-thumbnail {
    width: 100%;
  }

  .work-item {
    height: 15rem;
    min-height: 5rem;
    max-height: 20rem;
  }

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

  .about-item-wrapper {
    flex-flow: column;
    display: flex;
  }

  .contact-block.testimonial {
    margin-top: 0;
    margin-bottom: 3rem;
  }

  .contact-link.nav {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .serif-link.big {
    font-size: 1.6rem;
  }

  .logo-text {
    font-size: .85rem;
    line-height: 20px;
  }

  .project-year {
    font-size: .9rem;
  }

  .back-to-home-button-wrapper-2 {
    border-bottom: 1px solid #0000001a;
    margin-bottom: 2rem;
    margin-left: -.75rem;
    margin-right: -.75rem;
    padding-bottom: 1rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }

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

  .work-6 {
    flex-flow: column;
    width: 100%;
  }

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

  .grid-50 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-columns: .25fr;
    grid-auto-flow: row;
    display: flex;
  }

  .work-clip {
    width: 100%;
  }

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

  .background-video-2 {
    box-sizing: border-box;
    aspect-ratio: 2;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .div-block {
    height: 100%;
    padding: 2rem 1rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-33 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    grid-auto-columns: .25fr;
    grid-auto-flow: row;
    display: flex;
  }

  .div-block-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    display: flex;
  }

  .large-text-heading {
    font-size: 1.2rem;
  }

  .grid-work {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .time-content-wrapper {
    justify-content: flex-end;
    width: 8.4375rem;
  }

  .location-row {
    background-color: #0a100d;
    height: 8rem;
  }

  .row-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .location-wrapper {
    padding-right: .5rem;
  }

  .city-name {
    font-size: 2rem;
  }

  .time-based-circle {
    width: 3rem;
    height: 3rem;
  }

  .time-message {
    display: none;
  }

  .spacer._50 {
    height: 0;
  }

  .spacer._100 {
    height: 6.25rem;
  }

  .spacer._40 {
    height: 1rem;
  }

  .spacer._70 {
    height: 2rem;
  }

  .navbar1_menu-links {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .navbar1_dropdown-toggle {
    display: none;
  }

  .navbar1_link {
    width: 100%;
    margin-left: 0;
    font-size: .9rem;
  }

  .navbar1_component {
    min-height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .menu-icon1_line-bottom {
    background-color: var(--black-90);
  }

  .navbar1_menu {
    background-color: #fff;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
  }

  .div-block-4 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .div-block-5 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    width: 100%;
  }

  .testimonial-image-div {
    flex-flow: column;
    display: flex;
  }

  .about-item-wrapper-testimonial {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    display: flex;
  }

  .div-block-6 {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: center;
    align-items: center;
  }

  .background-video-4 {
    width: 12.5rem;
    height: 1.7rem;
  }

  .div-block-9 {
    height: 20rem;
  }

  .background-video-arena {
    width: 7rem;
    height: 12rem;
  }

  .contact1_form {
    grid-row-gap: 1.5rem;
  }

  .available-tag {
    flex-flow: row;
  }

  .project-nav-div {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start stretch;
    display: grid;
  }

  .project-nav-div.hide, .project-nav-div.hide-mobile {
    display: none;
  }

  .back-to-home-button-wrapper-3 {
    border-bottom: 1px #0000001a;
    margin-bottom: 0;
    margin-left: -.75rem;
    margin-right: -.75rem;
    padding: 1rem .75rem;
  }

  .section-4 {
    padding-bottom: 4rem;
  }

  .case-study---item {
    padding-left: 1rem;
    padding-right: 1rem;
    text-decoration: none;
  }

  .case-study---item.x-title {
    padding-right: 1rem;
    line-height: 1.2;
  }

  .refereces-block {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-section {
    padding-bottom: 0;
  }

  .div-block-14 {
    align-items: baseline;
  }

  .secondary-navigation {
    z-index: 1000;
    min-height: 45px;
    padding: 3px 8px;
  }

  .button-small {
    font-size: .9rem;
    font-weight: 400;
    line-height: 20px;
  }

  .link-block-2 {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .backup {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block-3, .marquee_text {
    font-size: .85rem;
  }
}

#w-node-e00c9860-4538-9924-0fc1-2d56794abbe7-3014205a {
  grid-area: 1 / 4 / 2 / 10;
}

#w-node-_3e51aa2d-98d7-0430-9e02-7b392e10d57b-3014205a {
  grid-area: 2 / 4 / 3 / 10;
}

#w-node-_735de9b6-7644-9905-bae6-25eb25c06967-3014205a {
  grid-area: 1 / 1 / 3 / 7;
}

#w-node-_735de9b6-7644-9905-bae6-25eb25c069de-3014205a {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-e6ef1e86-a134-17e4-e995-96f629b96de7-37db3c04 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-f9ec6998-256a-bad6-21ba-9f638a27015d-37db3c04 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_42f6643e-ae7f-1e53-1e66-891337db3c09-37db3c04 {
  grid-area: 1 / 5 / 2 / 10;
}

#w-node-_42f6643e-ae7f-1e53-1e66-891337db3c16-37db3c04 {
  grid-area: 1 / 10 / 2 / 13;
  justify-self: end;
}

#w-node-f1572b4c-3030-524b-a2fa-5a87508055f4-30142061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f1572b4c-3030-524b-a2fa-5a87508055f6-30142061 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1572b4c-3030-524b-a2fa-5a87508055f8-30142061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f1572b4c-3030-524b-a2fa-5a87508055fa-30142061 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_807d083c-71b3-765c-caa9-bcabc94afc30-30142061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_807d083c-71b3-765c-caa9-bcabc94afc32-30142061 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1572b4c-3030-524b-a2fa-5a8750805600-30142061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f1572b4c-3030-524b-a2fa-5a8750805602-30142061 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1572b4c-3030-524b-a2fa-5a8750805604-30142061 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f1572b4c-3030-524b-a2fa-5a8750805606-30142061 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_6df19cd3-d360-3b08-3502-92afdc1e9594-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c17020c5-03e0-5cb5-d795-4a041c4f8f51-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_1ff716ef-c048-f240-4a20-890293279e0e-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1ff716ef-c048-f240-4a20-890293279e10-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81243-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81245-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-f0c920e8-1079-c45b-66ed-026d02caf352-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-f0c920e8-1079-c45b-66ed-026d02caf354-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_254c17eb-0178-4eca-34ef-bbd88799f63f-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_254c17eb-0178-4eca-34ef-bbd88799f641-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_988e489e-c915-1e88-f33b-5e7ec9b28af9-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_988e489e-c915-1e88-f33b-5e7ec9b28afb-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-9d7bb4c5, #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e1222f-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12231-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12234-9d7bb4c5, #w-node-a332a265-e165-1906-3b88-586b2dc15c20-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_891d39c9-d802-9dc2-9718-57c4a0b91333-9d7bb4c5, #w-node-_723f0837-dc4b-784c-d9c6-81693b8b0e32-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_0f5beae9-0c37-36a3-4926-e91cb9c147b1-9d7bb4c5, #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c27b-9d7bb4c5, #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c280-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_12a550b3-fc5b-19f4-da70-e51352c2c282-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12a550b3-fc5b-19f4-da70-e51352c2c286-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_1dea322a-a0cc-65c6-9505-084b78f04f7d-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_1dea322a-a0cc-65c6-9505-084b78f04f7f-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-f0f4a50b-d419-3b7e-9222-d9523ab92e75-9d7bb4c5, #w-node-_1bd292dc-cc48-0054-8d52-37b267046c50-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-affe9d0d-db63-ae54-a68e-0ddeedac1cba-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-affe9d0d-db63-ae54-a68e-0ddeedac1cbc-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_86bad03c-c83b-1769-8a89-9b9fe5b1af1e-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9356bbd7-59dc-efaf-e10f-e9fcfc9a0d3b-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_19e47f49-e358-daf4-597f-a9517c137c3c-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-d309be89-c992-9e6f-a455-ed6b1e780725-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbc-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbe-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bc1-9d7bb4c5, #w-node-b86098c5-0ac1-f4e6-22d8-1a8601f6ea44-9d7bb4c5, #w-node-_817a8282-3834-00aa-cfdc-b8c036696702-9d7bb4c5, #w-node-_94972e06-1e02-71e3-9e0a-59ebfecd7565-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_5802a34b-6bc1-4044-1c4d-a55d69898020-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_5802a34b-6bc1-4044-1c4d-a55d69898022-9d7bb4c5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4dfd2291-6f09-2ae6-63cf-7c1e3d2a2773-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c1-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c3-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c6-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_25c031da-4178-3344-2309-b5b05ddef87a-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_25c031da-4178-3344-2309-b5b05ddef87c-9d7bb4c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_25c031da-4178-3344-2309-b5b05ddef87f-9d7bb4c5, #w-node-_363e7983-20eb-1d43-57be-446e69abc955-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-9d7bb4c5 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_8ca32987-dcda-35c8-6c97-24d7c8522e9f-9d7bb4c5 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_8ca32987-dcda-35c8-6c97-24d7c8522eb4-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d3ad728e-6556-08ae-f23c-4873956235e2-9d7bb4c5 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_6b05f0ac-a8f0-2e72-545c-964a5e1d615a-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_6b05f0ac-a8f0-2e72-545c-964a5e1d6162-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc28-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc31-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc33-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2eb-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2ed-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2f3-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2f5-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_9146764d-733f-7451-55ab-3dc5fd8a98f8-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9146764d-733f-7451-55ab-3dc5fd8a98fa-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d304-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1f200285-73bb-6069-b8d8-2b66ca28d306-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-d4558b86-01a7-91fe-8862-d1d45892ed62-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d4558b86-01a7-91fe-8862-d1d45892ed64-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_891d39c9-d802-9dc2-9718-57c4a0b91333-f50736c0, #w-node-_723f0837-dc4b-784c-d9c6-81693b8b0e32-f50736c0, #w-node-_945abaae-fb3b-594b-0116-baa8c0249b3c-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_86bad03c-c83b-1769-8a89-9b9fe5b1af1e-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_9356bbd7-59dc-efaf-e10f-e9fcfc9a0d3b-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_19e47f49-e358-daf4-597f-a9517c137c3c-f50736c0, #w-node-d309be89-c992-9e6f-a455-ed6b1e780725-f50736c0, #w-node-_97a34cf6-ef80-f3a9-f605-053d4ab47cdb-f50736c0, #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbc-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbe-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bc1-f50736c0, #w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d82-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d84-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d87-f50736c0, #w-node-_359a8f9a-c42e-a8a2-37f3-59e9a0b31105-f50736c0, #w-node-ebe3d588-a6fe-0cc4-7ff1-2e5cb16d89d9-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-efe9c051-ad90-775b-acc1-680ab32d81ff-f50736c0 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-efe9c051-ad90-775b-acc1-680ab32d8201-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c1-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c3-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c6-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e898ae0d-1ff1-305a-13a5-1e12a85844b5-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-e898ae0d-1ff1-305a-13a5-1e12a85844b7-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e898ae0d-1ff1-305a-13a5-1e12a85844ba-f50736c0, #w-node-_44db84a3-3536-dc90-de8a-1b9377d3a87d-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_44db84a3-3536-dc90-de8a-1b9377d3a87f-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_44db84a3-3536-dc90-de8a-1b9377d3a882-f50736c0, #w-node-_1b806984-7b15-5563-b848-c2aed95eb177-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_1b806984-7b15-5563-b848-c2aed95eb179-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32646b04-f8f9-3d54-cafe-bd03c44c4e51-f50736c0, #w-node-_2e841a94-2f97-18ae-633f-5e850715b11f-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_2e841a94-2f97-18ae-633f-5e850715b121-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e841a94-2f97-18ae-633f-5e850715b124-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_65d37f94-bf0e-cc6a-859f-357427098602-f50736c0 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_65d37f94-bf0e-cc6a-859f-357427098604-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_31f4ec50-9a55-6ae1-59bc-7a2b1c18b146-f50736c0, #w-node-_417346b6-9401-3771-9ca3-e2ce918a3b63-f50736c0, #w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfc9d-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfc9f-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfca2-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750610-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750612-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750615-f50736c0, #w-node-_3944a075-5ce1-2609-048e-2c699adab21a-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_3944a075-5ce1-2609-048e-2c699adab21c-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3944a075-5ce1-2609-048e-2c699adab21f-f50736c0, #w-node-_4dfd2291-6f09-2ae6-63cf-7c1e3d2a2773-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_0ff13895-76a6-55d8-431e-11da91bddd56-f50736c0 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_0ff13895-76a6-55d8-431e-11da91bddd58-f50736c0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_2e15c35e-0823-9759-3046-a9afb9089450-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e15c35e-0823-9759-3046-a9afb9089453-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_2e15c35e-0823-9759-3046-a9afb908944e-f50736c0, #w-node-be4572d2-655f-b999-f825-c653f332d42c-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-be4572d2-655f-b999-f825-c653f332d42e-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-be4572d2-655f-b999-f825-c653f332d431-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-e2a9656c-9378-1abb-efed-d554c679a62e-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-e2a9656c-9378-1abb-efed-d554c679a630-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2a9656c-9378-1abb-efed-d554c679a633-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_79fe9716-54dd-2144-d377-9d4b3485515a-f50736c0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb2-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb4-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb7-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9b81684d-757a-23be-2732-862e1841aec6-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_9b81684d-757a-23be-2732-862e1841aec8-f50736c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9b81684d-757a-23be-2732-862e1841aecb-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_627ec622-2d8e-18d6-36e1-878fb1eb878f-f50736c0 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87a4-f50736c0 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87aa-f50736c0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87b0-f50736c0 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_07d3538a-c6d3-5357-270e-6c2baa18f615-f50736c0 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-4308ee19 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_4feb9c7a-e010-63f0-ac21-d2b570b46a21-4308ee19 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-ea6b0d39-7b75-572d-38ca-8221bd45429d-4308ee19 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ea6b0d39-7b75-572d-38ca-8221bd45429f-4308ee19 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4c40f3a0-df82-6449-d154-c6bfa561daa3-4308ee19 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4c40f3a0-df82-6449-d154-c6bfa561daa5-4308ee19 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4c40f3a0-df82-6449-d154-c6bfa561daab-4308ee19 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4c40f3a0-df82-6449-d154-c6bfa561daad-4308ee19 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-4308ee19 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a83b4468-8a44-e50b-c955-aa9d36b30f36-4308ee19 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_1e9e93e5-2ac8-de65-6bb8-956518689fef-4308ee19 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_1e9e93e5-2ac8-de65-6bb8-956518689ff1-4308ee19 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1e9e93e5-2ac8-de65-6bb8-956518689ff4-4308ee19 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_405df411-9230-96ac-50e3-39b424eb3c1f-4308ee19 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_405df411-9230-96ac-50e3-39b424eb3c21-4308ee19 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_405df411-9230-96ac-50e3-39b424eb3c24-4308ee19, #w-node-a332a265-e165-1906-3b88-586b2dc15c20-4308ee19 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e1222f-4308ee19 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12231-4308ee19 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12234-4308ee19 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b97f6ad2-2d2f-a4cc-c536-eb253d0226d5-4308ee19 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-a48c4d45-d24c-8661-0be7-8d7250553773-4308ee19 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-a48c4d45-d24c-8661-0be7-8d7250553788-4308ee19 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_8647af44-73e8-95f8-3d0e-f70475f93aac-4308ee19 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-8ecef684 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_336f0ab3-74ea-6c4e-5721-573bd3145fb2-8ecef684 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_336f0ab3-74ea-6c4e-5721-573bd3145fb4-8ecef684 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2b5-8ecef684 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2b7-8ecef684 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2bd-8ecef684 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2bf-8ecef684 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2ce-8ecef684 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2d0-8ecef684, #w-node-bc2adb89-3b63-9901-d441-f1148650ac66-8ecef684 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-8ecef684 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dcbfd473-d8fb-da7b-4780-78f5a5b734a9-8ecef684, #w-node-_8e3f636c-8dec-75a5-0062-5d1fa4515dd0-8ecef684, #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-8ecef684 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-8ecef684 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-8ecef684, #w-node-_65fa5fa8-955b-93b4-5c46-4d5220d1e90c-8ecef684 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_91700964-389b-8d8a-5944-4be2a9a55026-8ecef684 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_91700964-389b-8d8a-5944-4be2a9a5503b-8ecef684 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_91700964-389b-8d8a-5944-4be2a9a55041-8ecef684 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_91700964-389b-8d8a-5944-4be2a9a55047-8ecef684 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-c2282b55-d4ee-5b18-f45a-eaefcb5a00b1-8ecef684 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-5fbd4353 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_8a07f9d3-63bb-0ac2-bc85-01417d85deb2-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_8a07f9d3-63bb-0ac2-bc85-01417d85deb4-5fbd4353 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-d49e6c15-ed22-2737-a0ca-95385a88bc78-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d49e6c15-ed22-2737-a0ca-95385a88bc7a-5fbd4353 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-d49e6c15-ed22-2737-a0ca-95385a88bc80-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d49e6c15-ed22-2737-a0ca-95385a88bc82-5fbd4353 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-d49e6c15-ed22-2737-a0ca-95385a88bc91-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d6595854-abd5-854c-f8c3-45393cc43579-5fbd4353 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-adbc0fca-fb56-6e9d-feed-28934527ec72-5fbd4353, #w-node-_65fa5fa8-955b-93b4-5c46-4d5220d1e90c-5fbd4353, #w-node-e0e00659-0215-9eab-e274-7962557c21e0-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38a-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38c-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38f-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf372f-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf3731-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf3734-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-da7eb765-6bc9-0aba-b713-ae58989eb727-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-da7eb765-6bc9-0aba-b713-ae58989eb729-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-da7eb765-6bc9-0aba-b713-ae58989eb72c-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d867e705-aba7-0649-4ef7-2e61b3a0266e-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-d867e705-aba7-0649-4ef7-2e61b3a02670-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d867e705-aba7-0649-4ef7-2e61b3a02673-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f7838-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f783a-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f783d-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_5dc60966-9444-a66b-849a-d25665403c9d-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_5dc60966-9444-a66b-849a-d25665403c9f-5fbd4353 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5dc60966-9444-a66b-849a-d25665403ca2-5fbd4353 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a4432226-f652-c437-612d-334c7cb9b220-5fbd4353 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-a4432226-f652-c437-612d-334c7cb9b236-5fbd4353 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-ad6682d1-768b-e92e-6048-84b7b2049712-5fbd4353 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-7f9351cb {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_87e632e3-f947-8c49-c614-44f1327f8706-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_87e632e3-f947-8c49-c614-44f1327f8708-7f9351cb {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b1c-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b1e-7f9351cb {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b24-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b26-7f9351cb {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b35-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b37-7f9351cb {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_57a3d74f-24d8-9b8a-2196-2c818bd1dd1c-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_078ae219-8f87-8e44-b58f-0b89086d7c31-7f9351cb {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-bd40738d-3bb5-785a-d630-6ad7003aac6a-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9ac59d9a-0761-abd2-096b-16070b5d690f-7f9351cb, #w-node-d544d7bc-e21a-867e-de01-df801890370d-7f9351cb, #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-7f9351cb {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-7f9351cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-7f9351cb, #w-node-_28475c4a-0817-5459-0926-752f240f457b-7f9351cb {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e55f-7f9351cb {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e561-7f9351cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e564-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38a-7f9351cb {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38c-7f9351cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38f-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf372f-7f9351cb {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf3731-7f9351cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd19e2f8-2970-7c35-f392-345b19cf3734-7f9351cb {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-b95faef0-3e34-e229-9df0-7aaee38ed6b7-7f9351cb {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-b95faef0-3e34-e229-9df0-7aaee38ed6cc-7f9351cb {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-b95faef0-3e34-e229-9df0-7aaee38ed6d2-7f9351cb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b95faef0-3e34-e229-9df0-7aaee38ed6d8-7f9351cb {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_5705136b-3961-138d-f8cf-5172bb2728e4-7f9351cb {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_5eea2367-a558-a12f-de17-f19af81921ef-07c23a22 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_5eea2367-a558-a12f-de17-f19af81921fd-07c23a22 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7d488d1b-7e7e-6cb2-cfec-7817cef68706-07c23a22 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_49445dc8-563c-7d67-a48d-4424dcb26bd0-07c23a22 {
  justify-self: center;
}

#w-node-_7e00391f-0976-466b-e463-e17b6920d1d8-fdd535f7 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_735de9b6-7644-9905-bae6-25eb25c06967-fdd535f7 {
  grid-area: 1 / 1 / 3 / 7;
}

#w-node-_735de9b6-7644-9905-bae6-25eb25c069de-fdd535f7 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_735de9b6-7644-9905-bae6-25eb25c06967-a7856721 {
  grid-area: 1 / 1 / 3 / 13;
}

#w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec0c-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec21-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_4aa9054a-6395-d000-0950-4b0fa5440a18-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_4aa9054a-6395-d000-0950-4b0fa5440a2d-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_84a01f06-4858-9133-f600-c344535ab7b8-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_84a01f06-4858-9133-f600-c344535ab7d0-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_3d72a5bc-602b-af4a-17b5-2a6b5942392b-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-_3d72a5bc-602b-af4a-17b5-2a6b59423940-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8460-ccb2fc57 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8475-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d3ad728e-6556-08ae-f23c-4873956235e2-ccb2fc57 {
  grid-area: 1 / 1 / 2 / 7;
}

@media screen and (max-width: 991px) {
  #w-node-e00c9860-4538-9924-0fc1-2d56794abbe7-3014205a, #w-node-_3e51aa2d-98d7-0430-9e02-7b392e10d57b-3014205a {
    grid-column: 2 / 8;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-3014205a {
    grid-column-end: 6;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-3014205a {
    grid-column: 7 / 9;
  }

  #w-node-e6ef1e86-a134-17e4-e995-96f629b96de7-37db3c04, #w-node-f9ec6998-256a-bad6-21ba-9f638a27015d-37db3c04 {
    grid-column-end: 5;
  }

  #w-node-_42f6643e-ae7f-1e53-1e66-891337db3c16-37db3c04 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: start;
  }

  #w-node-f1572b4c-3030-524b-a2fa-5a87508055f4-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a87508055f8-30142061, #w-node-_807d083c-71b3-765c-caa9-bcabc94afc30-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a8750805600-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a8750805604-30142061 {
    grid-column: span 4 / span 4;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-9d7bb4c5 {
    grid-column-end: 9;
  }

  #w-node-c17020c5-03e0-5cb5-d795-4a041c4f8f51-9d7bb4c5, #w-node-_1ff716ef-c048-f240-4a20-890293279e10-9d7bb4c5, #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81245-9d7bb4c5, #w-node-f0c920e8-1079-c45b-66ed-026d02caf354-9d7bb4c5, #w-node-_254c17eb-0178-4eca-34ef-bbd88799f641-9d7bb4c5, #w-node-_988e489e-c915-1e88-f33b-5e7ec9b28afb-9d7bb4c5, #w-node-_1dea322a-a0cc-65c6-9505-084b78f04f7f-9d7bb4c5, #w-node-affe9d0d-db63-ae54-a68e-0ddeedac1cbc-9d7bb4c5, #w-node-_5802a34b-6bc1-4044-1c4d-a55d69898022-9d7bb4c5 {
    grid-column: 5 / 9;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-9d7bb4c5 {
    grid-column-end: 6;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-9d7bb4c5 {
    grid-column: 7 / 9;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522e9f-9d7bb4c5 {
    grid-column-end: 6;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522eb4-9d7bb4c5 {
    grid-column: 7 / 9;
  }

  #w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc28-f50736c0 {
    grid-column-end: 9;
  }

  #w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc33-f50736c0, #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2ed-f50736c0, #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2f5-f50736c0, #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d306-f50736c0, #w-node-d4558b86-01a7-91fe-8862-d1d45892ed64-f50736c0, #w-node-efe9c051-ad90-775b-acc1-680ab32d8201-f50736c0, #w-node-_65d37f94-bf0e-cc6a-859f-357427098604-f50736c0, #w-node-_0ff13895-76a6-55d8-431e-11da91bddd58-f50736c0 {
    grid-column: 5 / 9;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb878f-f50736c0 {
    grid-column-end: 6;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87a4-f50736c0 {
    grid-column: 7 / 9;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87b0-f50736c0 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-4308ee19 {
    grid-column-end: 9;
  }

  #w-node-ea6b0d39-7b75-572d-38ca-8221bd45429f-4308ee19, #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daa5-4308ee19, #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daad-4308ee19 {
    grid-column: 5 / 9;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553773-4308ee19 {
    grid-column-end: 6;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553788-4308ee19 {
    grid-column: 7 / 9;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-8ecef684 {
    grid-column-end: 9;
  }

  #w-node-_336f0ab3-74ea-6c4e-5721-573bd3145fb4-8ecef684, #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2b7-8ecef684, #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2bf-8ecef684, #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2d0-8ecef684 {
    grid-column: 5 / 9;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a55026-8ecef684 {
    grid-column-end: 6;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a5503b-8ecef684 {
    grid-column: 7 / 9;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a55047-8ecef684 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-5fbd4353 {
    grid-column-end: 9;
  }

  #w-node-_8a07f9d3-63bb-0ac2-bc85-01417d85deb4-5fbd4353, #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc7a-5fbd4353, #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc82-5fbd4353 {
    grid-column: 5 / 9;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b220-5fbd4353 {
    grid-column-end: 6;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b236-5fbd4353 {
    grid-column: 7 / 9;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-7f9351cb {
    grid-column-end: 9;
  }

  #w-node-_87e632e3-f947-8c49-c614-44f1327f8708-7f9351cb, #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b1e-7f9351cb, #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b26-7f9351cb, #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b37-7f9351cb {
    grid-column: 5 / 9;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6b7-7f9351cb {
    grid-column-end: 6;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6cc-7f9351cb {
    grid-column: 7 / 9;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6d8-7f9351cb {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_5eea2367-a558-a12f-de17-f19af81921ef-07c23a22 {
    grid-column-end: 9;
  }

  #w-node-_7d488d1b-7e7e-6cb2-cfec-7817cef68706-07c23a22 {
    grid-column: 5 / 9;
  }

  #w-node-_7e00391f-0976-466b-e463-e17b6920d1d8-fdd535f7 {
    grid-column-end: 9;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-fdd535f7 {
    grid-column-end: 6;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-fdd535f7 {
    grid-column: 7 / 9;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-a7856721 {
    grid-column-end: 6;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-ccb2fc57 {
    grid-column-end: 9;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-ccb2fc57 {
    grid-column: 7 / 9;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec0c-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec21-ccb2fc57 {
    grid-column: 7 / 9;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a18-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a2d-ccb2fc57 {
    grid-column: 7 / 9;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7b8-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7d0-ccb2fc57 {
    grid-column: 7 / 9;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b5942392b-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b59423940-ccb2fc57 {
    grid-column: 7 / 9;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8460-ccb2fc57 {
    grid-column-end: 6;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8475-ccb2fc57 {
    grid-column: 7 / 9;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e00c9860-4538-9924-0fc1-2d56794abbe7-3014205a, #w-node-_3e51aa2d-98d7-0430-9e02-7b392e10d57b-3014205a {
    grid-column: 2 / 8;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-3014205a {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-3014205a {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_42f6643e-ae7f-1e53-1e66-891337db3c16-37db3c04 {
    grid-column: 5 / 9;
  }

  #w-node-f1572b4c-3030-524b-a2fa-5a87508055f4-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a87508055f8-30142061, #w-node-_807d083c-71b3-765c-caa9-bcabc94afc30-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a8750805600-30142061, #w-node-f1572b4c-3030-524b-a2fa-5a8750805604-30142061 {
    grid-column: span 4 / span 4;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-9d7bb4c5 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-9d7bb4c5 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522e9f-9d7bb4c5 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522eb4-9d7bb4c5 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb878f-f50736c0 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87a4-f50736c0 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553773-4308ee19 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553788-4308ee19 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a55026-8ecef684 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a5503b-8ecef684 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b220-5fbd4353 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b236-5fbd4353 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6b7-7f9351cb {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6cc-7f9351cb {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-fdd535f7 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-fdd535f7 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-a7856721, #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec0c-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec21-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a18-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a2d-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7b8-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7d0-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b5942392b-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b59423940-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8460-ccb2fc57 {
    grid-row-end: 2;
    grid-column-end: 9;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8475-ccb2fc57 {
    grid-row: 2 / 3;
    grid-column-start: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e00c9860-4538-9924-0fc1-2d56794abbe7-3014205a, #w-node-_3e51aa2d-98d7-0430-9e02-7b392e10d57b-3014205a {
    grid-column: 1 / 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-3014205a {
    grid-column-end: 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-3014205a {
    grid-column: 1 / 5;
  }

  #w-node-_42f6643e-ae7f-1e53-1e66-891337db3c09-37db3c04 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_42f6643e-ae7f-1e53-1e66-891337db3c16-37db3c04 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-9d7bb4c5, #w-node-_6df19cd3-d360-3b08-3502-92afdc1e9594-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-c17020c5-03e0-5cb5-d795-4a041c4f8f51-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1ff716ef-c048-f240-4a20-890293279e0e-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_1ff716ef-c048-f240-4a20-890293279e10-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81243-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81245-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f0c920e8-1079-c45b-66ed-026d02caf352-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-f0c920e8-1079-c45b-66ed-026d02caf354-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_254c17eb-0178-4eca-34ef-bbd88799f63f-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_254c17eb-0178-4eca-34ef-bbd88799f641-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_988e489e-c915-1e88-f33b-5e7ec9b28af9-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_988e489e-c915-1e88-f33b-5e7ec9b28afb-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-9d7bb4c5, #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e1222f-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12231-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12234-9d7bb4c5, #w-node-a332a265-e165-1906-3b88-586b2dc15c20-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_891d39c9-d802-9dc2-9718-57c4a0b91333-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_723f0837-dc4b-784c-d9c6-81693b8b0e32-9d7bb4c5, #w-node-_0f5beae9-0c37-36a3-4926-e91cb9c147b1-9d7bb4c5, #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c27b-9d7bb4c5, #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c280-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c282-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12a550b3-fc5b-19f4-da70-e51352c2c286-9d7bb4c5, #w-node-_1dea322a-a0cc-65c6-9505-084b78f04f7d-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_1dea322a-a0cc-65c6-9505-084b78f04f7f-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f0f4a50b-d419-3b7e-9222-d9523ab92e75-9d7bb4c5, #w-node-_1bd292dc-cc48-0054-8d52-37b267046c50-9d7bb4c5, #w-node-affe9d0d-db63-ae54-a68e-0ddeedac1cba-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-affe9d0d-db63-ae54-a68e-0ddeedac1cbc-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_86bad03c-c83b-1769-8a89-9b9fe5b1af1e-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_9356bbd7-59dc-efaf-e10f-e9fcfc9a0d3b-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_19e47f49-e358-daf4-597f-a9517c137c3c-9d7bb4c5, #w-node-d309be89-c992-9e6f-a455-ed6b1e780725-9d7bb4c5, #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbc-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbe-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bc1-9d7bb4c5, #w-node-b86098c5-0ac1-f4e6-22d8-1a8601f6ea44-9d7bb4c5, #w-node-_817a8282-3834-00aa-cfdc-b8c036696702-9d7bb4c5, #w-node-_94972e06-1e02-71e3-9e0a-59ebfecd7565-9d7bb4c5, #w-node-_5802a34b-6bc1-4044-1c4d-a55d69898020-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_5802a34b-6bc1-4044-1c4d-a55d69898022-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_4dfd2291-6f09-2ae6-63cf-7c1e3d2a2773-9d7bb4c5, #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c1-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c3-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c6-9d7bb4c5, #w-node-_25c031da-4178-3344-2309-b5b05ddef87a-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_25c031da-4178-3344-2309-b5b05ddef87c-9d7bb4c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_25c031da-4178-3344-2309-b5b05ddef87f-9d7bb4c5, #w-node-_363e7983-20eb-1d43-57be-446e69abc955-9d7bb4c5 {
    grid-column-end: 5;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-9d7bb4c5 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522e9f-9d7bb4c5 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_8ca32987-dcda-35c8-6c97-24d7c8522eb4-9d7bb4c5 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_6b05f0ac-a8f0-2e72-545c-964a5e1d615a-f50736c0 {
    grid-column-end: 13;
  }

  #w-node-_6b05f0ac-a8f0-2e72-545c-964a5e1d6162-f50736c0 {
    grid-row-start: 2;
    grid-column-start: 1;
  }

  #w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc28-f50736c0, #w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc31-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_70d4d962-efcc-7a94-6fdd-9da85aaacc33-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2eb-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2ed-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2f3-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d2f5-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9146764d-733f-7451-55ab-3dc5fd8a98f8-f50736c0, #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d304-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_1f200285-73bb-6069-b8d8-2b66ca28d306-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d4558b86-01a7-91fe-8862-d1d45892ed62-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-d4558b86-01a7-91fe-8862-d1d45892ed64-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-f50736c0, #w-node-_891d39c9-d802-9dc2-9718-57c4a0b91333-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_723f0837-dc4b-784c-d9c6-81693b8b0e32-f50736c0, #w-node-_945abaae-fb3b-594b-0116-baa8c0249b3c-f50736c0, #w-node-_86bad03c-c83b-1769-8a89-9b9fe5b1af1e-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_9356bbd7-59dc-efaf-e10f-e9fcfc9a0d3b-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_19e47f49-e358-daf4-597f-a9517c137c3c-f50736c0, #w-node-d309be89-c992-9e6f-a455-ed6b1e780725-f50736c0, #w-node-_97a34cf6-ef80-f3a9-f605-053d4ab47cdb-f50736c0, #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbc-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bbe-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ed019b96-41a6-bc17-d2bc-c2a7043c3bc1-f50736c0, #w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d82-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d84-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_36d2412b-05e9-f098-93ac-2b2d0ba39d87-f50736c0, #w-node-_359a8f9a-c42e-a8a2-37f3-59e9a0b31105-f50736c0, #w-node-ebe3d588-a6fe-0cc4-7ff1-2e5cb16d89d9-f50736c0, #w-node-efe9c051-ad90-775b-acc1-680ab32d81ff-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-efe9c051-ad90-775b-acc1-680ab32d8201-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c1-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c3-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c95b5bd9-1a9b-41b5-f8f2-3a6c11a538c6-f50736c0, #w-node-e898ae0d-1ff1-305a-13a5-1e12a85844b5-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-e898ae0d-1ff1-305a-13a5-1e12a85844b7-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e898ae0d-1ff1-305a-13a5-1e12a85844ba-f50736c0, #w-node-_44db84a3-3536-dc90-de8a-1b9377d3a87d-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_44db84a3-3536-dc90-de8a-1b9377d3a87f-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_44db84a3-3536-dc90-de8a-1b9377d3a882-f50736c0, #w-node-_1b806984-7b15-5563-b848-c2aed95eb177-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_1b806984-7b15-5563-b848-c2aed95eb179-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_32646b04-f8f9-3d54-cafe-bd03c44c4e51-f50736c0, #w-node-_2e841a94-2f97-18ae-633f-5e850715b11f-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_2e841a94-2f97-18ae-633f-5e850715b121-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2e841a94-2f97-18ae-633f-5e850715b124-f50736c0, #w-node-_65d37f94-bf0e-cc6a-859f-357427098602-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_65d37f94-bf0e-cc6a-859f-357427098604-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_31f4ec50-9a55-6ae1-59bc-7a2b1c18b146-f50736c0, #w-node-_417346b6-9401-3771-9ca3-e2ce918a3b63-f50736c0, #w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfc9d-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfc9f-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_8ba8ec5e-56eb-e859-519b-66ded20dfca2-f50736c0, #w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750610-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750612-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_439f83f0-fd7f-da2f-25d3-9a9a58750615-f50736c0, #w-node-_3944a075-5ce1-2609-048e-2c699adab21a-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_3944a075-5ce1-2609-048e-2c699adab21c-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3944a075-5ce1-2609-048e-2c699adab21f-f50736c0, #w-node-_4dfd2291-6f09-2ae6-63cf-7c1e3d2a2773-f50736c0, #w-node-_0ff13895-76a6-55d8-431e-11da91bddd56-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_0ff13895-76a6-55d8-431e-11da91bddd58-f50736c0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_2e15c35e-0823-9759-3046-a9afb9089450-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2e15c35e-0823-9759-3046-a9afb9089453-f50736c0, #w-node-_2e15c35e-0823-9759-3046-a9afb908944e-f50736c0, #w-node-be4572d2-655f-b999-f825-c653f332d42c-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-be4572d2-655f-b999-f825-c653f332d42e-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-be4572d2-655f-b999-f825-c653f332d431-f50736c0, #w-node-e2a9656c-9378-1abb-efed-d554c679a62e-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-e2a9656c-9378-1abb-efed-d554c679a630-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e2a9656c-9378-1abb-efed-d554c679a633-f50736c0, #w-node-_79fe9716-54dd-2144-d377-9d4b3485515a-f50736c0, #w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb2-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb4-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5d1fa7a1-f3ec-a830-514d-9d71d03b9eb7-f50736c0, #w-node-_9b81684d-757a-23be-2732-862e1841aec6-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_9b81684d-757a-23be-2732-862e1841aec8-f50736c0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9b81684d-757a-23be-2732-862e1841aecb-f50736c0 {
    grid-column-end: 5;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb878f-f50736c0 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87a4-f50736c0 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_627ec622-2d8e-18d6-36e1-878fb1eb87b0-f50736c0 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-4308ee19, #w-node-ea6b0d39-7b75-572d-38ca-8221bd45429d-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-ea6b0d39-7b75-572d-38ca-8221bd45429f-4308ee19 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daa3-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daa5-4308ee19 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daab-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-_4c40f3a0-df82-6449-d154-c6bfa561daad-4308ee19 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-4308ee19 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a83b4468-8a44-e50b-c955-aa9d36b30f36-4308ee19, #w-node-_1e9e93e5-2ac8-de65-6bb8-956518689fef-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-_1e9e93e5-2ac8-de65-6bb8-956518689ff1-4308ee19 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1e9e93e5-2ac8-de65-6bb8-956518689ff4-4308ee19, #w-node-_405df411-9230-96ac-50e3-39b424eb3c1f-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-_405df411-9230-96ac-50e3-39b424eb3c21-4308ee19 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_405df411-9230-96ac-50e3-39b424eb3c24-4308ee19, #w-node-a332a265-e165-1906-3b88-586b2dc15c20-4308ee19, #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e1222f-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12231-4308ee19 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0b2322ba-bca6-8cbf-f240-0d30f3e12234-4308ee19, #w-node-b97f6ad2-2d2f-a4cc-c536-eb253d0226d5-4308ee19 {
    grid-column-end: 5;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553773-4308ee19 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a48c4d45-d24c-8661-0be7-8d7250553788-4308ee19 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-8ecef684, #w-node-_336f0ab3-74ea-6c4e-5721-573bd3145fb2-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-_336f0ab3-74ea-6c4e-5721-573bd3145fb4-8ecef684 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2b5-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2b7-8ecef684 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2bd-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2bf-8ecef684 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2ce-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-c2cdfa19-a5e3-4f1f-4fc4-ff727399f2d0-8ecef684 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_5808d52f-17ac-8893-ddd5-e1469c215dfe-8ecef684 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dcbfd473-d8fb-da7b-4780-78f5a5b734a9-8ecef684, #w-node-_8e3f636c-8dec-75a5-0062-5d1fa4515dd0-8ecef684, #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-8ecef684 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-8ecef684, #w-node-_65fa5fa8-955b-93b4-5c46-4d5220d1e90c-8ecef684 {
    grid-column-end: 5;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a55026-8ecef684 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a5503b-8ecef684 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_91700964-389b-8d8a-5944-4be2a9a55047-8ecef684 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-5fbd4353, #w-node-_8a07f9d3-63bb-0ac2-bc85-01417d85deb2-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-_8a07f9d3-63bb-0ac2-bc85-01417d85deb4-5fbd4353 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc78-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc7a-5fbd4353 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc80-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc82-5fbd4353 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d49e6c15-ed22-2737-a0ca-95385a88bc91-5fbd4353, #w-node-adbc0fca-fb56-6e9d-feed-28934527ec72-5fbd4353, #w-node-_65fa5fa8-955b-93b4-5c46-4d5220d1e90c-5fbd4353, #w-node-e0e00659-0215-9eab-e274-7962557c21e0-5fbd4353, #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-5fbd4353, #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38a-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38c-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38f-5fbd4353, #w-node-bd19e2f8-2970-7c35-f392-345b19cf372f-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-bd19e2f8-2970-7c35-f392-345b19cf3731-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bd19e2f8-2970-7c35-f392-345b19cf3734-5fbd4353, #w-node-da7eb765-6bc9-0aba-b713-ae58989eb727-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-da7eb765-6bc9-0aba-b713-ae58989eb729-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-da7eb765-6bc9-0aba-b713-ae58989eb72c-5fbd4353, #w-node-d867e705-aba7-0649-4ef7-2e61b3a0266e-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-d867e705-aba7-0649-4ef7-2e61b3a02670-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d867e705-aba7-0649-4ef7-2e61b3a02673-5fbd4353, #w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f7838-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f783a-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7ad33aef-7952-3e59-d2d9-0f9a2a8f783d-5fbd4353, #w-node-_5dc60966-9444-a66b-849a-d25665403c9d-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-_5dc60966-9444-a66b-849a-d25665403c9f-5fbd4353 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5dc60966-9444-a66b-849a-d25665403ca2-5fbd4353 {
    grid-column-end: 5;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b220-5fbd4353 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a4432226-f652-c437-612d-334c7cb9b236-5fbd4353 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-7f9351cb, #w-node-_87e632e3-f947-8c49-c614-44f1327f8706-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_87e632e3-f947-8c49-c614-44f1327f8708-7f9351cb {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b1c-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b1e-7f9351cb {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b24-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b26-7f9351cb {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b35-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_78280f2d-f5f6-6474-1658-83ea17ad6b37-7f9351cb {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_57a3d74f-24d8-9b8a-2196-2c818bd1dd1c-7f9351cb, #w-node-bd40738d-3bb5-785a-d630-6ad7003aac6a-7f9351cb, #w-node-_9ac59d9a-0761-abd2-096b-16070b5d690f-7f9351cb, #w-node-d544d7bc-e21a-867e-de01-df801890370d-7f9351cb, #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd246-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd248-7f9351cb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_59b86486-bde5-c37a-d74e-1cd042dcd24b-7f9351cb, #w-node-_28475c4a-0817-5459-0926-752f240f457b-7f9351cb, #w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e55f-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e561-7f9351cb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0a8e0a9-882b-93f2-e091-0c5408b3e564-7f9351cb, #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38a-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38c-7f9351cb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7cc12e00-08a0-b098-e53d-17eeb9cee38f-7f9351cb, #w-node-bd19e2f8-2970-7c35-f392-345b19cf372f-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-bd19e2f8-2970-7c35-f392-345b19cf3731-7f9351cb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bd19e2f8-2970-7c35-f392-345b19cf3734-7f9351cb {
    grid-column-end: 5;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6b7-7f9351cb {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6cc-7f9351cb {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-b95faef0-3e34-e229-9df0-7aaee38ed6d8-7f9351cb {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_5eea2367-a558-a12f-de17-f19af81921ef-07c23a22, #w-node-_5eea2367-a558-a12f-de17-f19af81921fd-07c23a22 {
    grid-column-end: 5;
  }

  #w-node-_7d488d1b-7e7e-6cb2-cfec-7817cef68706-07c23a22 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_7e00391f-0976-466b-e463-e17b6920d1d8-fdd535f7, #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-fdd535f7 {
    grid-column-end: 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c069de-fdd535f7 {
    grid-column: 1 / 5;
  }

  #w-node-_735de9b6-7644-9905-bae6-25eb25c06967-a7856721, #w-node-_93e982ab-66e9-d2b7-a999-3e568fa81230-ccb2fc57 {
    grid-column-end: 5;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454de-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_716e60fc-4724-5f03-adb8-e915f5e454fb-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec0c-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_0da3ace9-306e-92d0-8e7e-655a2d06ec21-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a18-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_4aa9054a-6395-d000-0950-4b0fa5440a2d-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7b8-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_84a01f06-4858-9133-f600-c344535ab7d0-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b5942392b-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_3d72a5bc-602b-af4a-17b5-2a6b59423940-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8460-ccb2fc57 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-d5bf1189-b5c7-a2ac-371c-505e9daa8475-ccb2fc57 {
    grid-area: 1 / 1 / 2 / 13;
  }
}


