/* 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: 'Merriweather', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #f4f5f0;
}

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 {
  --brown: #393733;
  --brownButton: #635145;
  --darkbrown: #170f04;
  --black: #212121;
  --white: #fff;
  --darkerGray: #4a4a4a;
  --darkGray: #7a7a7a;
  --gray: #808080;
  --lightgray: #bbb;
  --cream: #ffdeaa;
  --greenButton: #2a6d2c;
  --green: #518256;
  --orange: #ea4a00;
  --red: #9e3f3c;
  --aquaButton: #237b7c;
  --aqua: #237b7c;
  --blueButton: #455c83;
  --blue: #455c83;
  --lightGreen: #95bf48;
  --yellow: #e3b438;
}

/* FONTS */

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

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

@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-ExtraBold.woff2);
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "merriweather";
  src: url(../fonts/merriweather.woff2);
  font-display: swap;
}

  p {
      color: var(--gray);
      font-family: 'Merriweather', sans-serif;
      font-weight: 300;
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 160%;
  }

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

  h2 {
    font-family: 'Barlow', sans-serif;
    letter-spacing: .02em;
    font-size: 32px;
    color: var(--darkGray);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 120%;
    margin-bottom: 10px;
  }
  
  h3 {
    font-family: 'Barlow', sans-serif;
    letter-spacing: .02em;
    font-size: 24px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

/* 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: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

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


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

.post p {
  text-align: left;
  font-size: 18px;
  line-height: 1.8em;
}

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

.post h2 {
  text-align: left;
  margin: 40px 0;
  color: var(--red);
  text-transform: none;
  font-family: 'merriweather';
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 500;
}

.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 {
    color: var(--gray);
    font-family: 'Merriweather', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 160%;
	text-align: left;
  font-size: 20px;
  line-height: 1.8em;
}

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


/* BUTTONS */

  .learn-more {
    display: inline-block;
    color: var(--colorWhite);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    padding: 16px 19px;
    text-transform: capitalize;
    font-family: 'Merriweather', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 3px;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--colorPrimary);
    transition: all .4s;
  }

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

  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: 16px 19px;
    text-transform: capitalize;
    font-family: 'Merriweather', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 3px;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--red);
    transition: all .4s;
	  border: none;
  }

/* OVERLAYS */

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

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

/* 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: auto;
    left: 0;
    top: 0;
    z-index: 15;
    transition: all .5s;
}

.header-background {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 65px;
        background: rgb(244, 245, 241, .5);
    left: 0;
    z-index: 1;
}

.top-banner {
    background-color: var(--brown);
    padding: 6px 3%;
}

.tagline-container p {
    margin-bottom: 0px;
    color: var(--lightgray);
    font-size: 14px;
}

.contact-container {
    display: flex;
    justify-content: flex-end;
    column-gap: 50px;
}

.contact-container a {
    color: var(--lightgray);
    font-family: 'Barlow';
}

.contact-container .nav-phone-link {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--white);
}

.contact-container > div:first-of-type {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

a.dealer-login {
    text-transform: uppercase;
    font-weight: 600;
}

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

.social-container i {
    color: var(--cream);
    font-size: 28px;
}


.nav-one-row-with-banner .header-content {
  padding: 0px 3% 0px 3%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1600px;
  margin: 0px auto;
}

/* Banner Row */

.nav-one-row-with-banner .nav-row.top-nav-row {
  background-color: var(--colorPrimary);
  padding: 2px 3%;
  height: 36px;
}

/* Logo */

a.logo-link {
    padding: 0px;
    flex: 0 0 auto;
    align-items: center;
    display: flex;
    height: 180px;
    z-index: 2;
}

.logo {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: width .3s;
    filter: drop-shadow(2px 4px 6px #777);
}

/* Nav */

.nav-rows {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.nav-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Nav Row */



/* Bottom Nav Row */

nav .menu {display: flex;justify-content: space-between;position: relative;z-index: 10;}

/* Nav Menu */

.header-content {
    padding: 0px 3%;
    position: relative;
}

.header-menu-container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5%;
}

.left-menu-container, .right-menu-container {
    flex-grow: 1;
}

nav .menu a {
    font-family: "Barlow", sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

nav .menu a:hover {
    color: var(--lightGreen)
}

/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  /* border-top: 4px solid var(--colorBlue); */
  position: absolute;
  left: 0;
  top: 80px;
  width: auto;
  min-width: 200px;
  filter: drop-shadow(2px 2px 2px #999);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--colorWhite);
  }

  #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: 23px;
      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.mobile-only {
    height: 70px;
    width: 100%;
}


/* Home Page */
/* Hero */
section#hero {
  display: block;
  width: 100%;
  height: 720px;
  position: relative;
  margin-top: -183px;
  z-index: 10;
}

#hero a.learn-more {
    background: rgb(255,255,255,.75);
    border-radius: 2em;
    font-family: 'Barlow';
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s;
}

#hero a.learn-more:hover {
     background: rgb(0,0,0,.75);
    color: #fff;
}

.hero-wrapper {
  height: 100%;
  position: relative;
  padding: 0px 10%;
}

.hero-content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.slideshow-container.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
}

.mySlides {
  display: none;
  position: absolute;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.7;}
  to {opacity: 1;}
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 20;
  background-color: rgb(0,0,0,0.4);
}

.hero-content-container.front-page {
  margin-top: 150px;
  text-align: left;

  padding: 0 20px 0 10px;
}

.slide-content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

#hero .slide-content h2 {
    max-width: 333px;
    color: #fff;
    line-height: 140%;
    font-weight: 500;
    font-size: 42px;
}

#hero .slide-content h2 span {
    color: var(--cream);
    font-size: 54px;
}

#hero p {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
}

.home .home-products-row {
	margin-top: -60px;
}

.home-products-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    margin: -140px auto 0px;
    z-index: 15;
    position: relative;
    max-width: 1080px;
}

p.product-title {
        font-family: Barlow, sans-serif;
        font-weight: 700;
        font-size: 32px;
        text-align: center;
        letter-spacing: 0;
        line-height: 100%;
}

.green {
    color: var(--green) !important;
}

.red {
    color: var(--red) !important;
}

.aqua {
    color: var(--aqua) !important;
}

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

.blue {
  color: var(--blue) !important;
}

.home-product-teaser .image-container img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
}

.home-product-teaser {
    flex: 0 0 calc((100% / 3) - 20px);
}

section#home-products .content-wrapper {
    padding-top: 0px;
}

p.product-subtitle {
    font-family: 'Barlow Condensed';
    font-weight: 900;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0px;
}

.learn-more.green-btn {
    background-color: var(--green);
    color: var(--white);
}

.learn-more.orange-btn {
    background-color: var(--orange);
    color: var(--white);
}

.learn-more.aqua-btn {
    background-color: var(--aquaButton);
    color: var(--white);
}

.learn-more.red-btn {
    background-color: var(--red);
    color: var(--white);
}


.learn-more.blue-btn {
    background-color: var(--blue);
    color: var(--white);
}


section#home-how-to-protect {
 
  background-image: url('/wp-content/uploads/2018/12/Wood-Beading-BG.jpg');
  background-attachment: fixed; /* makes the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.home-how-to-protect-container {
    background-color: var(--white);
    padding: 30px;
    max-width: 800px;
    border: 5px double var(--orange);
}

section#home-how-to-protect .content-wrapper {
    padding: 80px 5%;
}

section#about {
 
  background-image: url('/wp-content/uploads/2018/12/Were-Green-BG.jpg');
  background-attachment: fixed; /* makes the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-content {
    background-color: var(--white);
    padding: 30px;
    max-width: 800px;
    border: 5px double var(--green);
}

section#about .content-wrapper {
    padding: 80px 5%;
}



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

section.internal-header {
  height: 424px; /* section height */
  width: 100%; /* full width */
  background-attachment: fixed; /* makes the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

section.internal-header h1, section.internal-header p.hero-title {
	font-family: Barlow, sans-serif;
	font-weight: 800;
	font-size: 84px;
	line-height: 0.8;
	text-align: center;
	color: var(--white);
	position: relative;
	z-index: 5;
}

/* 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 {
  aspect-ratio: 3/2;
  overflow: hidden;
  }

  .image-gallery-container img {
      height: 100%;
    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: 1px;
  flex: 0 0 calc((100% / 3) - 12px);
  }

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

  .responsive-video {
    margin-bottom: 40px;
}

.post h1 {
    color: var(--red);
    font-family: 'merriweather';
    text-transform: none;
    font-weight: 700;
    line-height: 140%;
}

.blog-teaser h2 a {
    font-size: 30px;
    margin-bottom: 20px;
}

.blog-teaser h2 {
    margin-bottom: 10px;
}

.blog-teaser {
    text-align: left;
}

.post .blog-teaser p {
    margin-bottom: 20px;
}

.post .blog-teaser a.read-more {
    color: var(--red);
}

.blog-separator {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-top: 20px;
    margin-bottom: 80px;
}

.ebooks-wrapper {
    display: flex;
    flex-flow: wrap;
    column-gap: 30px;
    row-gap: 50px;
}

.ebook-item {
    flex: 0 0 calc((100% / 2) - 30px);
}

.ebook-image img {
    max-width: 100%;
    min-height: 100%;
}

.how-to-protect-img-container img {
    max-width: 320px;
}

.home-how-to-protect-container h1 {
    color: var(--blue);
    text-align: center;
    font-size: 32px;
}

.home-download-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

p.free-download {
    color: var(--red);
    font-family: 'Barlow';
    font-size: 32px;
    text-align: left;
}

p.free-download-subtitle {
    text-align: left;
}

.home-download-image-container {
    flex: 0 0 300px;
    padding: 20px 0;
}

.home-download-image-container img {
    max-width: 240px;
}

a.learn-more.lg-blue {
    background-color: var(--blueButton);
    color: var(--white);
    margin-bottom: 20px;
    width: 100%;
}

.home-download-copy-container p {
    text-align: left;
}

.home-q8-log-oil-container h2 {
    text-align: center;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 40px;
    font-size: 44px;
}

.home-q8-log-oil-container h3 {
    text-align: center;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 40px;
    color: var(--gray);
    font-size: 32px;
}

.home-q8-log-oil-container p {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.basic-teaser-row {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1080px;
}

a.learn-more.brown-btn {
    background-color: var(--brownButton);
    color: var(--white);
}

.basic-teaser img {
    max-width: 315px;
}

.basic-teaser-img-container {
    margin-bottom: 20px;
}

section#quote {
 
  background-image: url('/wp-content/uploads/2018/12/Outlast-LogHome2.jpg');
  background-attachment: fixed; /* makes the parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

p.quote {
    font-size: 45px;
    text-align: left;
    color: var(--white);
    margin-bottom: 0px;
    max-width: 1000px;
    margin-bottom: 40px;
    line-height: 140%;
    filter: drop-shadow(2px 4px 2px black);
}

#quote .content-wrapper {
    padding: 130px 5%;
}

p.quote-source {
    color: var(--white);
    font-size: 36px;
    text-align: right;
    filter: drop-shadow(2px 4px 2px black);
}

.quote-content {
    position: relative;
    z-index: 5;
}

.quote-content img {
    padding: 40px 0px;
}

.quote-content .dotted-heading:nth-of-type(2) h3 {
    color: var(--yellow);
}

#timeline {
  background-color: #fff;
}

#timeline h2 {
    text-align: center;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 40px;
    font-size: 44px;
}

#timeline p {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.dotted-heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dotted-line {
    flex-grow: 1;
    height: 3px;
    border-bottom: 3px dotted var(--gray);
}

.quote-content .dotted-heading:nth-of-type(2) .dotted-line {
    border-bottom: 3px dotted var(--yellow);
}

.dotted-heading h3 {
    margin-bottom: 0px;
    flex: 0 0 auto;
    margin: 0 10px;
    text-transform: none;
    color: var(--gray);
}

section.product-category-header {
    padding: 50px 5% 30px;
    max-width: 1080px;
    margin: 0 auto;
}

section.product-category-header h1 {
    font-size: 85px;
    color: var(--darkerGray);
    font-weight: 800;
    font-family: 'Barlow';
    text-align: center;
}

.single-product-info-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

p.large-product-title {
    color: var(--red);
    font-family: 'Barlow';
    font-weight: 600;
    font-size: 85px;
    text-align: left;
    line-height: 120%;
    margin-bottom: 30px;
}

.single-product-info-image {
    flex: 0 0 44%;
}

p.product-tagline {
    font-weight: 600;
    font-size: 26px;
    text-align: left;
    font-family: 'Barlow Condensed';
}

p.secondary-product-tagline {
    text-align: left;
    font-size: 22px;
    font-style: italic;
}

.product-copy p {
    text-align: left;
    font-size: 16px;
}

.product-copy {
    margin-bottom: 40px;
}

.button-cluster {
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.page-template-wood-preservative .home-products-row {
  margin-top: 0px;
}

.button-cluster > div {
    display: flex;
    column-gap: 10px;
}

.button-cluster-row-2 a.learn-more {
    font-size: 13px;
}

.button-cluster-row-1 a.learn-more {
    font-size: 18px;
}

.line-separator {
    height: 1px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #ccc;
}

#sub-products .content-wrapper {
    padding-bottom: 80px;
}

section.product-category-header p {
    text-align: center;
}

.multiple-products-row {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto 90px;
}

.multiple-products-row .home-product-teaser {
    align-items: center;
    /* flex: 1; */
}

.multiple-products-row:last-of-type {
    margin-bottom: 0px;
}

.product-heading-container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

section.internal-header .product-heading-container h1 {
    text-align: left;
}

.header-bottom-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.secondary-heading h2 {
    color: var(--red);
    font-size: 54px;
}

.image-container {
    flex: 0 0 330px;
}

.single-product-hub-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 40px;
}

.single-product-hub-buttons {
    flex: 0 0 330px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.single-product-hub-copy p {
    text-align: left;
}

.single-product-hub-buttons a {
    width: 100%;
    border-radius: 10px;
}

a.learn-more.light-green-btn {
    background-color: var(--lightGreen);
    color: var(--white);
}

.photos-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 20px;
    justify-content: flex-start;
}

.photo-column {
    flex: 1;
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 33%;
}

.photo-column img {
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    object-fit: cover;
}

section#single-product-benefits {
    background-image: url(/wp-content/uploads/2018/12/Wood-Beading-BG.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

section#single-product-benefits h2 {
    color: var(--white);
    font-size: 72px;
    text-align: center;
    position:relative;
    z-index: 5;
}

.benefits-copy ul {
    column-count: 2;
}

.benefits-copy li {
    font-family: 'Merriweather';
    color: var(--white);
    font-size: 20px;
    text-align: left;
     position:relative;
    z-index: 5;
}

.home .image-container img {
    width: 100%;
    margin-top: -80px;
    position: relative;
}

section#single-product-hub .content-wrapper {
    padding-top: 10px;
}

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

.guarantee-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    row-gap: 20px;
}

.guarantee-column i {
    color: var(--lightGreen);
    font-size: 44px;
}

.guarantee-column h3 {
    color: var(--red);
    margin-top: 10px;
    margin-bottom: 0px;
}

.guarantee-column p {
    margin-bottom: 0px;
}

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

.guarantee-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    row-gap: 20px;
}

.guarantee-column i {
    color: var(--lightGreen);
    font-size: 44px;
}

.guarantee-column h3 {
    color: var(--red);
    margin-top: 10px;
    margin-bottom: 0px;
}

.guarantee-column p {
    margin-bottom: 0px;
}

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

.cta-heading h2 {
    color: var(--red);
    font-size: 72px;
}

.cta-copy p {
    font-size: 22px;
    text-align: left;
    margin-bottom: 0px;
}

.cta-copy {
    flex-direction: column;
    row-gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
}

.cta-copy a.learn-more.cta {
    width: 100%;
}

.download-content h2 {
    text-align: center;
    color: var(--green);
    margin-bottom: 30px;
}

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

.download-img {
    flex: 1;
}

.download-img img {
    max-width: 260px;
    height: 100%;
    object-fit: contain;
    min-height: 300px;
}

.download-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 20px;
}

.download-copy h3 {
    color: var(--red);
}

.download-copy p {
    text-align: left;
}

.download-copy p strong {
    color: #333;
    font-weight: 600;
}

.download-copy a {
    /* height: 30px; */
    /* width: 160px; */
    background-color: var(--blue);
    display: flex;
    padding: 15px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.the-content-container.more-content p {
    text-align: center;
    font-size: 24px;
}

.the-content-container.more-content a.learn-more {
    background-color: var(--brownButton);
    display: flex;
    padding: 15px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    max-width: 320px;
    margin: 0 auto 40px;
}

.the-content-container.more-content .photo-column {
    aspect-ratio: 16 / 9;
}

.the-content-container.more-content p strong {
    font-weight: 700;
}

/* Hide sub-menus by default */
.menu .sub-menu {
  display: none;
  position: absolute; /* keep it out of normal flow */
  top: 100%; /* places it directly under parent li */
  left: -8px;
  background: var(--black); /* adjust as needed */
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 999; /* make sure itÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢s on top */
  border-top: 3px solid var(--lightGreen);
}

/* Show submenu on hover */
.menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Optional styling for submenu items */
.menu .sub-menu li {
  padding: 8px 15px;
}

.menu .sub-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.menu .sub-menu li a:hover {
  \: #eee;
  color: var(--lightGreen);
}

li.menu-item-has-children {
    position: relative;
    z-index: 10;
}

.page-template-wood-preservative .home-products-row img {
    max-height: none;
    margin-top: -30px;
}

.page-template-product .image-container img {
    width: 100%;
    margin-top: -147px;
    position: relative;
}

/* Shop Online */

section.internal-header h1.non-title {
    text-transform: none;
    font-size: 54px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 120%;
}

.shop-row {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 60px;
    margin: 40px auto 60px;
    max-width: 900px;
}

.shop-container h3 {
    color: var(--red);
    margin-bottom: 50px;
    text-transform: none;
    text-align: center;
}

.shop-container a.learn-more {
    color: var(--white);
    background-color: var(--brownButton);
}

.shop-container {
    flex: 1;
}

blockquote {
    border-left: 5px solid #ccc;
    padding-left: 12px;
}

.page-template-testimonials a.image-gallery-container {
    flex: 0 0 calc(50% - 12px);
}

/* Footer */

footer {
    height: 600px;
    position: relative;
    margin-top: -30px;
    background-color: var(--darkbrown);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: transparent url(/wp-content/themes/remodeler-2024/images/Footer-Decklines.jpg) repeat top center / contain;
    z-index: 1;
}

.footer-row {
    display: flex;
    width: 100%;
    z-index: 5;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 5%;
    column-gap: 80px;
}

ul#menu-footer a {
    color: var(--cream);
}

.menu-column h3 {
    color: #ccc;
    margin-bottom: 20px;
}

.menu-footer-container li {
    margin-bottom: 16px;
}

.menu-column {
    padding-top: 60px;
}

p.footer-address {
    color: var(--white);
}

footer .logo-column a {
    color: var(--white);
}

p.footer-phone {
    color: var(--white);
    font-family: 'Barlow';
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .02em;
}

.footer-container {
    max-width: 360px;
}

.embed-column {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

/* About */

section.team-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    column-gap: 50px;
}

.team-image {
    flex: 0 0 225px;
    height: 225px;
}

.team-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-body p {
    font-size: 18px;
}

.team-body p a {
    color: var(--brownButton) !important;
    font-weight: 700;
}

.team-body {
    padding-top: 20px;
}

.about-footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

.about-footer p {
    text-align: center;
    font-weight: 700;
    font-style: italic;
}

/* Video Resources */

.videos-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    column-gap: 50px;
    margin: 40px auto 60px;
    max-width: 960px;
}

.video-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.video-embed{
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-container p {
    padding: 10px;
}

/* Contact */

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

.contact-body-container {
    flex: 0 0 auto;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 60px;
}

.contact-form-container {
    flex-grow: 1;
    max-width: 600px;
}

.contact-body-container h3 {
    color: var(--red);
    margin-bottom: 20px;
}

.contact-form-container h3 {
    color: var(--red);
}

.page-template-contact .form-container form#gform_4 {
    margin-top: 40px;
}

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


/* Wolmanized */

.wolmanized-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 50px;
}

.wolmanized-body {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.wolmanized-cta {
    flex: 0 0 40%;
    min-width: 300px;
}

.wolmanized-info img {
    width: 100%;
}


.wolmanized-body img {
    max-width: 540px;
}

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

.benefits-row ul {
    column-count: 1;
    flex: 1;
}

.benefits-img {
    flex: 1;
}

.benefits-img img {
    position: relative;
    max-width: 300px;
}

.benefits-content h2 {
    margin-bottom: 40px;
}

.color-row {
    display: flex;
    flex-flow: wrap;
    row-gap: 10px;
    column-gap: 21px;
    margin-top: 40px;
    justify-content: center;
}

.color {
    flex: 0 0 111px;
}

.page-id-3627 .secondary-heading h2 {
    color: var(--orange);
}

.page-id-3639 .secondary-heading h2 {
    color: var(--blue);
}


.case-study-content h2 {
    color: var(--red);
    text-align: center;
    font-size: 45px;
    margin-bottom: 40px;
}

.case-study-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 20px;
}

.case-study-row > div {
    flex: 1;
}

.study-img-container {
    aspect-ratio: 1;
}

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

.case-study-row > div h3 {
    color: var(--red);
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}

/* FAQ */

section.title-container h1 {
  color: var(--colorBlue);
  font-family: 'Mont Bold';
  text-align: center;
}

section.title-container .content-wrapper {
  padding-bottom: 0px;
}

.page-template-faq .accordion-container {
  border-bottom: 1px solid #212121;
}

.page-template-faq .accordion-title-container:not(.mobile-menu-accordion) {
  /* background-color: #fff; */
}

.page-template-faq .accordion-title-container:not(.mobile-menu-accordion) h3 {
  color: #212121;
}

.page-template-faq .panel p {
  color: #212121;
  text-align: left;
}

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

.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: space-between;
  align-items: center;
  padding: 20px 10px;
  background-color: var(--colorBlue);
  margin-bottom: 0px;
  padding-right: 16px;
  border-radius: 0px;
}

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


.outer-accordion-container {
  padding: 30px 0px;
}

.accordion-container {
  border-bottom: 1px solid #fff;
}

.page-template-faq .accordion-title-container:not(.mobile-menu-accordion) h3 {
  color: var(--brownButton);
  font-size: 20px;
  line-height: 140%;
      text-transform: none;
      font-weight: 500;
}

section#faq-form {
    position: relative;
    background: #fff url(/wp-content/uploads/2018/12/Wood-Beading-BG.jpg) no-repeat center center / cover;
}

section#faq-form .contact-row {
    position: relative;
}

section#faq-form h3 {
    color: #fff;
}

section#faq-form p {
    color: #fff;
    text-align: left;
}

.contact-form-container p {
    font-size: 18px;
    margin-bottom: 10px;
}

#faq-form label.gfield_label.gform-field-label {
    color: #fff;
}

#faq-form h2 {
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 50px;
}

.home-product-teaser .orange-btn {
    margin-bottom: 20px;
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.category-row h2 {
    flex: 0 0 auto;
    padding: 0 20px;
    margin-bottom: 0px;
}



.category-row .line-separator {
    border-bottom: 2px solid var(--brown);
    border-top: 2px solid var(--brown);
    height: 6px;
    background-color: transparent;
}

.cta-copy .single-product-hub-buttons {
    margin: 30px auto 0px;
    max-width: 325px;
}

.the-content-container img {
    width: 100%;
    height: auto;
}

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

section#faq-form .contact-row {
    flex-direction: column-reverse;
    row-gap: 50px;
}

.gmw-item.gmw-item-address {
    background-color: var(--red);
}

h3.gmw-item.gmw-item-title {
    color: var(--green);
}

.gmw-element-template h3.gmw-item-title a {
    color: var(--brown);
    font-family: 'Barlow';
}

a.gmw-get-directions {
    background-color: var(--brownButton);
    color: #fff !important;
    padding: 20px 20px;
    border-radius: 2px;
}

.gmw-element-template .distance {
    background-color: var(--green);
}

.gmw-element-template h3.gmw-item-title a {

color: var(--brown) !important;
    font-family: 'Merriweather' !important;
    font-size: 16px !important;
}

img.skip-lazy.gmw-image.gmw-post-image.gmw-info_window-image.gmw-no-image {
    display: none;
}

.directions.gmw-info-window-element a.gmw-get-directions {
    color: brown !important;
    background-color: transparent;
}

.gmw-results-wrapper .gmw-pagination li > .current {
    background-color: var(--brownButton) !important;
}

li.menu-item-has-children:after {
    content: "\f107";
    font-family: 'FontAwesome';
}

li#menu-item-73 .sub-menu {
    right: -20px;
    left: auto;
}


/* 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 Mobile */
	.desktop {
			display: none !important;
		}
     

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

      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: #fff;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
    }

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

 

    /* 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(--white);
        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(--white);
    }

    #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(--blue);
        display: block;
        transition: 0.3s;
        font-family: "Mont Bold", sans-serif;
        text-align: center;
    }

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

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

      #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: var(--brown);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(10px);
        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(--white);
          display: block;
          transition: 0.3s;
          font-family: 'Mont Medium';
          font-weight: 700;
          text-transform: capitalize;
          letter-spacing: .02em;
          text-align: center;
      }

      #mobile-nav ul.sub-menu a {
            font-weight: 500;
            font-family: 'merriweather';
      }

      #mobile-nav ul.sub-menu {
        position: relative;
        margin-bottom: 30px;
        margin-top: 10px;
        background-color: rgb(181, 192, 225, .2);
        padding: 20px 0px;
      }

      a.mobile-submenu-link {
        color: var(--colorDarkest);
        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;
    font-family: 'merriweather';
}

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

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


      .fixedPosition {
        position: fixed;
      }

      .bottom-phone-bar-content {
    background-color: var(--red);
    bottom: 0;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.bottom-phone-bar-content p {
    color: #fff;
    margin: 0;
}

.bottom-phone-button-container a.learn-more {
    background-color: #fff;
    padding: 4px 10px;
    display: inline-block;
    color: var(--red);
    font-family: 'poppins';
    font-weight: 600;
}

header.mobile-only {
    background: var(--brown);
}

img.logo {
    height: 70px;
}

li#menu-button {
    margin-bottom: 0px;
}

.home .home-products-row {
    flex-direction: column;
    margin: 0px;
    align-items: center;
    row-gap: 50px;
}

.home .image-container img {
    object-fit: contain;
    margin: 0px;
}

.image-container {
    flex: none;
}

.home-product-teaser {
    flex: none;
    max-width: 400px;
    margin-bottom: 40px;
}

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

.home-download-row {
    flex-direction: column;
}

.home-download-image-container {
    flex: none;
    margin: 0 auto;
}

.home-download-copy-container {
    flex: none;
}

.basic-teaser-row {
    flex-direction: column;
    row-gap: 50px;
}

p.quote {
    font-size: 32px;
}

p.quote-source {
    font-size: 28px;
}

.quote-content img {
    width: 100%;
}

section.product-category-header h1 {
    font-size: 40px;
}

.single-product-info-content {
    flex-direction: column;
}

.single-product-info-image {
    flex: none;
}

p.large-product-title {
    font-size: 46px;
}

.button-cluster > div {
    flex-direction: column;
    row-gap: 12px;
}

.button-cluster {
    row-gap: 12px;
}

.button-cluster-row-1 a.learn-more, .button-cluster-row-2 a.learn-more {
    text-align: center;
}

.home-products-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-template-wood-preservative .home-products-row img {
    margin: 0;
    max-width: 300px;
}

.multiple-products-row {
    flex-direction: column;
    align-items: center;
}

section.internal-header h1.non-title {
    font-size: 36px;
}

.shop-row {
    flex-direction: column;
    row-gap: 50px;
}

.post h1 {
    font-size: 32px;
}

.blog-teaser h2 a {
    font-size: 24px;
}

.blog-teaser h2 a {
    font-size: 24px;
}

section.internal-header h1, section.internal-header p.hero-title {
    font-size: 38px;
    line-height: 120%;
}

section.internal-header.parallax {
    height: 300px;
    background-attachment: scroll;
}

.secondary-heading h2 {
    font-size: 36px;
    text-align: center;
}

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

section.team-row {
    flex-direction: column;
    align-items: center;
}

.team-image {
    flex: none;
    height: auto;
}

.the-content-container img {
    max-width: 300px;
    margin: 0 auto 30px;
}

section.team-row:nth-of-type(3) {
    flex-direction: column-reverse;
}

section.internal-header {
    height: 300px;
    padding: 0px 30px;
}

.wolmanized-info {
    flex-direction: column;
}

.wolmanized-cta {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footer-row {
    flex-direction: column;
    align-items: center;
}

.logo-column > * {
    text-align: center;
}

.social-container {
    justify-content: center;
}

footer {
    height: auto;
}

section#hero {
    margin-top: 0px;
    max-height: 600px;
}

.category-row h2 {
    font-size: 23px;
    max-width: 80%;
    text-align: center;
}

.cta-content-row {
    flex-direction: column;
}

.cta-heading h2 {
    font-size: 40px;
    text-align: center;
}

.header-bottom-content .image-container {
    /* display: none; */
    flex: none;
    height: auto;
}

.product-heading-container {
    text-align: center;
}

.header-bottom-content {
    justify-content: center;
    flex-direction: column;
    row-gap: 20px;}

section.internal-header .product-heading-container h1 {
    text-align: center;
    margin-bottom: 3px;
}

.single-product-hub-content {
    flex-direction: column;
}

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

.photo-column {
    max-width: 100%;
}

section#single-product-hub .content-wrapper {
    padding-bottom: 10px;
}

.benefits-copy ul {
    column-count: 1;
}

.page-template-product .image-container img {
    margin: 0;
}

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

.case-study-row {
    flex-direction: column;
}

  }

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

  }

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

  }

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

  }
