/* RESET */

*,
::after,
::before {
  box-sizing: border-box;
}

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Lora', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #fff;
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
	--colorPrimary: #4e779f;
  --red: #ae1e23;
  --lightRed: #c15858;
  --green: #5ea29a;
  --lightGreen: #cbdfdd;
  --brown: #7c7069;
  --lightbrown: #bdb1ab;
	--white: #fff;
  --light: #f0efec;
  --textbg:#f0f6f5;
	--lightGray: #e1ddda;
  --text: #535458;
	--grayFont: #675d57;
	--dark: #454649;
	--black: #000;
	}

/* FONTS */

@font-face {
  font-family: "PD";
  src: url("../fonts/PlayfairDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PD";
   src: url("../fonts/PlayfairDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PD";
   src: url("../fonts/PlayfairDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PD";
   src: url("../fonts/PlayfairDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
   src: url("../fonts/Raleway-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
   src: url("../fonts/Raleway-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
   src: url("../fonts/Raleway-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

  p {
      color: var(--text);
      font-family: "Raleway", sans-serif;
      font-weight: 500;
      font-size: 17px;
      margin-bottom: 20px;
      line-height: 170%;
      text-align: left;
  }

  h1 {
    font-family: 'PD', sans-serif;
    letter-spacing: 0.01em;
    font-size: 40px;
    color: rgb(255,255,255,1);
    text-transform: capitalize;
    font-weight: bold;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  h2 {
    font-family: 'PD', sans-serif;
    letter-spacing: .02em;
    font-size: 36px;
    color: var(--text);
    text-transform: capitalize;
    font-weight: 650;
    text-align: left;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-family: 'Raleway', sans-serif;
    letter-spacing: .02em;
    font-size: 18px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

  h5 {
    color: var(--red);
    font-family: 'Raleway';
    font-size: 21px;
    text-align: left;
    font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}

  .lightgray-bg {
    background-color: var(--lightGray);
  }

  .brown-bg {
    background-color: var(--brown);
  }

   .lightbrown-bg {
    background-color: var(--lightbrown);
  }

  .green-bg {
    background-color: var(--green);
  }

  .lightgreen-bg {
    background-color: var(--lightGreen);
  }

  .red-bg {
    background-color: var(--red);
  }

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

.post a:not(.learn-more) {
    color: var(--red);
    border-bottom: 2px dotted var(--red);
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 20px;
  position: relative;
  z-index: 5;
}

.content-wrapper.short {
  max-width: 1080px;
  padding: 50px 20px;
}

.content-wrapper.full {
  max-width: none;
  padding: 0px;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}


.post {
  max-width: 900px;
  margin: 0 auto;
}

.post p {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 20px;
  line-height: 1.8em;
}

.post p:last-of-type {
  margin-bottom: 0px;
}

.post h2 {
  text-align: left;
  margin: .6em 0 .8em;
}


.post ul {
 list-style: disc;
 padding-left: 40px;
 margin-bottom: 30px;
}

.post li {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 20px;
  line-height: 1.8em;
  /* font-family: 'Raleway'; */
  /* color: var(--text); */
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  /* font-size: 17px; */
  margin-bottom: 20px;
  /* line-height: 170%; */
  text-align: left;
}

.post li p {
  margin-bottom: 10px;
}

.wp-video {
    max-width: 720px;
    margin: 40px auto;
}

/* BUTTONS */

  .learn-more {
    display: inline-block;
    color: var(--white);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--red);
    transition: all .4s;
     font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
  }

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  a.learn-more.white {
    border: 2px solid var(--red);
    background-color: var(--white);
    color: var(--red);
}

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	  display: inline-block;
    color: var(--white);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--red);
    transition: all .4s;
	  border: none;
  }

  p.gform_required_legend {
    display: none;
}

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background-color: rgb(0,0,0,.4); */
      z-index: 0;
          background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 15%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.1) 100%);
  }

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
       width: 100%;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
       width: 100%;
  }

  .aligncenter {
      display: block;
      margin: 40px auto 40px;
      height: auto;
      width: 100%;
  }

  figure.wp-block-image.size-large img {
    width: 100%;
}

figure.wp-block-image.size-large {
    margin: 40px auto;
}

  .split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }

   /* Header */

 header.desktop {
    height: 110px;
    width: 100%;
    background-color: #e8e9e7;
}

.header-content-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding: 0px 3%;
}

.header-logo-container {
    height: 72px;
    /* width: 240px; */
    display: inline-block;
}

.header-logo-container .logo {
    height: 64px;
}

.header-content-content > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    column-gap: 30px;
}

ul#menu-main-menu {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    column-gap: 30px;
}

.header-logo-container svg {
    height: 64px;
    width: 240px;
}

#menu-main-menu > li {
    padding-bottom: 10px;
    position: relative;
}

#menu-main-menu > li a {
    font-family: 'Raleway', sans-serif;
    font-weight: 550;
    color: var(--text);
    font-size: 18px;
}

a.button.nav-button {
    background-color: #fff;
    color: var(--red);
    padding: 6px 12px;
    font-weight: 550;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
	   font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}

/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
      visibility: visible;
      opacity: 1;
      display: block;
      border-top: 3px solid #fff;
      position: absolute;
      left: 0;
      top: 36px;
      width: auto;
      min-width: 200px;
      filter: drop-shadow(1px 1px 1px #777);
      border-radius: 0px;
      overflow: hidden;
      background-color: #e8e9e7;
  }

  #menu-main-menu li:hover ul.sub-menu a {
      padding-bottom: 0px;
  }

  #menu-main-menu > li:not(.nav-cta):hover > a {
      text-decoration: none;
  }

  #menu-main-menu li.menu-item-has-children>a:after {
      font-family: 'Font Awesome 5 Free';
      content: '\f107';
      margin: 0 0 0 5px;
      font-weight:600;
  }

  .sub-menu {
      display: none;
      position: absolute;
      z-index: 20;
      margin: 0;
      height: auto;
      top: 10px;
      width: auto;
      min-width: 160px;
      background-color: var(--colorWhite);
  }

  .sub-menu li {
      margin: 0;
      display: block;
      text-align: left;
      background: var(--colorLight);
      padding: 8px 12px;
  }

  .sub-menu li:hover {
      background-color: var(--colorLightGray);
      color: var(--colorGrayFont);
  }

  .sub-menu li:hover a {
      color: var(--colorGrayFont);
  }

  .sub-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--colorGrayFont);
      text-transform: none;
      height: 100%;
      display: block;
      width: 100%;
  }

  .sub-menu a:hover {
      color: var(--colorOrange) !important;
  }
  

/* Nav Contact Button */

.learn-more.nav-contact-btn {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

/* Fixed Space */

.fixed-header-space {
    height: 0px;
    width: 100%;
}

a.button.nav-button {
    background-color: #fff;
    color: var(--red);
    padding: 6px 12px;
    font-weight: 550;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
	   font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}


/* HOME PAGE */
/* Home - Hero */
section#home-hero {
  position: relative;
  z-index: 0;
}

section#hero {
  display: block;
  max-height: 600px;
  height: 80vh;
  background-color: var(--colorDark);
  position: relative;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#hero h1 {
  font-size: 54px;
  font-family: 'mont bold', sans-serif;
  color: var(--colorWhite);
  text-align: center;
}

#hero h2 {
  font-family: 'mont', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--colorWhite);
  text-align: center;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin-top: 0px;
  background-color: var(--colorGold);
  position: relative;
}

section.internal-header h1, section.internal-header p.hero-title {
  color: var(--colorWhite);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: 'mont';
  width: 100%;
}

/* GALLERY PAGE */

.image-gallery-row {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  flex-flow: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
  }

  .image-gallery-container {
  height: 188px;
  overflow: hidden;
  }

  .image-gallery-container img {
  min-height: 200px;
  min-width: 100%;
  object-fit: cover;
  transition: .5s all;
  }

  .image-gallery-container img:hover {
  transform: scale(1.05);
  }

  a.image-gallery-container {
  border-bottom: none;
  border-radius: 6px;
  flex: 0 0 calc(20% - 12px);
  }

  a.image-gallery-container:hover {
    border-bottom: none;
  }


  /* Home Hero */

  .hero-image-container {
    overflow: hidden;
	position: relative;
	    height: 640px;
}

.hero-image-container img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

/* Container already has fixed height; make slide stack fill it */
.slideshow-container.hero-bg-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Stack slides and fade via opacity */
.mySlides {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
  /* background-* is already inline on each slide */
}

/* Visible slide */
.mySlides.is-active {
  opacity: 1;
}

/* Optional: if you have clickable content over slides later */
.hero-image-container { position: relative; overflow: hidden; }

.hero-copy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    padding: 60px 10%;
    justify-content: flex-start;
    align-items: center;
}

.hero-copy-container h1 {
    font-size: 4.25rem;
    max-width: 777px;
    margin-bottom: 30px;
    filter: drop-shadow(2px 4px 2px #333);
}

.video-container {
    position: relative;
}

/* Offset */

.offset-image-copy .background-layer {
    display: flex;
    position: relative;
}

.background-image-container {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    justify-content: flex-start;
    flex: 0 0 55%;
    max-height: 720px;
}

.background-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-layer {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
}

.top-layer-copy-container {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-color: #fff;
    box-shadow: 12px 12px 0px var(--green);
    filter: drop-shadow(2px 1px 2px #aaa);
}

.left .top-layer {
    justify-content: flex-end;
}

.top-layer-copy-container p {
  text-align: left;
}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--text);
}

.testimonial-source-row {
    display: flex;
    align-items: center;
}

p.source {
    padding: 0px 10px;
    flex: 0 0 auto;
    margin-bottom: 0px;
    color: var(--green);
    text-transform: uppercase;
    font-weight: bold;
}

.testimonial.long {
    margin-bottom: 40px;
}

.testimonial.long > p, .testimonial.testimonial-Full:first-of-type > p {
    font-family: 'PD';
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 0px;
    padding: 40px 5% 32px;
}

.testimonial.testimonial-Half > p, .testimonial.testimonial-Full p {
	font-family: 'Raleway';
    font-weight: 550;
    font-size: 24px;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 0px;
    padding: 40px 5% 32px;
}

.testimonials-wrapper {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 70px;
	row-gap: 70px;
}

.testimonial.testimonial-Full {
	flex: 0 0 100%;
}

.testimonial.testimonial-Half {
	flex: 0 0 calc(50% - 35px);
}

p.additional-source {
    padding-bottom: 7px !important;
    padding-top: 0px !important;
    font-size: 20px !important;
        color: #999;
}

.testimonial.testimonial-Full:not(:first-of-type) p.source {
    font-size: 18px;
    padding: 0px 20px;
    font-weight: bold;
}

section#testimonials-cta .content-wrapper {
    text-align: left;
}

a.cta-link {
    color: var(--red);
    font-weight: bold;
    font-family: 'Raleway';
}

.split-copy-container {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.split-image-container {
    flex: 0 0 50%;
    /* height: calc(100% + 150px); */
    /* margin-top: -75px; */
}

.split-image-container img {
    max-width: 100%;
    height: calc(100% + 150px);
    margin-top: -75px;
    object-fit: cover;
    filter: drop-shadow(2px 1px 2px #aaa);
}

.internal-hero-content p {
    font-family: 'Raleway', san-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 550;
    max-width: 720px;
    line-height: 140%;
}

.internal-hero-content h1 {
    font-size: 4rem;
}

.internal-hero-content h2 {
    color: var(--white);
    font-size: 28px;
}

.internal-hero-content {
    max-width: 860px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.internal-hero-content p:last-of-type {
    margin-bottom: 0px;
}

section#internal-hero {
    position: relative;
        z-index: 0;
}

/* Project */

.single-project :not(footer) .content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.single.single-project .internal-hero-content h1 {
    margin-bottom: 20px;
}

.single-project h3 {
    color: #fff;
}

.single-features {
    display: flex;
    column-gap: 12px;
}

.single-features p {
    margin-top: 20px;
    font-size: 17px;
}

.portfolio-gallery-container img {
    max-width: 100%;
}

.projects-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 8px;
    column-gap: 8px;
    flex-flow: wrap;
}

.project-card {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    max-height: 340px;
}

.project-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.project-card h2 {
    position: absolute;
    left: 16px;
    bottom: 0;
    color: var(--white);
    margin-bottom: 16px;
}

.small-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,.3);
}

/* Smooth fade on results container */
#portfolio-projects .projects-row{
  opacity: 1;
  transition: opacity 220ms ease-in-out;
  will-change: opacity;
}


/* don't change opacity hereÃ¢â‚¬â€just disable clicks while loading */
#portfolio-projects .projects-row.is-loading{
  opacity:.5;
  pointer-events:none
}

/* used for fade-out */
#portfolio-projects .projects-row.fade-out{ 
  opacity:0; 
}

@media (prefers-reduced-motion: reduce){
  #portfolio-projects .projects-row{ transition: none; }
}

.filter-bar-column h3 {
    margin-bottom: 10px;
}

section#portfolio-projects .content-wrapper {
    padding-top: 0px;
}

#project-filters .filter-bar{
  display:flex;
  align-items: flex-start;
  gap:16px;
}

#project-filters h3{
  margin: 0 12px 10px 0;
  color: var(--black);
}

#project-filters .filters{
  display:flex;
  gap: 6px 12px;
  flex-wrap:wrap
}

#project-filters .feature-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:18px
}

#project-filters .btn-clear {
    margin-left: auto;
    border: 2px solid var(--red);
    background: transparent;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    flex: 0 0 auto;
    color: var(--red);
    font-weight: 500;
}

/* Residential */

.small-split-container {
    flex: 0 0 calc(33.3% - 20px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.big-small-split {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    column-gap: 40px;
}

.big-split-container {
    flex: 0 0 calc(66.7% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 5px;
}

.big-split-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.small-split-container h2 {
    max-width: 350px;
}

.big-split-container div {
    aspect-ratio: 1;
    overflow: hidden;
}

.short-content {
    max-width: 860px;
}

.brown-bg h2 {
    color: var(--white);
}

.brown-bg p {
    color: var(--white);
}

.no-margin {
    margin-bottom: 0px;
}

#reasons h3 {
    color: var(--text);
    font-family: 'PD';
    text-transform: capitalize;
    font-weight: 800;
    font-size: 28px;
}

#reasons .content-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
}

section#contact-cta p {
    font-size: 34px;
    text-align: center;
    max-width: 920px;
    margin: 0 auto 30px;
    font-family: 'PD';
    font-weight: 800;
    line-height: 150%;
}

.button-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.line-heading-row {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 17px;
    margin-bottom: 30px;
}

.line-heading-row .line {
    background-color: #fff;
}

.line-heading-row h2 {
    color: var(--white);
    flex: 0 0 auto;
    margin-bottom: 0px;
        line-height: 140%;
}

.design-intro-container p {
    color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
}

.image-copy-split {
    min-height: 480px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-copy-split-image {
    flex: 0 0 55%;
    height: 480px;
}

.image-copy-split-copy.left {
    padding-right: 60px;
}

.image-copy-split-copy.right {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.image-copy-split-image .background-image-container {
    width: calc(100% - 12px);
    background-color: #fff;
    box-shadow: 12px 12px 0px var(--green);
    filter: drop-shadow(2px 1px 2px #555);
    height: 100%;
    position: relative;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.centered-content-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.centered-content-container p {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 20px;
}

.centered-content-container p {
    margin-bottom: 20px;
}

.centered-content-container p:last-of-type {
    margin-bottom: 0px;
}

.offset-image-copy .background-layer.right {
    justify-content: flex-end;
}


.location-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.areas-container {
    background-color: var(--lightGray);
    padding: 20px;
}

.location-content-areas {
    flex: 0 0 60%;
}

.location-contact p a {
    color: var(--red);
    margin-bottom: 0px;
}

.location-contact p {
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.location-address {
    padding: 20px 0px 40px;
    /* min-width: 320px; */
    flex: 0 0 auto;
}

.location-content-copy {
    flex: 0 0 40%;
}

.location-address p {
    margin-bottom: 0px;
}

/* Footer */

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.footer-form-container h3 {
    color: #fff;
    font-family: 'PD';
    text-transform: capitalize;
    font-size: 36px;
    margin-bottom: 30px;
}

ul#menu-footer-menu {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

ul#menu-footer-menu li a {
    color: #fff;
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 20px;
}

.footer-menu {
    margin-bottom: 30px;
}

.footer-social-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 30px;
}

.footer-social-row a {
    color: #fff;
    font-size: 32px;
}

p.servicing {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}

p.servicing a {
    text-decoration: underline;
}

.footer-copyright a {
    text-decoration: underline;
}

.footer-copyright p {
    margin-bottom: 0px;
    text-align: center;
    font-size: 18px;
}

/* Forms */

.gform_wrapper.gravity-theme .gfield {
    text-align: left;
}

.gform_wrapper.gravity-theme .gfield label {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 20px;
    font-weight: 600;
}

#request-a-quote .gform_wrapper.gravity-theme .gfield label, .subcontractors-form-container .gform_wrapper.gravity-theme .gfield label, #request-a-quote .gform_wrapper.gravity-theme legend {
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}

.subcontractors-form-container .gform_wrapper.gravity-theme .gfield legend.gfield_label_before_complex {
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}


.gform_wrapper.gravity-theme .gfield .gfield_required {
    color: #fff;
}

.subcontractors-form-container .gform_wrapper.gravity-theme .gfield .gfield_required {
    color: var(--red);
}

.ginput_container input {
    border: none;
    border-radius: 4px;
    height: 58px;
}

.subcontractors-form-container .ginput_container input {
    border: 2px solid #ccc;
    border-radius: 4px;
    height: 50px;
}

div#gform_wrapper_2 {
    max-width: 600px;
    width: 100%;
}

.footer-form-container {
    max-width: 540px;
    width: 100%;
    margin-bottom: 30px;
}


.gform-footer.gform_footer.top_label {
    padding-top: 30px;
}

section#landscaping-cta a.learn-more {
    margin: 20px auto 0px 0px;
}

section#landscaping-cta .content-wrapper {
    text-align: left;
}

.landscaping-heading h2 {
    font-family: 'Raleway';
    font-weight: 550;
    font-size: 2rem;
}

p.large-copy {
    font-size: 20px;
}

.big-text-block.green-bg p {
    font-size: 60px;
    color: #fff;
    line-height: 120%;
    text-align: center;
    font-family: 'PD';
    margin-bottom: 0px;
    font-weight: 600;
}

.big-text-block.green-bg {
    padding: 30px 20px;
    filter: drop-shadow(10px 10px 1px var(--lightGreen));
}

.services-content {
    max-width: 1040px;
    margin: 0 auto;
}

.services-content h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.services-content ul {
    list-style: none;
    columns: 3;
    margin: 0 auto;
    padding: 0px;
}

.services-content ul li p {
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Raleway';
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
}

.services-content ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
}

.services-content ul li div {
    height: 44px;
    flex: 0 0 44px;
}

.top-layer ul {
    list-style: square;
}

.top-layer ul li {
    font-family: 'Raleway';
    font-size: 17px;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 10px;
}

.services-row.lightgreen-bg {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
}

.services-column h2 {
    font-size: 26px;
}

.services-column ul li {
    text-align: left;
}

.services-column a.learn-more {
    border-color: var(--green);
    color: var(--green);
    margin: 10px auto 0px 0px;
}

.services-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 341px;
}

.services-column ul {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.services-column ul li {
    font-family: 'Raleway';
    font-weight: 500;
    margin-bottom: 12px;
}

.single section#internal-hero {
    background-position-y: center !important;
    height: 580px;
}

.single .internal-hero-content h1 {
    margin-bottom: 0px;
    font-size: 64px;
}

section.blog-list {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    row-gap: 10px;
    column-gap: 10px;
}

.blog-teaser {
    flex: 0 0 calc(50% - 5px);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 260px;
    \: #efefef;
    filter: drop-shadow(1px 1px 4px #ccc);
    background: #fff;
}

.blog-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

a.blog-thumb {
    display: block;
    flex: 0 0 50%;
    max-width: 280px;
    position: relative;
}

.blog-teaser-copy {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
}

h2.blog-title {
    margin-bottom: 10px;
    font-size: 38px;
    color: var(--red);
        text-transform: none;
}

time {
    font-family: 'Raleway';
    font-weight: 500;
    text-transform: uppercase;
     font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}

h2.blog-title:hover {
    color: var(--green);
}


.pagination {
  width: 100%;
  margin-top: 40px;
}

nav.navigation.pagination {
  background-color: #fff;
  padding-top: 30px;
  height: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  background-color: transparent;
  justify-content: center;
  height: 47px;
}

a.page-numbers {
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
  font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}


a.page-numbers:last-of-type {
  margin-right: 0px;
}

span.current {
  
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-image: var(--gray);
  padding: 8px;
  border-radius: 4px;
  color: var(--red);
  margin-right: 8px;
  font-variant-numeric: lining-nums;   /* force uniform height */
  font-feature-settings: "lnum"; 
}

span.page-numbers.dots {
  margin-right: 8px;
}

section#small-header {
    height: 180px;
    background-color: var(--brown);
}

section#small-header .content-wrapper {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-end;
}

section#small-header h1 {
    font-size: 54px;
}

.page-template-outdoor-living .image-copy-split-image .background-image-container {
    filter: none;
    box-shadow: none;
}

.page-template-commercial .big-split-container > div {
    max-height: 480px;
    width: 100%;
}

#services .content-wrapper {
    padding: 0;
    /* max-width: none; */
}

/* Careers Accordion */


.panel {
    height: auto;
    display: none;
    padding: 10px 20px 24px;
}


.accordion-title-container:not(.mobile-menu-accordion):hover {
    cursor: pointer;
}

.accordion-title-container:not(.mobile-menu-accordion) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 10px;
    background-color: var(--colorBlue);
    margin-bottom: 0px;
    padding-right: 16px;
    border-radius: 0px;
    column-gap: 14px;
}

.accordion-title-container:not(.mobile-menu-accordion) h3 {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 0px;
    color: var(--colorWhite);
    font-size: 24px;
    font-family: 'Mont', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}

.jobs-row {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: stretch;
    column-gap: 30px;
    row-gap: 30px;
}

.job-listing-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--white);
    box-shadow: 0 3px 6px rgba(83, 84, 88, 0.25);
    padding: 30px;
}

.job-listing-card:hover {
    background-color: var(--light);
}

.job-listing-card:hover h2 {
    color: var(--green);
}

.job-listing p {
    margin-bottom: 0px;
    font-size: 19px;
}

.job-listing h2 {
    color: var(--red);
    font-family: 'Raleway';
    font-weight: 550;
    font-size: 28px;
}

.accordion-title-container.accordion h2 {
    margin-bottom: 0px;
    line-height: 100%;
}

.accordion-title-container.accordion span {
    padding-top: 10px;
}

.careers-row.lightgreen-bg {
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 50px;
}

.careers-benefits h2 {
    font-size: 30px;
    line-height: 100%;
}

.careers-benefits {
    flex: 0 0 355px;
}

.careers-benefits ul {
 list-style: disc;
 padding-left: 40px;
 margin-bottom: 30px;
}

.careers-benefits  li {
  text-align: left;
  color: var(--colorDarkFont);
  font-size: 17px;
  line-height: 1.2em;
  /* font-family: 'Raleway'; */
  /* color: var(--text); */
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  /* font-size: 17px; */
  margin-bottom: 10px;
  /* line-height: 170%; */
  text-align: left;
}

.careers-copy {
    padding-top: 6px;
}

.careers-copy p {
    font-size: 20px;
}

section#careers-intro p {
    font-size: 24px;
    margin-bottom: 0px;
    font-weight: 600;
}

section#careers-intro .content-wrapper {
    padding-bottom: 0px;
}

.multiple-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.multiple-buttons a:first-of-type:not(.learn-more) {
    color: var(--red);
    text-decoration: underline;
    font-weight: 500;
}

.internal-hero-content .button-container {
    display: flex;
    justify-content: flex-start;
    margin: 30px auto 0px 0px;
    column-gap: 30px;
}

p.contact-address {
    margin-bottom: 0px;
}

.page-template-contact .line {
    margin: 40px auto;
    background-color: #ccc;
}

h3.contact-heading {
    color: var(--text);
    font-size: 24px;
    margin-bottom: 20px;
}

#request-a-quote div#input_1_10 > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    height: 34px;
}

#request-a-quote div#input_1_10 > div label {
    font-size: 18px;
    margin-bottom: 0px;
    color: #777;
}

#request-a-quote div#input_1_10 {
    margin-bottom: 24px;
}

fieldset#field_1_10 {
    margin-top: 20px;
}

.gchoice.gchoice_1_14_1 > div {
    height: 24px;
}

div#input_1_14 > div {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

#request-a-quote div#input_1_14 > div label {
    margin-bottom: 4px;
}

div#gfield_description_1_14 {
    padding-top: 0px;
    margin-bottom: 20px;
}

.team-members-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 30px;
    column-gap: 30px;
    flex-flow: wrap;
}

.team-member {
    flex: 0 0 calc((100% / 3) - 20px);
    background-color: #fff;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1;
}

.team-member-image {
    overflow: hidden;
    flex-shrink: 1;
}

h3.team-member-name {
    margin-top: 20px;
    padding-left: 20px;
}

p.team-member-title {
    padding-left: 20px;
}

/* RESPONSIVE */

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


	}

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


	}

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

    .mobile-only {
    display: none !important;
    }

	}

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

		
		/* Header Mobile */
	.desktop {
			display: none !important;
		}
     

    header.mobile-only img {
        height: 54px;
    }

      header.mobile-only {
        display: flex;
        padding: 0px 23px 0px 20px;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: fixed;
        z-index: 1000;
        background-color: #e8e9e7;
        width: 100%;
        margin-top: -70px;
    }

    header.mobile-only a.logo-link {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        padding: 3px 0;
    }

    .fixed-header-space {
        height: 70px;
        display: block;
        width: 100%;
    }

		
		.logo-link svg {
    height: 44px;
    width: auto;
}
		
    /* Hamburger Icon */

    .mobile-navbar ul {
        list-style: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .mobile-navbar ul {
        margin-bottom: 0px;
    }

    #menu-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 7px auto 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 999;
    }

    #menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--grayFont);
        border-radius: 6px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    #menu-icon.open span {
        background: var(--grayFont);
    }

    #menu-icon span:nth-child(1) {
        display: none;
    }

    #menu-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 13px;
    }

    #menu-icon span:nth-child(4) {
        top: 26px;
    }

    #menu-icon.open span:nth-child(1) {
        display: none;
    }

    #menu-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 12px;
    }

    #menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 11px;
    }

    #menu-icon.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    /* Mobile Nav Menu */



    .sidenav.open {
        height: calc(100vh - 120px);
        padding-bottom: 154px;
        padding-top: 20px;
    }

    .sidenav a {
        padding: 3px;
        text-decoration: none;
        font-size: 21px;
        color: var(--grayFont);
        display: block;
        transition: 0.3s;
        font-family: "Raleway", sans-serif;
        text-align: center;
    }

    #sidenav .faq-accordion-title-container.mobile-menu-accordion h3 {
        font-size: 24px;
        color: var(--grayFont);
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #sidenav h3 {
        font-size: 24px;
        color: var(--white);
    }

      #sidenav .faq-accordion-title-container.mobile-menu-accordion {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        margin-bottom: 10px;
    }

    #sidenav .panel {
        padding: 10px 0px;
    }

    .sidenav {
        height: 0px;
        width: 100%;
        position: fixed;
        z-index: 990;
        top: 70px;
        left: 0;
        background-color: #e8e9e7;
        overflow-x: hidden;
        transition: 0.5s all;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-left: 20px;
      }

      .mobile-navbar ul {
        list-style: none;
        margin-top: 0px;
        padding: 0px;
      }

      ul#menu-mobile-menu {
          display: block;
      }

      .additional-link {
    margin-bottom: 20px;
}

  #mobile-nav li {
        text-align: left;
        border-bottom: none;
        display: block;
        margin-bottom: 20px;
      }

      #mobile-nav li:last-of-type {
        border: none;
      }

      #mobile-nav a, #mobile-nav ul.sub-menu a {
          padding: 2px;
          text-decoration: none;
          font-size: 19px;
          color: var(--grayFont);
          display: block;
          transition: 0.3s;
          font-family: 'Raleway';
          font-weight: 550;
          text-transform: capitalize;
          letter-spacing: .02em;
          text-align: center;
      }

      #mobile-nav ul.sub-menu a {
            font-weight: 550;
      }

      #mobile-nav ul.sub-menu {
        position: relative;
        margin-bottom: 30px;
        margin-top: 10px;
        background-color: #ddd;
        padding: 20px 0px;
      }

      a.mobile-submenu-link {
        color: var(--white);
        font-size: 20px;
        margin-left: 20px;
      }

      .sidenav.open {
        height: calc(100vh - 80px);
        padding-bottom: 100px;
        padding-top: 50px;
      }

      #mobile-nav ul {
        list-style: none;
        padding-left: 0px;
      }

      .menu-main-menu-container {
    justify-content: center;
    height: auto;
}

ul#menu-main-menu-1 {
    width: 100%;
}

#mobile-nav li a {
    text-align: center;
}

#mobile-nav li a .sub-menu a {
    text-align: center;
}

#mobile-nav .sub-menu li:last-of-type {
    margin-bottom: 0px;
}
      


      .fixedPosition {
        position: fixed;
      }

      .hero-copy-container h1 {
    font-size: 2rem;
}

.hero-image-container {
    height: 480px;
}

.background-layer.left {
    flex-direction: column-reverse;
    row-gap: 50px;
}

.top-layer {
    position: relative;
}

.top-layer-copy-container {
    flex: none;
    width: 100%;
}

.split {
    flex-direction: column;
    row-gap: 30px;
}

.split-copy-container {
    flex: none;
    width: 100%;
}

.split-image-container {
    flex: none;
    width: 100%;
}

.split-image-container img {
    margin-top: 0px;
}

#menu-main-menu-1 .sub-menu li {
    padding: 0px 12px;
}

ul#menu-footer-menu {
    flex-direction: column;
    row-gap: 20px;
}

p.servicing {
    text-align: center;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 18px;
}

.internal-hero-content h1 {
    font-size: 2.5rem;
}

.image-copy-split {
    flex-direction: column;
    row-gap: 50px;
}

.image-copy-split-copy.left {
    padding: 0px;
}

.image-copy-split-image {
    flex: none;
    height: 360px;
    width: 100%;
}

.image-copy-split-copy.right {
    padding: 0;
}

.background-layer.right {
    flex-direction: column;
    row-gap: 50px;
}

.big-small-split {
    flex-direction: column-reverse;
    row-gap: 40px;
}

.projects-row {
    flex-direction: column;
}

.project-card {
    flex: none;
    width: 100%;
    height: 340px;
}

#project-filters .filter-bar {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#project-filters .btn-clear {
    margin-left: 0;
}

.testimonial.testimonial-Half {
    flex: 0 0 100%;
}

.blog-teaser {
    flex: 0 0 100%;
    flex-direction: column;
}

a.blog-thumb {
    width: 100%;
    flex: none;
    height: 300px;
    max-width: none;
}

section.blog-list {
    row-gap: 40px;
}

.single section#internal-hero {
    min-height: 400px;
    height: auto;
}

.internal-hero-content p.blog-date {
    font-size: 14px;
}

.single .internal-hero-content h1 {
    font-size: 2.5rem;
}

.services-row.lightgreen-bg {
    flex-direction: column;
    row-gap: 30px;
}

.team-members-row {
    flex-direction: column;
}

.team-member {
    flex: none;
}

.careers-row.lightgreen-bg {
    flex-direction: column;
    padding: 20px;
}

.careers-benefits {
    flex: none;
}
		
		a.job-listing-card {
    flex: 0 0 100%;
}

  }

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

  }

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

  }

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

  }
