@font-face {
  font-family: Playfair Display;
  src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Playfair Display Italic;
  src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

.announcement-banner {
  background-color: #000000cc;
  width: 100vw;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10vh;
  left: 0;
  z-index: 99998;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.announcement-link {
  color: var(--light-gray);
  text-decoration: underline;
  margin-left: 0.5em;
}

.announcement-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-text {
  color: var(--light-gray);
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 5vw;
}

@media screen and (max-width: 976px) {
  .announcement-text {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  .announcement-text {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
  }
}

@media screen and (max-width: 479px) {
  .announcement-text {
    font-size: 0.6rem;
    letter-spacing: 0.2px;
    padding: 0 3vw;
  }
}

:root {
  --black-90: #000000e6;
  --black-75: #000000bf;
  --black-60: #0009;
  --trans: #3330;
  --black-10: #0000001a;
  --white-90: #ffffffe6;
  --light-gray: #dedede;
  --white-60: #fff9;
  --white-75: #ffffffbf;
  --metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>: #333;
  --white-50: #ffffff80;
  --green: #00730f;
  --blue: #0e6cc4;
  --white: #fff;
  --red: #cb1b1e;
  --white-10: #ffffff1a;
  --black-50: #00000080;
  --black: #000;
  --black-40: #0006;
  --white-40: #fff6;
  --gray-75: #dededebf;
  --black-25: #00000040;
  --light-gray-50: #dedede80;
}

html {
  overflow-x: hidden;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

body {
  margin: 0;
  padding: 0;
  color: var(--black-90);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  position: relative;
  overflow-x: clip;
}

h1 {
  color: var(--black-75);
  letter-spacing: 2px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 5.25rem;
}

h2 {
  color: var(--black-75);
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 5svw;
  font-weight: 400;
  line-height: 1;
}

h3 {
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.25rem;
}

p {
  color: var(--black-60);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.25rem;
  position: relative;
}

a {
  background-color: var(--trans);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--black-90);
  text-decoration: none;
  transition: all .9s;
}

.body-1 {
  background-image: linear-gradient(#e6e6e6e6, #e6e6e6e6), url('../images/scott-webb-UjupleczBOY-unsplash_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100vw;
  display: flex;
}

.body-1.light-mode {
  background-color: #c8c8c8;
}

.body-1.template {
  background-image: linear-gradient(#e6e6e6f2, #e6e6e6f2), url('../images/scott-webb-UjupleczBOY-unsplash_1.avif');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.section {
  z-index: 2;
  border-top: 1px solid var(--black-10);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 50vh;
  padding: 10vh 5vw;
  display: flex;
  position: relative;
}


.section.home-interior {
  border-top: 2px solid #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 150vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.section.home-exterior-section {
  z-index: 13;
  background-color: var(--black-75);
  color: var(--white-90);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.section.home-id-section {
  z-index: 1;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-height: 200vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: none;
}

.section.home-tabs {
  background-image: none;
  background-color: transparent;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.section.home-tabs .home-vertical-h2-div {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.service-wrapper {
  width: 90vw;
  display: flex;
  box-sizing: border-box;
  margin-top: 15vh;
  margin-bottom: 15vh;
  align-items: center;
}

.service-wrapper.center {
  justify-content: center;
  margin-bottom: 0;
}

.service-wrapper.left {
  justify-content: flex-start;
  padding-left: 0;
}

.service-wrapper.right {
  justify-content: flex-end;
  padding-right: 0;
}

.testimonial-wrapper {
  width: 70vw;
  margin: 20vh auto;
  position: relative;
  min-height: 300px;
}

.testimonial-nav-arrows {
  display: flex;
  margin-bottom: 1.5rem;
}

.arrow-box {
  width: 60px;
  height: 60px;
  border: 1px solid var(--black-10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  background-color: var(--light-gray-50);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.arrow-box:hover {
  background: rgba(0, 0, 0, 0.05);
}

.testimonial-wrapper .main-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  border: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column-reverse;
}

.testimonial-wrapper .main-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column-reverse;
}

.testimonial-wrapper .testimonial-para-full {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  padding: 0;
  font-weight: 500;
}

.testimonial-wrapper .star-rating {
  max-width: 150px;
  margin-top: 5vh;
  margin-bottom: 20px;
}

.testimonial-wrapper .testimonial-author {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black-75);
}

.service-photo-slider {
  width: 40%;
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  margin-right: 5vw;
}

.service-slider-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.service-slider-image.active {
  opacity: 1;
}

.section.space-around {
  justify-content: space-around;
}

.section.footer {
  z-index: 20;
  color: var(--white-90);
  background-image: linear-gradient(#00000080, #00000080), url('../images/Shower-remodeling-pittsburgh.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 100vh;
  padding-top: 5vh;
  padding-left: 5vw;
  padding-right: 10vw;
}

.section.contact-form {
  padding-left: 5vw;
  padding-right: 5vw;
  overflow: auto;
}

.section.why {
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  justify-content: space-around;
  align-items: center;
  width: 90%;
  display: flex;
}

.section.service-id {
  border-top: 1px solid var(--black-10);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.section.service-gal {
  border-top: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 60vh;
  width: 90vw;
  max-width: 90vw;
  padding-left: 5vw;
  padding-right: 5vw;
  overflow: hidden;
}

.section.testimonial-section {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  border-bottom: 1px solid var(--black-10);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.section.about-id {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.section.about-2 {
  z-index: 3;
  border-bottom: 1px solid var(--black-10);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.section.project-section {
  border-top: 1px solid var(--black-10);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 5vw;
  padding-right: 5vw;
}

.section.left-align {
  justify-content: flex-start;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.navigation {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.navbar {
  z-index: 99999;
  border-bottom: 1px solid var(--black-10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #dededebf;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  height: 10vh;
  display: flex;
  position: fixed;
  inset: 0% 0% auto 0%;
  box-sizing: border-box;
}

.h1 {
  z-index: 20;
  color: var(--black-90);
  text-align: left;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 500;
  line-height: 3.9rem;
  position: relative;
}

.h1.home-h1 {
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 10px;
  font-size: 5vw;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

.h1.service-template {
  color: var(--black-75);
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.h1.about {
  color: var(--light-gray);
  margin-top: 0;
  margin-right: 20px;
  font-size: 8rem;
  line-height: 9rem;
}

.h1.project-showcase-h1 {
  text-align: center;
  font-size: 4rem;
}

.menu-button {
  z-index: 80;
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  background-color: var(--trans);
  cursor: pointer;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  transition: background-color .9s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative;
}

.menu-button:hover {
  background-color: #ffffff80;
}

.nav-logo {
  width: 50px;
  height: 50px;
}

.nav-logo.large-nav-logo {
  opacity: .6;
  width: 60px;
  height: 60px;
  margin-right: 0;
  transition: opacity .875s;
}

.nav-logo.large-nav-logo:hover {
  opacity: 87;
}

.nav-logo-div {
  opacity: .75;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  transition: opacity .8s cubic-bezier(.215, .61, .355, 1);
  display: flex;
  position: relative;
}

.nav-logo-div:hover {
  opacity: 100;
}

.home-hero-typemark {
  color: #333;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 4svw;
  font-weight: 400;
  line-height: 1;
}

.home-hero-id-div {
  z-index: 30;
  background-color: var(--light-gray);
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 25vw;
  height: 40vh;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: visible;
}

.wide-nav-div {
  z-index: 80;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0 2vw 0 5vw;
  display: flex;
  position: relative;
}

.h1-div {
  z-index: 10;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  max-width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-line {
  z-index: 1;
  opacity: .75;
  width: 60px;
  height: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}

.menu-line.bottom-line, .menu-line.top-line {
  flex: 0 auto;
}

.menu-content {
  width: 100%;
  height: 450%;
  display: flex;
  position: absolute;
  inset: 13vh 0% 0%;
}

.p1 {
  z-index: 2;
  color: var(--black-75);
  margin-top: 10px;
  margin-bottom: 10px;
}

.p1.home-hero-subheading {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.2rem;
}

.p1.bold {
  font-weight: 700;
}

.p1.home-hero-subheading-mobile {
  display: none;
}

.p1.home-subheading {
  text-align: left;
  line-height: 1.2rem;
  position: relative;
  inset: auto auto 0% 0%;
}

.p1.temporary-subhead {
  padding-left: 5vw;
  font-size: 30px;
  line-height: 2rem;
}

.p1.subheading {
  width: 50%;
}

.p1.subheading.center {
  text-align: center;
}

.p1.subheading.center.light {
  color: #0009;
}

.p1._60-weight {
  color: #3339;
}

.p1.max-90-auto {
  max-width: 90%;
}

.p1.max-90-auto.light {
  color: var(--light-gray);
}

.p1.max-90-auto.light.center {
  color: var(--white-60);
  text-align: center;
}

.p1.light-90 {
  color: var(--light-gray);
  width: 90%;
}

.p1.light {
  color: var(--white-90);
}

.p1.about-hero-p {
  color: var(--white-75);
  width: 300px;
}

.nav-number {
  object-fit: contain;
  width: 100px;
}

.nav-ig-link {
  width: 40px;
  margin-left: 5vw;
  margin-right: 20px;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
}

.nav-ig-link:hover {
  transform: scale(1.1);
}

.nav-number-y-socials {
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 0% auto 0% 0;
}

.button-1 {
  border: 1px solid var(--black-10);
  background-color: var(--light-gray);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: var(--black-60);
  margin-top: 0;
  padding: 20px;
  transition: all .65s cubic-bezier(.19, 1, .22, 1);
  position: relative;
}

.button-1:hover {
  color: var(--black-90);
  background-color: #ffffff80;
}

.button-1.nav-button {
  z-index: 80;
  border-color: var(--trans);
  background-color: var(--trans);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: var(--black-60);
  text-align: center;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0 40px;
  line-height: 1;
  transition: background-color .9s;
  display: flex;
  position: relative;
}

.button-1.nav-button:hover {
  background-color: var(--white-50);
  color: var(--black-90);
}

.button-1.absolute {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  margin-top: 0;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 20px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-1.margin-50-left {
  margin-left: 50px;
}

.button-1.home-hero-button {
  background-color: var(--trans);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  margin-top: 20px;
  padding: 10px 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  position: relative;
  inset: auto auto 0% 0%;
}

.button-1.home-hero-button:hover {
  border-color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  background-color: var(--green);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

.button-1.margin-20-top {
  margin-top: 20px;
}

.button-1.id-button {
  z-index: 10;
  text-align: center;
  margin-top: 20px;
  position: absolute;
  inset: auto 5vw 5vh auto;
}

.button-1.footer-form-button {
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.button-1.newsletter-form {
  width: 120px;
}

.button-1.crumb {
  border-color: var(--black-10);
  flex: none;
  margin-bottom: 20px;
  margin-right: 20px;
}

.home-service-div {
  border-bottom: 2px solid #000;
  display: flex;
}

.h2 {
  color: var(--black-75);
  text-transform: uppercase;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  margin-top: 0;
}

.h2.home-h2 {
  font-size: 3svw;
}

.home-interior-service {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.19, 1, .22, 1);
  display: flex;
}

.home-interior-service:hover {
  background-color: #0000000d;
}

.home-interior-service.bathroom-home-h2-link {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.home-interior-service.bathroom-home-h2-link:hover {
  color: var(--blue);
}

.home-interior-service.kitchens-h2-link:hover {
  color: #b8146f;
}

.home-interior-service.basements-h2-link:hover {
  color: #ed812e;
}

.hover-video {
  background-color: #929292;
  width: 100%;
  margin-top: 20px;
  margin-left: 20px;
  display: inline-flex;
}

.services-holder-div {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.portrait-video-holder {
  z-index: 20;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 100%;
  margin-top: -70vh;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.scroll-video {
  z-index: 40;
  border-bottom: 1px solid #000;
  border-left: 2px solid #000;
  width: 100%;
  height: 100%;
}

.home-interior-title {
  z-index: 0;
  text-align: center;
  text-transform: uppercase;
  flex: 0 auto;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
}

.home-interior-title.interior {
  z-index: 10;
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  mix-blend-mode: color-burn;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 3vw;
  display: flex;
  position: absolute;
  inset: 10vh auto auto 5vw;
  transform: translate(0);
}

.home-interior-title.exterior {
  width: 90vw;
  margin-bottom: 20px;
  padding-left: 0;
}

.black-square {
  background-color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  width: 30px;
  height: 30px;
  position: absolute;
  inset: auto 5vw 5vh auto;
}

.black-square.relative {
  margin-right: 20px;
  position: relative;
  bottom: auto;
  right: auto;
}

.black-square.hero-square {
  bottom: 10%;
  right: 5%;
}

.home-vertical-h2-div {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  margin-bottom: 0;
  display: flex;
  border-top: none;
  overflow: hidden;
}

.home-service-title-div {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sticky-home-p {
  margin-bottom: 10px;
  display: none;
}

.sticky-home-div {
  border: 1px solid var(--black-10);
  border-top: none;
  border-right: none;
  background-color: var(--trans);
  color: var(--black-60);
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 25vw;
  max-width: 25vw;
  height: 100px;
  padding-left: 10px;
  padding-right: 10px;
  transition: background-color 600ms cubic-bezier(0.16, 1, 0.3, 1), color 600ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  position: relative;
  box-sizing: border-box;
}

.sticky-home-div:last-child {
  border-right: 1px solid var(--black-10);
}

.sticky-home-div:hover {
  background-color: var(--white-50);
  color: var(--black-90);
}

.sticky-home-div.home-kitchens {
  z-index: 10;
}

.sticky-home-div.home-kitchens:hover {
  background-color: var(--black-75);
  color: var(--light-gray);
}

.sticky-home-div.home-bathrooms {
  z-index: 9;
  flex: 0 auto;
}

.sticky-home-div.home-bathrooms:hover {
  background-color: var(--black-75);
  color: var(--light-gray);
}

.sticky-home-div.home-basements {
  z-index: 8;
}

.sticky-home-div.home-basements:hover {
  background-color: var(--black-75);
  color: var(--light-gray);
}

.sticky-home-div.home-windows {
  z-index: 7;
}

.sticky-home-div.home-windows:hover {
  background-color: var(--black-75);
  color: var(--light-gray);
}

.sticky-home-div.home-fireplaces {
  z-index: 6;
  border-right-style: solid;
  display: none;
}

.sticky-home-div.home-fireplaces:hover {
  background-color: var(--red);
}

.home-hero-image {
  width: 30vw;
  margin-left: 5vw;
}

.exterior-div {
  padding-left: 5vw;
}

.service-block {
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white-60);
  cursor: pointer;
  border: 1px solid #ffffff1a;
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1.75rem;
  transition: background-color .525s, border-color .8s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative;
}

.service-block:hover {
  z-index: 2;
  border-color: var(--blue);
  color: var(--white-75);
  background-color: #3e3e3e;
}

.exterior-horizontal {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-right: 0;
  display: flex;
}

.home-exterior-title {
  text-align: center;
  text-transform: uppercase;
  flex: none;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-weight: 300;
}

.home-hero-heading-2 {
  font-size: 3svw;
}

.home-hero-div {
  z-index: 60;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 40vw;
  height: auto;
  margin-top: 10vh;
  margin-left: 5vw;
  margin-right: 5vw;
  padding: 0;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.home-feature-icon {
  opacity: .75;
  width: 40px;
  margin-right: 20px;
}

.content-spacer {
  border: 2px solid #000;
  width: 35vw;
  height: 80vh;
  margin-left: 5vw;
  display: flex;
  position: sticky;
}

.swiper {
  z-index: 1;
  max-width: 500px;
  max-height: 500px;
  display: none;
}

.swiper.left-border-z {
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #dedede80;
  border-right: 2px solid #000;
  position: relative;
}

.home-id-paragraph {
  z-index: 1;
  color: #333333bf;
  width: 50%;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  position: fixed;
  top: 50%;
}

.swiper-slide {
  z-index: 5;
  object-fit: cover;
  border: 2px solid #000;
  width: 500px;
  height: 500px;
  position: absolute;
  inset: 0%;
}

.link-menu {
  z-index: 1;
  background-color: var(--blue);
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  width: 25vw;
  height: 90vh;
  display: flex;
  position: absolute;
  top: 10vh;
  right: -15.1vw;
}

.button-background {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.div-50-id {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-50-id.content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.text-span {
  font-size: 2svw;
}

.text-span-2 {
  color: #333;
}

.h1-home {
  z-index: 20;
  white-space: nowrap;
  padding-left: 5vw;
  font-size: 20svw;
  line-height: 1;
  position: relative;
}

.h1-home.home-h1 {
  font-size: 20rem;
  display: block;
}

.fixed-menu {
  z-index: 99999;
  background-color: var(--black-75);
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 0 0 6px 6px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 40px;
  display: none;
  position: fixed;
  inset: 10% 0% auto;
  overflow: hidden;
  box-sizing: border-box;
}

.menu-link {
  z-index: 50;
  color: var(--white-75);
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: border-radius .9s cubic-bezier(.19, 1, .22, 1), font-size .65s cubic-bezier(.19, 1, .22, 1), color .65s cubic-bezier(.19, 1, .22, 1), background-color .65s cubic-bezier(.19, 1, .22, 1), transform .65s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-link:hover {
  background-color: var(--light-gray);
  color: var(--black-75);
}

.menu-link.menu-link-button {
  display: none;
}

.menu-services-header {
  display: none;
}

.menu-service-link {
  display: none;
}

.home-hero-slider {
  background-color: var(--trans);
  width: 50vw;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-left: 1px solid var(--black-10);
  z-index: 10;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-slider-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.home-slider-image.active {
  opacity: 1;
  z-index: 2;
}

.h1-subheading-block {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: auto;
  right: auto;
}

.nav-typemark {
  opacity: .75;
  color: var(--black-75);
  text-transform: uppercase;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color .9s cubic-bezier(.19, 1, .22, 1);
  display: none;
}

.nav-typemark:hover {
  color: var(--black);
}

.hero-span {
  color: var(--black-60);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1rem;
}

.div-50 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  max-width: 50%;
  height: 100%;
  display: flex;
  margin: 5vh 0;
  text-align: left;
}

.div-50:first-of-type {
  margin-top: 0;
}

.div-50.centered-content {
  align-items: center;
  text-align: center;
  width: 75%;
  max-width: 75%;
}

.div-50.show-desktop {
  width: auto;
}

.div-50.show-mobile {
  display: none;
}

.div-50.remodeling-default {
  display: flex; /* TEMPORARILY CHANGED FROM 'none' TO VIEW ALL CONTENT */
  position: relative;
}

.div-50.center-mobile {
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-card {
  border: 1px solid var(--black-10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 400px;
  display: none;
}

.home-card.default-card {
  background-image: url('../images/Whitehall-Bathroom-Renovation.jpg');
  display: none;
}

.home-card.kitchens-card {
  background-image: url('../images/Mt-Lebanon-kitchen-remodeling.jpg');
  display: none;
}

.home-card.bathrooms-card {
  background-image: url('../images/Best-Bathroom-Pittsburgh_1.avif');
  display: none;
}

.home-card.basements-card {
  background-image: url('../images/Basement-renovations-upper-st-clair_1.avif');
  display: none;
}

.home-card.windows-card {
  background-image: url('../images/Home-renovation-pittsburgh-pa.jpg');
  display: none;
}

.home-card.mantles-card {
  background-image: url('../images/Fireplace-Installation-Pittsburgh_1.avif');
  display: none;
}

.home-card.testimonial-card {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  flex: none;
  width: 49.5dvw;
  height: 30rem;
}

.div-75 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 75%;
  display: flex;
}

.div-75.vert {
  justify-content: center;
  align-items: center;
}

.div-75.service-why {
  justify-content: center;
  align-items: center;
  width: auto;
  margin-right: 20px;
}

.div-vert-left {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.home-tabs-module {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  flex-shrink: 0;
}

.div-90 {
  justify-content: center;
  align-items: stretch;
  width: 90%;
  display: flex;
}

.div-90.top-margin-40 {
  margin-top: 40px;
}

.h3 {
  text-transform: uppercase;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.25rem;
  color: var(--black-75);
}

.h3.light {
  color: var(--white-75);
  font-weight: 400;
}

.footer-typemark {
  color: var(--white-90);
  mix-blend-mode: exclusion;
  margin-top: 20px;
  margin-bottom: 40px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 10vw;
  font-weight: 600;
  line-height: 1;
  transition: none;
}

.footer-typemark.mobile-typmark {
  display: none;
}

.footer-holder {
  z-index: 20;
  justify-content: center;
  align-items: flex-start;
  width: 85%;
  padding-right: 5vw;
  display: none;
  position: relative;
}

.copyright {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: .9rem;
  font-weight: 400;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-form {
  margin-top: 20px;
}

.form-wrapper {
  border: 1px solid #00000040;
  display: flex;
}

.footer-form-field {
  background-color: #ffffff40;
  height: 100%;
  margin-bottom: 0;
}

.footer-link {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.2rem;
}

.footer-link-holder {
  flex-flow: column;
  width: 20%;
  padding: 1.5rem 3rem 1.5rem 2rem;
  display: flex;
}

.newsletter-form {
  width: 30vw;
  margin-right: 10%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.newsletter-title {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.footer-category-title {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-weight: 600;
}

.success-message {
  background-color: #dddddd96;
  border: 1px solid #000;
  font-size: 1rem;
}

.ul {
  text-decoration: underline;
}

.error-message {
  background-color: var(--red);
  color: var(--white);
  padding: 20px;
  font-size: 1rem;
}

.parallax-div {
  z-index: 10;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background-color: #dedede99;
  border: 1px solid #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  padding: 20px;
  display: flex;
  position: absolute;
  top: 25%;
  left: 15%;
}

.parallax-div.parallax-div-2 {
  top: 50%;
  left: 40%;
}

.parallax-div.parallax-div-3 {
  top: 75%;
  left: 65%;
}

.parallax-div.id-parallax-photo {
  z-index: 10;
  background-image: url('../images/Jordan-Kelly_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  top: 75%;
}

.parallax-div.id-parallax-photo-2 {
  background-image: url('../images/Andrew-Jackson_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  top: 15%;
  left: 75%;
}

.parallax-div.id-parallax-jordan-overlay {
  background-image: url('../images/Jordan-Kelly_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  top: 75%;
}

.id-parallax-number {
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 5rem;
  position: relative;
}

.id-parallax-text {
  text-align: center;
  margin-top: 20px;
}

.menu-logo {
  opacity: .18;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.menu-typemark {
  z-index: 50;
  color: var(--light-gray);
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color .6s cubic-bezier(.19, 1, .22, 1), background-color .5s cubic-bezier(.19, 1, .22, 1), transform .6s cubic-bezier(.19, 1, .22, 1);
  display: none;
  position: relative;
  overflow: hidden;
}

.menu-typemark:hover {
  background-color: var(--light-gray);
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  transform: scale(1.05);
}

.ig {
  width: 30px;
  height: auto;
  transition: opacity .625s cubic-bezier(.19, 1, .22, 1);
}

.link-block {
  flex: none;
  width: 30px;
  margin-right: 20px;
}

.menu-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  margin-left: 5vw;
}

.menu-social-links .link-block {
  margin: 0;
}

.button-2 {
  background-color: var(--blue);
  border: 2px solid #333;
  border-radius: 0;
  margin-top: 0;
  padding: 20px;
  transition: all .65s cubic-bezier(.19, 1, .22, 1);
  position: relative;
}

.button-2:hover {
  background-color: var(--light-gray);
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  border: 2px dashed #333;
}

.button-2.navigation-button {
  z-index: 80;
  border-color: var(--trans);
  background-color: var(--trans);
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  text-align: center;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 100%;
  margin-top: 0;
  padding: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
  transition-duration: .65s;
  transition-timing-function: cubic-bezier(.14, .737, .22, 1);
  display: flex;
  position: relative;
}

.button-2.navigation-button:hover {
  background-color: #0000000d;
  font-size: 1rem;
  box-shadow: inset 2px 2px 13px #0003;
}

.button-2.absolute {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  margin-top: 0;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 20px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-2.margin-50-left {
  margin-left: 50px;
}

.button-2.home-hero-button {
  background-color: var(--trans);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  margin-top: 20px;
  padding: 10px 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  position: relative;
  inset: auto auto 0% 0%;
}

.button-2.home-hero-button:hover {
  border-color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  background-color: var(--green);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

.button-2.margin-20-top {
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.button-2.id-button {
  text-align: center;
  position: absolute;
  inset: auto 5vw 5vh auto;
}

.button-2.margin-10-top {
  margin-top: 10px;
}

.div-center {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  padding-left: 5vw;
  padding-right: 5vw;
}

.hover-image {
  object-fit: cover;
  width: 40%;
  height: 330px;
  margin-right: 40px;
  display: none;
  position: relative;
}

.hover-services-wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin-top: 40px;
  display: flex;
}

.text-span-3 {
  color: var(--black-75);
  text-transform: none;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 2rem;
}

.home-h1-subheading {
  color: var(--black-90);
  margin-bottom: 10px;
  font-size: 2.1vw;
  line-height: 1;
}

.menu-line-mask {
  flex-flow: column;
  display: flex;
}

.menu-line {
  background-color: var(--black);
  height: 6px;
}

.home-exterior-number {
  text-align: center;
  text-transform: uppercase;
  line-height: 4.25rem;
}

.home-exterior-img {
  object-fit: contain;
  width: 200px;
  position: relative;
}

.footer-link {
  color: var(--white-75);
}

.exterior-home {
  width: 60vw;
  padding-right: 40px;
}

.exteriorhomeimg {
  width: 25vw;
  position: absolute;
  left: 5vw;
  right: auto;
}

.hero-section {
  z-index: 2;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100vw;
  min-height: 50vh;
  margin-top: 10vh;
  padding: 10vh 5vw;
  display: flex;
  position: relative;
}

.hero-section.home-hero {
  padding: 5vh 0 0 0;
  height: 60vh;
  min-height: 60vh;
  flex-direction: row;
}

.hero-section.home-interior {
  border-top: 2px solid #000;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 150vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.hero-section.home-exterior-section {
  z-index: 13;
  background-color: var(--black-75);
  color: var(--white-90);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.hero-section.home-id-section {
  z-index: 1;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-height: 200vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: none;
}

.hero-section.home-tabs {
  background-image: linear-gradient(180deg, var(--trans), var(--light-gray));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  min-height: 80vh;
}

.hero-section.space-around {
  justify-content: space-around;
}

.hero-section.footer {
  z-index: 20;
  color: var(--white-90);
  background-image: linear-gradient(#00000080, #00000080), url('../images/4-web-or-mls-integrated_contracting_team_photos-4_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 100vh;
  padding-left: 5vw;
  padding-right: 5vw;
}

.hero-section.contact-form {
  min-height: 120vh;
}

.hero-section.service-template {
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  text-align: center;
  border-bottom-style: none;
  flex-flow: column;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-left: 5vw;
  padding-right: 5vw;
  justify-content: space-between;
  align-items: center;
  width: 85%;
}

.hero-section.service-template .button-1 {
  background-color: var(--light-gray);
  color: var(--black-60);
  padding: 12px 20px;
  font-size: 0.9rem;
}

.hero-section.about-hero {
  color: var(--light-gray);
  background-image: linear-gradient(#00000040, #00000040), url('../images/4-web-or-mls-integrated_contracting_team_photos-4_1.avif');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-flow: column;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section.blog-template {
  border-bottom-color: var(--black-10);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

body .hero-section.blog-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-section.project-showcase-hero {
  border-bottom-style: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-left: 5vw;
  padding-right: 5vw;
}

body .hero-section.faq-hero-section {
  height: auto;
  min-height: auto;
  max-height: none;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10vh 5vw;
  overflow: visible;
}

.faq-title {
  margin-left: 10px;
  margin-right: 10px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

.link {
  color: var(--black-75);
  font-weight: 700;
}

.code-embed {
  width: 50%;
  overflow: visible;
}

.icon {
  width: 50px;
}

.phone-link {
  display: none;
}

.service-hero-img {
  width: 30vw;
}

.service-hero-img.show-mobile {
  display: none;
}

.gallery-track {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
  overflow: visible;
}

.gallery-track.show-mobile {
  display: none;
}

.div-50-2 {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.div-50-2.gallery-content {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #00000059;
  border-left: 1px solid #ff8400;
  height: 100vh;
  padding: 40px;
}

.slider-button-holder {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.section-2 {
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  min-height: 50vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.section-2.service-gal {
  border-bottom: 1px solid #ff8400;
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 23vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.gallery-img {
  object-fit: cover;
  border: 1px solid #000;
  flex: none;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.h2-2 {
  color: #ffffffe6;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 4rem;
}

.slider-controller {
  border: 1px solid var(--black-60);
  opacity: .75;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: opacity .7s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative;
}

.slider-controller:hover {
  opacity: 100;
}

.slider-controller.right {
  margin-left: 10px;
  transform: rotate(-90deg);
}

.slider-controller.left {
  transform: rotate(90deg);
}

.abs-arrow {
  width: 25px;
  position: absolute;
}

.template-img-item {
  width: 50vw;
  margin-right: 20px;
}

.service-img-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-left {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-left.test {
  margin-left: 40px;
}

.div-left.narrower {
  max-width: 50vw;
  margin-left: 40px;
}

.div-service-gal-heading {
  display: flex;
  align-items: flex-start;
  max-width: 90vw;
}

.why-img {
  width: 250px;
}

._50px-img {
  width: 75px;
}

.testimonial-heading {
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  text-align: left;
  text-transform: uppercase;
  width: 30vw;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 3rem;
  line-height: 3rem;
}

.testimonial-slider-wrapper {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 200vw;
  margin-left: -300px;
  display: flex;
  position: relative;
  overflow: visible;
}

.left-arrow {
  background-color: var(--black-10);
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3rem;
  display: flex;
}

.right-arrow {
  background-color: var(--black-10);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3rem;
  margin-bottom: 10px;
  display: flex;
}

.testimonial-track {
  transition: all .2s;
  display: flex;
}

.testimonial-para-full {
  color: var(--black-75);
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .8rem;
  line-height: 1.2rem;
  display: flex;
}

.testimonial-author {
  color: var(--white-60);
  margin-top: 20px;
  padding: 1.25rem 1.25rem 1.25rem 1.5625rem;
}

.testimonial-work-completed {
  background-color: var(--white-40);
  color: var(--black-75);
  white-space: nowrap;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 5.1rem;
  padding: 10px 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: .7rem;
  font-weight: 500;
  display: flex;
}

.testimonial-work-completed.patio {
  color: var(--black-90);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 15%;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1rem;
  font-weight: 200;
  display: flex;
}

.testimonial-work-completed.retaining-wall {
  color: var(--black-75);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 30%;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-weight: 500;
  display: flex;
}

.testimonial-work-completed-wrapper {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 1.5625rem;
  display: flex;
}

.bold-text {
  color: var(--black-90);
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
}

.testimonial-5star {
  padding-left: 1.5625rem;
}

.image {
  width: 1.6rem;
}

.testimonial-para-short {
  color: var(--black-90);
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.3rem;
  line-height: 1.25;
  display: flex;
}

.main-card {
  border: 1px solid var(--black-10);
  background-color: var(--gray-75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 38dvw;
  position: relative;
}

.main-card.default-card {
  background-image: url('../images/Whitehall-Bathroom-Renovation.jpg');
  display: flex;
}

.main-card.kitchens-card {
  background-image: url('../images/Mt-Lebanon-kitchen-remodeling.jpg');
  display: none;
}

.main-card.bathrooms-card {
  background-image: url('../images/Best-Bathroom-Pittsburgh_1.avif');
  display: none;
}

.main-card.basements-card {
  background-image: url('../images/Basement-renovations-upper-st-clair_1.avif');
  display: none;
}

.main-card.windows-card {
  background-image: url('../images/Home-renovation-pittsburgh-pa.jpg');
  display: none;
}

.main-card.mantles-card {
  background-image: url('../images/Fireplace-Installation-Pittsburgh_1.avif');
  display: none;
}

.main-card.testimonial-card {
  background-image: none;
  flex: none;
  position: relative;
}

.main-card.testimonial-card.left {
  position: absolute;
  left: 3.75rem;
}

.main-card.testimonial-card.left.down {
  bottom: 5rem;
}

.main-card.testimonial-card.left.up {
  top: 5rem;
}

.main-card.testimonial-card.right {
  position: absolute;
  right: .6875rem;
}

.main-card.testimonial-card.right.down {
  bottom: .1875rem;
}

.main-card.testimonial-card.right.up {
  top: 18rem;
}

.main-card.testimonial-card.hide, .main-card.hide {
  display: none;
}

.testmonial-card-module {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  margin-left: 20px;
  display: flex;
}

.see-more-text {
  color: var(--black-75);
  text-align: center;
  cursor: pointer;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 2rem;
  font-family: Playfair Display, Times New Roman, sans-serif;
}

.about-pic {
  z-index: 1;
  border: 1px solid var(--black-60);
  opacity: .3;
  width: 100%;
  position: fixed;
  inset: 0%;
}

.about-hero-div {
  text-align: left;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin-right: 40px;
  display: flex;
}

.about-img {
  width: 500px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.wide-div {
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 75vh;
  display: flex;
}

.about-circle {
  z-index: 10;
  border: 1px solid var(--black-60);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 50rem;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  margin-left: 40px;
  margin-right: 40px;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-circle-text {
  color: var(--black-75);
  text-align: center;
  padding: 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
}

.about-circle-paragraph {
  z-index: 1;
  border-top: 1px solid var(--black-10);
  text-align: center;
  flex: none;
  width: auto;
  max-width: 300px;
  padding-top: 20px;
}

.mask {
  width: 48vw;
}

.testimonial-heading-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100dvw;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-bottom: 20px;
  display: flex;
}

.inner-ticker {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 400vw;
  padding-right: 38dvw;
  display: flex;
  position: relative;
}

.ticker {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100vw;
  display: flex;
}

.code-embed-2 {
  width: 100vw;
  display: none;
}

.team-module {
  justify-content: space-around;
  align-items: center;
  min-height: 60vh;
  margin-top: 40px;
  display: flex;
}

.dull-portrait {
  z-index: 2;
  object-fit: cover;
  flex: 0 auto;
  width: 90%;
  height: 90%;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
  position: absolute;
}

.portrait-div {
  box-sizing: content-box;
  border: 1px none var(--black-25);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20vw;
  height: 40vh;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.portrait-div.relative-up {
  top: -100px;
}

.portrait-div.rel-down {
  top: 100px;
}

.happy-portrait {
  z-index: 1;
  object-fit: cover;
  flex: none;
  width: 90%;
  height: 90%;
  display: block;
  position: absolute;
}

.about-card {
  border: 1px solid var(--black-10);
  width: 20vw;
  padding: 10px;
}

.about-title {
  font-family: Playfair Display, Times New Roman, sans-serif;
}

.about-para {
  padding: 10px;
  font-size: .8rem;
  line-height: 1.1rem;
}

.about-card-alignment {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
  padding-left: 10px;
  display: flex;
}

.about-cards-wrapper {
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 20px;
  display: flex;
  overflow: hidden;
}

.div-block {
  width: 100vw;
  height: 100vw;
}

.arrow {
  background-color: var(--light-gray);
  border-radius: 50rem;
}

.absolute-frame {
  border: 1px solid var(--black-50);
  width: 100%;
  height: 100%;
  position: absolute;
}

.acc-p {
  width: 100%;
  padding: 40px;
  display: none;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  max-width: 100%;
}

.accordion {
  border: 1px solid var(--black-25);
  flex-flow: column;
  width: 60vw;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

.accordion-icon {
  width: 20px;
  position: relative;
  top: 0%;
  bottom: auto;
}

.faq-title-div {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  transition: background-color .5s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  box-sizing: border-box;
}

.faq-title-div:hover {
  background-color: var(--white-10);
}

.faq-hero {
  width: 30vw;
  margin-right: 40px;
}

.faq-hero h1 {
  margin-bottom: 20px;
}

.faq-p {
  margin-top: 10px;
}

.abs-text {
  width: 90%;
  margin-left: 5%;
  font-size: .8rem;
  line-height: 1rem;
  position: absolute;
  inset: auto 0% -20px;
}

.integrated-highlight {
  color: var(--gray-75);
  letter-spacing: 2px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.about-hero-2 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.blog-hero-img {
  filter: saturate(118%);
  max-width: 105%;
  margin-left: -20px;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.blog-hero-h1 {
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  text-align: left;
  width: 50vw;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 4rem;
}

.author-name {
  color: var(--black-75);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
}

.publish-date {
  color: var(--black-60);
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: .8rem;
  line-height: 1rem;
}

.blog-hero-content-wrapper {
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  width: 50vw;
}

.blog-h1-outline {
  display: flex;
}

.blog-content-outline {
  border-top: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 10vh;
  display: flex;
}

.blog-content {
  z-index: 10;
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  width: 50vw;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: visible;
}

.rich-text-block {
  font-family: Playfair Display, Times New Roman, sans-serif;
}

.article-heading {
  font-size: 3rem;
  line-height: 3rem;
}

.hook-para {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 2rem;
}

.blog-hero-h2 {
  text-align: left;
  font-size: 2.4rem;
  line-height: 3rem;
}

.content-wrap-vert {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50vw;
  height: 10vh;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.link-block-footer {
  flex: none;
  width: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.author-bio {
  z-index: 130;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 25vw;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.author-bio-div {
  border-style: solid none solid solid;
  border-width: 1px;
  border-color: var(--black-10);
  background-color: var(--trans);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.author-bio-title {
  margin-bottom: 10px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
}

.author-pic {
  width: 70%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}

.blog-field {
  background-color: #fff3;
  background-image: linear-gradient(to bottom, var(--light-gray-50), var(--light-gray-50)), linear-gradient(135deg, #cb1b1e1a, #fbff001a 27%, #009dff1a 50%, #00ff5d1a 77%);
  color: var(--black);
  width: 100%;
  margin-top: 10px;
}

.blog-field::placeholder {
  font-size: .8rem;
  line-height: 1rem;
}

.blog-form {
  width: 100%;
}

.blog-form-block {
  flex: 1;
  width: 100%;
}

.newsletter-p {
  font-size: .8rem;
  line-height: 1rem;
}

.project-h2 {
  width: 100%;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  padding-left: 5vw;
  padding-right: 5vw;
}

.project-h2.highlight {
  color: var(--black-90);
  font-size: 2rem;
}

.project-h2.crazy {
  color: var(--black-90);
}

.project-h2.hero-title {
  color: var(--black-90);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.project-horiz {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 60vh;
  display: flex;
}

.project-horiz.top-align {
  justify-content: space-between;
  align-items: flex-start;
  min-height: auto;
}

.project-horiz.center {
  justify-content: space-between;
  align-items: center;
  min-height: 80vh;
}

.project-photo {
  border: 1px solid var(--black-60);
  width: 40vw;
}

.project-photo.swiper-demo-1, .project-photo.swiper-demo-2 {
  width: 30vw;
  margin-top: 20px;
}

.showcase-p {
  font-style: italic;
}

.showcase-p.special {
  margin-top: 10px;
  font-size: .8rem;
  font-style: normal;
}

.showcase-p.bigger {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-right: 5vw;
}

.project-div {
  width: 40vw;
  margin-top: 20px;
  padding-left: 5vw;
  padding-right: 5vw;
}

.project-h3 {
  color: var(--black-75);
  margin-top: 0;
  font-size: 2rem;
  font-weight: 500;
  padding-left: 5vw;
}

.more-nav-link {
  color: var(--black-60);
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px;
  transition-duration: .375s;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  display: flex;
}

a.more-nav-link[href*="project-showcase"] {
  display: none;
}

.more-nav-link:hover {
  color: var(--black);
}

.breadcrumb {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 50vw;
  margin-bottom: 20px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.crumb {
  border: 1px solid #000;
  padding: 20px;
  display: flex;
}

.abs-hero-block {
  width: 25vw;
  padding: 20px;
  position: relative;
  inset: auto auto 0% 0%;
  transform: rotate(0);
}

.abs-hero-block.right {
  left: auto;
}

.rel-div {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.swiper-demo {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.yellow-stars {
  margin-bottom: 10px;
  padding-left: 5vw;
}

.project-h2-2 {
  width: 100%;
  margin-bottom: 20px;
  font-family: Playfair Display, Times New Roman, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 5vw;
  padding-right: 5vw;
}

.project-h2-2.highlight {
  color: var(--black-90);
  font-size: 2rem;
}

.project-h2-2.crazy {
  color: var(--black-90);
}

.project-h2-2.hero-title {
  color: var(--black-90);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.div-block-2, .feature-template {
  display: flex;
}

.hero-feature-1 {
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.feature-title {
  color: var(--black-60);
  font-size: .8rem;
  line-height: 1.1rem;
}

.star {
  width: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.revtai {
  width: 200px;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

.otherguy {
  width: 200px;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.service-social-proof {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 25vw;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(0);
}

.service-social-proof.right {
  left: auto;
}

.social-proof-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.social-proof-descr {
  font-size: .8rem;
  line-height: 1.1rem;
  margin: 0;
}

.project-proof {
  width: 90px;
}

@media screen and (max-width: 1270px) {
  .service-social-proof {
    display: none;
  }
}

@media screen and (max-width: 976px) {

  .section {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }

  .nav-ig-link {
    margin-left: 0;
  }

  .menu-social-links {
    margin-left: 0;
  }

  .section.home-exterior-section {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section.home-id-section {
    border-top-style: solid;
    flex-flow: column;
    height: auto;
  }

  .section.home-tabs {
    flex-flow: column;
    padding-top: 5vh;
    padding-bottom: 5vh;
    overflow: visible;
  }

  /* Mobile/Tablet vertical stacking for service wrapper */
  .service-wrapper {
    flex-direction: column;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .service-wrapper.left,
  .service-wrapper.right {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .service-photo-slider {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    order: 1;
  }

  .service-wrapper.center {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8vh;
    margin-bottom: 6vh;
    padding-top: 3vh;
    position: relative;
    z-index: 20;
  }

  .div-50.centered-content {
    display: flex !important;
    flex-direction: column;
    width: 90%;
    max-width: 90%;
    text-align: center;
  }

  /* Ensure proper spacing from tabs above */
  .home-tabs-module {
    margin-bottom: 8vh;
  }

  .home-vertical-h2-div {
    position: relative;
    z-index: 1;
  }

  /* Optimize typography and ensure visibility */
  .h2 {
    display: block !important;
    visibility: visible !important;
    font-size: 2.5rem;
    line-height: 2.75rem;
    margin-bottom: 1.5rem;
  }

  .p1 {
    display: block !important;
    visibility: visible !important;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .button-1 {
    display: inline-block !important;
    visibility: visible !important;
    font-size: 1rem;
    padding: 12px 24px;
  }

  .button-1.margin-20-top {
    margin-top: 20px;
  }

  .section.footer {
    background-image: linear-gradient(to bottom, null, null), url('../images/Shower-remodeling-pittsburgh.jpg');
    background-position: 0 0, 0%;
    justify-content: center;
    align-items: center;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section.contact-form {
    height: 200vh;
  }

  .section.why {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .section.service-gal {
    padding: 5vh 5vw;
  }

  .section.testimonial-section {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 80vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  /* Testimonial responsive - Small Desktop/Tablet */
  .testimonial-wrapper .main-card {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active .testimonial-para-full {
    font-size: 1.25rem;
  }


  .arrow-box {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .section.about-2 {
    border-bottom: 1px solid var(--black-10);
  }

  .navbar {
    justify-content: flex-end;
    align-items: center;
    height: 10vh;
  }

  .h1 {
    font-size: 4rem;
  }

  .h1.home-h1 {
    text-align: center;
    flex: 0 auto;
    width: auto;
    font-size: 11vw;
  }

  .h1.about {
    font-size: 5rem;
    line-height: 5rem;
  }

  .menu-button {
    border-right-style: none;
    width: 20%;
  }

  .menu-button:hover {
    background-color: var(--trans);
  }

  .nav-logo {
    width: 60px;
    height: 60px;
  }

  .nav-logo.large-nav-logo {
    width: 50px;
    height: 50px;
  }

  .nav-logo-div {
    margin-left: 5vw;
  }

  .home-hero-typemark {
    font-size: 25px;
  }

  .home-hero-id-div {
    display: none;
  }

  .wide-nav-div {
    flex: 1;
    width: auto;
    margin: 0;
    padding: 0 2vw;
  }

  .h1-div {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .p1.home-hero-subheading-mobile {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .p1.home-subheading {
    text-align: center;
    max-width: 70vw;
  }

  .p1.light-90 {
    width: auto;
  }

  .p1.about-hero-p {
    width: 40vw;
  }

  .nav-number-y-socials {
    display: none;
  }

  .button-1:hover {
    background-color: var(--light-gray);
    color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
  }

  a#nav-button.button-1.nav-button.w-button {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .button-1.id-button {
    right: auto;
  }

  .button-1.footer-form-button {
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-1.crumb {
    padding: 10px;
  }

  .h1.service-template {
    font-size: 3rem;
    line-height: 3.25rem;
  }

  .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .h2.home-h2 {
    font-size: 10svw;
  }

  .h2.opacity-fade {
    font-size: 3rem;
  }

  .h2.center-mobile {
    text-align: center;
  }

  .portrait-video-holder {
    width: 40%;
    height: 60%;
    display: none;
  }

  .scroll-video {
    border: 2px solid #000;
  }

  .home-interior-title {
    font-size: clamp(0.75rem, 2vw, 1rem);
  }

  .home-vertical-h2-div {
    flex-flow: row;
    width: 100%;
  }

  .sticky-home-div {
    min-width: 25vw;
    max-width: 25vw;
  }

  .service-block {
    border-color: var(--white-10);
    flex: none;
    justify-content: center;
    align-items: center;
    height: 20vh;
    padding: 0;
  }

  .service-block:hover {
    border-color: var(--white-10);
    color: var(--white-60);
    background-color: #3e3e3e00;
  }

  .exterior-horizontal {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  .home-exterior-title {
    z-index: 2;
    background-color: var(--black-50);
    color: var(--white);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    display: flex;
    position: relative;
  }

  .home-hero-heading-2 {
    font-size: 3svw;
  }

  .home-hero-div {
    border-bottom: 1px solid var(--trans);
    border-right-style: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 5vw;
    box-sizing: border-box;
  }

  .home-id-paragraph {
    text-align: center;
    font-size: 2rem;
    top: 40%;
  }

  .div-50-id {
    width: 90%;
    min-height: 500px;
  }

  .div-50-id.content {
    border-left-style: none;
  }

  .h1-home {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .h1-home.home-h1 {
    flex: 0 auto;
    width: 2000vw;
  }

  .fixed-menu {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: none;
  }

  .menu-link {
    margin-top: 10px;
    margin-bottom: 10px;
    transition: none;
  }

  .menu-link:hover {
    background-color: var(--trans);
    color: var(--light-gray);
    transform: none;
  }

  .menu-link.menu-link-button {
    background-color: var(--white-90);
    color: var(--black-75);
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-weight: 400;
    display: flex;
  }

  .menu-link.menu-link-button:hover {
    border-radius: 0;
  }

  .menu-services-header {
    display: none;
  }

  .menu-service-link {
    display: none;
  }

  .home-hero-slider {
    width: 100%;
    height: 60vh;
    border: none;
    margin-top: 5vh;
  }

  .home-slider-image {
    border: none;
  }

  .h1-subheading-block {
    justify-content: center;
    align-items: center;
  }

  .hero-span {
    font-size: 11svw;
  }

  .div-50 {
    width: auto;
  }

  .div-50.show-desktop {
    display: none;
  }

  .div-50.show-mobile {
    width: 100%;
    margin-bottom: 40px;
    margin-left: 0;
    display: flex;
  }

  .div-50.remodeling-default {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    margin-left: 0;
    display: flex;
    order: 2;
  }

  .div-50.center-mobile {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .home-card {
    display: none;
  }

  .home-card.windows-card {
    background-position: 0 0;
    display: none;
  }

  .div-75.service-why {
    text-align: center;
    margin-right: 0;
  }

  .home-tabs-module {
    width: 100%;
  }

  .div-90.top-margin-40 {
    justify-content: flex-start;
    align-items: stretch;
  }

  .footer-typemark {
    color: var(--white);
    font-size: 10vw;
    display: flex;
  }

  .footer-typemark.mobile-typmark {
    margin-bottom: 40px;
    font-size: 5rem;
    line-height: 5.25rem;
    display: flex;
  }

  .footer-holder {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-link {
    text-align: center;
  }

  .footer-link-holder {
    justify-content: center;
    align-items: center;
    width: 75%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .newsletter-form {
    text-align: center;
    width: 80vw;
    margin-bottom: 40px;
    margin-right: 0%;
  }

  .footer-category-title {
    margin-left: 0;
  }

  .menu-logo {
    z-index: -1;
    opacity: 0;
    display: block;
    position: absolute;
    right: auto;
  }

  .menu-typemark {
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 4rem;
    font-weight: 600;
    transition: none;
    display: flex;
  }

  .menu-typemark:hover {
    background-color: var(--trans);
    color: var(--white);
    transform: none;
  }

  .ig {
    opacity: 100;
  }

  .link-block {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .button-2 {
    border-style: none;
  }

  .button-2:hover {
    background-color: var(--blue);
    color: var(--white);
    border-style: none;
  }

  .button-2.navigation-button {
    display: none;
    position: relative;
  }

  .button-2.id-button {
    right: auto;
  }

  .hover-image {
    width: 90%;
    margin-top: 40px;
    margin-left: 0;
  }

  .hover-services-wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 15vh;
  }

  .home-h1-subheading {
    text-align: center;
    font-size: 4.5vw;
    line-height: 2.25rem;
  }

  .menu-line {
    width: 50px;
  }

  .home-exterior-number {
    z-index: 2;
    font-size: 1rem;
    display: none;
    position: relative;
  }

  .home-exterior-number:hover {
    color: var(--white-60);
  }

  .home-exterior-img {
    z-index: 1;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .exterior-home {
    padding-right: 0;
    padding-left: 5vw;
  }

  .exteriorhomeimg {
    inset: 5vh 5vw auto auto;
  }

  .hero-section {
    flex-flow: column;
    padding-top: 0;
    width: 100%;
  }

  .hero-section.home-hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .hero-section.home-exterior-section {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-section.home-id-section {
    border-top-style: solid;
    flex-flow: column;
    height: auto;
  }

  .hero-section.home-tabs {
    flex-flow: column;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .hero-section.footer {
    justify-content: center;
    align-items: center;
  }

  .hero-section.service-template {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .code-embed {
    width: 90%;
  }

  .phone-link {
    opacity: .75;
    width: 30px;
    display: none;
  }

  .service-hero-img.show-desktop {
    display: none;
  }

  .service-hero-img.show-mobile {
    width: 100%;
    margin-top: 40px;
    display: block;
  }

  .gallery-track {
    margin-top: 0;
    margin-right: 0;
    padding-left: 5vw;
    overflow: auto;
  }

  .gallery-track.show-desktop {
    display: none;
  }

  .gallery-track.show-mobile {
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    overflow: auto;
  }

  .div-50-2 {
    width: 90%;
  }

  .div-50-2.gallery-content {
    background-color: #3898ec00;
    border-left-style: none;
    width: 90%;
    height: auto;
    margin-top: 20vh;
    margin-left: 5vw;
    padding: 0;
  }

  .slider-button-holder {
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
  }

  .section-2.service-gal {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 5vh;
  }

  .gallery-img {
    margin-left: 0;
    margin-right: 20px;
  }

  .h2-2 {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .template-img-item {
    width: 70vw;
  }

  .service-img-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 700vw;
    margin-top: 40px;
  }

  .div-left.test {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .div-left.narrower {
    justify-content: flex-end;
    align-items: flex-start;
    max-width: none;
    margin-left: 0;
  }

  .div-service-gal-heading {
    flex-flow: column;
    margin-left: 5%;
    margin-right: 5%;
  }

  ._50px-img {
    width: 60px;
  }

  .testimonial-heading {
    width: 80vw;
  }

  .main-card {
    width: 60dvw;
    height: auto;
  }

  .main-card.windows-card {
    background-position: 0 0;
    display: none;
  }

  .main-card.testimonial-card {
    flex-flow: column;
    display: flex;
  }

  .testmonial-card-module {
    width: 90vw;
  }

  .testmonial-card-module.testimonials {
    display: flex;
  }

  .about-circle {
    text-align: center;
    flex-flow: column;
    margin-left: 10px;
    margin-right: 10px;
  }

  .about-circle-text {
    padding: 10px;
    font-size: 2rem;
    line-height: 2rem;
  }

  .about-circle-paragraph {
    border-top-style: none;
    width: 75%;
    padding-right: 0;
  }

  .testimonial-heading-wrapper {
    flex-flow: column;
    width: 100dvw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .inner-ticker {
    padding-right: 10dvw;
  }

  .about-card {
    text-align: left;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    display: flex;
  }

  .about-cards-wrapper {
    flex-flow: column;
  }

  .accordion {
    width: 80vw;
  }

  body .hero-section.faq-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-hero {
    width: 80vw;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 0;
    padding-left: 0;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .link-block-footer {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .more-nav-link {
    display: none;
  }

  .breadcrumb {
    width: auto;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .abs-hero-block {
    width: 40vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .yellow-stars {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .revtai {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section.home-exterior-section {
    border-top-width: 1px;
  }

  .section.home-id-section {
    border-top: 1px #000;
    justify-content: flex-start;
    align-items: center;
    min-height: 250vh;
  }

  .section.home-tabs {
    justify-content: flex-start;
    align-items: flex-start;
    overflow: visible;
  }

  .service-wrapper.center {
    display: flex;
    visibility: visible;
    opacity: 1;
    margin-bottom: 5vh;
  }

  .section.why {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5vh 5vw;
  }

  .section.testimonial-section {
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  /* Testimonial responsive - Tablet */
  .testimonial-wrapper {
    width: 75vw;
    margin: 5vh auto;
  }

  .testimonial-wrapper .ticker {
    min-height: 45vh;
    padding-top: 4rem;
  }

  .testimonial-wrapper .inner-ticker {
    gap: 1rem;
  }

  .testimonial-wrapper .main-card {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active .testimonial-para-full {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .testimonial-wrapper .testimonial-author {
    font-size: 0.9rem;
  }

  .arrow-box {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
  }

  .navbar {
    border-bottom-width: 1px;
    height: 10vh;
  }

  .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }

  .h1.service-template {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .h1.project-showcase-h1 {
    font-size: 3rem;
  }

  .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .nav-logo {
    width: 50px;
    height: 50px;
  }

  .wide-nav-div {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-line {
    width: 60px;
  }

  .p1.max-90-auto {
    max-width: 90%;
  }

  .button-1.nav-button {
    display: none;
  }

  .home-interior-title {
    font-size: clamp(0.65rem, 2.5vw, 1rem);
  }

  .home-vertical-h2-div {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
  }

  .home-service-title-div {
    overflow: visible;
  }

  .sticky-home-div {
    min-width: 25vw;
    max-width: 25vw;
    height: 80px;
  }

  .home-id-paragraph {
    color: var(--metal\<deleted\|variable-9805044c-d1db-de22-0b01-acacdd4b87ac\>);
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.75rem;
    position: sticky;
    top: 25%;
  }

  .div-50.show-mobile {
    width: auto;
  }

  .home-card {
    border-width: 1px;
    width: 100%;
  }

  .home-tabs-module {
    width: 100%;
    align-items: flex-start;
  }

  .horizontal-scroll-gradient {
    z-index: 10;
    background-image: linear-gradient(90deg, var(--trans), var(--light-gray) 75%);
    width: 33%;
    height: 10%;
    position: fixed;
    inset: 39% 0% 0% auto;
  }

  .parallax-div, .parallax-div.parallax-div-2, .parallax-div.parallax-div-3 {
    left: auto;
  }

  .button-2.navigation-button {
    font-size: 2.5svw;
  }

  .hero-section.home-exterior-section {
    border-top-width: 1px;
  }

  .hero-section.home-id-section {
    border-top: 1px #000;
    justify-content: flex-start;
    align-items: center;
    min-height: 250vh;
  }

  .hero-section.home-tabs {
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  .main-card {
    border-width: 1px;
    width: 100%;
  }

  .main-card.testimonial-card {
    width: 90dvw;
  }

  .testmonial-card-module {
    justify-content: center;
    align-items: flex-start;
  }

  .team-module {
    flex-flow: column;
  }

  .portrait-div {
    width: 50vw;
    margin-top: 20px;
  }

  .portrait-div.relative-up {
    top: auto;
  }

  .portrait-div.rel-down {
    margin-top: 20px;
    margin-bottom: 20px;
    top: 0;
  }

  .abs-text {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    top: auto;
    right: 0%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .showcase-p.hero-p {
    text-align: center;
  }

  .feature-title {
    font-size: .7rem;
  }
}

@media screen and (max-width: 479px) {
  .section.home-id-section {
    min-height: 300vh;
  }

  .section.contact-form {
    height: 190vh;
  }

  .section.why {
    flex-flow: column;
  }

  .section.service-gal {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .section.testimonial-section {
    min-height: auto;
    max-height: 80vh;
  }

  /* Testimonial responsive - Mobile */
  .testimonial-wrapper {
    width: 75vw;
    margin: 3vh auto 1vh auto;
  }

  .testimonial-wrapper .ticker {
    min-height: 40vh;
    padding-top: 1vh;
  }

  .testimonial-wrapper .inner-ticker {
    gap: 0.5rem;
  }

  .testimonial-wrapper .main-card {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active {
    padding: 0;
  }

  .testimonial-wrapper .main-card.active .testimonial-para-full {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .testimonial-wrapper .testimonial-author {
    font-size: 0.85rem;
  }

  .testimonial-wrapper .star-rating {
    max-width: 7rem;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .arrow-box {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .navbar {
    border-style: solid none;
    border-width: 1px;
    border-color: var(--black-10) black;
    height: 10vh;
  }

  .h1 {
    font-size: 2.5rem;
  }

  .h1.about {
    margin-top: 10px;
    margin-right: 0;
    font-size: 4rem;
    line-height: 4rem;
  }

  .h1.project-showcase-h1 {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .h1.service-template {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .menu-button {
    border-left-width: 1px;
    border-right-style: none;
    border-right-width: 1px;
    width: 30vw;
  }

  .nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .nav-logo.large-nav-logo {
    width: 40px;
    height: 40px;
  }

  .nav-logo-div {
    left: auto;
  }

  .wide-nav-div {
    width: 70%;
  }

  .menu-line {
    width: 50px;
  }

  .p1 {
    font-size: .8rem;
    line-height: 1rem;
  }

  .p1.home-subheading {
    max-width: none;
    font-size: .8rem;
    line-height: 1rem;
  }

  .p1.about-hero-p {
    width: auto;
  }

  .button-1 {
    font-size: 1rem;
  }

  .button-1.nav-button {
    display: none;
  }

  .button-1.home-hero-button {
    font-size: 1rem;
  }

  .button-1.crumb {
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 5px;
    font-size: .8rem;
    line-height: 1.1rem;
  }

  .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .h2.opacity-fade {
    font-size: 2rem;
  }

  .hover-video {
    height: 50px;
  }

  .home-interior-title {
    font-size: clamp(0.5rem, 3vw, 0.75rem);
  }

  .home-vertical-h2-div {
    flex-flow: nowrap;
    width: 100%;
  }

  .sticky-home-div {
    min-width: 25vw;
    max-width: 25vw;
    height: 60px;
  }

  .service-block {
    justify-content: center;
    align-items: center;
    height: 10vh;
    padding: 0;
    overflow: hidden;
  }

  .exterior-horizontal {
    align-items: stretch;
  }

  .home-exterior-title {
    z-index: 2;
    color: var(--white);
    background-color: #00000080;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
  }

  .home-exterior-title:hover {
    color: var(--white);
  }

  .home-hero-heading-2 {
    font-size: 5svw;
  }

  .home-hero-div {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .home-id-paragraph {
    margin-bottom: 40px;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .div-50-id {
    width: 100%;
  }

  .h1-home {
    width: 1000vw;
    font-size: 20svw;
  }

  .fixed-menu {
    display: none;
    top: 0;
  }

  .menu-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-link.menu-link-button {
    padding: 20px 40px;
  }

  .hero-span {
    font-size: 13svw;
  }

  .home-card.windows-card {
    background-position: 100% 0;
    background-size: cover;
    height: 200px;
    display: none;
  }

  .div-75.service-why {
    margin-right: 0;
  }

  .home-tabs-module {
    margin-left: 0;
  }

  .horizontal-scroll-gradient {
    width: 10%;
  }

  .footer-typemark.mobile-typmark {
    line-height: 4rem;
  }

  .copyright {
    font-size: .7rem;
    line-height: 1rem;
  }

  .id-parallax-text {
    font-size: 1rem;
  }

  .menu-logo {
    object-fit: contain;
  }

  .menu-typemark {
    font-size: 3rem;
    line-height: 3rem;
  }

  .link-block {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .button-2 {
    font-size: 1rem;
  }

  .button-2.navigation-button {
    display: none;
  }

  .button-2.home-hero-button {
    font-size: 1rem;
  }

  .hover-services-wrapper {
    margin-top: 5vh;
  }

  .home-h1-subheading {
    color: var(--black-90);
    font-size: 5vw;
    line-height: 1rem;
  }

  .home-exterior-number {
    display: none;
  }

  .home-exterior-img {
    z-index: 1;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .exterior-home {
    width: 90vw;
    padding-left: 5vw;
  }

  .exteriorhomeimg {
    display: none;
  }

  .hero-section.home-id-section {
    min-height: 300vh;
  }

  .hero-section.footer {
    background-image: linear-gradient(to bottom, var(--black-50), var(--black-50)), url('../images/4-web-or-mls-integrated_contracting_team_photos-4_1.avif');
    background-position: 0 0, 45%;
  }

  .hero-section.about-hero {
    border-bottom-color: var(--trans);
    background-image: linear-gradient(#00000080, #00000080), url('../images/4-web-or-mls-integrated_contracting_team_photos-4_1.avif');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .hero-section.project-showcase-hero {
    padding-top: 10vh;
  }

  .faq-title {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .code-embed {
    height: 100%;
  }

  .gallery-track {
    justify-content: flex-start;
    align-items: center;
  }

  .div-50-2 {
    width: auto;
  }

  .h2-2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .template-img-item {
    flex: none;
    width: 80vw;
  }

  .service-img-wrapper {
    margin-top: 20px;
  }

  .div-left.test {
    margin-left: 0;
    padding-left: 0;
  }

  .div-left.narrower {
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }

  .div-service-gal-heading {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .testimonial-heading {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 2rem;
  }

  .testimonial-para-full {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: .7rem;
  }

  .testimonial-work-completed {
    width: 1.8rem;
    font-size: .4rem;
  }

  .testimonial-work-completed.patio {
    justify-content: center;
    align-items: center;
    width: 30%;
    display: flex;
  }

  .testimonial-work-completed.retaining-wall {
    justify-content: center;
    align-items: center;
    width: 1.8rem;
    font-size: .4rem;
    display: flex;
  }

  .testimonial-work-completed.small {
    width: 1.8rem;
    padding-left: 40px;
    padding-right: 40px;
    font-size: .4rem;
  }

  .testimonial-work-completed-wrapper {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .main-card {
    flex: none;
    width: 90dvw;
    height: 29.6875rem;
  }

  .main-card.windows-card {
    background-position: 100% 0;
    background-size: cover;
    height: 200px;
    display: none;
  }

  .main-card.testimonial-card {
    width: 90dvw;
  }

  .testmonial-card-module {
    margin-left: 0;
  }

  .about-hero-div {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 0;
  }

  .inner-ticker {
    justify-content: space-between;
    align-items: flex-start;
    width: 500vw;
    padding-right: 500dvw;
  }

  .ticker {
    padding-right: 20rem;
  }

  .team-module {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .portrait-div {
    width: 45vw;
    margin-left: 0;
    margin-right: 0;
  }

  .portrait-div.relative-up {
    top: -50px;
  }

  .portrait-div.rel-down {
    top: 50px;
  }

  .about-para {
    font-size: .8rem;
    line-height: 1rem;
  }

  .faq-title-div {
    padding: 10px;
  }

  .abs-text {
    bottom: -32px;
  }

  .integrated-highlight {
    font-size: 1rem;
    line-height: 1rem;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .link-block-footer {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .project-horiz {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .project-photo {
    width: 70vw;
    order: 1;
  }

  .project-photo.swiper-demo-1 {
    width: 70vw;
    top: 114%;
    left: 19%;
  }

  .project-photo.swiper-demo-2 {
    width: 70vw;
    top: 118%;
    left: 7%;
  }

  .showcase-p {
    text-align: center;
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .showcase-p.bigger {
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .project-h2 {
    padding-right: 15vw;
  }

  .project-div {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-top: 40px;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
    order: 2;
  }

  .abs-hero-block {
    text-align: center;
    width: 70vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .abs-hero-block.right {
    padding: 10px 5vw;
  }

  .rel-div {
    flex-flow: column;
  }

  .feature-title {
    font-size: .6rem;
    line-height: 1rem;
  }

  .star {
    width: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }
}


@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display Italic';
  src: url('../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
/* Services Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
}

.dropdown-toggle {
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
}

.dropdown-caret {
  width: 10px;
  height: auto;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-caret.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 99998;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--black-60);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: var(--black);
  padding-left: 25px;
}
