﻿nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 100;
  display: flex;
  background-color: rgba(175, 175, 175, 0.35);
  border-bottom: 1px solid white;
  transition: all 1250ms ease;
}
@media (max-width: 1050px) {
  nav {
    height: 90px;
    justify-content: space-between;
  }
}
nav ul.main-nav {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  margin: 0;
  list-style-type: none;
  width: 100%;
  height: 100%;
}
nav ul.main-nav > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
}
nav ul.main-nav > li > a {
  font-family: "brother-1816", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.025rem;
  text-align: center;
  margin: 0 15px;
  color: white;
  transition: all 250ms ease;
  border-bottom: 4px solid transparent;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
}
@media (max-width: 1075px) {
  nav ul.main-nav > li > a {
    margin: 0 10px;
  }
}
nav ul.main-nav > li > a:hover {
  border-bottom: 3px solid #004976;
}
nav ul.main-nav > li.is-open > a {
  border-bottom: 3px solid #004976;
}
nav ul.main-nav > li.is-open > .megamenu-content {
  visibility: visible;
  opacity: 1;
}
nav ul.main-nav > li.is-open > .megamenu-content .megamenu-content-container {
  padding-top: 40px;
}
nav ul.main-nav > li.is-open > .nav-link {
  background: #fff;
  color: #333;
}
nav .nav-content {
  width: 100%;
  display: flex;
}
@media (max-width: 1050px) {
  nav .nav-content {
    display: none;
  }
}
nav .nav-icon-white {
  display: none;
}
nav .nav-logo-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-logo-container img {
  width: 100%;
  max-width: 225px;
}
nav .nav-item-container {
  width: 65%;
  border: 1px solid white;
  border-top: none;
  border-bottom: none;
}
@media (max-width: 1150px) {
  nav .nav-item-container {
    width: 71%;
  }
}
nav .nav-item-container-upper {
  border-bottom: 1px solid white;
  height: 45px;
  display: flex;
  justify-content: flex-end;
}
nav .nav-item-container-upper .search {
  width: 250px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border: none;
  background-color: #F1F1F1;
  height: 100%;
  position: relative;
}
nav .nav-item-container-upper .search form {
  display: flex;
  align-items: center;
}
nav .nav-item-container-upper .search input {
  width: 100%;
  border: none;
  background-color: transparent;
  height: 45px;
  padding: 0 10px;
}
nav .nav-item-container-upper .search button {
  position: absolute;
  right: 5px;
  padding: 5px 15px;
}
nav .nav-item-container-upper .search button img {
  height: 18px;
}
nav .nav-item-container-upper > a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  color: white;
}
nav .nav-item-container-upper > a img {
  height: 70%;
  margin-right: 12px;
}
nav .nav-item-container-upper-accent-link {
  background: rgb(0, 139, 196);
  background: linear-gradient(122deg, rgb(0, 139, 196) 0%, rgb(0, 110, 179) 100%);
  min-width: 150px;
  display: flex;
  border-left: 1px solid white;
  text-transform: uppercase;
  font-weight: 700;
}
nav .nav-item-container-lower {
  height: 95px;
}
nav .nav-item-container-lower .nav-links-container > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
nav .nav-item-container-lower .nav-links-container-link {
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 0 !important;
  margin-bottom: 0;
  position: relative;
  padding: 6px 0;
  padding-left: 2px;
  padding-right: 20px;
  transition: color 250ms ease;
  text-transform: uppercase;
}
nav .nav-item-container-lower .nav-links-container-link a {
  color: white;
}
nav .nav-item-container-lower .nav-links-container-link:hover {
  color: #ffffff;
}
nav .nav-item-container-lower .nav-links-container-link:hover > .nav-links-container-dropdown:not(.dropdown-mobile) {
  display: block;
}
nav .nav-item-container-lower .nav-links-container-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-item-container-lower .nav-links-container-dropdown > ul {
  list-style-type: none;
  display: block;
  margin: 15px;
  padding: 0;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li {
  transition: color 250ms ease;
  color: white !important;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li a {
  color: white !important;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li:hover {
  color: #ffffff;
}
nav .nav-spacer {
  flex: 1;
}
nav.nav-scrolled {
  background-color: white;
  border-color: #EBEBEB;
}
nav.nav-scrolled * {
  border-color: #EBEBEB;
}
nav.nav-scrolled .nav-item-container a:not(.nav-item-container-upper-accent-link) {
  color: #004976;
}

.mobile-main-link {
  display: none;
}

.nav-logo-container-mobile {
  display: none;
}

.nav-trigger {
  display: none;
}
@media (max-width: 800px) {
  .nav-trigger {
    display: block;
    width: 50px;
    position: absolute;
    top: 75px;
    right: 66px;
  }
}
@media (max-width: 450px) {
  .nav-trigger {
    top: 65px;
  }
}

/*MegaMenu Styles*/
.small-menu {
  position: absolute;
  top: 140px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.15s;
  background: white;
  padding: 30px;
  width: 220px;
  margin-left: -80px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.small-menu h3 {
  color: #004976;
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .small-menu h3 {
    text-align: center;
  }
}
.small-menu h3 a {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.small-menu a {
  font-weight: 300;
  display: block;
  margin-left: 10px;
  margin-bottom: 7px;
  color: black;
  transition: color 150ms ease;
  text-align: left;
}
.small-menu a:hover {
  color: #004976;
}

.megamenu-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;
  overflow: visible;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.15s;
  width: 80%;
  background-color: white;
  padding: 0 5%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 30px -5px;
}
@media (max-width: 1350px) {
  .megamenu-content {
    padding: 0 25px;
  }
}
.megamenu-content .megamenu-content-container {
  display: flex;
  justify-content: flex-start;
  padding: 40px;
  transition: padding-top 0.45s linear;
}
.megamenu-content p, .megamenu-content span, .megamenu-content div {
  color: black;
}
.megamenu-content h3 {
  font-family: "brother-1816";
}
.megamenu-content-lower {
  width: 100%;
  height: 60px;
  background: #628196;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}
.megamenu-content-lower h3 {
  color: white;
  font-weight: bold;
  margin-right: 30px;
}
.megamenu-content-lower a {
  color: white;
  font-size: 98%;
}
.megamenu-content-lower a:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid #004976;
  margin-right: 15px;
}
.megamenu-content .megamenu {
  /*    &-left-spotlight {
    max-width: 400px;
    margin: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    &-image {
      margin-right: 10px;
      max-width: 300px;
      width: 100%;
      align-self: center;
    }

    &-content-logo {
      max-width: 175px;
      margin-right: 25px;
    }

    h3 {
      color: $red;
      margin-bottom: 10px;
    }

    p {
      font-size: 1rem;
    }

    .button {
      min-width: 150px;
    }

    @media(max-width: 1000px) {
      display: none;
    }

    @media(max-width: 768px) {
      display: flex;
      border-right: 0;
      margin-right: 0 !important;
      padding-right: 0 !important;
      margin-bottom: 25px;
    }
  }*/
}
.megamenu-content .megamenu-lower-callout {
  display: flex;
  background-color: #53565A;
  height: 100px;
  position: absolute;
  left: 0;
  width: 100%;
}
.megamenu-content .megamenu-lower-callout * {
  margin: 0;
  padding: 0;
}
.megamenu-content .megamenu-lower-callout h4, .megamenu-content .megamenu-lower-callout p {
  color: white !important;
  text-align: left;
}
.megamenu-content .megamenu-lower-callout h4 {
  text-transform: uppercase;
}
.megamenu-content .megamenu-lower-callout p {
  font-family: "brother-1816";
  font-weight: 300;
}
.megamenu-content .megamenu-lower-callout .megamenu-button {
  background: #B2BCBC;
  color: black;
  padding: 10px 20px;
  border-radius: 4px;
  transform: all 250ms ease;
}
.megamenu-content .megamenu-lower-callout .megamenu-button:hover {
  background: #C9D5D5;
}
.megamenu-content .megamenu-lower-callout > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
}
.megamenu-content .megamenu-lower-callout > div:first-of-type {
  background-color: #004976;
}
.megamenu-content .megamenu-lower-callout > div:nth-of-type(2) {
  max-width: 500px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .megamenu-content .megamenu-lower-callout {
    display: none !important;
  }
}
.megamenu-content .megamenu-hover-panel {
  width: 100%;
  max-width: 300px;
  background: #F2F2F2;
  padding: 30px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 500ms ease;
}
.megamenu-content .megamenu-hover-panel-active {
  opacity: 1;
}
.megamenu-content .megamenu-hover-panel p, .megamenu-content .megamenu-hover-panel h4 {
  margin: 0;
  margin-bottom: 5px;
}
.megamenu-content .megamenu-hover-panel-logo {
  width: 100%;
  max-width: 200px;
  min-height: 60px;
  margin-bottom: 5px;
}
.megamenu-content .megamenu-hover-panel-logo img {
  width: 100%;
}
.megamenu-content .megamenu-hover-panel-icons {
  margin-top: 25px;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.megamenu-content .megamenu-hover-panel-icons > span {
  width: 50%;
  display: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  text-align: left;
  font-size: 0.6rem;
}
.megamenu-content .megamenu-hover-panel-icons > span.active {
  display: flex;
}
.megamenu-content .megamenu-hover-panel-icons > span img {
  max-width: 30px;
  margin-right: 3px;
}
@media (max-width: 1450px) {
  .megamenu-content .megamenu-hover-panel {
    display: none !important;
  }
}
.megamenu-content .megamenu-subnav {
  margin-right: 35px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-width: 10%;
}
.megamenu-content .megamenu-subnav.megamenu-column {
  border-left: 1px solid #EBEBEB;
  padding: 0 50px;
  margin-right: 0;
}
.megamenu-content .megamenu-subnav.megamenu-column a {
  text-wrap: nowrap;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 10px;
  margin-right: 50px;
  color: #00263E;
  transition: color 250ms ease;
}
@media (max-width: 1700px) {
  .megamenu-content .megamenu-subnav.megamenu-column a {
    margin-right: 20px;
  }
}
.megamenu-content .megamenu-subnav.megamenu-column a:hover {
  color: #006EB3;
}
.megamenu-content .megamenu-subnav.megamenu-column h3 {
  color: #B7C9D3;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 250ms ease;
}
.megamenu-content .megamenu-subnav.megamenu-column:hover h3 {
  color: #C1A01F;
}
.megamenu-content .megamenu-subnav .megamenu-column-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 250px;
  width: 350px;
}
@media (max-width: 1700px) {
  .megamenu-content .megamenu-subnav .megamenu-column-links {
    width: 275px;
  }
}
@media (max-width: 1250px) {
  .megamenu-content .megamenu-subnav .megamenu-column-links {
    max-height: none;
  }
}
.megamenu-content .megamenu-subnav p, .megamenu-content .megamenu-subnav h3 {
  font-size: 90%;
  margin: 0;
}
.megamenu-content .megamenu-subnav h3 {
  color: #004976;
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 10px;
}
.megamenu-content .megamenu-subnav h3 a {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.megamenu-content .megamenu-subnav a {
  /*font-weight: 300;
  display: block;
  margin-bottom: 7px;
  color: inherit;
  transition: color 150ms ease;*/
  color: #00263E;
}
.megamenu-content .megamenu-subnav a:hover {
  color: #004976;
}
.megamenu-content .megamenu-subnav-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.megamenu-content .megamenu-subnav-list-item-link {
  color: black;
}
.megamenu-content .megamenu-content-image-container {
  max-width: 300px;
  margin-right: 50px;
}
.megamenu-content .megamenu-content-image-container img {
  width: 100%;
}
.megamenu-content .megamenu-content-image-container p {
  color: #004976;
  margin-top: 5px;
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-weight: 300;
}
.megamenu-content .megamenu-info-block {
  width: 30%;
}
.megamenu-content .megamenu-info-block h3 {
  color: #00263E;
  font-size: 1.9rem;
  line-height: 1.9rem;
  font-weight: 200;
}
.megamenu-content .megamenu-info-block p {
  color: #00263E;
}
.megamenu-content .megamenu-info-block a {
  width: fit-content;
}
.megamenu-content .megamenu-info-block-image {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.megamenu-content .megamenu-info-block-image img {
  height: 40px;
  margin-right: 10px;
}
.megamenu-content .megamenu-info-block-image p {
  color: #006EB3;
  line-height: 1.2rem;
}

.megamenu-background {
  background: #fff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: calc(140px * 1.5);
  right: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  display: flex;
  width: 80%;
}

.megamenu-dim {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 140px;
  visibility: hidden;
  opacity: 0;
  z-index: -9997;
  transition: all 0.3s ease-in-out;
}
body.megamenu-visible .megamenu-dim {
  z-index: 9997;
  visibility: visible;
  opacity: 1;
}

.mobile-logo {
  display: none;
  max-width: 180px;
  margin-top: 20px;
  margin-left: 25px;
}
@media (max-width: 1050px) {
  .mobile-logo {
    display: block;
  }
}
.mobile-logo img {
  max-width: 100%;
}

.mobile-search {
  display: none;
  height: 33px;
  width: 32px;
  margin-top: 30px;
  position: absolute;
  right: 90px;
  z-index: 1000;
}
@media (max-width: 1050px) {
  .mobile-search {
    display: block;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100vw;
  height: 100vh;
  z-index: 100;
  overflow-y: scroll;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav-trigger {
  display: none;
  height: 80px;
  width: 80px;
  margin-top: 5px;
  margin-right: 5px;
  position: relative;
  z-index: 1000;
  /*Hamburger Animation*/
}
@media (max-width: 1050px) {
  .mobile-nav-trigger {
    display: block;
  }
}
.mobile-nav-trigger .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-nav-trigger .hamRotate.active {
  transform: rotate(45deg);
}
.mobile-nav-trigger .hamRotate180.active {
  transform: rotate(180deg);
}
.mobile-nav-trigger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #006EB3;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.mobile-nav-trigger .ham4 .top {
  stroke-dasharray: 40 121;
}
.mobile-nav-trigger .ham4 .bottom {
  stroke-dasharray: 40 121;
}
.mobile-nav-trigger .ham4.active .top {
  stroke-dashoffset: -68px;
}
.mobile-nav-trigger .ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.mobile-nav > li {
  list-style: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #00263E;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}
.mobile-nav-logo {
  max-width: 300px;
  margin: 0 25px;
  margin-top: 100px;
  margin-bottom: 50px;
}
.mobile-nav-logo img {
  max-width: 100%;
}
.mobile-nav-dropdown-content-section h3 {
  text-align: center;
  font-size: 1.1rem;
  color: #B7C9D3;
  color: #C1A01F;
  margin-bottom: 5px;
  margin-top: 15px;
}
.mobile-nav-dropdown-content-section-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav-dropdown-content-section-links a {
  text-transform: none;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: normal;
}

#searchModal {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10000000000000;
}
#searchModal .close-x {
  top: 35px;
  right: 25px;
  font-size: 3rem;
  cursor: pointer;
  color: white;
}
@media (max-width: 769px) {
  #searchModal .close-x {
    font-size: 2.25rem;
  }
}
#searchModal .searchModalInputs {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#searchModal .searchForm input:first-child {
  background: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  width: 35vw;
  font-size: 3rem;
  line-height: 3rem;
  padding: 0.5rem;
}
@media (max-width: 769px) {
  #searchModal .searchForm input:first-child {
    width: 65vw;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
#searchModal .searchForm input:last-child {
  cursor: pointer;
  height: 50px;
  width: 50px;
  /*background: url(/Images/search-icon.png);*/
  /*background-size: contain;
  background-repeat: no-repeat;*/
  -webkit-appearance: none;
  border: none;
}
@media (max-width: 769px) {
  #searchModal .searchForm input:last-child {
    height: 35px;
    width: 35px;
  }
}
#searchModal .searchForm button {
  cursor: pointer;
  height: 50px;
  -webkit-appearance: none;
  border: none;
}
@media (max-width: 769px) {
  #searchModal .searchForm button {
    height: 35px;
    width: 35px;
  }
}

h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
}
@media (max-width: 769px) {
  h2 {
    font-size: 2.75rem;
    line-height: 3rem;
  }
}

.product-header {
  margin-top: 140px;
}
@media (max-width: 1050px) {
  .product-header {
    margin-top: 90px;
  }
}
.product-header-text {
  padding: 40px 12%;
}
@media (max-width: 769px) {
  .product-header-text {
    padding: 40px 6%;
  }
}
.product-header-text h1 {
  color: #00263E;
  font-weight: 200;
  text-transform: none;
  font-size: 4.5rem;
  line-height: 4.5rem;
}
@media (max-width: 769px) {
  .product-header-text h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.product-header-text h2 {
  color: #00263E;
  font-weight: bold;
  margin-left: 100px;
  font-size: 1.75rem;
  line-height: 1.75rem;
}
@media (max-width: 769px) {
  .product-header-text h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-left: 50px;
  }
}
.product-header-slider {
  position: relative;
}
.product-header-slider-container {
  height: 65vh;
  width: 100%;
}
@media (max-width: 1600px) {
  .product-header-slider-container {
    height: 600px;
  }
}
@media (max-width: 769px) {
  .product-header-slider-container {
    height: 400px;
  }
}
.product-header-slider-arrow {
  position: absolute;
  height: 150px;
  top: calc(50% - 50px);
}
@media (max-width: 769px) {
  .product-header-slider-arrow {
    height: 100px;
  }
}
.product-header-slider-arrow img {
  max-height: 100%;
}
.product-header-slider .arrow-left {
  left: 50px;
}
.product-header-slider .arrow-right {
  right: 50px;
}
.product-header-slider-callouts {
  position: absolute;
  top: -45px;
  right: 10%;
  display: flex;
  align-items: center;
}
@media (max-width: 769px) {
  .product-header-slider-callouts {
    top: -40px;
    flex-direction: column;
    right: 0;
  }
}
.product-header-slider-callouts img {
  height: 80px;
  margin-right: 25px;
}
@media (max-width: 769px) {
  .product-header-slider-callouts img {
    height: 50px;
    margin-right: 10px;
  }
}
.product-header-slider-callouts .american-made {
  height: 90px;
}
@media (max-width: 769px) {
  .product-header-slider-callouts .american-made {
    height: 60px;
    margin-bottom: -8px;
  }
}
.product-header-slider-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.product-sub-hero {
  padding: 80px 230px 70px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 1200px) {
  .product-sub-hero {
    padding: 80px 12% 70px;
  }
}
.product-sub-hero h2 {
  font-size: 3.75rem;
  line-height: 3.75rem;
  margin-bottom: 1em;
  color: #00263E;
}
@media (max-width: 769px) {
  .product-sub-hero h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}
.product-sub-hero-content {
  max-width: 1200px;
}
.product-sub-hero-content p {
  margin-bottom: 1em;
  color: #00263E;
}

.product-page-nav {
  width: 100%;
  padding: 40px 12%;
  background: linear-gradient(-90deg, #00263E, #008BC4);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1300px) {
  .product-page-nav {
    flex-direction: column;
    padding: 50px 12%;
  }
}
.product-page-nav a {
  color: white;
  padding: 20px 50px;
  border-right: 1px solid white;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.5rem;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 200;
  /*transition: all 0.3s;*/
}
@media (max-width: 1300px) {
  .product-page-nav a {
    border-right: none;
    max-width: 325px;
    width: 100%;
  }
  .product-page-nav a:not(:last-of-type) {
    border-bottom: 1px solid white;
  }
}
.product-page-nav a:hover {
  color: #C1A01F;
  font-weight: normal;
}
.product-page-nav a:last-child {
  border-right: none;
}

.highlights {
  padding: 100px 10%;
  padding-right: 0;
  display: flex;
  background-size: cover;
  background-position: center;
}
@media (max-width: 950px) {
  .highlights {
    padding: 100px 5%;
  }
}
.highlights-content {
  width: 100%;
  display: flex;
}
@media (max-width: 1300px) {
  .highlights-content {
    flex-direction: column;
  }
}
.highlights-header {
  width: 35%;
  display: flex;
  justify-content: end;
  padding: 80px 5%;
}
@media (max-width: 1300px) {
  .highlights-header {
    width: 100%;
    justify-content: start;
    padding-top: 0;
    padding-left: 0;
  }
}
@media (max-width: 1300px) {
  .highlights-header {
    padding-bottom: 30px;
  }
}
.highlights-header h2 {
  color: white;
}
.highlights-info {
  padding: 50px;
  background-color: white;
  width: 100%;
}
.highlights-info-container {
  display: flex;
  align-items: center;
  width: 65%;
  background-color: white;
}
@media (max-width: 1300px) {
  .highlights-info-container {
    width: 100%;
  }
}
.highlights-info-selector {
  display: flex;
}
@media (max-width: 950px) {
  .highlights-info-selector {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 725px) {
  .highlights-info-selector {
    flex-direction: column;
  }
}
.highlights-info-selector a {
  color: white;
  background-color: #DFDFDF;
  border: 1px solid #DFDFDF;
  padding: 8px 80px;
  text-transform: uppercase;
  font-size: 1.25rem;
}
@media (max-width: 769px) {
  .highlights-info-selector a {
    padding: 8px 20px;
  }
}
@media (max-width: 725px) {
  .highlights-info-selector a {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}
.highlights-info-selector > .selected {
  /*color: #DFDFDF;*/
  background-color: #006EB3;
}
.highlights-info-content {
  display: flex;
  margin-top: 2em;
  display: none;
}
@media (max-width: 950px) {
  .highlights-info-content {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.highlights-info-content.selected {
  display: flex;
}
.highlights-info-content-buttons {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-right: 10%;
}
@media (max-width: 950px) {
  .highlights-info-content-buttons {
    width: auto;
    align-items: center;
    padding-right: 0;
  }
}
.highlights-info-content-buttons a {
  padding: 20px 0;
  border-bottom: 1px solid #DFDFDF;
  color: #00263E;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 200;
}
@media (max-width: 950px) {
  .highlights-info-content-buttons a {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.highlights-info-content-buttons a.selected {
  font-weight: normal;
  color: #006EB3;
}
.highlights-info-content-images {
  width: 65%;
  max-height: 500px;
}
@media (max-width: 950px) {
  .highlights-info-content-images {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 950px) {
  .highlights-info-content-images a {
    display: flex;
    justify-content: center;
  }
}
.highlights-info-content-images img {
  display: none;
  max-width: 100%;
  max-height: 500px;
}
.highlights-info-content-images img.selected {
  display: block;
}
.highlights-info-thermo {
  display: none;
  min-height: 100px;
}
.highlights-info-thermo.selected {
  display: flex;
}

.features {
  padding: 100px 10%;
  padding-right: 0;
  display: flex;
  background-color: #EBEBEB;
  justify-content: flex-end;
  scroll-margin-top: 140px;
}
@media (max-width: 1300px) {
  .features {
    flex-direction: column;
    padding-right: 10%;
  }
}
.features-text {
  width: 45%;
  padding-right: 5%;
  max-width: 800px;
}
@media (max-width: 1300px) {
  .features-text {
    width: 100%;
    padding: 50px 0;
  }
}
.features-text > div {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
}
.features-text h2 {
  color: #00263E;
}
.features-text h3 {
  text-transform: uppercase;
  color: #00263E;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media (max-width: 769px) {
  .features-text h3 {
    font-size: 1.2rem;
    line-height: 1.25rem;
  }
}
.features-text p {
  color: #00263E;
}
.features-image {
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 1200px;
}

.inspiration {
  padding: 100px 12%;
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (max-width: 650px) {
  .inspiration {
    padding: 100px 5%;
    padding-right: calc(5% - 8px);
  }
}
.inspiration-slider {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-right: 70px;
}
@media (max-width: 500px) {
  .inspiration-slider {
    margin-right: 0;
  }
}
.inspiration-slider .slick-dots li button:before {
  border-color: #B7C9D3;
}
.inspiration-slider .slick-dots li.slick-active button:before {
  background: #B7C9D3;
}
.inspiration-slider-link {
  position: absolute;
  /*left: 510px;*/
  right: -75px;
  top: 38px;
  width: 70px;
  height: 225px;
  background: rgba(235, 235, 235, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #B7C9D3;
}
@media (max-width: 800px) {
  .inspiration-slider-link {
    width: 50px;
    height: 200px;
    left: 360px;
  }
}
@media (max-width: 500px) {
  .inspiration-slider-link {
    transform: rotate(90deg);
    left: 141px;
    top: 102px;
    height: 343px;
    width: 60px;
    margin-right: 8px;
  }
}
@media (max-width: 400px) {
  .inspiration-slider-link {
    left: 116px;
    top: 90px;
    height: 292px;
  }
}
.inspiration-slider-link * {
  color: #B7C9D3;
}
.inspiration-slider-link img {
  height: 55%;
  z-index: 1;
}
.inspiration-slider-link-background {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background: rgb(0, 38, 62);
  background: linear-gradient(160deg, rgb(0, 38, 62) 0%, rgb(0, 139, 196) 100%);
  transition: all 500ms ease;
}
.inspiration-slider-link-background-dark {
  opacity: 1;
  display: block;
}
.inspiration-slider-link-background-light {
  opacity: 0;
  display: none;
}
.inspiration-slider-link:hover .inspiration-slider-link-background {
  opacity: 1;
}
.inspiration-slider-link:hover .inspiration-slider-link-background-dark {
  opacity: 0;
  display: none;
}
.inspiration-slider-link:hover .inspiration-slider-link-background-light {
  opacity: 1;
  display: block;
}
.inspiration-slider-arrows {
  display: flex;
  margin-bottom: 8px;
}
.inspiration-slider-container {
  width: 1200px;
  height: 225px;
}
@media (max-width: 1600px) {
  .inspiration-slider-container {
    width: 600px;
  }
}
@media (max-width: 800px) {
  .inspiration-slider-container {
    width: 350px;
    height: 200px;
  }
}
@media (max-width: 400px) {
  .inspiration-slider-container {
    width: 300px;
    height: 160px;
  }
}
.inspiration-slider-container .slick-track {
  /*margin-right: -40px;*/
}
.inspiration-slider-container .slick-track > div {
  margin-right: 8px;
}
.inspiration-slider-container-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  /*border: 3px solid #B7C9D3;*/
  margin-right: 10px;
  overflow: hidden;
}
.inspiration-slider-container-slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(315deg, rgba(0, 0, 0, 0.6022058482) 0%, rgba(255, 255, 255, 0) 47%);
}
.inspiration-slider-container-slide-text-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
}
.inspiration-slider-container-slide-text * {
  color: #B7C9D3;
  text-align: left;
}
.inspiration-slider-container-slide-text span:nth-of-type(1) {
  font-family: fairplex-narrow, serif;
  font-size: 1.2rem;
}
.inspiration-slider-container-slide-text span:nth-of-type(2) {
  text-transform: uppercase;
}

.overview {
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}
.overview-video-wrapper {
  width: 100%;
  height: fit-content;
  max-height: 100vh;
}
.overview-video-wrapper .video-poster {
  display: block;
}
.overview-video-wrapper .play-button {
  max-width: 120px;
}
@media (max-width: 769px) {
  .overview-video-wrapper .play-button {
    max-width: 50px;
  }
}
.overview-video-wrapper .thumbnail-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  left: 12%;
  bottom: 50px;
}
@media (max-width: 769px) {
  .overview-video-wrapper .thumbnail-overlay {
    left: 5%;
  }
}
.overview-video-wrapper .thumbnail-overlay-text {
  margin-left: 20px;
}
.overview-video-wrapper .thumbnail-overlay-text h2 {
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 769px) {
  .overview-video-wrapper .thumbnail-overlay-text h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}
.overview-video-wrapper .thumbnail-overlay-text h3 {
  color: white;
  font-weight: 200;
  font-size: 3.5rem;
  line-height: 3.5rem;
}
@media (max-width: 769px) {
  .overview-video-wrapper .thumbnail-overlay-text h3 {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.overview-video-wrapper .play-button-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.overview-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.resources {
  scroll-margin-top: 140px;
}
.resources-grid {
  margin: 200px 12% -280px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1550px) {
  .resources-grid {
    flex-direction: column;
    margin: 150px 80px -280px;
  }
}
@media (max-width: 500px) {
  .resources-grid {
    margin: 150px 6% -280px;
  }
}
.resources-grid-column {
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.resources-grid-column:nth-child(2n) {
  margin-top: -125px;
}
@media (max-width: 1550px) {
  .resources-grid-column:nth-child(2n) {
    margin-top: 0;
  }
}
@media (max-width: 1550px) {
  .resources-grid-column {
    flex-direction: row;
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .resources-grid-column {
    flex-direction: column;
    align-items: center;
  }
}
.resources-grid-column-entry {
  background-color: #EBEBEB;
  margin: 50px 0;
  display: flex;
  padding: 30px 40px;
  height: 300px;
  z-index: 10;
}
@media (max-width: 1550px) {
  .resources-grid-column-entry {
    margin: 50px;
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .resources-grid-column-entry {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .resources-grid-column-entry {
    flex-direction: column;
    position: relative;
    margin-bottom: 80px;
    height: auto;
  }
}
@media (max-width: 500px) {
  .resources-grid-column-entry {
    margin: 60px 0;
  }
}
.resources-grid-column-entry-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 600px) {
  .resources-grid-column-entry-text {
    margin-top: 75px;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.resources-grid-column-entry-text h3 {
  font-weight: 200;
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 10px;
  color: #00263E;
}
@media (max-width: 769px) {
  .resources-grid-column-entry-text h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
.resources-grid-column-entry-link {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .resources-grid-column-entry-link {
    width: 100%;
  }
}
.resources-grid-column-entry-link img {
  width: 150px;
  margin-top: -75px;
}
@media (max-width: 600px) {
  .resources-grid-column-entry-link img {
    position: absolute;
    top: 0;
    width: 120px;
  }
}
.resources-grid-column-entry-link a {
  /*font-family: "Roboto, sans-serif";*/
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
  color: #C1A01F;
}
@media (max-width: 769px) {
  .resources-grid-column-entry-link a {
    font-size: 1.1rem;
  }
}
.resources-grid-column-entry-link a.disabled {
  text-decoration: none;
  pointer-events: none;
}
.resources-grid-column-entry-link a.disabled:hover {
  cursor: default;
}
.resources-header {
  height: 90vh;
  min-height: 1000px;
  position: relative;
  padding: 80px 8%;
  display: flex;
  justify-content: end;
  align-items: end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 2000px) {
  .resources-header {
    padding: 80px 4%;
  }
}
@media (max-width: 1500px) {
  .resources-header {
    height: 750px;
  }
}
@media (max-width: 769px) {
  .resources-header {
    height: 600px;
    padding: 80px 5%;
  }
}
.resources-header h2 {
  color: white;
  /*font-size: 3rem;
  line-height: 3rem;*/
}
@media (max-width: 2000px) {
  .resources-header h2 {
    max-width: 750px;
  }
}
.resources-header-links {
  position: absolute;
  left: 12%;
  bottom: -300px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  background-color: #B7C9D3;
  padding: 80px 60px;
}
@media (max-width: 1900px) {
  .resources-header-links {
    left: 5%;
  }
}
@media (max-width: 1500px) {
  .resources-header-links {
    position: static;
  }
}
@media (max-width: 600px) {
  .resources-header-links {
    padding: 50px 25px;
  }
}
.resources-header-links h2 {
  color: #00263E;
}
.resources-header-links a {
  color: #00263E;
  font-size: 1.75rem;
  font-weight: 300;
  padding: 20px 0;
  border-bottom: 1px solid #00263E;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 769px) {
  .resources-header-links a {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.resources-header-links a img {
  height: 25px;
  margin-left: 20px;
}
.resources-sub-header {
  padding: 50px 12% 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  position: relative;
}
@media (max-width: 1900px) {
  .resources-sub-header {
    padding: 50px 5% 250px;
  }
}
@media (max-width: 1500px) {
  .resources-sub-header {
    align-items: center;
  }
}
@media (max-width: 769px) {
  .resources-sub-header {
    padding-bottom: 100px;
  }
}
.resources-sub-header-content {
  width: 50%;
}
@media (max-width: 1900px) {
  .resources-sub-header-content {
    width: 48%;
  }
}
@media (max-width: 1500px) {
  .resources-sub-header-content {
    width: 100%;
    margin-bottom: 50px;
  }
}
.resources-sub-header-content em {
  color: #006EB3;
  font-family: fairplex-narrow;
  font-weight: 400;
  font-size: 1.2rem;
}

.finish-options {
  padding: 50px 12% 100px;
  background-color: #EBEBEB;
  scroll-margin-top: 140px;
}
.finish-options h2 {
  color: #00263E;
  margin-bottom: 50px;
}
.finish-options-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 1600px) {
  .finish-options-content {
    flex-direction: column;
  }
}
.finish-options-content h3 {
  margin-bottom: 25px;
  color: #00263E;
}
.finish-options-content ul {
  color: #00263E;
  list-style: disc;
  list-style-position: inside;
}
.finish-options-content ul li::marker {
  color: #00263E;
}
.finish-options-content > div {
  width: 100%;
}
@media (max-width: 1600px) {
  .finish-options-content > div {
    width: 100%;
    border-right: none;
    /*border-bottom: 1px solid #B7C9D3;*/
    padding: 50px 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 769px) {
  .finish-options-content > div {
    padding: 10px 0;
  }
}
.finish-options-content > div:not(:last-of-type) {
  border-bottom: 1px solid gray;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.finish-options-content-images {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.finish-options-content-images > div {
  padding-right: 20px;
  padding-top: 20px;
  max-width: 150px;
}
.finish-options-content-images > div img {
  max-width: 100%;
  margin-bottom: 5px;
  max-height: 200px;
}

.system-components {
  padding: 100px 12%;
}
@media (max-width: 769px) {
  .system-components {
    padding: 100px 5%;
  }
}
.system-components h2 {
  margin-bottom: 1em;
}
.system-components-interactive-image html {
  overflow: hidden;
}
.system-components-interactive-image .pointboxTitle {
  color: #006EB3;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.system-components-interactive-image .pointboxDesc {
  color: #00263E;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.performance {
  display: flex;
  min-height: 450px;
}
@media (max-width: 1200px) {
  .performance {
    flex-direction: column-reverse;
  }
}
.performance-left {
  background: linear-gradient(90deg, #008BC4, #00263E);
  width: 55%;
  padding: 80px;
  padding-left: 12%;
  color: white;
}
@media (max-width: 1200px) {
  .performance-left {
    width: 100%;
  }
}
@media (max-width: 769px) {
  .performance-left {
    padding: 50px 5%;
  }
}
.performance-left h2 {
  color: white;
}
@media (max-width: 769px) {
  .performance-left h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.performance-left ul {
  color: white;
  list-style: disc;
  list-style-position: inside;
  columns: 2;
}
.performance-left p {
  color: white;
}
.performance-right {
  width: 45%;
  height: initial;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1200px) {
  .performance-right {
    width: 100%;
    height: 400px;
  }
}

.product-overview-header {
  margin-top: 140px;
  width: 100%;
  position: relative;
}
@media (max-width: 1050px) {
  .product-overview-header {
    margin-top: 90px;
  }
}
.product-overview-header h2 {
  color: #C1A01F;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.product-overview-header-content {
  padding: 50px 10% 4em;
  background-color: white;
  position: relative;
}
.product-overview-header-content h1 {
  font-size: 1.35rem;
  line-height: 1.35rem;
  text-transform: uppercase;
  color: #c1a01f;
  font-weight: 500;
  margin-bottom: 20px;
}
.product-overview-header-content h4 {
  color: #00263E;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 200;
  text-transform: none;
  margin-bottom: 40px;
}
@media (max-width: 769px) {
  .product-overview-header-content h4 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
.product-overview-header-content hr {
  color: #B7C9D3;
  margin-bottom: 50px;
}
.product-overview-header-content-text {
  display: flex;
}
@media (max-width: 900px) {
  .product-overview-header-content-text {
    flex-direction: column;
  }
}
.product-overview-header-content-text-left {
  width: 60%;
  padding-right: 5%;
}
@media (max-width: 900px) {
  .product-overview-header-content-text-left {
    width: 100%;
    padding-right: 0;
  }
}
.product-overview-header-content-text-left p {
  margin-bottom: 35px;
}
.product-overview-header-content-text-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  text-align: center;
}
@media (max-width: 900px) {
  .product-overview-header-content-text-right {
    width: 100%;
  }
}
.product-overview-header-content-text-right p {
  font-family: fairplex-narrow;
  font-size: 2.5rem;
  line-height: 3.5rem;
  color: #B7C9D3;
  font-style: italic;
  max-width: 400px;
  margin-bottom: 35px;
}
@media (max-width: 769px) {
  .product-overview-header-content-text-right p {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
.product-overview-header-content-highlights {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1300px) {
  .product-overview-header-content-highlights {
    flex-wrap: wrap;
  }
}
.product-overview-header-content-highlights h4 {
  font-weight: bold;
  color: #00263E;
  text-transform: none;
  margin-bottom: 5px;
  font-size: 1.35rem;
  line-height: 1.35rem;
  margin-bottom: 20px;
}
.product-overview-header-content-highlights > div {
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: center;
}
@media (max-width: 1450px) {
  .product-overview-header-content-highlights > div {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 1300px) {
  .product-overview-header-content-highlights > div {
    margin-bottom: 40px;
  }
}
.product-overview-header-content-highlights > div img {
  max-height: 150px;
  margin-right: 35px;
  height: fit-content;
}
@media (max-width: 1450px) {
  .product-overview-header-content-highlights > div img {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  .product-overview-header-content-highlights > div img {
    max-height: 80px;
  }
}
.product-overview-header-content-highlights-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-overview-header-content .inspiration-link {
  display: flex;
  width: 70px;
  height: 250px;
  position: absolute;
  right: 0;
  bottom: -125px;
  padding: 25px 15px;
  align-items: center;
  justify-content: center;
}
.product-overview-header-content .inspiration-link img {
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  /*height: 55%;*/
  pointer-events: none;
}
.product-overview-header-content .inspiration-link-background {
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background: linear-gradient(160deg, rgba(220, 220, 220, 0.5) 0%, rgba(220, 220, 220, 0.5) 100%);
  transition: all 500ms ease;
}
.product-overview-header-content .inspiration-link-background-light {
  display: block;
}
.product-overview-header-content .inspiration-link-background-dark {
  display: none;
}
.product-overview-header-content .inspiration-link-background:hover {
  opacity: 1;
  background: linear-gradient(160deg, rgb(0, 38, 62) 0%, rgb(0, 139, 196) 100%);
}
.product-overview-header-content .inspiration-link-background:hover .inspiration-link-background-light {
  display: none;
}
.product-overview-header-content .inspiration-link-background:hover .inspiration-link-background-dark {
  display: block;
}
.product-overview-header-content .inspiration-link:hover {
  opacity: 1;
  background: linear-gradient(160deg, rgb(0, 38, 62) 0%, rgb(0, 139, 196) 100%);
}
.product-overview-header-content .inspiration-link:hover .inspiration-link-background-light {
  display: none;
}
.product-overview-header-content .inspiration-link:hover .inspiration-link-background-dark {
  display: block;
}
.product-overview-header-image {
  height: 65vh;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1450px) {
  .product-overview-header-image {
    height: 700px;
  }
}
@media (max-width: 900px) {
  .product-overview-header-image {
    height: 400px;
  }
}
.product-overview-header .american-made {
  height: 90px;
  position: absolute;
  bottom: -52px;
  right: 15%;
}
@media (max-width: 769px) {
  .product-overview-header .american-made {
    height: 60px;
    bottom: -33px;
    right: 2%;
  }
}
.product-overview-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 12% 100px;
  background-color: white;
  text-align: center;
  /*h2 {
    color: #00263E;
    font-size: 3.5rem;
    line-height: 3.5rem;
    font-weight: 200;
    text-transform: none;
    margin-bottom: 40px;
  }*/
}
@media (max-width: 850px) {
  .product-overview-hub {
    padding: 100px 6% 25px;
  }
}
.product-overview-hub-text {
  width: 100%;
  max-width: 800px;
  margin-bottom: 100px;
}
.product-overview-hub-text p {
  font-weight: 300;
}
.product-overview-hub-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.product-overview-hub-list-item {
  display: flex;
  height: 600px;
  width: 100%;
}
@media (max-width: 1650px) {
  .product-overview-hub-list-item {
    height: 400px;
  }
}
@media (max-width: 850px) {
  .product-overview-hub-list-item {
    flex-direction: column;
    height: auto;
  }
}
.product-overview-hub-list-item-image {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 850px) {
  .product-overview-hub-list-item-image {
    height: 300px;
    width: 100%;
  }
}
.product-overview-hub-list-item-image img {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transform: scale(1.1);
  transition: all 750ms ease;
}
.product-overview-hub-list-item-info {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  min-width: 520px;
}
@media (max-width: 1050px) {
  .product-overview-hub-list-item-info {
    min-width: 430px;
  }
}
@media (max-width: 850px) {
  .product-overview-hub-list-item-info {
    min-width: 400px;
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 769px) {
  .product-overview-hub-list-item-info {
    height: 275px;
  }
}
@media (max-width: 450px) {
  .product-overview-hub-list-item-info {
    min-width: 0;
  }
}
.product-overview-hub-list-item-info-icons {
  display: flex;
  justify-content: end;
  align-items: center;
}
.product-overview-hub-list-item-info-icons img {
  width: 80px;
  height: auto;
  margin: 0 15px;
}
@media (max-width: 1050px) {
  .product-overview-hub-list-item-info-icons img {
    width: 50px;
    margin: 0 8px;
  }
}
.product-overview-hub-list-item-info-text {
  text-align: start;
}
.product-overview-hub-list-item-info-text h3 {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 200;
  text-transform: none;
  margin-bottom: 10px;
}
@media (max-width: 769px) {
  .product-overview-hub-list-item-info-text h3 {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.product-overview-hub-list-item-info-text h4 {
  color: #00263E;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 80px;
  margin-bottom: 10px;
}
@media (max-width: 1050px) {
  .product-overview-hub-list-item-info-text h4 {
    margin-left: 40px;
  }
}
.product-overview-hub-list a {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 850px) {
  .product-overview-hub-list a {
    flex-direction: column;
    height: auto;
  }
}
.product-overview-hub-list a:nth-child(2n) .product-overview-hub-list-item {
  flex-direction: row-reverse;
}
@media (max-width: 850px) {
  .product-overview-hub-list a:nth-child(2n) .product-overview-hub-list-item {
    flex-direction: column;
    height: auto;
  }
}
.product-overview-hub-list a:hover .product-overview-hub-list-item-image img {
  transform: scale(1);
}
.product-overview-quotes {
  padding: 75px 12%;
}
.product-overview-quotes-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.product-overview-quotes-container-quote {
  position: relative;
  font-family: fairplex-narrow;
  font-size: 2.5rem;
  line-height: 3.5rem;
  font-style: italic;
  margin-bottom: 25px;
}
@media (max-width: 769px) {
  .product-overview-quotes-container-quote {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
}
.product-overview-quotes-container-quote:before {
  content: "";
  background: url(/Images/quote-icon.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: -15px;
  left: 35px;
  width: 80px;
  height: 50px;
  z-index: -1;
}
.product-overview-quotes-container-quote:after {
  content: "";
  background: url(/Images/quote-icon.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  bottom: 0;
  right: 35px;
  width: 80px;
  height: 50px;
  z-index: -1;
}
.product-overview-quotes-container-attribution {
  font-family: fairplex-narrow;
  font-weight: bold;
  text-transform: uppercase;
}
.product-overview-support-container {
  display: flex;
  align-items: flex-end;
}
.product-overview-support-container-image {
  height: 800px;
  margin-right: -56px;
  z-index: 1;
  /*max-width: 1000px;*/
}
@media (max-width: 1700px) {
  .product-overview-support-container-image {
    height: 500px;
  }
}
@media (max-width: 1200px) {
  .product-overview-support-container-image {
    display: none;
  }
}
.product-overview-support-container-image img {
  height: 100%;
  /*width: 100%;*/
}
.product-overview-support-container-text {
  background-size: cover;
  background-repeat: no-repeat;
  height: 672px;
  padding: 50px;
  padding-right: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-left: 100px;
}
@media (max-width: 1700px) {
  .product-overview-support-container-text {
    padding-right: 50px;
    height: 419px;
    padding-bottom: 150px;
  }
}
@media (max-width: 769px) {
  .product-overview-support-container-text {
    height: auto;
    padding-left: 8%;
    padding-right: 8%;
  }
}
.product-overview-support-container-text h4 {
  color: #C1A01F;
  font-weight: bold;
  margin-bottom: 25px;
}
.product-overview-support-container-text h2, .product-overview-support-container-text p {
  color: white;
}
.product-overview-support-container-text .arrow-link-top-to-left {
  position: absolute;
  bottom: 100px;
  right: 30%;
}
@media (max-width: 1700px) {
  .product-overview-support-container-text .arrow-link-top-to-left {
    /*position: relative;
    bottom: auto;
    right: auto;
    margin-left: 70px;
    margin-top: 80px;*/
    bottom: 50px;
  }
}
@media (max-width: 600px) {
  .product-overview-support-container-text .arrow-link-top-to-left {
    right: 50px;
  }
}
.product-overview-support-container-text .arrow-link-top-to-left span {
  color: white;
  padding-top: 80px;
}
.product-overview-gallery {
  padding: 100px 12% 150px;
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  /*height: 1000px;*/
}
@media (max-width: 1200px) {
  .product-overview-gallery {
    padding: 100px 8% 150px;
  }
}
@media (max-width: 900px) {
  .product-overview-gallery {
    flex-direction: column-reverse;
  }
}
.product-overview-gallery-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  padding-right: 50px;
}
@media (max-width: 1200px) {
  .product-overview-gallery-text {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .product-overview-gallery-text {
    width: 100%;
  }
}
.product-overview-gallery-text .gallery-link {
  display: flex;
  justify-content: end;
  position: relative;
  margin-top: 80px;
}
.product-overview-gallery-right {
  width: 60%;
}
@media (max-width: 1200px) {
  .product-overview-gallery-right {
    width: 50%;
  }
}
@media (max-width: 900px) {
  .product-overview-gallery-right {
    width: 100%;
    margin-bottom: 50px;
  }
}
.product-overview-gallery-right-image-cluster {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
.product-overview-gallery-right-image-cluster > div {
  border: 4px solid white;
  background-size: cover;
  background-position: center;
  position: absolute;
  transition: all 1s ease-in-out, border 0s, box-shadow 0s;
}
.product-overview-gallery-right-image-cluster .tall-image-container {
  /*height: 700px;
  width: 600px;*/
  height: 90%;
  width: 52%;
  left: 0;
  bottom: 0;
}
.product-overview-gallery-right-image-cluster .medium-image-container {
  /*height: 350px;
  width: 450px;*/
  height: 45%;
  width: 39%;
  top: 0;
  /*right: 50px;*/
  right: 4%;
}
.product-overview-gallery-right-image-cluster .wide-image-container {
  /*height: 300px;
  width: 550px;*/
  height: 39%;
  width: 47%;
  /*bottom: 50px;
  right: 150px;*/
  bottom: 9%;
  right: 13%;
}
.product-overview-gallery-right-image-cluster:hover .tall-image-container {
  /*height: 400px;
  width: 300px;*/
  height: 53%;
  width: 26%;
  height: 50%;
  width: 30%;
  /*left: calc(100% - 500px);*/
  left: 57%;
}
.product-overview-gallery-right-image-cluster:hover .medium-image-container {
  /*height: 450px;
  width: 600px;*/
  height: 60%;
  width: 52%;
  /*top: 50px;
  right: calc(100% - 600px);*/
  top: 7%;
  right: 48%;
}
.product-overview-gallery-right-image-cluster:hover .wide-image-container {
  bottom: -100px;
  right: 300px;
  bottom: -14%;
  right: 25%;
}
.product-overview-case-studies {
  padding: 100px 12% 150px;
  background-color: #00263E;
  display: flex;
  align-items: center;
}
@media (max-width: 1450px) {
  .product-overview-case-studies {
    flex-direction: column;
  }
}
@media (max-width: 769px) {
  .product-overview-case-studies {
    padding: 100px 8% 25px;
    margin-bottom: 50px;
  }
}
.product-overview-case-studies-images {
  display: flex;
  width: 65%;
  position: relative;
  align-items: center;
  justify-content: center;
  max-height: 800px;
}
@media (max-width: 1600px) {
  .product-overview-case-studies-images {
    width: 50%;
  }
}
@media (max-width: 1450px) {
  .product-overview-case-studies-images {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .product-overview-case-studies-images {
    flex-direction: column;
    /*width: 35%;*/
  }
}
.product-overview-case-studies-images img {
  width: 49%;
  margin: 0 0.5%;
  max-width: 100%;
}
@media (max-width: 900px) {
  .product-overview-case-studies-images img {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
  }
}
.product-overview-case-studies-images .case-study-icon {
  width: 125px;
  position: absolute;
  height: auto;
}
@media (max-width: 900px) {
  .product-overview-case-studies-images .case-study-icon {
    width: 80px;
  }
}
.product-overview-case-studies-text {
  padding: 50px 80px;
  padding-right: 0;
  width: 35%;
}
@media (max-width: 1600px) {
  .product-overview-case-studies-text {
    width: 50%;
  }
}
@media (max-width: 1450px) {
  .product-overview-case-studies-text {
    width: 100%;
    max-width: 700px;
    padding-left: 0;
  }
}
.product-overview-case-studies-text h2 {
  color: white;
}
.product-overview-case-studies-text p {
  color: white;
  margin-bottom: 40px;
}
.product-overview-case-studies-text a {
  color: #C1A01F;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
  text-transform: uppercase;
}

@media (max-width: 1650px) {
  .need-help {
    top: -15px;
  }
}

.application-cta {
  display: flex;
  justify-content: center;
}
.application-cta-container {
  max-width: 1500px;
  display: flex;
  margin: 100px 30px 30px;
  border: 2px solid #B7C9D3;
  padding: 15px;
  min-height: 525px;
}
@media (max-width: 1000px) {
  .application-cta-container {
    flex-direction: column;
  }
}
.application-cta-left {
  width: 45%;
  background-size: cover;
}
@media (max-width: 1000px) {
  .application-cta-left {
    width: 100%;
    height: 300px;
  }
}
.application-cta-left img {
  max-width: 100%;
}
.application-cta-right {
  width: 55%;
  padding: 30px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  .application-cta-right {
    width: 100%;
    margin-top: 30px;
    padding: 20px 30px;
  }
}
.application-cta-right h2 {
  font-style: normal;
  font-weight: bold;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media (max-width: 400px) {
  .application-cta-right h2 {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }
}
.application-cta-right h3 {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 200;
  line-height: 3.75rem;
}
@media (max-width: 1000px) {
  .application-cta-right h3 {
    font-size: 2.75rem;
    line-height: 3rem;
  }
}
@media (max-width: 400px) {
  .application-cta-right h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.application-cta-right a {
  color: #C1A01F;
  text-decoration: underline;
  text-transform: uppercase;
  margin-top: 50px;
  font-weight: bold;
}

.why-horizon {
  display: flex;
  justify-content: center;
  padding: 100px 10%;
  background-color: #DDE5ED;
}
.why-horizon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
}
@media (max-width: 600px) {
  .why-horizon-container {
    flex-direction: column;
  }
}
.why-horizon-title {
  width: 50%;
  padding-right: 80px;
  display: flex;
  justify-content: end;
  text-align: center;
}
@media (max-width: 600px) {
  .why-horizon-title {
    text-align: start;
    width: 100%;
  }
}
.why-horizon-text {
  width: 50%;
}
@media (max-width: 600px) {
  .why-horizon-text {
    width: 100%;
  }
}

.what-it-means {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 150px 10%;
}
@media (max-width: 769px) {
  .what-it-means {
    padding: 80px 10%;
  }
}
.what-it-means-content {
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-it-means-content h2 {
  margin-bottom: 80px;
}
@media (max-width: 769px) {
  .what-it-means-content h2 {
    margin-bottom: 50px;
  }
}
.what-it-means-callouts {
  display: flex;
  flex-wrap: wrap;
}
.what-it-means-callouts-entry {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 35px;
}
@media (max-width: 1250px) {
  .what-it-means-callouts-entry {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media (max-width: 769px) {
  .what-it-means-callouts-entry {
    width: 100%;
  }
}
.what-it-means-callouts-entry img {
  max-height: 125px;
  margin-bottom: 20px;
}
.what-it-means-callouts-entry h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 2.125rem;
  font-weight: 500;
}

.craftsmanship {
  display: flex;
  justify-content: center;
  padding: 100px 10%;
  background-color: #00263E;
}
.craftsmanship-container {
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
@media (max-width: 1250px) {
  .craftsmanship-container {
    flex-direction: column;
  }
}
.craftsmanship-image {
  width: 50%;
}
@media (max-width: 1250px) {
  .craftsmanship-image {
    width: 100%;
  }
}
.craftsmanship-image img {
  max-width: 100%;
}
.craftsmanship-text {
  width: 50%;
  color: white;
  padding-left: 80px;
}
@media (max-width: 1250px) {
  .craftsmanship-text {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
}
.craftsmanship-text p {
  color: white;
}
