﻿@charset "UTF-8";
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin-block-start: 0;
  margin-block-end: 0;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul {
  list-style: disc;
}
ul li {
  margin-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Eurostile, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.9rem;
  line-height: 1.8rem;
  font-weight: 900;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

body, p, a, li, ul, ol, span, div, button, input {
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.35rem;
}

p {
  margin: 15px 0;
}

ul li {
  margin-bottom: 15px;
}

.section-header {
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  padding-bottom: 15px;
}

nav {
  background: #333333;
  color: white;
  position: relative;
  z-index: 3;
}
nav a {
  transition: all 125ms ease;
  font-weight: 500;
}
nav a:hover {
  color: #C23838 !important;
}
nav .nav-secondary-bar {
  padding: 8px 8%;
  background: #181818;
  display: flex;
  justify-content: flex-end;
}
nav .nav-secondary-bar > a {
  margin-left: 15px;
  color: white;
  opacity: 0.6;
}
nav .nav-secondary-bar-social-icon {
  color: #F5DF25 !important;
  font-size: 1.25rem;
}
nav .nav-primary-bar {
  position: relative;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .nav-logo-container {
  width: 325px;
  display: flex;
  align-items: center;
}
nav .nav-logo-container-usa-image {
  width: 90px;
  margin-left: 10px;
}
nav .nav-logo-container-logo-image {
  width: 100%;
  display: block;
}
@media (max-width: 525px) {
  nav .nav-logo-container {
    width: 275px;
  }
}
@media (max-width: 400px) {
  nav .nav-logo-container {
    width: 225px;
  }
}
nav .nav-links-container {
  width: calc(100% - 250px);
  padding-left: 40px;
  z-index: 100;
}
nav .nav-links-container .nav-content {
  display: flex;
  height: 50%;
  flex-direction: row;
  align-items: center;
  position: relative;
  list-style: none;
  justify-content: flex-end;
}
nav .nav-links-container .nav-content .nav-link {
  margin-left: 0 !important;
  margin-bottom: 0;
  position: relative;
  padding: 6px 0;
  padding-left: 2px;
  padding-right: 20px;
}
nav .nav-links-container .nav-content > .nav-link > a {
  text-transform: uppercase;
}
nav .nav-links-container .nav-content ul {
  list-style: none;
  display: flex;
  height: 100%;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}
nav .nav-links-container .nav-content ul li {
  line-height: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
nav .nav-links-container .nav-content a {
  color: white;
}
nav .nav-links-container .nav-content a:not(:last-of-type) {
  margin-right: 1.5rem;
}
nav .nav-links-container .nav-content-search {
  flex: 1;
  text-align: right;
  margin-right: 1rem;
  /*Fix for image gap*/
  font-size: 0;
}
nav .nav-links-container .nav-content .dropdown {
  background: rgba(0, 0, 0, 0.75);
  border-top: none;
  position: absolute;
  top: 102%;
  left: 0;
  color: #fff;
  transition: all 300ms ease;
  display: none;
  min-width: 250px;
}
nav .nav-links-container .nav-content .dropdown ul {
  list-style-type: none;
  display: block;
  margin: 15px;
  padding: 0;
}
nav .nav-links-container .nav-content .dropdown ul li {
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}
nav .nav-links-container .nav-content .dropdown .mobile-main-link {
  display: none;
}
@media (max-width: 800px) {
  nav .nav-links-container .nav-content {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 750ms ease;
  }
  nav .nav-links-container .nav-content-active {
    max-height: 500px;
  }
  nav .nav-links-container .nav-content .nav-link {
    width: 100%;
  }
  nav .nav-links-container .nav-content .nav-link .dropdown {
    position: relative;
    color: #fff;
    background: none;
    transition: all 300ms ease;
    display: block;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 750ms ease;
  }
  nav .nav-links-container .nav-content .nav-link .dropdown-active {
    max-height: 500px;
  }
  nav .nav-links-container .nav-content .nav-link .dropdown .mobile-main-link {
    display: block;
  }
}
@media (min-width: 769px), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  nav .nav-links-container .nav-link:hover > .dropdown {
    display: block;
  }
}
nav .nav-search img {
  width: 45px;
}
nav .nav-trigger {
  display: none;
}
@media (max-width: 800px) {
  nav .nav-trigger {
    display: block;
    width: 50px;
    position: absolute;
    top: 17px;
    right: 66px;
  }
}
@media (max-width: 950px) {
  nav {
    /*    .nav-logo-container {
      width: 150px;
    }*/
  }
  nav .nav-primary-bar {
    flex-wrap: wrap;
  }
  nav .nav-break {
    flex-basis: 100%;
    height: 0;
  }
  nav .nav-links-container {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }
  nav .nav-links-container .nav-content {
    justify-content: flex-start;
  }
  nav .nav-search {
    width: 50px;
    position: absolute;
    top: 20px;
    right: 10px;
  }
}

.nav-texture {
  width: 100%;
  display: block;
  z-index: 2;
  position: relative;
}

.footer-links-container {
  display: flex;
  padding: 40px 0;
}
.footer-links-container-left {
  width: 33%;
  text-align: left;
  padding-left: 6%;
}
.footer-links-container-right {
  display: flex;
  width: 33%;
  justify-content: center;
  padding: 0 30px;
}
@media (max-width: 800px) {
  .footer-links-container-left, .footer-links-container-right {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .footer-links-container {
    flex-wrap: wrap;
    text-align: center;
  }
  .footer-links-container-left, .footer-links-container-right {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .footer-links-container-left {
    margin-bottom: 25px;
  }
  .footer-links-container-right {
    flex-direction: column;
    align-items: center;
  }
  .footer-links-container .footer-links {
    text-align: center;
    padding: 0;
  }
}

.footer-callout-boxes {
  margin: 50px 8% -15px;
  display: flex;
}
.footer-callout-boxes-box {
  width: 33%;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
  text-align: center;
}
.footer-callout-boxes-box:after {
  content: "";
  padding-top: 75%;
  display: block;
}
.footer-callout-boxes-box:hover .footer-callout-boxes-box-mask {
  opacity: 0;
}
.footer-callout-boxes-box-mask {
  background-color: rgb(180, 164, 29);
  opacity: 0.5;
  transition: opacity 250ms ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.footer-callout-boxes-box h4 {
  z-index: 2;
}
@media (max-width: 750px) {
  .footer-callout-boxes {
    margin: 0;
  }
  .footer-callout-boxes-box h4 {
    font-size: 1.25rem;
    line-height: 1.1rem;
  }
}
@media (max-width: 575px) {
  .footer-callout-boxes {
    flex-wrap: wrap;
    margin: 25px;
  }
  .footer-callout-boxes-box {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-callout-boxes-box:after {
    padding-top: 50%;
  }
}

.footer-texture {
  margin-top: 10px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

footer {
  background: #788D93;
  text-align: center;
  color: white;
  width: 100%;
}
footer > h3 {
  padding-top: 20px;
}
footer .footer-links {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  /* margin-left: auto; */
  opacity: 0.5;
  text-align: left;
  text-transform: uppercase;
  width: 50%;
}
footer .footer-social-links {
  padding-bottom: 10px;
}
footer .footer-social-links-icon {
  font-size: 2rem;
  margin: 0 5px;
}
footer .footer-logo-bar {
  background: #181818;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 6%;
}
footer .footer-logo-bar img {
  max-width: 175px;
  margin-right: 50px;
}
footer .footer-logo-bar-copyright {
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 500px) {
  footer .footer-logo-bar {
    flex-wrap: wrap;
  }
}

.home-slider-container {
  position: relative;
  display: flex;
  z-index: 1;
  margin-top: -15px;
}
.home-slider-container-image {
  position: absolute;
  top: 0;
  left: 55%;
  width: 45%;
  min-height: 100%;
}

.home-slider {
  box-sizing: border-box;
  width: 100%;
  z-index: 1;
}
.home-slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex !important;
  padding-top: 100px;
  padding-left: 175px;
  padding-bottom: 100px;
  padding-right: 100px;
}
@media (max-width: 1600px) {
  .home-slider-item {
    background-position: left;
  }
}
.home-slider-item-text {
  width: 35%;
}
@media (max-width: 1600px) {
  .home-slider-item-text {
    width: 45%;
  }
}
.home-slider-item-text p {
  color: white;
}
@media (max-width: 750px) {
  .home-slider-item-text {
    width: 100%;
  }
}
.home-slider-item-logo {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .home-slider-item-logo {
    display: none;
  }
}
.home-slider-item-logo img {
  max-width: 100%;
  width: 325px;
  margin-bottom: 20px;
}
.home-slider-item-logo h3 {
  font-size: 4rem;
  line-height: 2.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-style: italic;
  color: #33813E;
  text-align: center;
  font-family: eurostile-condensed, sans-serif;
}
.home-slider-item-image {
  display: none;
  width: 25%;
  margin-left: 5%;
  margin-right: 50px;
}
.home-slider-item-image img {
  max-width: 100%;
}
.home-slider-item-video {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1600px) {
  .home-slider-item-video {
    width: 55%;
  }
}
.home-slider-item-video video {
  width: 100%;
}
.home-slider-item-video-mobile-fallback {
  display: none !important;
  width: 100%;
  margin-left: 25px;
}
@media (max-width: 750px) {
  .home-slider-item-video {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .home-slider-item {
    padding: 50px;
  }
  .home-slider-item-text img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 750px) {
  .home-slider-item {
    padding: 50px;
  }
  .home-slider-item-video video {
    display: none !important;
  }
  .home-slider-item-video-mobile-fallback {
    display: block !important;
  }
}
@media (max-width: 500px) {
  .home-slider-item {
    flex-direction: column;
  }
  .home-slider-item-text, .home-slider-item-video {
    width: 100%;
  }
}
.home-slider .slick-dots {
  bottom: 40px;
  text-align: left;
  padding-left: 175px;
}
.home-slider .slick-dots li button:before {
  font-size: 40px;
}

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/*.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}*/
.slick-active .home-slider-item-text {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
}

.home-below-slider {
  background-image: url("/source/9cce10aeeaa8458dab7075d4daa0ea7c.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.home-intro-container {
  display: flex;
  align-items: center;
  padding-top: 75px;
}
.home-intro-container-copy {
  width: 50%;
  padding-left: 10%;
  padding-right: 5%;
  box-sizing: border-box;
}
.home-intro-container-copy h2 {
  font-family: eurostile-condensed, sans-serif;
  font-size: 3rem;
  line-height: 2.85rem;
  color: #4192A9;
  font-style: italic;
}
.home-intro-container-image {
  width: 50%;
  box-sizing: border-box;
}
.home-intro-container-image img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .home-intro-container {
    flex-direction: column;
  }
  .home-intro-container-copy, .home-intro-container-image {
    width: 100%;
    margin-bottom: 25px;
  }
  .home-intro-container-copy {
    padding: 10%;
  }
}

.home-product-callout-container {
  display: flex;
  margin: 50px 12%;
}
.home-product-callout-container-text {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.home-product-callout-container-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-product-callout-container-image img {
  width: 100%;
  display: block;
}
@media (max-width: 1000px) {
  .home-product-callout-container {
    width: 80%;
    margin-top: 50px;
    flex-direction: column;
  }
  .home-product-callout-container-text, .home-product-callout-container-image {
    width: 100%;
  }
  .home-product-callout-container-image {
    padding: 40px;
  }
}

.product-header {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-header-slider-container {
  width: 49%;
  padding: 100px 0;
  padding-left: 6%;
}
.product-header-slider-nav {
  margin-top: 20px;
}
.product-header-slider-nav-item {
  width: 200px;
  height: 75px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.product-header-slider-nav-item img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
.product-header-slider-nav .slick-current {
  background: rgba(20, 86, 41, 0.25);
}
.product-header-slider-nav .slick-track {
  margin: 0;
}
.product-header-slider-item {
  /*padding: 0 75px;*/
}
.product-header-slider-item img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 350px;
  height: auto;
}
.product-header-slider .slick-dots {
  position: relative;
}
.product-header-slider .slick-dots li button:before {
  font-size: 40px;
}
.product-header-slider .slick-dots li.slick-active button:before {
  color: #37B44B;
}
.product-header-content {
  width: 49%;
  padding: 100px 0;
  padding-right: 100px;
}
.product-header-content-logo {
  max-width: 450px;
}
@media (max-width: 1100px) {
  .product-header-slider-item {
    padding: 0;
  }
  .product-header-slider-item img {
    max-width: 100%;
  }
  .product-header-slider-nav-item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
  }
  .product-header-content {
    padding-left: 25px;
    padding-right: 40px;
  }
  .product-header-content-logo {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .product-header {
    flex-direction: column-reverse;
  }
  .product-header-slider, .product-header-content {
    width: 100%;
    padding: 75px;
  }
  .product-header-slider {
    padding: 25px;
  }
  .product-header-slider-container {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .product-header-slider .slick-dots {
    position: relative;
  }
  .product-header-content {
    padding-bottom: 0;
  }
}
@media (max-width: 500px) {
  .product-header-slider, .product-header-content {
    padding: 25px;
  }
}

.product-body-texture {
  margin-top: -45px;
  display: block;
  width: 100%;
  position: relative;
}

.product {
  padding-bottom: 75px;
}
.product-subnav {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  background-color: #333333;
  width: 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
}
.product-subnav a {
  color: rgba(255, 255, 255, 0.75);
  margin: 5px 20px;
  transition: all 125ms ease;
}
.product-subnav a:hover {
  color: #37B44B !important;
}
@media (max-width: 800px) {
  .product-subnav {
    display: none;
  }
}
.product-body {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  background: white;
  padding: 50px;
}
.product-body h1, .product-body h2 {
  font-family: eurostile-condensed, sans-serif;
  font-size: 3rem;
  line-height: 2.9rem;
  font-style: italic;
  color: #145629;
}
.product-body .product-section-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 20px;
}
.product-body .product-section-header h3 {
  color: #37B44B;
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.7rem;
  display: inline-block;
  margin-right: 1rem;
}
.product-body .product-section-header::after {
  border-top: 1px solid #37B44B;
  display: block;
  height: 1px;
  content: " ";
  flex-grow: 1;
  top: 1.2em;
}
.product-body h4 {
  font-family: Eurostile, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 25px;
  margin-bottom: 15px;
}
.product-body .product-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product-body .product-intro-content {
  width: 49%;
  margin-top: 75px;
}
@media (max-width: 1150px) {
  .product-body .product-intro-content {
    margin-top: 0;
  }
}
.product-body .product-intro-image {
  width: 49%;
}
.product-body .product-intro-image img {
  width: 100%;
  display: block;
}
@media (max-width: 800px) {
  .product-body .product-intro {
    display: flex;
    flex-direction: column;
  }
  .product-body .product-intro-content, .product-body .product-intro-image {
    width: 100%;
  }
  .product-body .product-intro-image {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .product-body img {
    max-width: 100%;
  }
  .product-body table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .product-body table tr th, .product-body table tr td {
    width: 100% !important;
  }
}
.product-features table, .product-features tr, .product-features td {
  border: none !important;
}
.product-applications-accordion-title {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  text-transform: lowercase;
  font-weight: bold;
}
.product-applications-accordion-title:first-letter, .product-applications-accordion-title:first-line {
  text-transform: capitalize;
}
.product-applications-accordion-title:hover {
  background-color: rgba(20, 86, 41, 0.2);
}
.product-applications-accordion-title:after {
  content: "➕"; /* Unicode character for "plus" sign (+) */
  font-size: 9px;
  color: black;
  float: right;
  margin-left: 5px;
}
.product-applications-accordion-title.active:after {
  content: "➖"; /* Unicode character for "minus" sign (-) */
}
.product-applications-accordion-title:not(:first-of-type) {
  border-top: 1px solid;
}
.product-applications-accordion-content {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.product-applications-accordion-content:last-of-type {
  border-bottom: 1px solid;
}
.product-configurations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.product-configurations-list-entry {
  width: 33.33333%;
  margin-bottom: 40px;
  padding: 15px;
}
.product-configurations-list-entry-image {
  background: #E6E6E6;
  padding: 20px;
}
.product-configurations-list-entry-image img {
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.product-configurations-list-entry-content {
  background: #F7F7F7;
  padding: 15px;
  box-sizing: border-box;
}
.product-configurations-list-entry-content h4 {
  margin-top: 5px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 800;
  color: #145629;
}
.product-configurations-list-entry-content h5 {
  font-weight: 300;
  text-transform: uppercase;
}
.product-configurations-list-entry-content li {
  margin-bottom: 4px;
}
@media (max-width: 950px) {
  .product-configurations-list-entry {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .product-configurations-list-entry {
    width: 100%;
  }
}
.product-tabbed-resources-tabs {
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid;
  display: flex;
  flex-direction: row;
}
.product-tabbed-resources-tabs-tab {
  cursor: pointer;
  position: relative;
  margin-right: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 250ms ease;
}
.product-tabbed-resources-tabs-tab:before {
  content: "";
  height: 4px;
  background: transparent;
  position: absolute;
  top: -1rem;
  width: 100%;
  left: 0;
  transition: all 250ms ease;
}
.product-tabbed-resources-tabs-tab:hover:before {
  background: #37B44B;
}
.product-tabbed-resources-tabs-tab.selected {
  color: #37B44B;
}
.product-tabbed-resources-tabs-tab.selected:before {
  background: #37B44B;
}
.product-tabbed-resources-tabs .sizes div {
  width: 24%;
}
.product-tabbed-resources-tabs .sizes div:not(:nth-of-type(4n)) {
  margin-right: 1%;
}
.product-tabbed-resources-tabs .sizes div img {
  max-width: 100%;
}
.product-tabbed-resources-content {
  position: relative;
  text-align: left;
  display: none;
}
.product-tabbed-resources-content.current {
  display: block;
}
.product-tabbed-resources-content strong {
  color: #145629;
}
.product-tabbed-resources #videos .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 35px;
  padding-bottom: 56.25%;
}
.product-tabbed-resources #videos .video-wrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

table a {
  font-size: inherit;
}

.long-form-page-header {
  max-height: 400px;
  display: flex;
}
.long-form-page-header > img {
  object-fit: cover;
}

.landing-page-header {
  position: relative;
  margin-top: -17px;
  margin-bottom: 40px;
  padding: 15px 0;
  z-index: 1;
}
.landing-page-header-image {
  width: 100%;
  display: block;
}
.landing-page-header h1 {
  position: absolute;
  bottom: 50px;
  padding: 0 12%;
  font-family: eurostile-condensed, sans-serif;
  font-size: 3rem;
  line-height: 2.9rem;
  font-style: italic;
  color: white;
}
@media (max-width: 1000px) {
  .landing-page-header h1 {
    font-size: 2rem;
    line-height: 1.75rem;
    bottom: 30px;
    padding: 0 4%;
    width: 100%;
    text-align: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .landing-page-header {
    margin-bottom: 10px;
  }
  .landing-page-header h1 {
    font-size: 2.5rem;
    line-height: 2.4rem;
    color: black;
    margin-top: 25px;
    position: relative;
  }
  .landing-page-header-image {
    display: none !important;
  }
}
.landing-page-body {
  margin: 0 12%;
  position: relative;
}
.landing-page-body img {
  max-width: 100%;
  height: auto;
}
.landing-page-body-container {
  background: white;
  padding: 50px 8%;
}
.landing-page-body-container h1, .landing-page-body-container h2, .landing-page-body-container h3, .landing-page-body-container h4, .landing-page-body-container h5, .landing-page-body-container h6 {
  color: #37B44B;
  font-family: eurostile-condensed, sans-serif;
  font-style: italic;
}
.landing-page-body-container h1 {
  color: #145629;
}
@media (max-width: 1100px) {
  .landing-page-body {
    margin: 0 4%;
  }
}
@media (max-width: 650px) {
  .landing-page-body table:not(.non-responsive) {
    border: none !important;
  }
  .landing-page-body table:not(.non-responsive) tr, .landing-page-body table:not(.non-responsive) td {
    height: auto !important;
  }
  .landing-page-body table:not(.non-responsive) tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .landing-page-body table:not(.non-responsive) tr td {
    width: 100% !important;
    padding: 6px;
  }
  .landing-page-body table:not(.non-responsive) tr td:first-of-type {
    font-weight: bold;
    font-size: 1.25rem !important;
  }
}
.landing-page-grid {
  margin-top: 75px;
  display: flex;
  flex-wrap: wrap;
}
.landing-page-grid > a {
  background-size: cover;
  width: calc(33% - 30px);
  padding: 15px;
  margin: 0 15px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white !important;
  position: relative;
}
.landing-page-grid > a span {
  font-family: eurostile-condensed, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
.landing-page-grid > a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.landing-page-grid > a:after {
  content: "";
  padding-top: 56.25%;
  display: block;
}
@media (max-width: 1100px) {
  .landing-page-grid > a {
    width: calc(50% - 30px);
  }
}
@media (max-width: 675px) {
  .landing-page-grid > a {
    width: 100%;
  }
}
.landing-page-resources-downloads {
  margin-top: 40px;
}
.landing-page-resources-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.landing-page-resources-grid-entry {
  width: 25%;
  text-align: center;
  padding: 10px;
  margin-bottom: 25px;
}
.landing-page-resources-grid-entry > span {
  display: block;
  color: #37B44B;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.landing-page-resources-grid-entry-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.landing-page-resources-grid-entry-image:after {
  content: "";
  display: block;
  padding-top: 129%;
}
@media (max-width: 700px) {
  .landing-page-resources-grid-entry {
    width: 33%;
  }
}
@media (max-width: 450px) {
  .landing-page-resources-grid-entry {
    width: 50%;
  }
}

.resources-page-body-container {
  padding-right: calc(8% + 250px);
}
.resources-page-featured-image {
  float: right;
  max-width: 300px !important;
  margin-left: 20px;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .resources-page-featured-image {
    max-width: 200px !important;
  }
}
@media (max-width: 520px) {
  .resources-page-featured-image {
    max-width: 150px !important;
  }
}
@media (max-width: 400px) {
  .resources-page-featured-image {
    display: none !important;
  }
}
.resources-page-subnav {
  background: #333333;
  color: white;
  position: absolute;
  right: 50px;
  top: -25px;
  width: 250px;
  padding: 25px;
}
.resources-page-subnav h3 {
  color: #37B44B;
}
.resources-page-subnav .current {
  color: #4192A9;
}
@media (max-width: 1100px) {
  .resources-page-subnav {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 50px;
  }
}
@media (max-width: 1100px) {
  .resources-page-body-container {
    padding: 50px 8%;
  }
}

.seo-landing-page-header {
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 0;
}
.seo-landing-page-header > img {
  position: relative;
  z-index: 3;
  display: block;
  margin: 0 auto;
  max-width: 800px;
  padding: 50px 25px;
  width: 100%;
}
.seo-landing-page-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.seo-landing-page-body-content-full {
  width: 100%;
  text-align: center;
}
.seo-landing-page-body-content {
  width: 49%;
}
.seo-landing-page-body-content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  padding: 0.5em;
  font-size: 1em;
  width: 100%;
  background: white;
}
.seo-landing-page-body-content .select-container {
  position: relative;
  display: inline;
}
.seo-landing-page-body-content .select-container:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.seo-landing-page-body-content .select-container:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 0.4em;
  right: 0.75em;
  border-top: 8px solid black;
  opacity: 0.5;
}
.seo-landing-page-body-content .umbraco-forms-page {
  background: #f3f3f3;
}
.seo-landing-page-body-content .umbraco-forms-caption {
  background: #145629;
  color: white;
  font-family: eurostile-condensed, sans-serif;
  font-style: italic;
  padding: 0 25px;
}
.seo-landing-page-body-content .umbraco-forms-navigation {
  padding: 1em !important;
}
.seo-landing-page-body-content .umbraco-forms-navigation .button {
  margin: 0;
}
.seo-landing-page-body-content .umbraco-forms-form input.text, .seo-landing-page-body-content .umbraco-forms-form textarea, .seo-landing-page-body-content .umbraco-forms .select-container {
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 750px) {
  .seo-landing-page-body {
    flex-direction: column;
  }
  .seo-landing-page-body-content {
    width: 100%;
  }
}

.related {
  margin-bottom: 50px;
}
.related h2 {
  color: #788D93;
  font-weight: 900;
  font-family: eurostile-condensed, sans-serif;
  font-style: italic;
  text-align: center;
}
.related-products {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
}
.related-products-entry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
}
.related-products-entry > img {
  height: 175px;
}
.related-products-entry > p {
  font-weight: 800;
  text-transform: uppercase;
  color: #A0A0A0;
}
@media (max-width: 750px) {
  .related-products {
    flex-direction: column;
    align-items: center;
  }
}

.item-list {
  padding-bottom: 75px;
}
.item-list-entry {
  clear: both;
}
.item-list-entry h2 {
  border-bottom: 1px solid gray;
  padding-bottom: 15px;
}
.item-list-entry-image {
  float: right;
  max-width: 350px;
}

.accordions h3 {
  margin-top: 35px;
}

.data-table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px 0;
}
.data-table h1, .data-table h2, .data-table h3, .data-table h4, .data-table h5, .data-table h6 {
  margin: 0;
  font-size: 1.25rem !important;
  line-height: 1.25rem !important;
}
.data-table td,
.data-table th {
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin: 0;
  padding: 1rem;
  vertical-align: top;
}
.data-table.has-first-row-headers tbody tr:first-child {
  background-color: #eee;
}
.data-table.has-first-row-headers tbody tr:first-child * {
  font-size: 1.6rem;
}
@media only screen and (max-width: 579px), only screen and (min-width: 580px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .data-table.has-first-row-headers tbody tr:first-child {
    display: none;
  }
}
@media only screen and (max-width: 579px), only screen and (min-width: 580px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .data-table.has-header {
    border: none !important;
  }
  .data-table.has-header tr {
    display: block;
    margin-bottom: 25px;
  }
  .data-table.has-header tr td {
    border-top-width: 0;
    display: block;
    width: 100% !important;
  }
  .data-table.has-header tr td:first-child {
    border-top-width: 1px;
  }
  .data-table.has-header tr td:not(.mobile-header):before {
    background-color: #eee;
    content: attr(data-th);
    display: block;
    font-size: 1.6rem;
    margin: -1rem -1rem 5px;
    padding: 0.5rem 1rem;
  }
  .data-table.has-header tr td.mobile-header {
    background-color: #241f20;
    color: #ffffff;
    font-size: 1.6rem;
    text-transform: uppercase;
  }
  .data-table.has-header thead tr:first-child {
    display: none;
  }
}

html, body {
  background-color: #F5F5F5;
}

.button {
  display: inline-block;
  margin: 30px 0 20px;
  padding: 15px 25px;
  font-weight: bold;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 4px;
}
.button-red {
  background-color: #C23838;
  color: white;
  transition: background-color 250ms ease;
}
.button-red:hover {
  background-color: rgba(194, 56, 56, 0.75);
}
.button-gray {
  background-color: #E0E1E2;
  color: #333333;
  transition: background-color 250ms ease;
}
.button-gray:hover {
  background-color: rgba(224, 225, 226, 0.75);
}
.button-green {
  background-color: #37B44B;
  color: white;
  transition: background-color 250ms ease;
}
.button-green:hover {
  background-color: rgba(55, 180, 75, 0.75);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-banner {
  color: white;
  text-align: center;
  padding: 8px 0;
  background: #37B44B;
}

.search-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
}
.search-form input[type=text] {
  padding: 10px;
  border-radius: 5px;
}
.search-form .button {
  margin-top: 10px;
  padding: 7px 20px;
}

.search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.search-overlay form {
  max-width: 500px;
  width: 100%;
}
