/*
  SS Breakpoints
  Mobile max 767
  Tablet min 768 max 1024
  Desktop seems to be default, although a handful are set to
    min 1025 max 1280
    min 1281
*/
/*
  table-cols
  $columns - The number of cols in the layout
  $container - The selector of the parent element (set to display: grid)
  $item - The selector for the grid items
*/
:root {
  --body-font-font-family: "Atkinson Hyperlegible Next", sans-serif;
  --body-font-line-height: 1.5;
  --body-font-letter-spacing: 0.03rem;
  --normal-text-size-value: 1.4;
  --heading-font-font-family: "Poltawski Nowy", serif;
  --site-navigation-font-font-family: "Poltawski Nowy", serif;
  --site-navigation-font-text-transform: none;
  --list-section-title-text-font-font-weight: 700;
}

body {
  /*
    MAIN MENUS STRUCTURE

    -- DESKTOP [ header-nav ]

        --- (main without submenu) ---

        <div class="header-nav-item [header-nav-item--active] header-nav-item--collection">
          <a href="#">Menu Text</a>
        </div>

        --- (main with submenu) ---

        <div class="header-nav-item [header-nav-item--active] header-nav-item--folder">
          <a class="header-nav-folder-title" href="#">
            <span class="header-nav-folder-title-text">Menu Text</span>
          </a>
          <div class="header-nav-folder-content">
            <div class="header-nav-folder-item [header-nav-folder-item--active]">
              <a href="#">
                <span class="header-nav-folder-item-content">Submenu Text 1</span>
              </a>
            </div>
            <div class="header-nav-folder-item">
              <a href="#">
                <span class="header-nav-folder-item-content">Submenu Text 2</span>
              </a>
            </div>
          </div>
        </div>

    -- MOBILE [ header-menu-nav ]

      (main without submenu)

      <div class="container header-menu-nav-item header-menu-nav-item--collection">
        <a href="#">
          <div class="header-menu-nav-item-content">Menu Text</div>
        </a>
      </div>

      (main with submenu, L1)

      <div class="container header-menu-nav-item[--active]">
        <a href="#">
          <div class="header-menu-nav-item-content header-menu-nav-item-content-folder">
            <span class="visually-hidden">Folder:</span>
            <span class="header-nav-folder-title-text">Menu Text</span>
            <span class="header-dropdown-icon header-dropdown-flip">{svg icon}</span>
          </div>
        </a>
      </div>

      (main with submenu, L2)

      <div class="container header-menu-nav-item[--active]">
        <a href="#" tabindex="0">
          <div class="header-menu-nav-item-content">
            Submenu Text 1
          </div>
        </a>
      </div>
  */
}
body :not(.header--menu-open) .header .header-announcement-bar-wrapper [data-header-style=solid].header-background-solid {
  background: linear-gradient(90deg, white 20%, hsla(0, 0%, 100%, 0.85) 50%, white 70%, hsla(0, 0%, 100%, 0.9) 95%);
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-item:not([class$="--active"]) a {
  transition-duration: 300ms !important;
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-item:not([class$="--active"]) a:hover {
  color: hsl(0, 63%, 32%);
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-item[class$="--active"] .header-nav-folder-title-text,
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-item[class$="--active"] > a:not(.header-nav-folder-title) {
  background-image: none;
  color: hsl(0, 63%, 32%);
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-folder-item a {
  display: block;
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-folder-item:not([class$="--active"]):hover {
  background: linear-gradient(40deg, transparent 15%, hsla(0, 0%, 100%, 0.5), transparent 85%);
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-folder-item:not([class$="--active"]):hover a {
  color: hsl(0, 63%, 32%);
}
body :not(.header--menu-open) .header .header-nav-wrapper .header-nav-folder-item[class$="--active"] a:hover {
  cursor: default;
}
body main h2:first-child {
  text-align: center;
}

.header-logo {
  width: 15rem;
}

#header {
  /*
    Defines title/logo for desktop and mobile, but actual nav for only desktop
  */
}
#header .header-layout-nav-right .header-nav .header-nav-item .header-nav-folder-content {
  right: auto;
  background-color: hsla(36, 40%, 70%, 0.9);
  border-radius: 6px;
}
#header .header-layout-nav-right .header-nav .header-nav-item:nth-last-child(-n+2) .header-nav-folder-content {
  right: 0;
}
#header .header-layout-nav-right .header-nav .header-nav-item:last-child a .header-nav-folder-title-text {
  background-color: rgb(194, 158, 112);
  color: hsl(0, 0%, 100%);
  border-radius: 6px;
  font-size: 1.25rem;
  padding: 0 1rem;
  font-style: italic;
  letter-spacing: -0.025rem;
}
#header .header-layout-nav-right .header-nav .header-nav-item .header-nav-folder-item--active .header-nav-folder-item-content {
  background-image: none;
  color: hsl(0, 63%, 32%);
}
#header .header-nav {
  /*
    MOBILE contains title/logo/hamburger
    Note: Also has seemingly unused duplicate navigation region beginning
    with another .header-nav div
  */
}
#header .header-menu {
  font-family: "Poltawski Nowy", serif;
  text-align: left;
}
#header .header-menu .header-menu-nav {
  padding-bottom: 3vh;
  background-color: hsl(36, 40%, 84%);
}
#header .header-menu .header-menu-nav .header-menu-nav-item,
#header .header-menu .header-menu-nav .header-menu-nav-item--active {
  font-family: "Poltawski Nowy", serif;
  font-weight: 600;
  font-size: 8vmin;
  padding: 3vw;
}
#header .header-menu .header-menu-nav .header-menu-nav-item:not(:first-child),
#header .header-menu .header-menu-nav .header-menu-nav-item--active:not(:first-child) {
  border-top: 1px solid hsl(38, 54%, 42%);
}
#header .header-menu .header-menu-nav .header-menu-nav-item a,
#header .header-menu .header-menu-nav .header-menu-nav-item--active a {
  margin: 0;
  display: block;
  color: hsl(191, 84%, 5%);
}
#header .header-menu .header-menu-nav .header-menu-nav-item a .header-menu-nav-item-content,
#header .header-menu .header-menu-nav .header-menu-nav-item--active a .header-menu-nav-item-content {
  display: flex;
  justify-content: space-between;
}
#header .header-menu .header-menu-nav .header-menu-nav-item--active {
  background-color: hsl(36, 40%, 88%);
  background: linear-gradient(50deg, transparent, hsl(36, 40%, 90%), transparent);
}
#header .header-menu .header-menu-nav .header-menu-nav-item--active a {
  color: hsl(0, 63%, 32%);
}
#header .header-menu .header-menu-nav .header-menu-nav-folder--active .header-menu-controls {
  padding-left: 0.25rem;
}
#header .header-menu .header-menu-nav .header-menu-nav-folder--active .header-menu-controls .header-menu-controls-control {
  display: flex;
  justify-content: start;
  padding-left: 0;
  color: hsl(191, 84%, 14.5%);
  font-size: smaller;
  font-style: italic;
}
#header .header-menu .header-menu-nav .header-menu-nav-folder--active .header-menu-nav-folder-content {
  padding: 0 8vw;
  width: auto;
}

.header-nav-item {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
}

.header-nav-folder-item {
  font-size: 1rem;
  text-align: left;
  padding: 0.25rem 0;
  border-top: 1px hsl(38, 54%, 42%) solid;
}

.header-nav-folder-item:first-child {
  border-top: none;
}

h1,
h2,
h3,
h4 {
  margin: 2rem 0 1rem 0;
  text-wrap: balance;
}
.sqs-block-html .sqs-html-content > h1:last-child,
.sqs-block-html .sqs-html-content > h2:last-child,
.sqs-block-html .sqs-html-content > h3:last-child,
.sqs-block-html .sqs-html-content > h4:last-child {
  margin-bottom: 1rem;
}
.sqs-block-html .sqs-html-content > h1:first-child,
.sqs-block-html .sqs-html-content > h2:first-child,
.sqs-block-html .sqs-html-content > h3:first-child,
.sqs-block-html .sqs-html-content > h4:first-child {
  margin-bottom: 2rem;
}

h1 {
  font-family: "Poltawski Nowy", serif;
  font-weight: 600;
  letter-spacing: 0.05rem;
  font-size: 3.5rem;
}

h2 {
  font-weight: 700;
  color: hsl(0, 63%, 32%);
}

.user-items-list .list-section-title p {
  text-wrap: balance;
  font-size: var(--heading-2-size);
  line-height: 1.2;
  color: hsl(0, 63%, 32%);
}

#home-hero-title,
#home-hero-featured {
  position: absolute;
  z-index: 6;
}

#home-hero-title {
  bottom: 40%;
}

#home-hero-featured {
  bottom: 10%;
}

#home-hero-featured .section-border,
#home-hero-featured .section-background,
#home-hero-title .section-border,
#home-hero-title .section-background {
  background-color: transparent !important;
}

#home-hero-featured .html-block {
  text-align: center;
  height: 6.5rem;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 6px #222;
  backdrop-filter: blur(3px);
}

#home-hero-featured .html-block p {
  line-height: 1.25;
  text-wrap: balance;
}

#home-hero-featured .html-block .sqs-html-content p:first-child {
  margin-bottom: 0.5rem;
  font-family: "Poltawski Nowy", serif;
}

#home-hero-featured .html-block .sqs-html-content p:first-child {
  font-weight: 700;
  font-size: 1.6rem;
}

#home-hero-featured .html-block .sqs-html-content p:last-child {
  margin-top: 0;
  padding-top: 0;
  font-size: 1.1rem;
}

/* Home Hero */
#home-hero-title .content {
  text-align: center;
  color: #fff;
}
#home-hero-title .content .fe-block:nth-child(1) {
  margin-bottom: 1.1rem;
}
#home-hero-title .content .fe-block:nth-child(1) h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 900;
  font-optical-sizing: auto;
  text-shadow: 0 0 12px #230808;
  font-size: 6rem;
  letter-spacing: 0.1rem;
  color: #fff;
}
#home-hero-title .content .fe-block:nth-child(2) .html-block {
  background: linear-gradient(90deg, hsla(181, 51%, 36%, 0), hsla(181, 51%, 36%, 0.5) 15%, hsla(181, 51%, 36%, 0.8) 50%, hsla(181, 51%, 36%, 0.5) 85%, hsla(181, 51%, 36%, 0));
  border-width: 3px;
  border-color: hsla(0, 0%, 100%, 0.45);
  border-style: double none;
  justify-content: center;
}
#home-hero-title .content .fe-block:nth-child(2) .html-block p {
  text-wrap: balance;
  line-height: 1.2;
  font-family: "Poltawski Nowy", serif;
  font-size: 1.5rem;
}

.squarespace-damask #home-hero-featured,
.squarespace-damask #home-hero-title {
  position: relative;
  bottom: auto;
}

#hero-image-slider {
  padding-top: 0 !important;
}

#hero-image-slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-position-y: 5rem;
  background-color: hsla(214, 81%, 17%, 0.75);
  background: linear-gradient(0deg, hsla(214, 81%, 17%, 0.75) 40%, hsla(214, 81%, 17%, 0));
  background: linear-gradient(0deg, hsla(0, 72%, 22%, 0.85) 40%, hsla(214, 81%, 17%, 0));
  z-index: 5;
}

section[id^=page-hero] {
  min-height: 50vh !important;
  max-height: 70vh;
}
section[id^=page-hero] .section-border .section-background .section-background-overlay {
  opacity: 0.6 !important;
  background: linear-gradient(90deg, hsl(3, 83%, 5%) 50%, transparent 90%);
}
section[id^=page-hero] .content-wrapper .fluid-engine {
  display: flex;
  flex-direction: column;
  width: 50%;
}
section[id^=page-hero] .content-wrapper .fluid-engine .fe-block .html-block {
  padding: 0 calc(var(--grid-gutter) * 1.4);
}
section[id^=page-hero] .content-wrapper .fluid-engine .fe-block .html-block h1 {
  margin: 0 0 0.5rem 0 !important;
}
section[id^=page-hero] .content-wrapper .fluid-engine .fe-block:nth-child(2) .sqs-block-html {
  padding: 0.75rem calc(var(--grid-gutter) * 1.5) !important;
  background-color: hsla(var(--black-hsl), 0.45);
  backdrop-filter: blur(4px);
  background-blend-mode: darken;
  border-radius: 0 2rem 2rem 0 !important;
}
section[id^=page-hero] .content-wrapper .fluid-engine .fe-block:nth-child(2) .sqs-block-html p {
  line-height: 1.3;
  opacity: 0.9;
}
section[id^=page-hero][id$=-why] img {
  object-position: 50% 25% !important;
}
section[id^=page-hero][id$=-faqs] {
  min-height: 33vh !important;
}
section[id^=page-hero][id$=-service-area] {
  min-height: 33vh !important;
}
section[id^=page-hero][id$=-service-area] .section-border {
  text-align: center;
}
section[id^=page-hero][id$=-service-area] .section-border .section-background .section-background-overlay {
  opacity: 0 !important;
}
section[id^=page-hero][id$=-service-area] img {
  display: inline-block !important;
  object-position: 40% !important;
}
section[id^=section-main][id$=jobs-map] .content-wrapper .fluid-engine {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 0 4rem 0;
  width: 75%;
}
section[id^=section-main][id$=jobs-map] #map {
  height: 50vh;
  margin-top: 2rem;
}

#testimonial-main .fluid-engine {
  background: linear-gradient(40deg, #fff 10%, hsl(36, 40%, 92%), #fff 90%);
  padding-top: 0.25rem;
  border-width: 1px;
  border-color: hsl(36, 40%, 84%);
  border-style: solid none;
}
#testimonial-main .fluid-engine blockquote {
  margin-inline-start: 15%;
  margin-inline-end: 15%;
}
#testimonial-main .fluid-engine blockquote p {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
  text-wrap: balance;
  font-family: "Poltawski Nowy", serif;
  font-weight: 600;
  color: hsl(38, 54%, 42%);
  letter-spacing: 0.025rem;
  word-spacing: 0.06rem;
}
#testimonial-main .fluid-engine blockquote p:last-child {
  font-family: "Cedarville Cursive", cursive;
  font-size: 1.4rem;
}

#maintenance-paint-warning .sqs-block-content {
  display: flex;
  flex-direction: row;
}
#maintenance-paint-warning svg {
  max-width: 80px;
  margin-right: 2rem;
}
#maintenance-paint-warning p {
  color: hsl(0, 63%, 32%);
  font-size: 1.2rem;
  line-height: 1.5;
}

#section-maintenance .user-items-list {
  padding-top: 3.3vmax !important;
}
#section-maintenance .list-item-content__description p:nth-child(-n+3) {
  position: relative;
  text-wrap: balance;
  font-size: 0.9rem;
  margin: 0;
  padding: 0.25rem 0 0;
  line-height: 1.3;
  margin-left: 24px;
  border-top: 1px solid lightgray;
}
#section-maintenance .list-item-content__description p:nth-child(-n+3)::before {
  font-weight: 500;
}
#section-maintenance .list-item-content__description p:nth-child(-n+3)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  width: 24px;
  content: "";
  font-family: "Material Symbols Outlined";
  font-size: 1.2rem;
  color: hsl(181, 51%, 36%);
}
#section-maintenance .list-item-content__description p:nth-child(-n+2) {
  margin-bottom: 0.25rem;
}
#section-maintenance .list-item-content__description p:nth-child(1) {
  border-top: none;
}
#section-maintenance .list-item-content__description p:nth-child(1)::after {
  content: "\f540";
}
#section-maintenance .list-item-content__description p:nth-child(2)::after {
  content: "\f100";
}
#section-maintenance .list-item-content__description p:nth-child(3)::after {
  content: "\e7ef";
}

#section-maintenance-tune-ups .fe-block:nth-child(1) {
  grid-area: 1/12/2/16;
  padding-bottom: 0.5rem;
}
#section-maintenance-tune-ups .fe-block:nth-child(2) {
  grid-area: 2/7/9/21;
}
[id^=section-team][id$=-founder] .content .fluid-engine .fe-block:last-child {
  padding-top: 1.5rem;
}
[id^=section-faqs][id$=-list] .content .fluid-engine .fe-block {
  padding: 2rem 0 4rem;
}

.mozer-m {
  text-align: center;
}
.mozer-m svg {
  max-width: 65px;
}

footer .section-background {
  background: linear-gradient(40deg, #fff 10%, hsl(36, 40%, 92%), #fff 90%);
  border-top: 1px solid hsl(36, 40%, 84%);
}

.sqs-block-accordion .accordion-items-container > li:nth-child(even) {
  background: hsl(36, 40%, 96%);
  border-radius: 1rem;
}
.sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: color 250ms ease-in;
}
.sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:active, .sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:hover, .sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:focus {
  color: hsl(36, 40%, 60%);
}
.sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:active .arrow-container, .sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:hover .arrow-container, .sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button:focus .arrow-container {
  color: hsl(36, 40%, 60%);
}
.sqs-block-accordion .accordion-items-container li .accordion-item__title-wrapper button .arrow-container {
  transition: color 250ms ease-in;
  color: hsl(36, 40%, 70%);
}
.sqs-block-accordion .accordion-items-container li .accordion-item__description {
  padding: 0 1rem 1rem 2rem !important;
  margin-top: 0;
}
.sqs-block-accordion .accordion-items-container li .accordion-item__description p {
  white-space: normal !important;
  text-wrap: balance;
}
.sqs-block-accordion .accordion-items-container li:hover .accordion-item__title-wrapper button, .sqs-block-accordion .accordion-items-container li[data-is-open=true] .accordion-item__title-wrapper button {
  color: hsl(0, 63%, 32%);
}
.sqs-block-accordion .accordion-items-container li:hover .accordion-item__title-wrapper button .arrow-container, .sqs-block-accordion .accordion-items-container li[data-is-open=true] .accordion-item__title-wrapper button .arrow-container {
  color: hsl(36, 40%, 60%);
}
.user-items-list-section .user-items-list .user-items-list-simple {
  grid-gap: 50px 20px !important;
}
.user-items-list-section .user-items-list[data-card-theme] .user-items-list-simple:has(.list-item[data-is-card-enabled=true]) {
  grid-gap: 0 20px !important;
}
.user-items-list-section .user-items-list .list-item {
  background-color: unset;
}
.user-items-list-section .user-items-list .list-item:nth-child(even) {
  background: linear-gradient(180deg, #fff 40%, hsl(36, 40%, 92%), #fff 80%);
}
.user-items-list-section .user-items-list .list-item:nth-child(even)[data-is-card-enabled=false] {
  background: linear-gradient(180deg, #fff 15%, hsl(36, 40%, 92%), #fff 85%);
}

@media (max-width: 768px) and (orientation: portrait) {
  #home-hero-title {
    bottom: 32%;
  }
  #home-hero-featured {
    bottom: 17%;
  }
}
@media (max-width: 768px) {
  #hero-image-slider {
    padding-top: 12rem;
  }
  #home-hero-featured {
    bottom: 5%;
    padding: 0 11px;
  }
  #home-hero-featured .fluid-engine {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  #home-hero-featured .fluid-engine .fe-block {
    grid-area: unset;
  }
  #home-hero-featured .fluid-engine .fe-block .html-block {
    padding: 8px;
  }
  #home-hero-featured .fluid-engine .fe-block .html-block .sqs-html-content p:first-child {
    font-size: 1.4rem;
    letter-spacing: 0.04rem;
  }
  #home-hero-title .content .fe-block:nth-child(1) h1 {
    font-size: 4.25rem;
    letter-spacing: 0.15rem;
  }
  #home-hero-title .content .fe-block:nth-child(2) .html-block {
    padding: 0.25rem 0;
    width: 85%;
    margin: 0 auto;
  }
  #home-hero-title .content .fe-block:nth-child(2) .html-block p {
    font-size: 1.3rem;
  }
  .header-title-logo .header-logo {
    width: 9.5rem;
  }
  .header-title-logo img,
  .header-title-logo a {
    max-height: unset !important;
  }
  .gallery-masonry .gallery-masonry-item img {
    height: 100% !important;
    width: 100% !important;
  }
  .gallery-masonry .gallery-masonry-wrapper {
    columns: 1;
    column-gap: 0;
    padding: 0 10px;
    height: auto !important;
    display: block !important;
  }
  .gallery-masonry-item-wrapper {
    height: auto !important;
  }
  .gallery-masonry-item {
    position: relative !important;
    padding: 10px !important;
    transform: none !important;
    width: 100% !important;
    display: block;
  }
  #section-maintenance-tune-ups {
    padding-bottom: 2rem;
  }
  #section-maintenance-tune-ups .content .fluid-engine {
    display: block;
    margin: 1rem auto;
  }
  #section-maintenance-tune-ups .content .fluid-engine .fe-block:nth-child(2) p {
    text-wrap: balance;
    text-align: center;
  }
}
@media (orientation: landscape) and (min-height: 1000px) and (max-width: 1280px) {
  section[id^=page-hero] {
    min-height: 35vh !important;
    max-height: 50vh;
  }
  section[id$=-why] img {
    object-position: 50% 25% !important;
  }
}
@media (orientation: landscape) and (max-height: 480px), (orientation: portrait) and (max-width: 480px) {
  header#header .header-announcement-bar-wrapper {
    padding-top: 3.5vw;
    padding-bottom: 3.5vw;
  }
  main {
    padding-bottom: 2rem;
  }
  main section.page-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  main section.page-section[id^=page-hero], main section.page-section[id=testimonial-main] {
    padding: 0;
  }
  h1 {
    font-size: 3rem;
  }
  #testimonial-main .fluid-engine {
    border-width: 2px;
  }
  #section-walkthrough-video .video-block {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (orientation: landscape) and (max-height: 480px) {
  header#header {
    position: relative;
  }
  header#header .header-announcement-bar-wrapper {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
@media (orientation: portrait) and (max-width: 480px) {
  .fluid-engine {
    display: block !important;
  }
  main .design-layout-fluid img {
    position: unset !important;
  }
  section[id^=page-hero] {
    min-height: 50vh !important;
    max-height: 85vh;
  }
  section[id^=page-hero] .section-border + .content-wrapper {
    padding-bottom: 0 !important;
  }
  section[id^=page-hero] .section-border + .content-wrapper .content .fluid-engine {
    display: block;
    width: 100%;
  }
  section[id^=page-hero] .section-border + .content-wrapper .content .fluid-engine .fe-block .html-block {
    padding: 0 7%;
    width: auto;
    text-align: center;
    text-wrap: balance;
  }
  section[id^=page-hero] .section-border + .content-wrapper .content .fluid-engine .fe-block .html-block h1 {
    margin: 0 0 1rem 0 !important;
  }
  section[id^=page-hero] .section-border + .content-wrapper .content .fluid-engine .fe-block:nth-child(2) .html-block {
    padding-bottom: 3% !important;
    padding-top: 3% !important;
    line-height: 1.3;
    border-radius: 0 !important;
    font-size: 1.1rem;
  }
  section[id^=page-hero] .content-wrapper .fluid-engine .fe-block:nth-child(2) .sqs-block-html {
    background-color: hsla(var(--black-hsl), 0.5);
    backdrop-filter: blur(5px);
  }
  section[id$=-maintenance] {
    min-height: 75vh !important;
  }
  section[id$=-why] {
    min-height: 60vh !important;
  }
  section[id$=-how] {
    min-height: 66vh !important;
  }
  section[id$=-team] {
    min-height: 60vh !important;
  }
  section[id$=-team] img {
    object-position: 85% 50% !important;
  }
  .user-items-list-section .user-items-list .list-item:nth-child(even) {
    background: none;
  }
  #siteWrapper .user-items-list .user-items-list-item-container {
    display: block;
    padding: 0;
  }
  #siteWrapper .user-items-list .user-items-list-item-container .list-item-content__title,
  #siteWrapper .user-items-list .user-items-list-item-container .list-item-content__description {
    max-width: 100% !important;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item-content__title {
    font-size: 1.9rem;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item-content__description {
    font-size: 1.1rem;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item {
    position: relative;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item::after {
    content: "";
    position: absolute;
    width: 70%;
    border-bottom: 3px double hsl(181, 30.6%, 68%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item[data-is-card-enabled=true] {
    background-color: unset;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item[data-is-card-enabled=false] {
    padding-top: 1.5rem;
    padding-bottom: 1.875rem;
  }
  #siteWrapper .user-items-list .user-items-list-item-container.user-items-list-simple .list-item:last-of-type::after {
    border: none;
  }
  #siteWrapper #testimonial-main .fluid-engine blockquote {
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
  #siteWrapper #testimonial-main .fluid-engine blockquote p {
    padding: 0 7.5%;
  }
  #siteWrapper #testimonial-main .fluid-engine blockquote p:last-child {
    padding: 0;
  }
  #siteWrapper #section-maintenance .user-items-list .user-items-list-item-container .list-item-content__description p:nth-child(-n+3) {
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 32px;
  }
  #siteWrapper #section-maintenance .user-items-list .user-items-list-item-container .list-item-content__description p:nth-child(-n+3)::after {
    left: -32px;
    width: 32px;
    font-size: 1.5rem;
  }
  #siteWrapper #section-maintenance .user-items-list .user-items-list-item-container .list-item-content__description p:nth-child(1) {
    margin-top: 1rem;
  }
  #siteWrapper #section-maintenance .user-items-list .user-items-list-item-container .list-item-content__description p:nth-child(3) {
    margin-bottom: 1rem;
  }
  #siteWrapper #maintenance-paint-warning {
    margin-top: 2rem;
  }
  #siteWrapper #maintenance-paint-warning .sqs-block-content {
    display: block;
    text-align: center;
  }
  #siteWrapper #maintenance-paint-warning .sqs-block-content svg {
    margin: 0;
  }
  #siteWrapper #maintenance-paint-warning .sqs-block-content p {
    padding: 0 7.5%;
  }
}

/*# sourceMappingURL=style.css.map */
