/* 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 {
	--orange: #F47A20;
	--white: #f8f8f8;
    --gray: #929497;
	--lightgray: #bebebe;
	--dark: #231F20;
	--black: #000;
	}

/* FONTS (using the files you have: Light, Bold, ExtraBold .ttf) */
@font-face{
  font-family:"Mont";
  src:
    url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Mont";
  src:
    url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Mont";
  src:
    url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}


/* Typography */
body { 
  font-family: "Mont", system-ui, -apple-system, sans-serif; 
  font-weight: 300; /* use Light since no Regular (400) file is present */
}
strong, b { font-weight: 700; }
em, i { font-style: italic; } /* will be synthesized since no italic files */

p, li {
  color: var(--dark);
  font-family: "Mont", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 29px;
  line-height: 120%;
  /* max-width: 468px; */
}

li {
    margin-bottom: 6px;
}

h1 {
    font-family: 'Mont', sans-serif;
    letter-spacing: .02em;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Mont', sans-serif;
    letter-spacing: .02em;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 36px;
    text-transform: none;
    line-height: 90%;
}

h3 {
    font-family: 'Mont', sans-serif;
    font-size: 22px;
    line-height: 100%;
    margin-bottom: 10px;
}


.white {
    color: #fff;
}

.gray {
    color: var(--gray);
}

.dark {
    color: var(--dark);
}

.orange {
    color: var(--orange);
}

.lightgray {
    color: var(--lightgray);
}

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


.white-bg {
    background-color: #fff;
}

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

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

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

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

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

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

/* LINKS */

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

.post a:not(.learn-more) {
  color: var(--colorPrimary);
}

.post a:hover {
  border-bottom: 2px dotted var(--colorPrimary);
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  display: block;
}


.post {
  max-width: 1000px;
  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 li:before {
  font-family: 'FontAwesome';
  content: '\f0da';
  margin: 4px 8px 0 0;
  color: var(--colorDark);
  font-size: 16px;
}

.post ul {
  list-style: none;
  padding-left: 20px;
}

.post li {
  display: flex;
  font-family: 'Jost', sans-serif;
  color: var(--colorDark);
  font-size: 20px;
  font-weight: 400;
}

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


/* BUTTONS */

  .learn-more {
    display: inline-block;
    height: auto;
    min-width: 220px;
    text-align: center;
    align-items: center;
    padding: 10px 20px;
    text-transform: capitalize;
    font-family: 'Mont', sans-serif;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 20px;
    transition: all .4s;
    border-radius: 0em 0 0em 0;
    corner-shape: bevel;
  }

  .learn-more {
    --d: 12px;
    /* control the depth */
    border-radius: 0 var(--d);
    corner-shape: bevel;
    border-right: var(--d) solid #0004;
    border-bottom: var(--d) solid #0008;
    box-sizing: border-box;
}


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



/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgb(255,255,255,.7);
      z-index: 10;
  }

 .gradient.overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, .4) 33%, rgba(255, 0, 0, .1) 67%, rgba(0, 0, 0, .9) 100%);
} 

/* FORMATTING */

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

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

  .aligncenter {
      display: block;
      margin: 0 auto 20px;
      height: auto;
  }

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

   /* Header */

   header {
    width: 100%;
    position: relative;
    display: block;
    height: 110px;
    background-color: var(--white);
    z-index: 15;
    padding: 0px 20px;
    transition: all .5s;
    border-bottom: 4px solid var(--lightgray);
}

.header-logo-container img {
    height: 80px;
    object-fit: contain;
    width: auto;
}

.header-container {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
}

.header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-company {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    height: 80px;
}

p.company-name {
    margin-bottom: 0px;
    font-family: 'Mont', sans-serif;
    font-size: 36px;
}

p.tagline {
    margin-bottom: 0px;
    font-size: 24px;
}

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


/* HOME PAGE */
/* Home - Hero */


section#hero {
        position: relative;
    min-height: 600px;
    padding: 0px 7% 0px;
    display: flex;
    /* width: 100%; */
    /* height: 100%; */
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

img.hero-bg {
    position: absolute;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    right: 0;
    top: 0px;
	object-position: top;
}

img.triangle {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 15;
    width: 15%;
}

div#hero-content {
    position: relative;
    z-index: 15;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.hero-copy {
        flex: 0 0 50%;
}

.hero-copy img {
    height: 80px;
    margin-left: 10px;
    margin-bottom: -5px;
}

.vertical-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 20px;
}

img.background-image {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#hero h1 {
    font-size: 96px;
    font-family: 'Mont', sans-serif;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 90%;
    /* max-width: 426px; */
    color: var(--dark);
}

/* Why */

.why-choose-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-choose-images {
    flex: 0 0 50%;
    padding-right: 50px;
}

.why-choose-image img:nth-of-type(2) {
    border-top: 5px solid var(--lightgray);
}

.why-choose-copy {
    flex: 0 0 67%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 60px;
}

.why-choose-copy p {
    text-align: left;
    font-size: 16px;
    line-height: 140%;
}

.why-choose-copy h2 {
    color: var(--dark);
    font-weight: 800;
    font-size: 36px;
    text-transform: none;
    max-width: 500px;
    line-height: 90%;
    margin-bottom: 20px;
}

.why-choose-images-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}

.why-choose-image-column {
    flex: 0 0 calc((100% / 3) - 10px);
    height: 400px;
    display: flex;
    flex-direction: column;
}

.why-choose-image-column-container {
    display: flex;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 1em;
}

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

.why-choose-image-column.reverse {
    justify-content: flex-end;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.why-choose-image {
    flex-shrink: 1;
    padding: 10px;
    position: relative;
}

.why-choose-image .triangle {
    width: 15%;
}


.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 20px;
    margin-bottom: 50px;
}

.step-container.white-bg {
    padding: 30px 20px;
    flex: 0 0 calc((100% / 4) - 20px);
    box-shadow: 0px 0px 8px #eee;
    border-radius: .75em;
}

.step-container.white-bg img {
    height: 60px;
}

.step-container.white-bg h3 {
    color: var(--dark);
    font-size: 16px;
    text-transform: none;
    text-align: center;
    line-height: 140%;
}

.step-container.white-bg p {
    font-size: 14px;
    margin-bottom: 0px;
}

p.big-body-text.dark {
    font-size: 23px;
    margin: 0 auto 40px;
    max-width: 900px;
    line-height: 140%;
}

/* 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: 'PT';
  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;
  }


  .industries-row.dark-bg h3 {
    color: var(--orange);
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 30px;
}

.industries-row.dark-bg {
    padding: 24px 20px 32px;
    border-radius: .75em;
}

.industries-column {
    flex-direction: column;
    row-gap: 30px;
    display: flex;
    margin-bottom: 40px;
}

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

.industries-row-row .vertical-line {
    flex: 0 0 2px;
    background-color: var(--orange);
}

.industries-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding: 0px 20px 0px 0px;

}

.industries-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding: 0px 24px;
}

.industries-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc((100% / 3) - 4px);
    padding-left: 30px;
}

.industries-info p {
    color: var(--white);
    font-size: 16px;
    text-align: left;
    line-height: 140%;
    margin-bottom: 0px;
}

.industries-list ul {
    margin: 0;
}

.industries-list ul li p {
    margin-bottom: 0px;
}

.results-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.white-bg.testimonial-container {
    flex: 0 0 calc((100% /3) - 30px);
        padding: 30px 20px;
    box-shadow: 0px 0px 8px #eee;
    border-radius: .75em;
}

p.quote {
    text-align: left;
        font-style: italic;
}

p.source {
    text-align: left;
    font-weight: 700;
    margin-bottom: 0px;
}

.results-content h2 {
    margin-bottom: 50px;
        font-size: 30px;
}

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

.why-choose-container {
    background-color: var(--lightgray);
    padding: 10px;
    flex: 0 0 calc((100% / 3) - 30px);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.choose-container h3 {
    font-size: 16px;
    text-transform: none;
    margin-bottom: 2px;
}

.choose-container p {
    text-align: left;
    font-size: 15px;
    margin-bottom: 0px;
}

.why-choose-content h2 {
    margin-bottom: 30px;
    font-size: 30px;

}

/* Benefits */

.benefits-container p {
    font-size: 18px;
}

.benefits-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    z-index: 5;
    position: relative;
}

.benefit-container {
    flex: 0 0 calc((100% / 3) - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.benefit-icon img {
    height: 200px;
}


.benefit-container p {
    font-size: 17px;
}

.line {
    height: 2px;
    border-bottom: 3px solid var(--blue);
    flex: 0 0 40px;
    height: 100px;
}

.benefits-rows {
    position: relative;
}

.benefits-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    /* align-items: center; */
    justify-content: center;
    z-index: 0;
    top: 50px;
}

.benefits-bg img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-copy-inner-container h2 {
    margin-bottom: 30px;
}

.contact-copy-inner-container a.orange {
    font-size: 24px;
    margin: 14px 0px 18px;
    display: block;
    font-weight: 600;
}

.contact-container p.label {
    font-weight: 600;
}

.contact-container p {
    color: var(--white);
    margin-bottom: 8px;
}

#contact .dark-bg {
    height: 500px;
    z-index: 0;
    width: 100%;
    position: absolute;
}

.contact-form-container {
    flex: 0 0 50%;
    padding-right: calc(100% * .07);
}

div#gform_fields_1 > div {
    text-align: left;
}

.form-logo img {
    height: 80px;
}

.contact-copy-container {
    padding-left: calc(100% * .07);
    position: relative;
    padding-right: 50px;
    flex-grow: 1;
}

.contact-form-inner-container {
    z-index: 10;
    position: relative;
    background-color: var(--white);
    padding: 30px;
    filter: drop-shadow(2px 2px 2px #333);
    z-index: 12;
}

p.gform_required_legend {
    display: none;
}

.form-logo {
    text-align: center;
    margin-bottom: 20px;
}
.team-members-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

div.team-member-container img:not(.triangle) {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

div.team-member-container {
    flex: 0 0 calc((100% / 3) - 30px);
    display: flex;
    flex-direction: column;
}

.team-member-image-container img.triangle {
    position: absolute;
    bottom: -17px;
    right: -10px;
    top: auto;
    z-index: 15;
    width: 67px;
}

/* Services */

.services-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.service-container.blue-bg {
    flex-grow: 1;
    flex: 1;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2em;
}

.services-row .line {
    flex: 0 0 5%;
    height: 2px;
    background-color: var(--blue);
}

.service-container h3 {
    color: var(--green);
    text-align: left;
    font-size: 29px;
    max-width: 226px;
    line-height: 120%;
    margin-bottom: 14px;
}

img.service-logo-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
}

.service-container.blue-bg p {
    text-align: left;
    color: var(--white);
    margin-bottom: 0px;
}

.services-row:first-of-type {
    margin-bottom: 40px;
}

/* Expect */

section#expect {
    position: relative;
    padding: 60px 0px;
}

section#expect img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
	    object-fit: cover;
}

section#expect .content-wrapper {
    z-index: 10;
    position: relative;
}

.expect-row {
    display: flex;
    flex-flow: wrap;
    row-gap: 40px;
    column-gap: 40px;
    justify-content: space-between;
    margin-top: 60px;
}

.expect-container {
    flex: 0 0 calc((100% / 3) - 40px);
    text-align: left;
}

.expect-cta-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expect-container h3 {
    color: #fff;
    font-size: 29px;
    line-height: 90%;
    margin-bottom: 10px;
}

.expect-container p {
    color: #fff;
    font-size: 16px;
}

.expect-container h3:first-of-type {
    margin-bottom: 0px;
}

.multiple-buttons {
    display: flex;
    column-gap: 14px;
    justify-content: center;
}

#expect .overlay {
    background-color: rgb(0, 0, 50, .8);
}

/* FAQ */

section#faq h2 {
    color: var(--gray);
}

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

.panel p {
    text-align: left;
}


section#faq h3 {
    color: var(--gray);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

#faq p.gray {
    color: var(--gray);
    font-size: 22px;
}

.faq-accordion-title-container.accordion {
    background-color: var(--blue);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    padding: 20px;
}

.faq-container {
    flex-direction: column;
    display: flex;
    row-gap: 8px;
}


section#faq .faq-container .faq-accordion-title-container.accordion h2 {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
    margin-bottom: 0px;
}

.reviews-container {
    max-width: 1240px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px 40px;
    border-radius: 20px;
    filter: drop-shadow(2px 2px 2px #333);
}

section#faq {
    padding-bottom: 50px;
}

.reviews-row {
    display: flex;
    flex-direction: row;
    column-gap: 50px;
    margin-top: 40px;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.reviews-static-column {
    flex: 0 0 auto;
}

.certifications img {
    flex: 0 0 auto;
    max-height: 50px;
}

.stars {
    margin-bottom: 10px;
}

.stars i {
    font-size: 20px;
    color: var(--green);
}

p.review-name {
    font-weight: 600;
    margin-bottom: 0px;
}

.reviews-static-column > img {
    width: 180px;
    margin: 0 auto 30px;
}

.review-slide p.date {
    font-size: 15px;
}

.reviews-swiper {
    max-width: 600px;
}

.reviews-slider-column {
    flex-grow: 1;
}

section#reviews {
    position: relative;
}

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

.inner-strip {
    height: 60%;
    width: 100%;
 
}

.still-questions-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1080px;
}

.still-questions-images {
    flex: 0 0 400px;
    position: relative;
    height: 380px;
}

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


.still-questions-copy h2 {
    text-align: left;
}

.still-questions-copy p {
    text-align: left;
}

.still-questions-copy a.learn-more {
    margin: 0 auto 0 0;
}

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

.about-copy {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 50px;
}

.about-copy > * {
    text-align: left;
}

.about-copy h2 {
    font-size: 36px;
}

.contact-form-content.darker-bg {
    border-radius: .75em;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ginput_container input {
    border: 2px solid var(--lightgray);
    border-radius: .5em;
    height: 48px;
    background-color: #ddd;
    color: var(--dark);
}

textarea {
	border: 2px solid var(--lightgray);
    border-radius: .5em;
    background-color: #ddd;
    color: var(--dark);
}

::placeholder {
	color: var(--dark);
	font-weight: 400;
	padding-left: 10px;
	font-size: 13px;
}

div#field_1_9 label {
    	color: #eee;
	font-weight: 600;
	padding-left: 10px;
	font-size: 14px;
    
}

div#field_1_9 {
    text-align: left;
}

div#field_1_9 select {

    background-color: var(--dark);
    color: #fff;
    border: 1px solid var(--orange);
    border-radius: .5em;
    height: 60px;

}

.gform-footer.gform_footer.top_label {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.gform-footer.gform_footer input[type="submit"] {
	    display: inline-block;
	    height: auto;
	    min-width: 167px;
	    text-align: center;
	    align-items: center;
	    padding: 10px 20px;
	    text-transform: capitalize;
	    font-family: 'Mont', sans-serif;
	    font-weight: 700;
	    letter-spacing: .02em;
	    font-size: 20px;
	    transition: all .4s;
	    --d: 12px;
	    border-radius: 0 var(--d);
	    corner-shape: bevel;
	    border-right: var(--d) solid #0004;
	    border-bottom: var(--d) solid #0008;
	    box-sizing: border-box;
	    background-color: var(--orange);
	    border-top: none;
	    border-left: none;
	    color: #fff;
}

  .icon-container i {
    color: var(--blue);
}

.icon-container {
    flex: 0 0 40px;
    display: flex;
    align-items: flex-start;
    padding-top: 0px;
    justify-content: center;
    font-size: 18px;
}

.blue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: .7;
    z-index: 5;
}

section#cta {
    position: relative;
    background: var(--blue) url(/wp-content/themes/remodeler-2024/images/cta.jpg) no-repeat top center / cover;
    min-height: 360px;
}

.cta-content {
    position: relative;
    z-index: 10;
}

section#cta .cta-content {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.about-image {
    flex: 0 0 40%;
    position: relative;
}

.about-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1em;
}

.industries-list ul {
    width: 100%;
}

.industries-list li {
    text-align: left;
    color: #fff;
}

.industries-image-container {
    height: 140px;
}

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

p.disclaimer {
    margin-bottom: 20px;
}

.footer-row .logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-address a {
    font-weight: 600;
    font-size: 24px;
    display: block;
    margin: 20px auto;
}


img.first-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 80%;
}

img.second-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
}

.still-questions-images img {
    border: 2px solid #fff;
    border-radius: 2em;
    filter: drop-shadow(2px 2px 2px #aaa);
        overflow: clip;
}

section#still-questions .content-wrapper {
    padding: 100px 20px 70px;
}

footer {
    background-color: var(--blue);
}

.footer-row p {
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form-content.darker-bg p {
    color: #fff;
}

.contact-form-content.darker-bg p a {
    color: var(--orange);
}

/* start hidden + slightly shifted */
.fade-in-on-scroll{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  will-change: opacity, transform;
}

/* visible state (JS adds this) */
.fade-in-on-scroll.is-visible{
  opacity: 1;
  transform: none;
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .fade-in-on-scroll{ transition: none; transform: none; }
}

.company-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 25px;
}

.company-name-text > * {
    color: var(--dark);
    margin-bottom: 0px;
}

.company-name-logo img {
    height: 76px;
    margin-bottom: 0px;
}

.company-name-logo {
    display: flex;
    align-items: center;
}

.horizontal-buttons {
    display: flex;
    column-gap: 16px;
}

.phone-number-header {
    position: absolute;
    z-index: 15;
    right: 30px;
    top: 22px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    row-gap: 0px;
}

.phone-number-header p {
    margin-bottom: 0px;
    color: var(--dark);
    font-weight: 600;
}

.phone-number-header a {
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.04em;
    line-height: normal;
    color: var(--dark);
}

.phone-number-header i {
    font-size: 26px;
    color: var(--orange);
}

header img.triangle {
    top: 90px;
    width: 140px;
}

.benefit-icon i {
    color: var(--orange);
    font-size: 70px;
    margin-bottom: 24px;
}

.benefit-container h3 {
    font-size: 19px;
    font-weight: 600;
}

.benefits-row {
    margin-bottom: 50px;
}

.benefits-container p {
    margin-bottom: 50px;
    max-width: 877px;
    margin: 0 auto 50px;
}

.team-member-image-container {
    border-bottom: 5px solid var(--lightgray);
    max-height: 420px;
    /* overflow: hidden; */
    margin-bottom: 16px;
    /* aspect-ratio: 2 /3; */
    position: relative;
}

.image-container {
    max-height: 420px;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-bottom: 6px solid var(--lightgray);
}

.affiliates-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 30px;
}

.title-box {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
}

.affiliate-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #efefef;
    padding: 20px;
    justify-content: space-between;
        border-radius: 1em;
}

.affiliate-logo-container img {
    width: 160px;
}

.affiliate-logo-container img.dlp {
    width: 210px;
}

.affiliate-logo-container {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-box h2 {
    text-align: right;
}

.affiliate-container p {
    font-size: 17px;
    max-width: 315px;
    margin: 0 auto 20px;
}

.affiliate-container h3 {
    font-size: 19px;
}

.affiliate-container a {
    font-weight: 600;
    color: var(--orange);
}

section#benefits {
    background-color: #efefef;
}

section.the-team h2 {
    margin-bottom: 40px;
}

footer .header-company {
    margin-bottom: 40px;
}

.team-bio-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.team-bio-modal.is-visible {
  display: flex;
}

.team-bio-modal-inner {
  position: relative;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;          /* Ã¢Â¬â€¦ cap height to 90% of viewport */
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;          /* Ã¢Â¬â€¦ scroll INSIDE the popup */
  -webkit-overflow-scrolling: touch; /* smoother scroll on iOS */
}

.team-bio-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

.team-bio-name {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.team-bio-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--orange);
}

.team-bio-body p:last-child {
  margin-bottom: 0;
}

/* Optional: stop body scroll when modal is open */
body.no-scroll {
  overflow: hidden;
}

.team-bio-modal-inner .team-bio-body p {
    font-size: 18px;
    margin-bottom: 16px;
}

.team-bio-modal-inner .team-bio-body li {
    font-size: 18px;

}

section#benefits .content-wrapper {
    padding-top: 60px;
}

section#meet-our-team-1 .content-wrapper {
    padding-top: 60px;
}

section#affiliates .content-wrapper {
    padding: 10px 0px 60px;
}

.footer-logo img {
    max-width: 280px;
    margin-bottom: 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) {

		.desktop {
			display: none !important;
		}

    .header-content img.logo, .footer-row img.logo {
    height: 60px;
}

section#hero {
    min-height: 400px;
}

.vertical-buttons {
    align-items: center;
}

#hero h1 {
    font-size: 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content p {
    font-size: 20px;
}

p.big-body-text.dark {
    font-size: 20px;
}

.steps-row {
    flex-direction: column;
    row-gap: 20px;
}

.big-heading {
    font-size: 28px;
}

.industries-row-row {
    flex-direction: column;
    row-gap: 20px;
}

.results-row {
    flex-direction: column;
    row-gap: 20px;
}

.why-choose-row {
    flex-direction: column;
    row-gap: 20px;
}

.choose-container {
    flex-grow: 1;
}

.about-copy h2 {
    font-size: 28px;
}

.about-row {
    flex-direction: column;
    row-gap: 20px;
}

.about-copy {
    flex: none;
    padding-right: 0px;
}

.about-image {
    flex: none;
    height: 320px;
}

.about-image-container img {
    object-position: top;
}

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

.footer-row p {
    text-align: center;
}

.hero-copy {
    flex: 0 0 100%;
}

.why-choose-content-container {
    flex-direction: column-reverse;
    row-gap: 20px;
}

.why-choose-images {
    flex: 0 0 100%;
    justify-content: center;
    padding: 0;
}

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

.line {
    display: none;
}

.benefits-bg {
    display: none;
}

.contact-container {
    flex-direction: column;
}

.contact-copy-container {
    padding: 50px 20px;
}

.contact-copy-inner-container {display: flex;flex-direction: column;align-items: center;}

.contact-copy-inner-container h2 {
    text-align: center;
}

.contact-form-container {
    padding: 0;
    flex: 0 0 100%;
}

.tennessee-copy > img {
    max-width: 200px;
    height: auto;
}

div#tennessee-content {
    flex-direction: column;
}

.tennessee-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tennessee div#tennessee-content h2.white {
    text-align: center;
    font-size: 36px;
}

.tennessee-copy p {
    text-align: center;
}

.tennessee-images {
    flex: none;
    padding: 50px 20px;
}

div#tennessee-content {
    padding: 200px 20px 30px;
}

.tennessee-image-container img {
    max-width: 400px;
}

.services-row {
    flex-direction: column;
    row-gap: 40px;
}

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

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

.multiple-buttons {
    flex-direction: column;
    row-gap: 24px;
}

section#faq .faq-container .faq-accordion-title-container.accordion h2 {
    font-size: 13px;
	text-align: left;
}

section#faq h2 {
    font-size: 21px;
}

section#faq h3 {
    font-size: 24px;
}

.reviews-row {flex-direction: column;row-gap: 40px;}

.reviews-static-column {
    display: flex;
    flex-direction: column;
}

.reviews-container h2 {
    font-size: 31px;
}

.reviews-container {
    /* filter: none; */
}

.still-questions-row {
    flex-direction: column-reverse;
    row-gap: 40px;
}
		
/* 		.gradient.overlay {
	          background: rgb(0,0,50,.7);
} */
		
		.phone-number-header {
    display: none;
}

.header-container {
    padding: 0px 10px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

header {
    padding: 0px;
    height: 80px;
    margin: 0;
}

header .header-container img {
    height: auto;
    width: 200px;
}

header img.triangle {
    display: none;
}

.header-row {
    justify-content: center;
}

.horizontal-buttons {
    flex-direction: column;
    row-gap: 10px;
}

.hero-copy img {
    margin: 20px 0 0 0;
}



.title-box {
    background: #efefef;
    justify-content: center;
    flex: none;
    padding-top: 40px;
}

.title-box h2 {
    text-align: center;
}

.why-choose-copy {
    flex: none;
    padding: 0px;
}

.why-choose-copy h2 {
    text-align: center;
    margin: 20px auto 40px;
}

.why-choose-image img:nth-of-type(2) {
    max-width: 300px;
}

.benefit-container h3 {
    max-width: 300px;
    margin-bottom: 31px;
}

.gradient.overlay {
    display: none;
}

div#hero-content {
    padding: 30px 20px;
}

.horizontal-buttons a {
    min-width: 340px;
    /* width: 80%; */
    margin: 0 auto;
}

h2 {
    font-size: 28px;
    /* max-width: 300px; */
    margin: 0 auto 30px;
            line-height: 120%;
}

  }

  @media screen and (max-width: 900px) {
	  .affiliates-container {
		  flex-direction: column;
	  }

      .affiliate-container {
        padding: 0px 20px 40px
      }
  }

  @media screen and (max-width: 780px) {
.team-members-row {
    flex-direction: column;
}

div.team-member-container {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
}
  }

  @media screen and (max-width: 520px) {
	  
	  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#hero .hero-copy p {
    text-align: center;
}

.hero-copy img {
    margin-bottom: 30px;
}

section#expect img {
    display: none;
}

#hero h1 {
    font-size: 32px;
}

.horizontal-buttons a {
    min-width: 280px;
}


div.team-member-container img:not(.triangle) {
    min-width: 100%;
}

.team-member-image-container {
    max-height: none;
}

.image-container {
    max-height: none;
}

  }
