@font-face {
  font-family: Figtree;
  src: url("/assets/fonts/figtree-regular.woff2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Figtree;
  src: url("/assets/fonts/figtree-medium.woff2") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Figtree;
  src: url("/assets/fonts/figtree-semibold.woff2") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Figtree;
  src: url("/assets/fonts/figtree-bold.woff2") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-color: #c2aa7a;
  --alt-text-color: #555c62;
  --border-color: gainsboro;
  --placeholder-color: #757575;
  --alt-text-light-color: #a7a7a7;
  --main-color-light: #f2d499;
  --alt-bg-color: #f0f0f0;
}

body {
  color: #000;
  font-family: Figtree, sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
  font-weight: 400;
}

a {
  color: #000;
  letter-spacing: .75px;
  padding: 0;
  line-height: 1.3;
  text-decoration: none;
  overflow: hidden;
}

a:focus-visible,
a[data-wf-focus-visible] {
  outline-color: var(--main-color);
  outline-offset: 1.5px;
  border-radius: .05rem;
  outline-width: 2px;
  outline-style: solid;
}

blockquote {
  grid-row-gap: 1rem;
  border-left: 2px solid #000;
  flex-direction: column;
  margin-bottom: 0;
  padding: 0 0 .25rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
}

.home_hero-section {
  z-index: 0;
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: 8.5rem;
  display: flex;
  position: relative;
}

.header {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  height: 8.5rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.header-logo {
  position: relative;
  overflow: visible;
}

.header-nav {
  grid-column-gap: 2rem;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.header-right {
  justify-content: flex-end;
  width: 8.5rem;
  display: flex;
}

.button {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #000;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 20px -10px #00000040;
}

.button:focus-visible,
.button[data-wf-focus-visible] {
  outline-color: var(--main-color);
  outline-offset: 1.5px;
  border-radius: .05rem;
  outline-width: 2px;
  outline-style: solid;
}

.link {
  color: #fff;
  letter-spacing: .75px;
  font-weight: 500;
  position: relative;
  overflow: visible;
}

.link.w--current {
  line-height: 1.29;
}

.link.light-text {
  color: var(--alt-text-color);
  line-height: 1.3;
  transition: color .5s cubic-bezier(.19, 1, .22, 1);
  overflow: hidden;
}

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

.link.mobile {
  display: none;
}

.link.underline-trail.invert {
  color: #000;
}

.link.underline-trail.invert.legend {
  font-size: 1.375rem;
  line-height: 1.1;
}

.container {
  max-width: 100%;
  height: 100%;
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}

.footer {
  grid-column-gap: 0px;
  grid-row-gap: 4rem;
  border-top: 1px solid var(--border-color);
  color: var(--alt-text-color);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 6.5rem 5.5rem 4.5rem;
  display: flex;
}

.footer-nav {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  align-items: flex-start;
  display: flex;
}

.footer-bottom {
  grid-column-gap: 2rem;
  justify-content: space-between;
  font-weight: 500;
  display: flex;
}

.credit {
  color: var(--alt-text-color);
  transition: color .5s cubic-bezier(.19, 1, .22, 1);
}

.credit:hover {
  color: #000;
}

.home_intro-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.hero-text {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.hero-title-line {
  white-space: nowrap;
  font-weight: 700;
}

.hero-tagline {
  margin-top: 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
}

.hero-bg {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
}

.overlay.home {
  background-color: #00000073
}

.overlay.about {
  background-color: #0000008c
}

.overlay.services {
  background-color: #0009
}

.intro-inner {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  display: grid;
}

.contact_hero-section {
  height: 100vh;
  padding-top: 8.5rem;
}

.text-field {
  border: 0 solid #000;
  border-bottom-width: 1px;
  height: 3.75rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.25rem;
}

.text-field:focus {
  border-bottom-color: #000;
}

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

.success-message {
  color: #000;
  text-align: center;
  background-color: #0000;
  width: 100%;
  padding: 0;
  font-size: 1.25rem;
}

.error-message {
  color: #000;
  height: 3.75rem;
  margin-top: 0;
  padding: 0;
  font-size: 1.25rem;
  position: absolute;
  inset: auto 0% 0%;
}

.error-message-text {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.home_faq-section {
  padding-bottom: 7.5rem;
}

.faq-list {
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.empty-state {
  background-color: #0000;
  padding: 0 0 0 .75rem;
}

.empty-state.hidden {
  display: none;
}

.faq-question-wrapper {
  font-size: 1.25rem;
  display: flex;
}

.faq-answer {
  color: var(--alt-text-color);
}

.faq-question,
.faq-period,
.faq-order {
  font-weight: 500;
}

.title-big {
  margin-bottom: 4rem;
  margin-left: -7px;
  font-size: 3rem;
}

.home_slider-section {
  padding-bottom: 7.5rem;
  overflow: hidden;
}

.slider-progress {
  background-color: var(--border-color);
  height: 1px;
  margin-top: 4rem;
  margin-left: 5.5rem;
  margin-right: 5.5rem;
  position: relative;
  overflow: visible;
}

.splide__slide {
  flex: none;
  align-items: flex-start;
}

.splide__track {
  cursor: grab;
}

.splide {
  position: relative;
}

.splide.slider {
  overflow: visible;
}

.slider-progress-bar {
  background-color: #000;
  height: 3px;
  transition: width .6s cubic-bezier(.19, 1, .22, 1);
  position: absolute;
  inset: -1px auto auto 0%;
}

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

.slide-image-wrapper {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}

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

.title-medium {
  font-size: 2.5rem;
  font-weight: 600;
}

.title-medium.home {
  white-space: nowrap;
}

.intro-text {
  grid-column-gap: 5rem;
  justify-content: space-between;
  display: flex;
}

.light-text {
  color: var(--alt-text-color);
  line-height: 1.7;
}

.light-text.gallery {
  width: 33.33%;
}

.content-wrapper {
  z-index: 1;
  background-color: #fff;
  width: 100%;
  position: relative;
}

.contact-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #000;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-end;
  width: 100%;
  font-weight: 500;
  display: grid;
}

.text-area {
  border: 0 solid #000;
  border-bottom-width: 1px;
  min-width: 100%;
  max-width: 100%;
  min-height: 10rem;
  max-height: 10rem;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.25rem;
}

.text-area:focus {
  border-bottom-color: #000;
}

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

.contact_form-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.options-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-top: 7.5rem;
  margin-bottom: 4rem;
  display: flex;
}

.title-small {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

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

.link-big {
  color: #000;
  font-size: 1.75rem;
  font-weight: 500;
  position: relative;
}

.underline-invert {
  background-color: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.cursor-area {
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.underline-invert-before {
  background-color: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  inset: auto 0% 0% -125%;
}

.about_hero-section {
  z-index: 0;
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: 8.5rem;
  display: flex;
  position: relative;
}

.hero-legend {
  grid-column-gap: 5rem;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  height: 11rem;
  display: flex;
}

.hero-legend.left-align {
  margin-right: auto;
}

.hero-legend.right-align {
  margin-left: auto;
}

.legend-link {
  grid-row-gap: .15rem;
  color: var(--alt-text-light-color);
  letter-spacing: 0;
  flex-direction: column;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
}

.legend-link:hover {
  color: var(--alt-text-color);
}

.about_info-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.quote-name {
  font-size: 1.125rem;
  font-weight: 400;
}

.gallery_tab-section {
  padding-top: 5.5rem;
  padding-bottom: 7.5rem;
}

.residential-list-wrapper {
  display: none;
}

.nested-image-gallery {
  margin-top: 1rem;
}

.lightbox-image-gallery-wrapper {
  margin-left: -.375rem;
  margin-right: -.375rem;
}

.image-gallery-list {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.image-gallery-list.continued {
  margin-top: -15rem;
}

.image-gallery-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 0;
  padding-bottom: 15rem;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.gallery-image {
  outline-offset: -.375rem;
  cursor: none;
  object-fit: cover;
  outline: .375rem solid #fff;
  width: 100%;
  height: 100%;
  position: absolute;
}

.tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1rem;
  display: flex;
}

.tab-item {
  color: #000;
  background-color: #0000;
  border: 2px solid #000;
  flex-direction: column;
  justify-content: center;
  padding: .25rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background-color .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  box-shadow: 0 0 20px -10px #00000040;
}

.tab-item:focus-visible,
.tab-item[data-wf-focus-visible] {
  outline-color: var(--main-color);
  outline-offset: 1.5px;
  border-radius: .05rem;
  outline-width: 2px;
  outline-style: solid;
}

.tab-item.w--current {
  color: #fff;
  background-color: #000;
}

.tabs-content {
  overflow: visible;
}

.gallery_hero-bottom {
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 7.5rem;
  display: flex;
}

.gallery_hero-section {
  height: 100vh;
  padding-top: 8.5rem;
}

.gallery-cursor {
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  height: 3.25rem;
  display: none;
  position: absolute;
}

.rich-text p {
  color: var(--alt-text-color);
  line-height: 1.6;
}

.rich-text a {
  text-decoration: underline;
}

.nav-close {
  display: none;
}

.close-right-line,
.close-left-line {
  background-color: #000;
  width: 2px;
  height: 1.5rem;
  position: absolute;
}

.nav-open {
  display: none;
}

.menu-line {
  background-color: #000;
  width: 1.5rem;
  height: 2px;
  position: absolute;
}

.nav-label,
.commercial-list-wrapper {
  display: none;
}

.button-invert {
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 3rem;
  padding: .75rem 2rem;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  box-shadow: 0 0 20px -10px #00000040;
}

.button-invert:focus-visible,
.button-invert[data-wf-focus-visible] {
  outline-color: var(--main-color);
  outline-offset: 1.5px;
  border-radius: .05rem;
  outline-width: 2px;
  outline-style: solid;
}

.button-invert.w--current {
  color: #fff;
  background-color: #000;
}

.services_hero-section {
  z-index: 0;
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding-top: 8.5rem;
  display: flex;
  position: relative;
}

.services_text-section {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.hero-scroll-item {
  grid-row-gap: .15rem;
  letter-spacing: .75px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 12rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.1;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.link-styles {
  display: none;
}

.scroll-text {
  color: var(--alt-text-light-color);
  font-size: 1.125rem;
}

.hero-title-line-wrap {
  float: left;
  margin-bottom: -.75rem;
  overflow: hidden;
}

.logo-image {
  width: 8.5rem;
  height: auto;
}

.image-preview-styles,
.uploader-input {
  margin-bottom: 0;
  display: none;
}

.preview-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  display: flex;
}

.preview-item {
  grid-row-gap: .25rem;
  flex-direction: column;
  align-items: flex-start;
  width: 8rem;
  font-size: 1rem;
  line-height: 1;
  display: flex;
}

.services_faq-section {
  padding-bottom: 7.5rem;
}

.about-text {
  grid-row-gap: 4rem;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.about-inner {
  grid-column-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-image {
  object-fit: cover;
  flex: 1;
  width: 45%;
  height: auto;
}

.services-inner {
  grid-row-gap: 4rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.services-text {
  grid-column-gap: 5rem;
  justify-content: space-between;
  display: flex;
}

.gallery-scroll {
  border: 1px solid #000;
  border-radius: 1.4rem;
  width: 3rem;
  height: 3.5rem;
}

.gallery-scroll:focus-visible,
.gallery-scroll[data-wf-focus-visible] {
  border-radius: 1.4rem;
}

.arrow-icon {
  width: 100%;
  height: 100%;
}

.tabs {
  padding-top: 2rem;
}

.magnify-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

._404_section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 8.5rem;
  padding-bottom: 7.5rem;
}

._404-image {
  width: 7rem;
  display: block;
}

._404-inner {
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

._404-text {
  text-align: center;
  white-space: nowrap;
  font-size: 4rem;
  font-weight: 700;
}

._404-span {
  text-align: center;
  white-space: nowrap;
  font-size: 4.5rem;
  font-weight: 700;
}

.visually-hidden {
  display: none;
}

@media screen and (min-width: 1280px) {

  .container,
  .footer {
    padding-left: 11rem;
    padding-right: 11rem;
  }

  .hero-title-line {
    font-size: 5.5rem;
  }

  .intro-inner {
    grid-column-gap: 5rem;
  }

  .slider-progress {
    margin-left: 11rem;
    margin-right: 11rem;
  }

  .splide.slider {
    padding-left: 0;
    padding-right: 0;
  }

  .about-inner {
    grid-column-gap: 8rem;
  }

  ._404-text {
    font-size: 5rem;
  }

  ._404-span {
    font-size: 5.5rem;
  }
}

@media screen and (max-width: 991px) {
  .gallery-image {
    cursor: pointer;
  }

  .header {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .header-nav {
    grid-row-gap: 1.5rem;
    background-color: #000;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 3rem;
    padding-right: 3rem;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .header-right {
    display: none;
  }

  .link {
    font-size: 1.75rem;
  }

  .link.light-text {
    font-size: 1.125rem;
  }

  .link.mobile {
    display: block;
  }

  .link.underline-trail.invert {
    color: #fff;
  }

  .link.underline-trail.invert.legend {
    color: #000;
  }

  .container,
  .footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .hero-title-line {
    font-size: 4rem;
  }

  .intro-inner {
    grid-column-gap: 2rem;
    width: 100%;
  }

  .title-big {
    font-size: 3.25rem;
  }

  .slider-progress {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .splide__slide {
    width: 100%;
  }

  .title-medium {
    font-size: 2.25rem;
  }

  .intro-text {
    grid-column-gap: 2rem;
  }

  .light-text.gallery {
    width: 45%;
  }

  .options-wrapper {
    align-content: space-between;
  }

  .underline-invert {
    background-color: #fff;
  }

  .cursor-area {
    display: none;
  }

  .hero-legend.left-align.container {
    grid-column-gap: 4rem;
  }

  .nav-close {
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    position: absolute;
    inset: 2.75rem 3rem auto auto;
  }

  .close-right-line {
    background-color: #fff;
    height: 1.25rem;
    transform: rotate(45deg);
  }

  .close-left-line {
    background-color: #fff;
    height: 1.25rem;
    transform: rotate(-45deg);
  }

  .nav-open {
    z-index: -2;
    grid-row-gap: .1875rem;
    cursor: pointer;
    background-color: #fff;
    border-radius: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
  }

  .nav-open.invert {
    background-color: #000;
  }

  .menu-line {
    width: 1rem;
    position: static;
  }

  .menu-line.invert {
    background-color: #fff;
  }

  .nav-label {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-items: center;
    height: 3rem;
    font-size: .75rem;
    display: flex;
    position: absolute;
    inset: 2.75rem auto auto 3rem;
  }

  .commercial-list-wrapper,
  .hero-scroll-item.container {
    display: none;
  }

  .about-text {
    grid-column-gap: 2rem;
  }

  .about-inner {
    grid-column-gap: 4rem;
  }

  .services-text {
    grid-column-gap: 2rem;
  }

  ._404-text {
    font-size: 3.5rem;
  }

  ._404-span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  blockquote {
    padding-left: 1rem;
  }

  .home_hero-section {
    height: auto;
  }

  .header,
  .header-nav,
  .container,
  .footer {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .hero-text.container {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .hero-title-line {
    font-size: 9vw;
  }

  .intro-inner {
    grid-row-gap: 2rem;
  }

  .contact_hero-section {
    height: auto;
  }

  .title-big {
    margin-bottom: 3rem;
    font-size: 7vw;
  }

  .slider-progress {
    margin-top: 2rem;
    margin-left: 1.75rem;
    margin-right: 1.75rem;
  }

  .slide-image-wrapper {
    height: 80vh;
  }

  .title-medium {
    font-size: 2rem;
  }

  .intro-text {
    grid-row-gap: 3rem;
    flex-direction: column;
  }

  .light-text.gallery {
    width: 60%;
  }

  .options-wrapper {
    grid-row-gap: 1rem;
    flex-direction: column;
    margin-top: 4rem;
  }

  .title-small {
    font-size: 1.375rem;
  }

  .about_hero-section {
    height: auto;
  }

  .hero-legend.left-align.container {
    grid-column-gap: 2rem;
  }

  .gallery_tab-section {
    padding-top: 3.5rem;
  }

  .image-gallery-item {
    padding-bottom: 20rem;
  }

  .gallery_hero-bottom {
    margin-top: 4rem;
  }

  .gallery_hero-section {
    height: auto;
  }

  .nav-close {
    right: 1.75rem;
  }

  .nav-label {
    display: none;
    left: 1.75rem;
  }

  .services_hero-section {
    height: auto;
  }

  .about-text {
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .about-inner {
    grid-column-gap: 2rem;
  }

  .services-image {
    width: 100%;
    margin-top: 3rem;
  }

  .services-inner {
    grid-row-gap: 2rem;
    width: 100%;
  }

  .services-text {
    flex-direction: column;
  }

  ._404-text {
    font-size: 8vw;
  }

  ._404-span {
    font-size: 9vw;
  }
}

@media screen and (max-width: 479px) {
  .home_hero-section {
    height: 100vh;
    padding-bottom: 7.5rem;
  }

  .header,
  .header-nav,
  .container,
  .footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .hero-text.container {
    margin-top: 0;
  }

  .hero-text.container.gallery {
    justify-content: flex-end;
  }

  .hero-title-line {
    font-size: 11.25vw;
    line-height: 1.4;
  }

  .hero-title-line.home {
    font-size: 9.25vw;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .contact_hero-section {
    height: 100vh;
  }

  .text-field {
    border-radius: 0;
  }

  .title-big {
    font-size: 9vw;
  }

  .slider-progress {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .slide-image-wrapper {
    height: 50vh;
  }

  .light-text.gallery {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .text-area {
    border-radius: 0;
  }

  .link-big {
    font-size: 1.5rem;
  }

  .about_hero-section {
    height: 100vh;
  }

  .hero-legend {
    height: 12rem;
  }

  .hero-legend.left-align.container,
  .hero-legend.right-align.container {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

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

  .image-gallery-list {
    grid-template-columns: 1fr 1fr;
  }

  .image-gallery-item {
    padding-bottom: 18rem;
  }

  .gallery_hero-bottom {
    grid-row-gap: 4rem;
    flex-direction: column;
    align-items: center;
  }

  .gallery_hero-section {
    height: 100vh;
    padding-bottom: 5rem;
  }

  .nav-label {
    display: flex;
  }

  .services_hero-section {
    height: 100vh;
  }

  .about-inner {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  ._404-text {
    font-size: 11.25vw;
  }

  ._404-span {
    font-size: 12.25vw;
  }
}

#w-node-f033902e-f69e-d9f1-0204-0146cfbe6fd9-8989246a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c074a523-a605-972f-63ba-e56d31789559-8989246a,
#w-node-db2d8bdd-2ab8-ed2e-3076-ed0527ca7d17-8989246a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77460249-6056-8d86-83d1-b2a75906f7b5-5906f7a4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-af0029e3-2961-a933-008e-8639a7b62525-89892472 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#message.w-node-_23be27dc-9720-833e-4414-37d3b947751d-89892472,
#w-node-_88bc4ca4-348c-2efa-6a7d-04cede2893e2-89892472,
#w-node-_9efb6d85-1f46-3159-af01-673faec6b875-89892472,
#uploader.w-node-ab01e24c-f751-0dfa-3843-58391e17bfbd-89892472 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_23be27dc-9720-833e-4414-37d3b947751e-89892472 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-db2d8bdd-2ab8-ed2e-3076-ed0527ca7d17-89892479,
#w-node-ba364ec3-d32d-471c-08a3-c1da25e9ab89-89892479 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {

  #w-node-f033902e-f69e-d9f1-0204-0146cfbe6fd9-8989246a,
  #message.w-node-_23be27dc-9720-833e-4414-37d3b947751d-89892472,
  #w-node-_88bc4ca4-348c-2efa-6a7d-04cede2893e2-89892472,
  #w-node-_23be27dc-9720-833e-4414-37d3b947751e-89892472 {
    grid-column: span 1 / span 1;
  }
}