:root {
  --primary--sand: #f9f8f4;
  --text-color--neutral-darkest: #222;
  --primary--black: #0f0f0f;
  --text-color--neutral-light: #eee;
  --text-color--neutral: #ccc;
  --text-color--neutral-darker: #666;
  --primary--charcoal: #1d1d1d;
  --primary--white: #fdfdfd;
  --primary--purple: #bd98f8;
  --primary--oat: #e5e3d9;
  --corners: .5rem;
  --text-color--dark-espresso: #524540;
}

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

body {
  background-color: var(--primary--sand);
  color: var(--text-color--neutral-darkest);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

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

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

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

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

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

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

a {
  color: var(--primary--black);
  font-weight: 400;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 3rem;
  padding-left: 20px;
}

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

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

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

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 3rem;
}

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

.medium-text {
  color: var(--text-color--neutral-darkest);
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
}

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

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

.medium-text.neutral-darker {
  color: var(--text-color--neutral-darker);
  padding-right: 0;
}

.medium-text.about-us-page {
  justify-content: flex-start;
  align-items: center;
}

.medium-text.click-to-buy-text {
  font-size: 2rem;
}

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

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

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

._12-column-grid._4rem {
  grid-row-gap: 4rem;
  grid-row-gap: 4rem;
  place-items: start stretch;
}

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

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

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

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

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

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

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

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

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

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

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

.rich-text p {
  color: var(--text-color--neutral-darker);
  margin-bottom: 3rem;
}

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

.rich-text figcaption {
  margin-bottom: 0;
}

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

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

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

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

.form-block {
  width: 100%;
}

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

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

.form-submit-button:hover {
  border-radius: var(--corners);
  background-color: var(--primary--charcoal);
  color: var(--text-color--neutral-light);
  border-color: #ffffff4d #ffffff4d #fcfcfc;
}

.container {
  text-align: left;
  background-color: #f2e9de;
  width: 100%;
  padding: 4rem 1rem .5rem;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
}

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

.container.contact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.large-text {
  color: var(--text-color--neutral-darkest);
  font-family: Inter Tight, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

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

.small-text {
  font-size: .94rem;
  text-decoration: none;
}

.small-text.neutral-darker {
  color: var(--text-color--neutral-darker);
  font-size: .9rem;
  font-weight: 400;
}

.small-text.neutral {
  color: var(--text-color--neutral-darkest);
  font-size: .85rem;
}

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

.small-text.image-text {
  color: var(--text-color--neutral);
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
}

.small-text.about-us-text {
  color: var(--text-color--neutral-light);
  font-size: 1rem;
}

.style-guide-label {
  background-color: var(--primary--oat);
  color: var(--text-color--neutral-darkest);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  display: flex;
}

.black {
  color: var(--primary--black);
}

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

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

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

.margin-bottom.extra-small {
  margin-bottom: .5rem;
}

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

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

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

.utility-page-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._404-lottie {
  height: 250px;
}

.nav-text {
  color: var(--primary--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  min-height: 1.875rem;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.nav-link-desktop {
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.nav-desktop-link-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.nav-text-wrapper {
  color: var(--primary--black);
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 1.875rem;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.main-wrapper {
  overflow: clip;
}

.section-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 60px;
  display: flex;
}

.section-content._2-rem {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.progress-bar {
  z-index: 1;
  background-color: #b14707;
  width: 100vw;
  height: 2px;
  position: fixed;
  inset: 0% 0% auto;
}

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

.logo-link.w--current {
  flex: 0 auto;
  position: static;
  overflow: visible;
}

.nav-link-mobile-wrapper {
  color: var(--text-color--neutral-darkest);
}

.small-logo {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  width: 8rem;
}

.nav-bar {
  z-index: 2;
  border-bottom: 1px solid var(--text-color--neutral-light);
  background-color: var(--primary--sand);
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.mobile-nav-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.container-nav {
  background-color: #d4bba6;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

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

.list {
  margin-bottom: 0;
}

.list-item {
  margin-bottom: .25rem;
}

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

.animation-left-0-1 {
  justify-content: space-between;
  align-items: flex-end;
}

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

.work-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.footer-link {
  color: #c1a774;
  font-size: .95rem;
  text-decoration: none;
}

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

.footer-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-logo {
  width: 100%;
  height: 100%;
}

.minimal-button {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 0;
  text-decoration: none;
  transition: all .2s;
  overflow: hidden;
}

.button-content-wrapper {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.underline {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: .25rem;
  display: flex;
}

.footer-list-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.form-input {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--text-color--neutral);
  color: var(--text-color--neutral-darkest);
  background-color: #fff0;
  min-height: 4rem;
  margin-bottom: 2rem;
  padding: 1rem 0 1rem 0;
}

.form-input:focus {
  border-bottom-color: var(--primary--charcoal);
  color: var(--text-color--neutral-darkest);
}

.form-input:focus-visible {
  border-bottom-color: var(--primary--charcoal);
  color: var(--text-color--neutral-darkest);
}

.form-input[data-wf-focus-visible] {
  border-bottom-color: var(--primary--charcoal);
  color: var(--text-color--neutral-darkest);
}

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

.divider {
  background-color: #cbcbcb;
  width: 100%;
  height: 1px;
}

.divider.dark {
  background-color: #333;
}

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

.contact-button {
  text-align: center;
  padding: 0;
  text-decoration: none;
  overflow: visible;
}

.underline-wrapper {
  background-color: var(--text-color--neutral);
  width: 100%;
  height: 2px;
  margin-top: .2rem;
  overflow: hidden;
}

.contact-underline {
  background-color: var(--text-color--neutral-darker);
  width: 100%;
  height: 2px;
}

.contact-text {
  color: var(--primary--black);
  font-size: 2rem;
}

.back-button-arrow {
  width: 1rem;
  height: 1rem;
}

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

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

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

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

.section.charcoal {
  background-color: var(--primary--charcoal);
  position: relative;
}

.section.charcoal.relative {
  z-index: 1;
}

.section.sand {
  background-color: var(--primary--sand);
}

.section.sand.relative {
  z-index: 1;
  position: relative;
}

.hero-content-wrapper {
  color: #fff;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100svh;
  padding: 8rem 2rem 2rem;
  display: flex;
}

.big-logo-image {
  width: 100%;
  height: 100%;
}

.hero-content {
  flex-flow: column;
  justify-content: space-between;
  height: 55svh;
  display: flex;
}

.hero-logo-animation {
  width: 100%;
}

.hero-bottom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.hero-top {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.big-logo-image-wrapper {
  width: 100%;
}

.label-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--text-color--neutral-darkest);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.label-dot {
  background-color: var(--primary--charcoal);
  border-radius: 100%;
  width: 6px;
  height: 6px;
}

.label-dot.white {
  background-color: var(--text-color--neutral-light);
  color: var(--text-color--neutral-darkest);
}

.extra-large-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--text-color--neutral-darker);
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-left: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
}

.extra-large-text.neutral-light {
  color: var(--text-color--neutral-darkest);
}

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

.view-text-wrapper {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.link-image {
  opacity: 1;
  filter: brightness();
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.work-image-thumbnail {
  border-radius: var(--corners);
  position: relative;
  overflow: hidden;
}

.work-image-thumbnail._4-3 {
  aspect-ratio: 4 / 3;
  border-radius: var(--corners);
  text-transform: none;
  object-fit: fill;
  width: 100%;
  position: relative;
}

.work-item-text-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

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

.see-more-wrapper {
  color: #dfdfdf;
  background-color: #ffffff3d;
  border-radius: 80px;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
  position: static;
  overflow: hidden;
}

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

.see-more-text-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.section-header-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  width: 100%;
  padding-bottom: 24px;
  display: flex;
}

.philosophy-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  min-height: 10rem;
  display: flex;
}

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

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

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

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

.component {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.component-content {
  z-index: 1;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.component-content.max-width {
  width: 50%;
}

.component-heading-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.component-overlay {
  border-radius: var(--corners);
  background-color: #0f0f0f80;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-button-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

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

.line-fill {
  background-color: #666;
  width: 100%;
  height: 100%;
}

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

.button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--text-color--neutral-darkest);
  text-align: center;
  letter-spacing: -.03rem;
  background-color: #9adbff00;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
  bottom: 30px;
  overflow: visible;
}

.button.homepage-learn-more {
  padding-top: 4rem;
}

.button-icon-circle {
  border: 1px solid var(--primary--black);
  border-radius: 50rem;
  padding: .5rem;
}

.button-icon-circle.white {
  border-color: var(--primary--white);
}

.button-icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.arrow-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.arrow-icon.hover {
  position: absolute;
  top: 0;
  left: -100%;
}

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

.seondary-button {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

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

.slide {
  background-color: var(--primary--white);
  width: 51%;
  height: 101%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

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

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

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

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

.heading-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

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

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

.team-member, .member-info {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.testimonial-mask {
  padding-bottom: 4rem;
}

.pagination {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.client-info-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  text-align: left;
  align-items: center;
  display: flex;
}

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

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

.testimonial-icon.light {
  filter: invert();
}

.testimonial-slide {
  margin-right: 5rem;
}

.testimonial-content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonial-component {
  color: var(--text-color--neutral-light);
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.testimonial-arrow-left {
  border: 1px solid #ccc;
  border-radius: 90rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 3.5rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.testimonila-arrow-right {
  border: 1px solid #ccc;
  border-radius: 80rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.testimonial-icon-wrapper {
  position: absolute;
  overflow: hidden;
}

.testimonial-icon-wrapper._2 {
  justify-content: center;
  align-items: center;
  display: flex;
  inset: 0% -1rem 0% auto;
}

.clip {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

.parallax-image._4-3 {
  aspect-ratio: 4 / 3;
  border-radius: var(--corners);
  height: 100%;
  overflow: hidden;
}

._4-column-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.values-content-wrapper {
  border-radius: var(--corners);
  background-color: var(--text-color--neutral-darkest);
  min-height: 35vh;
  padding: 1rem;
}

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

.hero-image-wrapper {
  z-index: -1;
  height: 100svh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-image {
  float: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.collection-list-wrapper {
  width: 100%;
}

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

.collection-list-3-column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.hero-section-wrapper {
  margin-bottom: -100vh;
  position: relative;
}

.spacer {
  height: 100vh;
  position: relative;
}

.hero-section {
  position: sticky;
  top: 0;
}

.page-content-wrapper {
  z-index: 1;
  background-color: #f2e9de;
  position: relative;
}

.footer {
  z-index: 0;
  background-color: #a68a79;
  position: relative;
}

.contact-column {
  width: 50%;
  padding: 4.3em;
  position: relative;
  overflow: hidden;
}

.contact-column.left {
  z-index: 3;
  color: var(--text-color--neutral-light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 4em 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.contact-column.right {
  z-index: 1;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 4em 2em;
  display: flex;
}

.contact-container {
  z-index: 2;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 0;
  display: flex;
  position: relative;
}

.contact-image {
  z-index: -1;
  border-radius: var(--corners);
  filter: brightness(80%);
  object-fit: cover;
  width: 50%;
  height: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.contact-headline-wrapper {
  text-align: center;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.side-panel {
  width: 50%;
  height: 100vh;
  padding: 0;
  position: fixed;
  inset: 0% 0% auto auto;
}

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

.project-heading-wrapper {
  color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100svh;
  padding: 8rem 2rem 2rem;
  display: flex;
}

.servcies-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.service-item-wrapper {
  grid-column-gap: 1.3rem;
  grid-row-gap: 1.3rem;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.work-image-wrapper {
  aspect-ratio: 4 / 3;
  border-radius: var(--corners);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.work-image-wrapper._4-5 {
  aspect-ratio: 4 / 5;
}

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

.explore-collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.collection-item {
  width: 100%;
  height: 100%;
}

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

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

.logo-wrapper {
  width: 9rem;
  height: 9rem;
}

.logo-image {
  object-fit: fill;
  width: 100%;
  height: 100%;
  position: static;
}

.dark-background {
  border-radius: var(--corners);
  background-color: var(--primary--charcoal);
  padding: 1rem 2rem;
}

.block-quote {
  border-left-width: 1px;
  border-left-color: var(--text-color--neutral);
}

.explore-collection-list-wrapper, .collection-list-more-wrapper {
  width: 100%;
}

.project-heading {
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.heading {
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
}

.italic-text {
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.heading-2 {
  margin-right: -40px;
  padding-right: 0;
}

.heading-3 {
  margin-right: 0;
}

.div-block {
  position: absolute;
  inset: 0%;
}

.socail-media-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.div-block-2 {
  aspect-ratio: 4 / 4;
  border-radius: var(--corners);
  object-fit: fill;
  background-color: #ffffff0f;
  width: 9rem;
  height: 9rem;
  position: relative;
  overflow: hidden;
}

.logo-view-wapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.modal {
  z-index: 999;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-background {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-text-fill-color: inherit;
  background-color: #00000026;
  background-clip: border-box;
  width: 100%;
  height: 100%;
}

.modal-container {
  background-color: #000;
  border-radius: 6px;
  width: 100%;
  max-width: 35rem;
  padding: 2rem;
  position: absolute;
}

.text-block {
  color: var(--primary--oat);
  padding-left: 134px;
  position: absolute;
}

.image {
  border-radius: 4px;
}

.close-text {
  color: var(--primary--white);
  font-size: 2.5rem;
  transform: rotate(45deg);
}

.link-block {
  text-transform: none;
  font-size: 1rem;
  position: absolute;
  inset: 0 1rem auto auto;
}

.date-line {
  background-color: #e0e0e0;
  width: 24px;
  height: 1px;
}

.h2-heading {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-detail {
  grid-column-gap: 24px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.paragraph-large {
  letter-spacing: -.015em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
}

.wrap-h-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  display: flex;
}

.wrap-h-x-small.align-c {
  justify-content: flex-start;
  align-items: center;
}

.blog-card {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.blog-badge {
  color: #000;
  letter-spacing: .16em;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  position: absolute;
  inset: 16px 14px auto auto;
  box-shadow: 0 24px 64px #d9d9d97a;
}

.section-large {
  padding: 120px 5%;
  position: relative;
}

.blog-image {
  border-radius: 16px;
  height: 356px;
  position: relative;
  overflow: hidden;
}

.h5-heading {
  color: #000;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.paragraph-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.overline {
  color: var(--primary--white);
  letter-spacing: .16em;
  text-transform: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

.icon-link {
  color: #141414;
  border: 1px solid #e0e0e0;
  border-radius: 99px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.product-list-3-column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.image-cover {
  filter: brightness();
  color: var(--primary--black);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-link {
  grid-column-gap: 16px;
  color: #000;
  letter-spacing: -.02em;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: none;
  position: static;
}

.icon-x-small {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.wrap-v-x-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.title-wrapper-small {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 432px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.product_link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.product-image-thumbnaill._4-3 {
  aspect-ratio: 4 / 3;
  border-radius: var(--corners);
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.product-image {
  opacity: 1;
  filter: brightness();
  text-transform: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

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

.category-list-wrapper {
  width: 100%;
}

.category-image-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.category-image-thumbnail._4-3 {
  aspect-ratio: 4 / 3;
  border-radius: var(--corners);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.text-block-2 {
  font-size: .95rem;
  text-decoration: none;
}

.text-block-3 {
  outline-offset: 0px;
  text-align: left;
  mix-blend-mode: normal;
  outline: 3px #0f0f0f;
  font-size: .95rem;
  text-decoration: none;
}

.category-item-content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

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

.category-image, .product-background-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-block-4 {
  font-size: 1.25rem;
}

.text-block-5 {
  color: var(--text-color--neutral-darker);
  margin-bottom: 10px;
  padding-right: 0;
  font-size: .94rem;
}

.image-2, .images {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-block-6 {
  font-size: 1.25rem;
}

.footer-text {
  color: #c1a774;
}

.parallax-slider {
  -webkit-text-fill-color: inherit;
  background-color: #ddd0;
  background-clip: border-box;
  height: auto;
  padding-top: 140px;
  display: block;
}

.parallax-mask {
  width: 344px;
  height: 100%;
}

.parallax_slider-button, .slide-nav {
  display: none;
}

.ratio_80 {
  border-radius: var(--corners);
  padding-top: 80%;
  position: relative;
  overflow: hidden;
}

.yt_slider {
  -webkit-text-fill-color: inherit;
  background-color: #fff0;
  background-clip: border-box;
  width: 100%;
  height: auto;
}

.yt_mask, .yt_slide {
  height: auto;
}

.div-block-3 {
  width: auto;
  height: auto;
}

.slider_container {
  padding: 6em 2em;
}

.container-2 {
  width: 1560px;
  max-width: 100%;
  padding: 6em 2em;
}

.slider {
  background-color: #fff0;
  width: 100%;
  height: auto;
  top: 50%;
  overflow: hidden;
}

.mask {
  text-align: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.p-slider {
  background-color: #fff0;
  position: absolute;
  inset: auto 0% 0% auto;
}

.p-mask {
  width: 344px;
}

.p-slider-button, .slide-nav-2 {
  display: none;
}

.link-block-2 {
  flex-flow: column;
  display: flex;
}

.link_product {
  padding-top: 166%;
  display: block;
}

.slider-parallax {
  background-color: #fff0;
  height: auto;
  padding-left: 40px;
}

.mask-parallax {
  width: 344px;
  height: auto;
  overflow: visible;
}

.slide-parallax {
  margin-right: 32px;
  overflow: visible;
}

.button-parallax {
  background-color: var(--primary--oat);
  color: var(--text-color--dark-espresso);
  border-radius: 50%;
  width: 78px;
  height: 78px;
  box-shadow: 2px 2px 8px 1px #0003;
}

.button-parallax.left-button {
  width: 78px;
  height: 78px;
}

.slide-nav-3 {
  display: none;
}

.image-cover {
  position: absolute;
  inset: 0% auto auto 0%;
}

.image-cover.parallax_image-cover {
  inset: 0%;
}

.parallax_card-inner {
  color: var(--primary--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 2px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.button-2 {
  color: var(--primary--white);
  background-color: #ffffff3d;
  border: 2px solid #ffffff14;
  border-radius: 80px;
}

.parallax_image-wrapper {
  position: absolute;
  inset: 0% -8%;
}

.div-block-4 {
  padding-bottom: 0;
}

.section-2 {
  display: none;
}

.div-block-5 {
  padding-top: 0;
}

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

.text-block-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bold-text-2 {
  font-size: 1.5rem;
}

.italic-text-2, .italic-text-3 {
  color: var(--text-color--neutral-darker);
}

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.5rem;
  }

  ._12-column-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex: 0 auto;
    order: 0;
    grid-template-rows: auto;
    grid-template-columns: minmax(16px, 1fr) 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    place-items: start stretch;
  }

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

  .section-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .small-logo {
    height: auto;
  }

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

  .extra-large-text {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .view-text-overflow-hide {
    display: block;
    overflow: hidden;
  }

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

  .cta-content {
    display: flex;
  }

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

  .testimonial-mask {
    padding-bottom: 4rem;
  }

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

  .parallax-image {
    height: 80svh;
  }

  .contact-column.right {
    padding-left: 2em;
    padding-right: 2em;
  }

  .logos-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: 165px 165px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 165px;
  }

  .logo-wrapper {
    width: 8rem;
    height: 8rem;
  }

  .modal {
    display: none;
  }

  .product-list-3-column {
    grid-template-rows: 215px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .75rem;
    line-height: 1;
  }

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

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

  .container {
    padding: 2rem 1rem;
  }

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

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

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

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

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

  ._404-lottie {
    height: 200px;
  }

  .nav-link-desktop, .nav-desktop-link-wrapper {
    display: none;
  }

  .navigation {
    z-index: 888;
    position: fixed;
    inset: 0% 0% auto;
  }

  .section-content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .section-content._2-rem {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .progress-bar {
    z-index: 1;
    height: 3px;
  }

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

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

  .nav-bar {
    z-index: 5;
  }

  .mobile-menu-text {
    line-height: 100%;
  }

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

  .mobile-mail-link {
    text-decoration: none;
  }

  .mobile-contact-info-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    display: flex;
  }

  .mobile-nav-content {
    z-index: 2;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--primary--oat);
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    height: 100dvh;
    padding: .75rem 1rem;
    display: none;
    position: absolute;
    inset: 0%;
  }

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

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

  .mobile-contact-info-item {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    display: flex;
  }

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

  .work-link {
    height: 100%;
  }

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

  .minimal-button {
    font-size: 3rem;
  }

  .footer-list-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

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

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

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

  .extra-large-text {
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
  }

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

  .cta-content {
    display: flex;
  }

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

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

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

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

  .testimonial-mask {
    padding-bottom: 4rem;
  }

  .pagination {
    position: absolute;
    inset: auto auto 0% 0%;
  }

  .client-info-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-component {
    padding-top: 0;
    padding-bottom: 0;
  }

  ._4-column-grid, .collection-list-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .collection-list-3-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .mobile-link {
    font-size: 2.5rem;
    line-height: 1.3;
    text-decoration: none;
  }

  .contact-column {
    padding: 5vw;
  }

  .contact-column.left {
    width: 100%;
    height: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
  }

  .contact-column.right {
    background-color: var(--primary--sand);
    width: 100%;
    min-height: auto;
    padding: 5em 1em;
  }

  .contact-container {
    display: block;
  }

  .contact-image {
    width: 100%;
  }

  .contact-headline-wrapper {
    padding-top: 7em;
    padding-bottom: 7em;
  }

  .side-panel {
    display: none;
  }

  .project-heading-wrapper {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

  .logos-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-wrapper {
    width: 8rem;
  }

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

  .modal {
    display: none;
  }

  .modal-container {
    width: 80%;
  }

  .text-block {
    padding-left: 83px;
  }

  .link-block {
    right: .5rem;
  }

  .h2-heading {
    font-size: 44px;
  }

  .section-large {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-list-3-column {
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  ._12-colum {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
  }

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

  .text-block-4, .text-block-5 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  h5 {
    font-weight: 400;
  }

  .medium-text {
    justify-content: center;
    align-items: center;
    margin-right: -8px;
    font-size: 1rem;
    display: flex;
  }

  .medium-text.neutral-light {
    margin-right: 0;
  }

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

  ._12-column-grid {
    justify-items: stretch;
  }

  .container {
    padding: 1rem 1rem 0;
  }

  .small-text {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .small-text.image-text {
    color: var(--text-color--neutral);
    font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
    font-size: .94rem;
    font-weight: 400;
  }

  .small-text.see-more-text {
    font-size: .7rem;
  }

  .small-text.about-us-text {
    color: var(--text-color--neutral-light);
  }

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

  ._404-lottie {
    height: 200px;
  }

  .nav-desktop-link-wrapper {
    display: none;
  }

  .navigation {
    z-index: 2;
  }

  .section-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .section-content._2-rem {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .progress-bar {
    z-index: 1;
    height: 3px;
  }

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

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

  .small-logo {
    width: 5rem;
  }

  .mobile-menu-text {
    font-size: 1rem;
    line-height: 100%;
  }

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

  .mobile-mail-link {
    text-decoration: none;
  }

  .mobile-contact-info-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-top: 1px solid #ffffff1a;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1rem;
    display: grid;
  }

  .mobile-nav-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    padding: .75rem .75rem 2rem;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .nav-link-mobile-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

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

  .mobile-contact-info-item {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    display: flex;
  }

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

  .item-block {
    justify-content: center;
    align-items: center;
  }

  .item-block.seamless-comfort, .item-block.sport-collection, .item-block.luxury-collection, .item-block.cotton-collection {
    justify-content: center;
    align-items: flex-start;
  }

  .animation-left-0-2 {
    position: relative;
    inset: 0% auto auto 0%;
  }

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

  .contact-text {
    padding-top: 0;
    font-size: 1rem;
  }

  .hero-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
  }

  .hero-logo-animation {
    width: 100%;
  }

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

  .hero-top {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-left: 0;
  }

  .label-wrapper {
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
  }

  .label-dot.white {
    background-color: var(--text-color--neutral-light);
    color: var(--text-color--neutral-light);
  }

  .extra-large-text {
    color: var(--text-color--neutral-darker);
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    padding-bottom: 0;
    padding-left: 20px;
    font-size: 1rem;
    display: flex;
  }

  .cta-content {
    align-items: center;
    display: block;
    position: static;
    overflow: visible;
  }

  .see-more-wrapper {
    flex-flow: row;
    padding: .25rem .5rem;
    display: flex;
  }

  .component-content {
    overflow: hidden;
  }

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

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

  .button {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
    font-size: 1rem;
    display: flex;
  }

  .button.homepage-learn-more {
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }

  .button.homepage-view-all-text {
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
  }

  .button-icon-circle {
    padding: .5rem;
  }

  .arrow-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  .testimonial-mask {
    padding-bottom: 2rem;
  }

  .client-info-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .testimonial-arrow-left {
    position: relative;
  }

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

  .collection-list-grid {
    width: 100%;
  }

  .mobile-link {
    color: var(--primary--charcoal);
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
  }

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

  .project-heading-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .service-item-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    padding-bottom: 60px;
  }

  .logos-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }

  .logo-wrapper {
    height: 8rem;
  }

  .heading {
    margin-top: -1.5rem;
    margin-bottom: 1rem;
  }

  .italic-text {
    justify-content: center;
    align-items: center;
    font-size: .9rem;
    display: flex;
  }

  .div-block-2 {
    width: 7rem;
    height: 7rem;
  }

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

  .text-block {
    padding-left: 0;
    display: block;
  }

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

  .category-image-link {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .product-background-image {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: cover;
    position: static;
  }

  .text-block-4 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .text-block-5 {
    color: var(--text-color--neutral-darker);
    justify-content: center;
    align-items: center;
    font-size: .7rem;
    display: flex;
  }

  .slider-parallax, .mask-parallax {
    padding-left: 0;
  }

  .slide-parallax {
    width: 100%;
    max-width: 80%;
    height: 100%;
    position: relative;
  }

  .button-parallax, .button-parallax.left-button {
    width: 48px;
    height: 48px;
  }

  .bold-text {
    font-size: 1.8rem;
  }

  .section-4 {
    padding-top: 40px;
  }

  .bold-text-2 {
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    display: flex;
  }

  .italic-text-2, .italic-text-3 {
    color: var(--text-color--neutral-darker);
  }
}

#w-node-b04e7e87-0098-6d7d-f614-aac806cb2058-fb6342e2, #w-node-b04e7e87-0098-6d7d-f614-aac806cb205e-fb6342e2, #w-node-b04e7e87-0098-6d7d-f614-aac806cb2061-fb6342e2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-b04e7e87-0098-6d7d-f614-aac806cb204f-fb6342e2 {
  grid-area: 1 / 5 / 2 / 9;
}

#w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d86-fb6342e2 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8b-fb6342e2 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8f-fb6342e2 {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_5f4c8fbf-d02a-4d07-8a58-4de40fbd3a3b-fb6342e2, #w-node-_0d9ab1c2-d3eb-1bc4-854d-185cd30323c8-fb6342e2 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_5117efc0-df28-ab49-ed94-1577a5bf169d-fb6342e2 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_5117efc0-df28-ab49-ed94-1577a5bf16a2-fb6342e2, #w-node-_18de978b-b39c-6985-5092-4dafddec381c-fb6342e2 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_021c70a1-668f-9939-7c52-23114fe25d30-fb6342e2, #w-node-a32855ad-b2d7-0289-3686-f91cf7ea837d-fb6342e2 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a6f706e4-75aa-33e2-2704-bcb1b16e819f-fb6342e2, #w-node-c2a89d57-7b86-093a-a611-e1d3e7b91a52-fb6342e2 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_458ef84a-2686-60ed-a713-121a79ea8b97-fb6342e2, #w-node-_49177976-0c33-b9ed-1037-86f572ad88dc-fb6342e2 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_912d665f-67ea-a03a-8bcf-765184a9437c-fb6342e2 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_912d665f-67ea-a03a-8bcf-765184a94381-fb6342e2 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-f0d02bad-5347-484e-628f-af37cfbd5b59-fb6342e2 {
  grid-area: 1 / 4 / 3 / 13;
}

#w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f1e-d7eb9f1b {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6d-d7eb9f1b {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6e-d7eb9f1b {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_7198584e-79fc-adf0-315e-c4b844e264af-fb634328, #w-node-_8cef19ae-5629-5f75-3cdb-b573f9e9a2a9-fb634328, #w-node-_7198584e-79fc-adf0-315e-c4b844e264b5-fb634328, #w-node-_9cc1f19b-21c7-7001-803b-86e8dd6c5337-fb634328, #w-node-_6fe6a6a3-32ce-d76a-d79b-8087f829cab8-fb634328, #w-node-_3a76c86c-52db-4181-77a2-6ec61fbb189f-fb634328, #w-node-_7198584e-79fc-adf0-315e-c4b844e264d0-fb634328 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5e6673b8-c43c-4159-e336-0bd8ee1bddda-fb63434b {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd78-fb634361, #w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd7d-fb634361 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_21bdec92-ff71-ad61-8d51-a8e33b1417a1-fb634361 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_21bdec92-ff71-ad61-8d51-a8e33b1417a6-fb634361 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-f65109d5-a223-2467-2578-4cf4ec190251-fb634361 {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_3e04645d-6713-0d98-faba-cae00539660d-fb634361 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-ac3d9a8b-f051-09dc-0d26-8d33a30e4c6a-fb634361 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_792b308c-70de-6244-f527-51901458f12c-fb634361 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-bcc4e9ec-717e-6640-5732-4f63b2a1bb65-fb634361 {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_2bcf3290-0ac2-4822-c273-ba47a9d292ea-fb634361 {
  grid-area: 6 / 1 / 7 / 13;
}

#w-node-f3890b2f-5af0-ba15-cfc1-728bb9102b87-fb634361 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-f3890b2f-5af0-ba15-cfc1-728bb9102b8c-fb634361 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-d6632384-e4e4-85e2-2544-37be270a8c6b-fb634361 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac421-fb634362 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac422-fb634362 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac426-fb634362 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-f9f709bd-e350-1ade-d103-e7bab3bf00fd-fb634362 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-af199345-9244-d620-b54f-bcb6652081f4-fb634363 {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-da7e1b34-d557-2cbc-80b0-e9148634de8c-fb634363 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-da7e1b34-d557-2cbc-80b0-e9148634de91-fb634363 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a57582-fb634363 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a57587-fb634363 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a5758c-fb634363 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a57595-fb634363 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a5759e-fb634363 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a575a7-fb634363 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a575b0-fb634363 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_1929cb0a-5e76-641c-c2b8-542152a575b9-fb634363 {
  grid-area: 2 / 10 / 3 / 13;
}

#w-node-a0231aa3-87d7-ca67-3f6b-28c70cde8c6b-fb634363 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a0231aa3-87d7-ca67-3f6b-28c70cde8c70-fb634363, #w-node-bd006055-4818-3f7d-060e-4a58303b9e69-fb634363 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_67fb6fca-fb16-250c-818c-7b60ae4111a5-fb634363 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_67fb6fca-fb16-250c-818c-7b60ae4111aa-fb634363 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f61193d4-f6ff1c81, #w-node-_670743ab-f975-c7ee-63ab-8365f61193da-f6ff1c81 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_178cca7a-b792-7bd1-37e3-dd3df28972c2-f6ff1c81 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_178cca7a-b792-7bd1-37e3-dd3df28972c7-f6ff1c81 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_178cca7a-b792-7bd1-37e3-dd3df28972cb-f6ff1c81 {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f6119407-f6ff1c81 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f6119408-f6ff1c81 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f611940b-f6ff1c81 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f6119415-f6ff1c81 {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_670743ab-f975-c7ee-63ab-8365f6119418-f6ff1c81 {
  grid-area: 6 / 1 / 7 / 13;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e058-230a5e28, #w-node-_9ee228e6-2448-5919-75a1-388d53a6e05e-230a5e28 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9eb-230a5e28 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f0-230a5e28 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f4-230a5e28 {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e08b-230a5e28 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e08c-230a5e28 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e08f-230a5e28 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e099-230a5e28 {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_9ee228e6-2448-5919-75a1-388d53a6e09c-230a5e28 {
  grid-area: 6 / 1 / 7 / 13;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9e5-fa64f25f, #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9eb-fa64f25f {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c896-fa64f25f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89b-fa64f25f {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89f-fa64f25f {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba18-fa64f25f {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba19-fa64f25f {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba1c-fa64f25f {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba26-fa64f25f {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba29-fa64f25f {
  grid-area: 6 / 1 / 7 / 13;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e2d6-0256f607, #w-node-_9942a780-192a-0345-6d13-cec3f836e2dc-0256f607 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_3bc507e0-3fc2-b067-703e-3e314e6e6918-0256f607 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_3bc507e0-3fc2-b067-703e-3e314e6e691d-0256f607 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_3bc507e0-3fc2-b067-703e-3e314e6e6921-0256f607 {
  grid-area: 2 / 4 / 3 / 9;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e309-0256f607 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e30a-0256f607 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e30d-0256f607 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e317-0256f607 {
  grid-area: 5 / 1 / 6 / 13;
}

#w-node-_9942a780-192a-0345-6d13-cec3f836e31a-0256f607 {
  grid-area: 6 / 1 / 7 / 13;
}

#w-node-defc82d2-7c23-edb6-3197-ce01d97a6c40-2cc0dcbe {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-defc82d2-7c23-edb6-3197-ce01d97a6c45-2cc0dcbe {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-defc82d2-7c23-edb6-3197-ce01d97a6c49-2cc0dcbe {
  grid-area: 1 / 4 / 3 / 13;
}

#w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5d-40261664 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5e-40261664 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-d31f4b2b-231c-6aa5-a9be-eee877482d62-40261664, #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bc9-4f7d0b1d {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bce-4f7d0b1d {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bd2-4f7d0b1d {
  grid-area: 1 / 1 / 2 / 13;
}

@media screen and (max-width: 991px) {
  #w-node-b04e7e87-0098-6d7d-f614-aac806cb204f-fb6342e2 {
    grid-column: 3 / 7;
  }

  #w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8b-fb6342e2 {
    grid-column: 3 / 9;
  }

  #w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8f-fb6342e2 {
    grid-column-start: 3;
  }

  #w-node-_5117efc0-df28-ab49-ed94-1577a5bf16a2-fb6342e2, #w-node-_18de978b-b39c-6985-5092-4dafddec381c-fb6342e2, #w-node-_912d665f-67ea-a03a-8bcf-765184a94381-fb6342e2, #w-node-f0d02bad-5347-484e-628f-af37cfbd5b59-fb6342e2 {
    grid-column: 3 / 9;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6d-d7eb9f1b {
    grid-column-end: 9;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6e-d7eb9f1b {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-_7198584e-79fc-adf0-315e-c4b844e264af-fb634328, #w-node-_8cef19ae-5629-5f75-3cdb-b573f9e9a2a9-fb634328, #w-node-_7198584e-79fc-adf0-315e-c4b844e264b5-fb634328, #w-node-_9cc1f19b-21c7-7001-803b-86e8dd6c5337-fb634328, #w-node-_6fe6a6a3-32ce-d76a-d79b-8087f829cab8-fb634328, #w-node-_3a76c86c-52db-4181-77a2-6ec61fbb189f-fb634328, #w-node-_7198584e-79fc-adf0-315e-c4b844e264d0-fb634328 {
    grid-column: span 4 / span 4;
  }

  #w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd78-fb634361, #w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd7d-fb634361 {
    grid-column-end: 9;
  }

  #w-node-_21bdec92-ff71-ad61-8d51-a8e33b1417a6-fb634361 {
    grid-column: 3 / 9;
  }

  #w-node-f65109d5-a223-2467-2578-4cf4ec190251-fb634361 {
    grid-column-start: 3;
  }

  #w-node-_3e04645d-6713-0d98-faba-cae00539660d-fb634361 {
    grid-column: 2 / 9;
  }

  #w-node-f3890b2f-5af0-ba15-cfc1-728bb9102b8c-fb634361 {
    grid-column: 3 / 9;
  }

  #w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac421-fb634362 {
    grid-column-end: 9;
  }

  #w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac426-fb634362, #w-node-da7e1b34-d557-2cbc-80b0-e9148634de91-fb634363, #w-node-_1929cb0a-5e76-641c-c2b8-542152a57587-fb634363 {
    grid-column: 3 / 9;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a5758c-fb634363 {
    grid-column: 3 / 6;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a57595-fb634363 {
    grid-column: 6 / 9;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a5759e-fb634363 {
    grid-area: 2 / 3 / 3 / 6;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575a7-fb634363 {
    grid-column: 6 / 9;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575b0-fb634363 {
    grid-area: 3 / 3 / 4 / 6;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575b9-fb634363 {
    grid-area: 3 / 6 / 4 / 9;
  }

  #w-node-a0231aa3-87d7-ca67-3f6b-28c70cde8c70-fb634363, #w-node-bd006055-4818-3f7d-060e-4a58303b9e69-fb634363, #w-node-_67fb6fca-fb16-250c-818c-7b60ae4111aa-fb634363 {
    grid-column: 3 / 9;
  }

  #w-node-_670743ab-f975-c7ee-63ab-8365f61193d4-f6ff1c81, #w-node-_670743ab-f975-c7ee-63ab-8365f61193da-f6ff1c81 {
    grid-column-end: 9;
  }

  #w-node-_178cca7a-b792-7bd1-37e3-dd3df28972c7-f6ff1c81 {
    grid-column: 3 / 9;
  }

  #w-node-_178cca7a-b792-7bd1-37e3-dd3df28972cb-f6ff1c81 {
    grid-column-start: 3;
  }

  #w-node-_670743ab-f975-c7ee-63ab-8365f6119407-f6ff1c81 {
    grid-column: 2 / 9;
  }

  #w-node-_9ee228e6-2448-5919-75a1-388d53a6e058-230a5e28, #w-node-_9ee228e6-2448-5919-75a1-388d53a6e05e-230a5e28 {
    grid-column-end: 9;
  }

  #w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f0-230a5e28 {
    grid-column: 3 / 9;
  }

  #w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f4-230a5e28 {
    grid-column-start: 3;
  }

  #w-node-_9ee228e6-2448-5919-75a1-388d53a6e08b-230a5e28 {
    grid-column: 2 / 9;
  }

  #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9e5-fa64f25f, #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9eb-fa64f25f {
    grid-column-end: 9;
  }

  #w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89b-fa64f25f {
    grid-column: 3 / 9;
  }

  #w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89f-fa64f25f {
    grid-column-start: 3;
  }

  #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba18-fa64f25f {
    grid-column: 2 / 9;
  }

  #w-node-_9942a780-192a-0345-6d13-cec3f836e2d6-0256f607, #w-node-_9942a780-192a-0345-6d13-cec3f836e2dc-0256f607 {
    grid-column-end: 9;
  }

  #w-node-_3bc507e0-3fc2-b067-703e-3e314e6e691d-0256f607 {
    grid-column: 3 / 9;
  }

  #w-node-_3bc507e0-3fc2-b067-703e-3e314e6e6921-0256f607 {
    grid-column-start: 3;
  }

  #w-node-_9942a780-192a-0345-6d13-cec3f836e309-0256f607 {
    grid-column: 2 / 9;
  }

  #w-node-defc82d2-7c23-edb6-3197-ce01d97a6c45-2cc0dcbe, #w-node-defc82d2-7c23-edb6-3197-ce01d97a6c49-2cc0dcbe {
    grid-column: 3 / 9;
  }

  #w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5d-40261664 {
    grid-column-end: 9;
  }

  #w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5e-40261664 {
    grid-column: 3 / 9;
  }

  #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bc9-4f7d0b1d {
    grid-column-end: 9;
  }

  #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bce-4f7d0b1d {
    grid-column: 3 / 9;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b04e7e87-0098-6d7d-f614-aac806cb204f-fb6342e2 {
    grid-column: 1 / 5;
  }

  #w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d86-fb6342e2 {
    grid-column-end: 5;
  }

  #w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8b-fb6342e2 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_8cbb9df1-91af-43b8-0ab5-04f959f43d8f-fb6342e2 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_5117efc0-df28-ab49-ed94-1577a5bf169d-fb6342e2 {
    grid-column-end: 5;
  }

  #w-node-_5117efc0-df28-ab49-ed94-1577a5bf16a2-fb6342e2 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_18de978b-b39c-6985-5092-4dafddec381c-fb6342e2 {
    grid-column: 1 / 5;
  }

  #w-node-_021c70a1-668f-9939-7c52-23114fe25d30-fb6342e2, #w-node-a32855ad-b2d7-0289-3686-f91cf7ea837d-fb6342e2 {
    grid-column-end: 5;
  }

  #w-node-a6f706e4-75aa-33e2-2704-bcb1b16e819f-fb6342e2 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c2a89d57-7b86-093a-a611-e1d3e7b91a52-fb6342e2 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-_458ef84a-2686-60ed-a713-121a79ea8b97-fb6342e2 {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-_49177976-0c33-b9ed-1037-86f572ad88dc-fb6342e2 {
    grid-row: 3 / 4;
  }

  #w-node-_912d665f-67ea-a03a-8bcf-765184a9437c-fb6342e2 {
    grid-column-end: 5;
  }

  #w-node-_912d665f-67ea-a03a-8bcf-765184a94381-fb6342e2 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f0d02bad-5347-484e-628f-af37cfbd5b59-fb6342e2 {
    grid-column: 1 / 5;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f1e-d7eb9f1b {
    grid-column-end: 5;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6d-d7eb9f1b {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6e-d7eb9f1b {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd78-fb634361, #w-node-_1dfe8232-c799-7091-6da5-3fbde0dadd7d-fb634361, #w-node-_21bdec92-ff71-ad61-8d51-a8e33b1417a1-fb634361 {
    grid-column-end: 5;
  }

  #w-node-_21bdec92-ff71-ad61-8d51-a8e33b1417a6-fb634361 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f65109d5-a223-2467-2578-4cf4ec190251-fb634361 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_3e04645d-6713-0d98-faba-cae00539660d-fb634361 {
    grid-column: 1 / 5;
  }

  #w-node-f3890b2f-5af0-ba15-cfc1-728bb9102b87-fb634361 {
    grid-column-end: 5;
  }

  #w-node-f3890b2f-5af0-ba15-cfc1-728bb9102b8c-fb634361 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac421-fb634362, #w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac422-fb634362 {
    grid-column-end: 5;
  }

  #w-node-fdab2ec8-73a6-df3d-1820-b4fbbabac426-fb634362 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f9f709bd-e350-1ade-d103-e7bab3bf00fd-fb634362, #w-node-da7e1b34-d557-2cbc-80b0-e9148634de8c-fb634363 {
    grid-column-end: 5;
  }

  #w-node-da7e1b34-d557-2cbc-80b0-e9148634de91-fb634363 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a57582-fb634363 {
    grid-column-end: 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a57587-fb634363 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a5758c-fb634363 {
    grid-column: 1 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a57595-fb634363 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a5759e-fb634363 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575a7-fb634363 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575b0-fb634363 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a575b9-fb634363 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-a0231aa3-87d7-ca67-3f6b-28c70cde8c6b-fb634363 {
    grid-column-end: 5;
  }

  #w-node-a0231aa3-87d7-ca67-3f6b-28c70cde8c70-fb634363 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bd006055-4818-3f7d-060e-4a58303b9e69-fb634363 {
    grid-column: 1 / 5;
  }

  #w-node-_67fb6fca-fb16-250c-818c-7b60ae4111a5-fb634363 {
    grid-column-end: 5;
  }

  #w-node-_67fb6fca-fb16-250c-818c-7b60ae4111aa-fb634363 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_80fe5ffe-5f70-98b9-2c91-185d24fe46cc-fb634363, #w-node-_7a2691a0-aec7-10aa-0707-d9125f0f9be0-fb634363, #w-node-_74181e71-0453-d487-631c-837651654a86-fb634363, #w-node-_76735641-b323-08fb-37d5-96a8a068b7f8-fb634363 {
    order: -9999;
  }

  #w-node-_670743ab-f975-c7ee-63ab-8365f61193d4-f6ff1c81, #w-node-_670743ab-f975-c7ee-63ab-8365f61193da-f6ff1c81, #w-node-_178cca7a-b792-7bd1-37e3-dd3df28972c2-f6ff1c81 {
    grid-column-end: 5;
  }

  #w-node-_178cca7a-b792-7bd1-37e3-dd3df28972c7-f6ff1c81 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_178cca7a-b792-7bd1-37e3-dd3df28972cb-f6ff1c81 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_670743ab-f975-c7ee-63ab-8365f6119407-f6ff1c81 {
    grid-column: 1 / 5;
  }

  #w-node-_9ee228e6-2448-5919-75a1-388d53a6e058-230a5e28, #w-node-_9ee228e6-2448-5919-75a1-388d53a6e05e-230a5e28, #w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9eb-230a5e28 {
    grid-column-end: 5;
  }

  #w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f0-230a5e28 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_679d1e18-49d3-9d3e-9bdf-1549bb3ba9f4-230a5e28 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9ee228e6-2448-5919-75a1-388d53a6e08b-230a5e28 {
    grid-column: 1 / 5;
  }

  #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9e5-fa64f25f, #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665b9eb-fa64f25f, #w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c896-fa64f25f {
    grid-column-end: 5;
  }

  #w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89b-fa64f25f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_7269d45a-71fc-39d0-c275-fe13d2a5c89f-fa64f25f {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9ba65ab5-1fda-124d-6935-bb5e0665ba18-fa64f25f {
    grid-column: 1 / 5;
  }

  #w-node-_9942a780-192a-0345-6d13-cec3f836e2d6-0256f607, #w-node-_9942a780-192a-0345-6d13-cec3f836e2dc-0256f607, #w-node-_3bc507e0-3fc2-b067-703e-3e314e6e6918-0256f607 {
    grid-column-end: 5;
  }

  #w-node-_3bc507e0-3fc2-b067-703e-3e314e6e691d-0256f607 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_3bc507e0-3fc2-b067-703e-3e314e6e6921-0256f607 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9942a780-192a-0345-6d13-cec3f836e309-0256f607 {
    grid-column: 1 / 5;
  }

  #w-node-defc82d2-7c23-edb6-3197-ce01d97a6c40-2cc0dcbe {
    grid-column-end: 5;
  }

  #w-node-defc82d2-7c23-edb6-3197-ce01d97a6c45-2cc0dcbe {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-defc82d2-7c23-edb6-3197-ce01d97a6c49-2cc0dcbe {
    grid-column: 1 / 5;
  }

  #w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5d-40261664 {
    grid-column-end: 5;
  }

  #w-node-d31f4b2b-231c-6aa5-a9be-eee877482d5e-40261664 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d31f4b2b-231c-6aa5-a9be-eee877482d62-40261664, #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bc9-4f7d0b1d {
    grid-column-end: 5;
  }

  #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bce-4f7d0b1d {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_6ed6b9e8-5670-c702-203c-46cbfc4a5bd2-4f7d0b1d {
    grid-column-end: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b04e7e87-0098-6d7d-f614-aac806cb204f-fb6342e2 {
    grid-column-end: 5;
  }

  #w-node-_80fb9def-578b-bc91-d358-37b1d7eb9f6e-d7eb9f1b {
    grid-column-end: 3;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a5758c-fb634363 {
    grid-column-end: 5;
  }

  #w-node-_1929cb0a-5e76-641c-c2b8-542152a57595-fb634363 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }
}


