header {
  width: 100%;
}
header .eyebrow-nav {
  padding: 10px 0;
  width: 100%;
  background: #203B55;
}
header .eyebrow-nav .en_Wrapper {
  width: 90%;
  margin: auto;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .eyebrow-nav .quote {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
header .header-nav {
  position: relative;
  height: 125px;
}
header .header-nav img {
  width: 140px;
  margin: 20px;
}
header .header-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}
header .nav-list {
  display: flex;
  padding: 0px 40px 0px 0px;
  gap: 20px;
  position: absolute;
  top: 0;
  right: 40px;
}
header .nav-list li {
  display: flex;
}
header .nav-list li a {
  padding: 10px;
}
header .nav-list .has-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .nav-list .has-sub ul {
  background: white;
  margin-block-start: 0;
  padding-block-start: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
  overflow: hidden;
  max-height: 0px;
}
header .nav-list .has-sub ul li {
  transition: all 0.2s ease-in;
}
header .nav-list .has-sub ul li:hover {
  background-color: #203B55;
}
header .nav-list .has-sub ul li:hover a {
  transition: all 0.2s ease-in;
  color: #fff;
}
header .nav-list .has-sub:hover ul {
  transition: max-height 0.2s ease-in;
  max-height: 500px;
}
header .has-sub:hover ul {
  visibility: visible;
}

#menuHamburger {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  height: 30px;
  width: 30px;
  display: none;
}

.mobileNav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease-in;
}
.mobileNav.navOpen {
  left: 0%;
}
.mobileNav .topSect {
  background-color: #203B55;
  position: relative;
  height: 100%;
  overflow: scroll;
}
.mobileNav .topSect #mobileMenuClose {
  position: absolute;
  top: 30px;
  left: 30px;
}
.mobileNav .topSect .menuItems {
  margin-top: 100px;
}
.mobileNav .topSect .menuItems li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: transparent;
  transition: background 0.2s ease-in;
}
.mobileNav .topSect .menuItems li:hover {
  background: #386B9F;
}
.mobileNav .topSect .menuItems li a {
  padding: 10px;
}
.mobileNav .topSect .menuItems li a p {
  color: #fff;
  font-size: 29px;
  font-weight: 800;
}
.mobileNav .topSect .menuItems li .subMenuToggler {
  height: 20px;
  width: 20px;
  margin-left: 20px;
}
.mobileNav .topSect .menuItems li .subMenuToggler rect {
  fill: #fff;
  transition: transform 0.2s linear;
  transform-origin: center;
}
.mobileNav .topSect .menuItems li .subMenuToggler rect.off {
  transform: rotate(90deg);
}
.mobileNav .topSect .menuItems li ul {
  width: 100%;
  height: 0px;
  overflow: hidden;
  transition: height 0.2s ease-in;
}
.mobileNav .topSect .menuItems li ul li a {
  color: #fff;
}
.mobileNav .woodGrain {
  background-image: url("/wp-content/themes/hartzell/images/home/woodGrain.png");
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mobileNav .socials {
  background: #A23130;
  display: flex;
  gap: 30px;
  padding: 15px 30px;
  align-items: center;
}
.mobileNav .socials svg {
  height: 25px;
  width: 25px;
}
.mobileNav .menuFooter {
  background-color: #fff;
  padding: 20px 30px;
}
.mobileNav .menuFooter p {
  font-size: 11px;
  font-weight: 800;
}
.mobileNav .menuFooter img {
  width: 150px;
}

@media (max-width: 950px) {
  header .nav-list {
    display: none;
  }
  #menuHamburger {
    display: block;
  }
  header .eyebrow-nav .quote {
    font-size: 14px;
  }
  header .redButton {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  header .eyebrow-nav .quote {
    font-size: 12px;
    max-width: 50%;
  }
  header .redButton {
    font-size: 12px;
  }
}
footer .footerInner {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .redBar {
  height: 50px;
  width: 100%;
  background: #A23130;
}
footer .side {
  padding: 30px 0;
}
footer .side img {
  margin-bottom: 15px;
  max-width: 200px;
}
footer .side p, footer .side a {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: block;
}
footer .left {
  width: calc(30% - 30px);
  margin: auto;
  box-sizing: border-box;
}
footer .right {
  width: calc(70% - 30px);
  margin: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .right .nav-list {
  display: flex;
  gap: 20px;
  padding-inline: 0;
}
footer .right .logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .right .socials {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  width: 100%;
}
footer .right .socials a:hover svg path {
  transition: all 0.2s ease-in;
  fill: #203B55;
  fill-opacity: 1;
}

@media (max-width: 790px) {
  .footerInner {
    display: flex;
    flex-direction: column-reverse;
  }
  footer .right {
    width: 100%;
    align-items: flex-start;
  }
  footer .right .nav-list {
    flex-wrap: wrap;
  }
  footer .right .logos {
    justify-content: flex-start;
  }
  footer .right .logos .socials {
    flex-direction: row;
  }
  footer .left {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  footer {
    flex-direction: column-reverse;
    gap: 30px;
  }
  footer .side {
    width: 100%;
  }
}
.subText {
  text-align: center;
}

.headerSubtext {
  width: 45%;
}

.sectionContainer {
  max-width: 60%;
}

.middle {
  max-width: 60%;
}

#heroSect {
  margin: 100px 0;
}

#heroFlex {
  display: flex;
  gap: 20px;
  margin: 20px;
}
#heroFlex .third {
  width: calc(33.3333333333% - 13.3333333333px);
}
#heroFlex .twoThird {
  width: calc(66.6666666667% - 13.3333333333px);
}
#heroFlex .minorImgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#heroFlex .minorImgs .img {
  height: calc(50% - 10px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#heroFlex .minorImgs .minor1 {
  background-image: url("/wp-content/themes/hartzell/images/home/heroImg1.jpeg");
}
#heroFlex .minorImgs .minor2 {
  background-image: url("/wp-content/themes/hartzell/images/home/heroImg2.jpeg");
}
#heroFlex .heroImg {
  background-image: url(/wp-content/themes/hartzell/images/home/heroImg3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
#heroFlex .heroImg .caption {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #FFF;
  gap: 10px;
}
#heroFlex .heroImg .caption p {
  font-size: 13px;
}
#heroFlex .CTA {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  padding-top: 170px;
}
#heroFlex .CTA .ctaCopy {
  width: 90%;
  color: #203B55;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#heroFlex .CTA a {
  display: flex;
  padding: 15px;
  width: fit-content;
  gap: 15px;
  align-items: center;
  transition: all 0.2s ease-in;
  text-decoration: none;
}
#heroFlex .CTA a svg path {
  transition: all 0.2s ease-in;
}
#heroFlex .CTA a p {
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  line-height: 33px;
  transition: all 0.2s ease-in;
}
#heroFlex .CTA .contactUs {
  background: #203B55;
  border: solid 2px #203B55;
}
#heroFlex .CTA .contactUs:hover {
  background: #FFF;
}
#heroFlex .CTA .contactUs:hover svg path {
  fill: #203B55;
}
#heroFlex .CTA .contactUs:hover p {
  color: #203B55;
}
#heroFlex .CTA .requestQuote {
  background: #A23130;
  border: solid 2px #A23130;
}
#heroFlex .CTA .requestQuote:hover {
  background: #FFF;
}
#heroFlex .CTA .requestQuote:hover svg path {
  fill: #A23130;
}
#heroFlex .CTA .requestQuote:hover p {
  color: #A23130;
}

#meetYourHardwood {
  background-image: url("/wp-content/themes/hartzell/images/home/woodGrain.png");
  background-size: 100% auto;
  padding: 50px 0;
}
#meetYourHardwood h2 {
  margin: 30px;
}
#meetYourHardwood .subtext {
  width: 500px;
  max-width: 90%;
  text-align: center;
  margin: 30px auto;
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
#meetYourHardwood .productFlex {
  background: #203B55;
  display: flex;
  padding: 30px 5%;
  gap: 15px;
  flex-wrap: wrap;
}
#meetYourHardwood .productSingle {
  width: calc(50% - 7.5px);
  height: 215px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  text-decoration: none;
  transition: background-size 0.2s ease-in;
}
#meetYourHardwood .productSingle:hover {
  background-size: 120% 120%;
}
#meetYourHardwood .productSingle .productName {
  height: 70px;
  background-color: #FFF;
  width: 230px;
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  padding: 0 20px;
}
#meetYourHardwood .productSingle .productDesc {
  color: #FFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  width: 600px;
  max-width: 80%;
  padding: 0 20px;
  height: 145px;
  display: flex;
  align-items: center;
}
#meetYourHardwood .viewAll {
  width: calc(50% - 7.5px);
  height: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a324a;
}
#meetYourHardwood .viewAll .productLink {
  display: flex;
  gap: 20px;
  background: #A23130;
  padding: 10px 20px;
  text-decoration: none;
  color: #FFF;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
  align-items: center;
  transition: all 0.2s ease-in;
}
#meetYourHardwood .viewAll .productLink:hover {
  background: #FFF;
  color: #A23130;
}
#meetYourHardwood .viewAll .productLink:hover svg path {
  transition: all 0.2s ease-in;
  fill: #A23130;
}
#meetYourHardwood .premWalnut {
  background-image: url("/wp-content/themes/hartzell/images//home/premiumWalnut.png");
}
#meetYourHardwood .tradWalnut {
  background-image: url("/wp-content/themes/hartzell/images//home/tradWalnut.png");
}
#meetYourHardwood .whtOak {
  background-image: url("/wp-content/themes/hartzell/images//home/whtOak.png");
}
#meetYourHardwood .redOak {
  background-image: url("/wp-content/themes/hartzell/images//home/redOak.png");
}
#meetYourHardwood .hickory {
  background-image: url("/wp-content/themes/hartzell/images//home/hickory.png");
}
#meetYourHardwood .ash {
  background-image: url("/wp-content/themes/hartzell/images//home/ash.png");
}
#meetYourHardwood .qtrSawn {
  background-image: url("/wp-content/themes/hartzell/images//home/qtrSawn.png");
}

#aboutSect {
  padding: 150px 0 100px;
  background-image: url("/wp-content/themes/hartzell/images/home/aboutSectBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#aboutSect .narrow {
  width: 1024px;
  max-width: 90%;
  margin: 50px auto;
}
#aboutSect .narrow .subText {
  margin: 50px;
}
#aboutSect .narrow .partnersFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#aboutSect .narrow .partnersFlex .partnerCard {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 10px);
  background: #F0F0F0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  box-sizing: border-box;
}
#aboutSect .narrow .partnersFlex .partnerCard p {
  margin: 20px 0;
}
#aboutSect .narrow .partnersFlex .partnerCard img {
  height: 70px;
  width: auto;
  margin-right: 20px;
}
#aboutSect .narrow .partnersFlex .partnerCard h4 {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  margin: 0;
  display: block;
  width: 100%;
}
#aboutSect .narrow .partnersFlex .partnerCard .partnerBrand {
  display: flex;
  align-items: center;
}
#aboutSect .narrow .partnersFlex .partnerCard .partnerBrand .partnerName {
  width: fit-content;
}
#aboutSect .narrow .partnersFlex .partnerCard .howWeHelp {
  margin: 10px 0;
  color: #203B55;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
#aboutSect .narrow .partnersFlex .partnerCard .howWeHelp.half {
  width: 50%;
}
#aboutSect .narrow .partnersFlex .smallCard {
  display: flex;
  width: calc(33.3333333333% - 13.3333333333px);
  gap: 20px;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background: #F0F0F0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
#aboutSect .narrow .partnersFlex .smallCard img {
  height: 70px;
  width: auto;
}
#aboutSect .narrow .partnersFlex .smallCard h4 {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px;
}
#aboutSect .whoWeAre {
  display: flex;
  width: 100%;
  gap: 20px;
}
#aboutSect .whoWeAre .sect1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(20% - 13.3333333333px);
  padding-bottom: 40px;
}
#aboutSect .whoWeAre .sect2 {
  width: calc(40% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
#aboutSect .whoWeAre .sect2 .redBar {
  width: 30%;
  height: 60px;
  background: #A23130;
}
#aboutSect .whoWeAre .sect3 {
  width: calc(40% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#aboutSect .whoWeAre .sect3 .underline {
  width: 10%;
  border-bottom: solid 3px #203B55;
}
#aboutSect .whoWeAre .sect3 p {
  width: 50%;
}
#aboutSect .whatWeDo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
}
#aboutSect .whatWeDo .sect1 {
  display: flex;
  flex-direction: column;
  width: calc(40% - 10px);
  text-align: right;
  justify-content: center;
  align-items: flex-end;
  padding-right: 30px;
  box-sizing: border-box;
}
#aboutSect .whatWeDo .sect1 .underline {
  border-bottom: 3px solid #203B55;
  width: 30%;
}
#aboutSect .whatWeDo .sect1 p {
  width: 50%;
}
#aboutSect .whatWeDo .sect2 {
  width: calc(60% - 10px);
  height: 470px;
  background-image: url("/wp-content/themes/hartzell/images/home/whatWeDo1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#aboutSect .whatWeDo .sect3 {
  width: 100%;
  display: flex;
  height: 220px;
  gap: 20px;
  justify-content: flex-end;
}
#aboutSect .whatWeDo .sect3 .redBar {
  background: #A23130;
  height: 60px;
  width: 20%;
}
#aboutSect .whyWereDifferent {
  display: flex;
  gap: 20px;
}
#aboutSect .whyWereDifferent .sect1 {
  width: calc(60% - 10px);
}
#aboutSect .whyWereDifferent .sect1 img {
  width: 100%;
}
#aboutSect .whyWereDifferent .sect2 {
  width: calc(40% - 10px);
}
#aboutSect .whyWereDifferent .sect2 .underline {
  margin-top: 40px;
  width: 20%;
  border-bottom: solid 3px #203B55;
}
#aboutSect .whyWereDifferent .sect2 h3 {
  width: 50%;
  line-height: 120%;
  margin: 20px 0;
}
#aboutSect .whyWereDifferent .sect2 p {
  width: 60%;
}
#aboutSect .whyWereDifferent .sect2 a {
  display: block;
  margin: 20px 0 40px;
  padding: 20px;
  background: #A23130;
  width: fit-content;
  color: #FFF;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  border: solid 2px #A23130;
  transition: all 0.2s ease-in;
}
#aboutSect .whyWereDifferent .sect2 a:hover {
  background: transparent;
  color: #A23130;
}
#aboutSect .whyWereDifferent .sect2 .images {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
#aboutSect .whyWereDifferent .sect2 .images img {
  width: calc(50% - 10px);
}

#closingSect {
  padding: 50px 5%;
}
#closingSect h3 {
  line-height: 140%;
}
#closingSect .subSect {
  display: flex;
  gap: 20px;
  align-items: center;
}
#closingSect .subSect .subtext {
  width: fit-content;
  line-height: 120%;
}
#closingSect .subSect .underline {
  height: 1px;
  border-bottom: solid 3px #203B55;
  width: 100%;
}

#proudPartner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0;
  background: #A23130;
  gap: 20px;
}
#proudPartner h1 {
  color: #FFF;
  font-family: Avenir, sans-serif;
  font-size: 78px;
  font-style: normal;
  font-weight: 900;
  margin: 0;
}
#proudPartner img {
  height: 85px;
}

@media (max-width: 1000px) {
  h2 {
    font-size: 56px;
  }
  #aboutSect .whoWeAre .sect3 p {
    width: 80%;
  }
  #aboutSect .whatWeDo .sect1 p {
    width: 80%;
  }
  #aboutSect .whyWereDifferent .sect2 h3 {
    width: 80%;
    line-height: 120%;
    margin: 20px 0;
  }
  #aboutSect .whyWereDifferent .sect2 p {
    width: 90%;
  }
}
@media (max-width: 800px) {
  #heroSect {
    max-width: 90%;
    margin: 100px auto;
  }
  #heroSect #heroFlex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin: auto;
  }
  #heroSect #heroFlex .minorImgs {
    width: 100%;
    flex-direction: row;
    height: 200px;
  }
  #heroSect #heroFlex .minorImgs .img {
    height: 100%;
    width: calc(50% - 10px);
  }
  #heroSect #heroFlex .heroImg {
    width: 100%;
    height: 300px;
  }
  #heroSect #heroFlex .CTA {
    width: 100%;
    padding: 30px 0;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  #meetYourHardwood .productSingle {
    width: 100%;
  }
  #meetYourHardwood .productSingle .productDesc {
    width: 70%;
  }
  #meetYourHardwood .viewAll {
    width: 100%;
  }
  #aboutSect .narrow .partnersFlex .smallCard {
    width: 100%;
  }
  #aboutSect .whoWeAre .sect1 {
    display: none;
  }
  #aboutSect .whoWeAre .sect3 {
    width: 100%;
  }
  #aboutSect .whatWeDo .sect1 {
    width: calc(60% - 10px);
  }
  #aboutSect .whatWeDo .sect2 {
    width: calc(40% - 10px);
  }
  #aboutSect .whatWeDo .sect3 {
    display: none;
  }
  #aboutSect .whyWereDifferent {
    flex-wrap: wrap;
  }
  #aboutSect .whyWereDifferent .sect1 {
    width: 100%;
  }
  #aboutSect .whyWereDifferent .sect2 {
    width: 90%;
    margin: auto;
  }
  #proudPartner h1 {
    font-size: 48px;
  }
}
@media (max-width: 550px) {
  h2 {
    font-size: 48px;
  }
  #aboutSect .narrow .partnersFlex .partnerCard {
    width: 100%;
  }
  #aboutSect .whoWeAre {
    flex-direction: column-reverse;
  }
  #aboutSect .whoWeAre .sect2 {
    width: 100%;
  }
  #aboutSect .whoWeAre .sect2 .redBar {
    display: none;
  }
  #aboutSect .whoWeAre .sect3 {
    width: 90%;
    margin: auto;
  }
  #aboutSect .whoWeAre .sect3 .underline {
    width: 30%;
  }
  #proudPartner h1 {
    font-size: 36px;
  }
  #closingSect h3 {
    font-size: 28px;
  }
}
#productsPage .pageHeader {
  margin: 50px 0 30px;
}
#productsPage .subtext {
  text-align: center;
  max-width: 90%;
  margin: auto;
}
#productsPage .categorySelection {
  background: #F0F0F0;
  display: flex;
  width: 1470px;
  max-width: 90%;
  padding: 30px;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px auto 50px;
  transition: all 0.2s ease-in;
}
#productsPage .categorySelection .productType {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  align-items: center;
  width: calc(25% - 15px);
  justify-content: flex-end;
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
}
#productsPage .categorySelection .productType.active {
  outline: solid 3px #000;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#productsPage .categorySelection .productType p {
  font-size: 26px;
  font-weight: 900;
  max-width: calc(100% - 120px);
}
#productsPage .categorySelection .productType div {
  width: 100px;
  height: 100%;
  min-height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#productsPage .categorySelection .mobileList {
  display: none;
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#productsPage .categorySelection .mobileList li {
  margin: 15px;
}
#productsPage .categorySelection .mobileList a {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-weight: 800;
}
#productsPage .productInfo {
  display: flex;
  gap: 20px;
  width: 1470px;
  max-width: 90%;
  margin: 50px auto;
  height: 0px;
  transition: height 0.2s ease-in;
  overflow: hidden;
}
#productsPage .productInfo .productSection {
  width: calc(65% - 10px);
  position: relative;
}
#productsPage .productInfo .productSection .decorImage {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  position: absolute;
  opacity: 0;
  display: none;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}
#productsPage .productInfo .productItems {
  width: calc(35% - 10px);
  position: relative;
}
#productsPage .productInfo .productItems .productItemsList {
  padding-left: 30px;
  position: absolute;
  opacity: 0;
  display: none;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}
#productsPage .productInfo .productItems .productItemsList h3 {
  margin: 20px 0;
}
#productsPage .productInfo .productItems .productItemsList ul {
  list-style: disc;
  color: #203B55;
  padding-inline: 20px;
}
#productsPage .productInfo .productItems .productItemsList ul li {
  color: #203B55;
  margin: 10px 0;
}
#productsPage .productInfo .productItems .productItemsList ul li a {
  color: #203B55;
  font-size: 20px;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 1150px) {
  #productsPage .categorySelection {
    justify-content: flex-start;
  }
  #productsPage .categorySelection .productType {
    width: calc(50% - 10px);
  }
}
@media (max-width: 800px) {
  #productsPage .pageHeader {
    font-size: 46px;
  }
  #productsPage .categorySelection .productType {
    width: 100%;
  }
  #productsPage .productInfo .productItems {
    display: none;
  }
  #productsPage .productInfo .productSection {
    width: 100%;
  }
  #productsPage .categorySelection .mobileList.active {
    display: block;
  }
}
@media (max-width: 500px) {
  #productsPage .categorySelection {
    padding: 30px 10px;
  }
  #productsPage .categorySelection .productType p {
    font-size: 18px;
  }
  #productsPage .categorySelection .mobileList a {
    font-size: 16px;
  }
  #productsPage .categorySelection .mobileList ul {
    padding-inline: 0;
  }
  #productsPage .categorySelection .mobileList li {
    margin-inline: 10px;
  }
}
#productDetails .narrowWrapper {
  width: 1470px;
  max-width: 100%;
  margin: 50px auto;
}
#productDetails .narrowWrapper .productTypeSelection {
  position: relative;
}
#productDetails .narrowWrapper .items {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #F0F0F0;
  gap: 15px;
}
#productDetails .narrowWrapper .items .singleItem {
  min-width: calc(14.2857142857% - 12.8571428571px);
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  min-height: 55px;
}
#productDetails .narrowWrapper .items .singleItem .singleItemImg {
  width: 55px;
  height: 55px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#productDetails .narrowWrapper .items .singleItem p {
  width: calc(100% - 70px);
  font-size: 18px;
  font-weight: 900;
  line-height: 17px;
}
#productDetails .narrowWrapper .items .mobileItem {
  display: none;
}
#productDetails .narrowWrapper .subMenus {
  display: flex;
  gap: 15px;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 30px;
  position: absolute;
  z-index: 5;
  width: 100%;
}
#productDetails .narrowWrapper .subMenus .subMenu {
  padding-inline: 0;
  margin-block: 0;
  box-sizing: border-box;
  width: calc(14.2857142857% - 12.8571428571px);
  background: #F0F0F0;
  overflow: hidden;
  max-height: 0px;
  padding: 0px 15px 0px 15px;
  transition: all ease-out 0.2s;
  margin-top: -30px;
}
#productDetails .narrowWrapper .subMenus .subMenu:hover {
  padding: 45px 15px 15px 15px;
  max-height: 700px;
  transition: all ease-in 0.2s;
}
#productDetails .narrowWrapper .subMenus .subMenu.active {
  padding: 45px 15px 15px 15px;
  max-height: 700px;
  transition: all ease-in 0.2s;
}
#productDetails .narrowWrapper .subMenus .subMenu li {
  margin: 15px 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
#productDetails .narrowWrapper .subMenus .subMenu li a {
  text-decoration: underline;
}
#productDetails .narrowWrapper .selectedProduct {
  display: flex;
  margin: 100px 0;
  gap: 50px;
  align-items: stretch;
}
#productDetails .narrowWrapper .selectedProduct .selectedImg {
  width: calc(50% - 25px);
  display: flex;
  align-items: center;
}
#productDetails .narrowWrapper .selectedProduct .selectedImg img, #productDetails .narrowWrapper .selectedProduct .selectedImg iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
#productDetails .narrowWrapper .selectedProduct .selectedInfo {
  width: calc(50% - 25px);
  padding: 30px 0;
}
#productDetails .narrowWrapper .selectedProduct .selectedInfo h1 {
  font-size: 50px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 30px;
}
#productDetails .narrowWrapper .selectedProduct .selectedInfo ul {
  margin-block: 0;
  padding-inline: 20px;
  list-style: disc;
}
#productDetails .narrowWrapper .selectedProduct .selectedInfo ul li {
  font-size: 20px;
  font-weight: 800;
}
#productDetails .narrowWrapper .selectedProduct .applications {
  background: #F0F0F0;
  padding: 20px;
  margin: 30px 0;
}
#productDetails .narrowWrapper .selectedProduct .applications h3 {
  margin: 0px 0 15px 0;
  font-size: 30px;
  font-weight: 900;
}
#productDetails .narrowWrapper .selectedProduct .applications p {
  font-size: 20px;
  font-weight: 800;
}
#productDetails .narrowWrapper .selectedProduct a {
  background: #A23130;
  padding: 15px 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 1550px) {
  #productDetails .narrowWrapper .items .singleItem .singleItemImg {
    display: none;
  }
  #productDetails .narrowWrapper .items .singleItem p {
    width: 100%;
    text-align: center;
  }
  #productDetails .narrowWrapper .selectedProduct {
    max-width: 90%;
    margin: 100px auto;
  }
}
@media (max-width: 1000px) {
  #productDetails .narrowWrapper .selectedProduct {
    flex-direction: column;
  }
  #productDetails .narrowWrapper .selectedProduct .selectedImg {
    width: 90%;
  }
  #productDetails .narrowWrapper .selectedProduct .selectedInfo {
    width: 90%;
  }
  #productDetails .narrowWrapper .items .singleItem {
    display: none;
  }
  #productDetails .narrowWrapper .items .mobileItem {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  #productDetails .narrowWrapper .items .mobileItem .mobileLink {
    font-size: 18px;
    font-weight: 900;
  }
}
#resourcePage {
  width: 1470px;
  max-width: 90%;
  margin: 100px auto;
}
#resourcePage .subtext {
  width: 600px;
  max-width: 90%;
  margin: 30px auto;
  text-align: center;
}
#resourcePage .resourceFlex {
  display: flex;
  gap: 30px;
  margin: 50px auto;
  width: 1024px;
  max-width: 100%;
  flex-wrap: wrap;
}
#resourcePage .resourceFlex .resource {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
}
#resourcePage .resourceFlex .resource p {
  padding: 0 20px;
  font-size: 20px;
  font-weight: 800;
}
#resourcePage .redButton {
  width: fit-content;
  display: block;
  margin: 50px auto;
}

@media (max-width: 600px) {
  #resourcePage .header {
    font-size: 32px;
  }
}
#aboutUs {
  position: relative;
}
#aboutUs .bodyCopy {
  font-size: 15px;
}
#aboutUs .heroImgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
  width: 100%;
}
#aboutUs .heroImgs .hero1, #aboutUs .heroImgs .hero3 {
  width: calc((100% - 400px) / 2 - 30px);
}
#aboutUs .heroImgs .hero2 {
  width: 400px;
  max-width: 90%;
}
#aboutUs .oneFamilySect {
  width: 1240px;
  max-width: 90%;
  margin: 50px auto;
}
#aboutUs .oneFamilySect .pageHeader {
  margin: 50px auto;
}
#aboutUs .oneFamilySect .pageHeader .small {
  font-size: 61px;
  line-height: 110%;
}
#aboutUs .oneFamilySect .emphasizedCopy {
  margin: 30px 80px;
}
#aboutUs .oneFamilySect .bodyCopy {
  padding: 0 80px;
}
#aboutUs .imgGrid {
  display: flex;
  margin: 100px auto;
  width: 1470px;
  max-width: 90%;
  gap: 20px;
  flex-wrap: wrap;
}
#aboutUs .imgGrid .gridTop {
  width: 100%;
  display: flex;
  gap: 20px;
  height: 450px;
}
#aboutUs .imgGrid .gridBot {
  width: 100%;
  display: flex;
  gap: 20px;
  height: 300px;
  justify-content: flex-end;
}
#aboutUs .imgGrid .gridImg {
  position: relative;
  height: 100%;
  width: calc(47% - 10px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#aboutUs .imgGrid .gridImg .imgCaption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
#aboutUs .imgGrid .gridImg .imgCaption .imgCaptionCopy {
  color: #fff;
  padding: 10px 30px;
}
#aboutUs .communityCultureSect {
  width: 1240px;
  max-width: 90%;
  margin: 100px auto;
}
#aboutUs .communityCultureSect p {
  margin: 0 80px;
}
#aboutUs .valuesSect {
  display: flex;
  gap: 50px;
}
#aboutUs .valuesSect .valuesLogo {
  mix-blend-mode: multiply;
  height: 150px;
  width: auto;
}
#aboutUs .valuesSect .valuesItem {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F0F0F0;
  padding: 50px;
  box-sizing: border-box;
}
#aboutUs .valuesSect .valuesItem.norrisTrust {
  align-items: flex-end;
}
#aboutUs .valuesSect .valuesItem.norrisTrust .valuesLogo {
  padding: 40px 30px 0px;
  box-sizing: border-box;
}
#aboutUs .valuesSect .valuesItem .innerWrapper {
  width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#aboutUs .valuesSect .valuesItem .innerWrapper .underLine {
  width: 100px;
  border-bottom: solid 2px #203B55;
  margin-top: 30px;
}
#aboutUs .valuesSect .valuesItem .innerWrapper .valuesHeadline {
  margin: 30px auto;
  text-align: center;
}
#aboutUs .ourProcessSect {
  width: 1240px;
  max-width: 90%;
  margin: 100px auto;
}
#aboutUs .ourProcessSect p {
  margin: 0 80px;
}
#aboutUs .processSect {
  display: flex;
  gap: 20px;
}
#aboutUs .processSect .redBar {
  width: 150px;
  height: 60px;
  background-color: #A23130;
}
#aboutUs .processSect .underline {
  width: 75px;
  border-bottom: solid 4px #203B55;
  margin-top: 30px;
}
#aboutUs .processSect ul.processList {
  list-style: disc;
  margin-block: 0;
  padding-inline: 20px 0;
}
#aboutUs .processSect.dryingSect {
  margin: 100px auto;
}
#aboutUs .processSect.dryingSect .smallImgs {
  width: calc(20% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#aboutUs .processSect.dryingSect .smallImgs div {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#aboutUs .processSect.dryingSect .mainImg {
  width: calc(42% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#aboutUs .processSect.dryingSect .mainImg .redBar {
  margin-top: 40px;
}
#aboutUs .processSect.dryingSect .mainImg .largeImg {
  width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#aboutUs .processSect.dryingSect .info {
  display: flex;
  flex-direction: column;
  width: calc(25% - 13.3333333333px);
  box-sizing: border-box;
  padding-top: 140px;
}
#aboutUs .processSect.dryingSect .info .processHeader {
  text-align: left;
  margin: 30px 0;
}
#aboutUs .processSect.gradingSect {
  flex-wrap: wrap;
  margin: 100px 0;
}
#aboutUs .processSect.gradingSect .topSect {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
}
#aboutUs .processSect.gradingSect .topSect .info {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 50px;
}
#aboutUs .processSect.gradingSect .topSect .info h2.processHeader {
  margin: 30px 0;
}
#aboutUs .processSect.gradingSect .topSect .gradingMainImg {
  width: 55%;
  height: 600px;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}
#aboutUs .processSect.gradingSect .bottomSect {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: flex-end;
}
#aboutUs .processSect.gradingSect .bottomSect .redBar {
  width: 400px;
}
#aboutUs .processSect.packagingSect .smallImgs {
  width: calc(20% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#aboutUs .processSect.packagingSect .smallImgs div {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#aboutUs .processSect.packagingSect .mainImg {
  width: calc(42% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#aboutUs .processSect.packagingSect .mainImg .largeImg {
  width: 100%;
  height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#aboutUs .processSect.packagingSect .info {
  display: flex;
  flex-direction: column;
  width: calc(20% - 13.3333333333px);
  box-sizing: border-box;
  padding-top: 50px;
}
#aboutUs .processSect.packagingSect .info .processHeader {
  text-align: left;
  margin: 30px 0;
}
#aboutUs .processSect.packagingSect .info .redButton {
  margin: 50px 0;
}
#aboutUs .teamSect {
  background-image: url(/wp-content/themes/hartzell/images/home/woodGrain.png);
  background-size: 100% auto;
  padding: 50px 0;
  position: relative;
  margin-top: 100px;
}
#aboutUs .teamSect .solidBG {
  position: absolute;
  width: 100%;
  height: 85%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #203B55;
  z-index: 1;
}
#aboutUs .teamSect .innerWrap {
  width: 1240px;
  max-width: 90%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
#aboutUs .teamSect .innerWrap .subHead {
  color: #fff;
}
#aboutUs .teamSect .innerWrap .bodyCopy {
  color: #fff;
  width: 1030px;
  max-width: 100%;
  margin: auto;
}
#aboutUs .teamSect .innerWrap .bodyCopy bold {
  font-weight: 900;
  font-size: 18px;
}
#aboutUs .teamSect .innerWrap .teamGrid {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
  justify-content: center;
}
#aboutUs .teamSect .innerWrap .teamGrid .teamMember {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#aboutUs .teamSect .innerWrap .teamGrid .teamMember .memberPhoto {
  width: 100%;
}
#aboutUs .teamSect .innerWrap .teamGrid .teamMember .memberName {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  text-align: center;
  margin: 15px auto 8px;
}
#aboutUs .teamSect .innerWrap .teamGrid .teamMember .memberPosition {
  color: #fff;
  text-align: center;
  padding-bottom: 60px;
}
#aboutUs .teamSect .innerWrap .teamGrid .teamMember .redButton {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 15px;
}
#aboutUs .teamSect .innerWrap .bold {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

@media (max-width: 1300px) {
  #aboutUs .heroImgs {
    justify-content: center;
  }
  #aboutUs .heroImgs .hero1, #aboutUs .heroImgs .hero3 {
    display: none;
  }
  #aboutUs .processSect.dryingSect {
    flex-wrap: wrap;
  }
  #aboutUs .processSect.dryingSect .smallImgs {
    display: none;
  }
  #aboutUs .processSect.dryingSect .mainImg {
    width: calc(50% - 10px);
  }
  #aboutUs .processSect.dryingSect .info {
    width: calc(50% - 10px);
    padding: 50px 50px;
  }
  #aboutUs .processSect.gradingSect .info {
    width: 40%;
    padding-top: 0;
  }
  #aboutUs .processSect.packagingSect .smallImgs {
    display: none;
  }
  #aboutUs .processSect.packagingSect .mainImg {
    width: calc(50% - 10px);
  }
  #aboutUs .processSect.packagingSect .info {
    width: calc(50% - 10px);
    padding: 50px 50px;
  }
}
@media (max-width: 1000px) {
  #aboutUs .ourProcessSect {
    margin: 50px auto;
  }
  #aboutUs .valuesSect {
    flex-wrap: wrap;
  }
  #aboutUs .valuesSect .valuesItem {
    width: 100%;
    align-items: center !important;
  }
  #aboutUs .valuesSect .valuesItem .innerWrapper {
    width: 90%;
  }
  #aboutUs .processHeader {
    font-size: 48px;
  }
  #aboutUs .processSect.dryingSect {
    margin: 50px auto;
  }
  #aboutUs .processSect.gradingSect {
    flex-wrap: wrap;
    margin: 50px auto;
  }
  #aboutUs .processSect.gradingSect .underline {
    margin-top: 0;
  }
  #aboutUs .processSect.gradingSect .topSect {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  #aboutUs .processSect.gradingSect .topSect .info {
    width: 90%;
    align-items: flex-start;
    margin: auto;
    padding-top: 0;
  }
  #aboutUs .processSect.gradingSect .topSect .gradingMainImg {
    width: 100%;
    height: 300px;
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember {
    width: calc(33.3333333333% - 15px);
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember .redButton {
    font-size: 12px;
  }
}
@media (max-width: 650px) {
  #aboutUs .processSect.dryingSect, #aboutUs .processSect.packagingSect {
    flex-direction: column-reverse;
  }
  #aboutUs .processSect.dryingSect .mainImg, #aboutUs .processSect.packagingSect .mainImg {
    width: 100%;
    height: 300px;
  }
  #aboutUs .processSect.dryingSect .info, #aboutUs .processSect.packagingSect .info {
    width: 90%;
    margin: auto;
    padding: 0;
  }
  #aboutUs .processSect.gradingSect .bottomSect .redBar {
    display: none;
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember {
    width: calc(50% - 10px);
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember .redButton {
    font-size: 10px;
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember .memberPosition {
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
  }
  #aboutUs .imgGrid .gridTop, #aboutUs .imgGrid .gridBot {
    flex-wrap: wrap;
    height: fit-content;
  }
  #aboutUs .gridImg.img1 {
    width: 100%;
    height: 300px;
  }
  #aboutUs .gridImg.img2 {
    width: 100%;
    height: 300px;
  }
  #aboutUs .gridImg.img3 {
    width: 100%;
    height: 300px;
  }
  #aboutUs .gridImg.img4 {
    width: 100%;
    height: 300px;
  }
  #aboutUs .oneFamilySect .pageHeader {
    font-size: 48px;
  }
  #aboutUs .oneFamilySect .pageHeader .small {
    font-size: 36px;
    line-height: 110%;
  }
  #aboutUs .oneFamilySect .emphasizedCopy {
    font-size: 26px;
  }
  #aboutUs .oneFamilySect .bodyCopy {
    padding: 0 30px;
  }
  #aboutUs .oneFamilySect .emphasizedCopy {
    margin: 30px;
  }
}
@media (max-width: 500px) {
  #aboutUs .communityCultureSect p {
    margin: 0 auto;
  }
  #aboutUs .ourProcessSect p {
    margin: 0 auto;
  }
  #aboutUs .teamSect .innerWrap .teamGrid .teamMember .redButton {
    font-size: 7px;
  }
}
#findARep {
  margin: 50px auto;
}
#findARep .subtext {
  width: 600px;
  max-width: 80%;
  margin: 50px auto;
}
#findARep .locationPicker {
  display: flex;
  width: 1470px;
  max-width: 90%;
  background-color: #F0F0F0;
  margin: 50px auto;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  gap: 20px;
}
#findARep .locationPicker .locationHeadline {
  font-size: 44px;
  font-weight: 900;
  max-width: calc(50% - 33.3333333333px);
}
#findARep .locationPicker .usa, #findARep .locationPicker .international {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: calc(25% - 13.3333333333px);
  cursor: pointer;
}
#findARep .locationPicker .usa svg, #findARep .locationPicker .international svg {
  height: 120px;
}
#findARep .locationPicker .usa path, #findARep .locationPicker .international path {
  fill: #203B55;
}
#findARep .locationPicker .usa .usaTitle, #findARep .locationPicker .usa .intlTitle, #findARep .locationPicker .international .usaTitle, #findARep .locationPicker .international .intlTitle {
  font-size: 28px;
  text-align: center;
}
#findARep .locationPicker .usa.active path, #findARep .locationPicker .international.active path {
  fill: #A23130;
}
#findARep .locationPicker .usa.active .usaTitle, #findARep .locationPicker .usa.active .intlTitle, #findARep .locationPicker .international.active .usaTitle, #findARep .locationPicker .international.active .intlTitle {
  color: #A23130;
}
#findARep .locationWrapper {
  display: none;
  background-color: #FAFAFA;
  width: 1470px;
  max-width: 90%;
  margin: 30px auto;
}
#findARep .locationWrapper.active {
  display: block;
}
#findARep .locationWrapper .locationList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 300px;
  gap: 10px;
  align-content: space-around;
  padding-inline: 0;
  padding: 20px 50px;
}
#findARep .locationWrapper .locationList .location {
  text-decoration: underline;
  cursor: pointer;
}
#findARep .yourRep {
  display: flex;
  width: 1470px;
  max-width: 90%;
  margin: 30px auto;
  padding: 30px;
  box-sizing: border-box;
  align-items: center;
  background-color: #203B55;
  transition: opacity 0.2s ease-in;
}
#findARep .yourRep.inactive {
  opacity: 0;
}
#findARep .yourRep .left {
  width: calc(70% - 80px);
}
#findARep .yourRep .left .repHeader {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  text-align: left;
}
#findARep .yourRep .left .repLocation {
  color: #FFF;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: capitalize;
}
#findARep .yourRep .repContact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#findARep .yourRep .repContact.inactive {
  display: none;
}
#findARep .yourRep .repContact .bold {
  font-weight: 900;
}
#findARep .yourRep .repContact .repName {
  color: #FFF;
  font-size: 22px;
  font-weight: 900;
}
#findARep .yourRep .repContact .repOffice, #findARep .yourRep .repContact .repCell {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
#findARep .yourRep .repContact .repEmail {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 800px) {
  #findARep .locationPicker {
    flex-wrap: wrap;
    justify-content: center;
  }
  #findARep .locationPicker .locationHeadline {
    width: 100%;
    max-width: 100%;
  }
  #findARep .locationPicker .pickerBtn {
    width: calc(50% - 15px);
  }
  #findARep .locationWrapper .locationList {
    height: 500px;
  }
}
@media (max-width: 500px) {
  #findARep h1 {
    font-size: 48px;
  }
  #findARep .locationPicker .locationHeadline {
    font-size: 24px;
  }
  #findARep .locationPicker .pickerBtn svg {
    height: 90px;
  }
  #findARep .locationPicker .pickerBtn .usaTitle, #findARep .locationPicker .pickerBtn .intlTitle {
    font-size: 20px;
  }
  #findARep .locationWrapper .locationList {
    height: 650px;
  }
  #findARep .yourRep {
    flex-wrap: wrap;
  }
  #findARep .yourRep .left {
    width: 100%;
    margin-bottom: 30px;
  }
  #findARep .yourRep .left .repHeader {
    font-size: 28px;
  }
}
@media (max-width: 370px) {
  #findARep .locationPicker .pickerBtn svg {
    height: 70px;
  }
  #findARep .locationPicker .pickerBtn .usaTitle, #findARep .locationPicker .pickerBtn .intlTitle {
    font-size: 16px;
  }
  #findARep .locationWrapper .locationList {
    height: 850px;
  }
  #findARep .yourRep .repContact .repName {
    font-size: 14px;
  }
  #findARep .yourRep .repContact .repOffice, #findARep .yourRep .repContact .repCell {
    font-size: 14px;
  }
  #findARep .yourRep .repContact .repEmail {
    font-size: 14px;
  }
}
#sustainabilityPage {
  margin: 100px auto 0;
}
#sustainabilityPage h2 {
  font-size: 60px;
  font-weight: 900;
}
#sustainabilityPage .heroSect {
  margin: 100px auto;
  display: flex;
  gap: 20px;
}
#sustainabilityPage .heroSect .left, #sustainabilityPage .heroSect .right {
  width: calc(20% - 13.3333333333px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#sustainabilityPage .heroSect .left img, #sustainabilityPage .heroSect .right img {
  width: 100%;
}
#sustainabilityPage .heroSect .main {
  width: calc(60% - 13.3333333333px);
}
#sustainabilityPage .heroSect .main iframe {
  width: 100%;
  height: 100%;
}
#sustainabilityPage .heroSect .mobile {
  gap: 20px;
  display: none;
}
#sustainabilityPage .heroSect .mobile img {
  width: calc(25% - 15px);
}
#sustainabilityPage .innerWrap {
  width: 1470px;
  max-width: 90%;
  margin: auto;
}
#sustainabilityPage .innerWrap .prideSect {
  width: 800px;
  margin: auto;
  max-width: 100%;
}
#sustainabilityPage .innerWrap .salamander {
  display: flex;
  position: relative;
  background: #F0F0F0;
  margin: 50px auto;
  gap: 40px;
  box-sizing: border-box;
  padding: 30px;
}
#sustainabilityPage .innerWrap .salamander .left {
  width: calc(20% - 20px);
  position: relative;
}
#sustainabilityPage .innerWrap .salamander .left .salamanderImg {
  width: 460px;
  position: absolute;
  top: 0;
  right: 0;
}
#sustainabilityPage .innerWrap .salamander .left .map {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#sustainabilityPage .innerWrap .salamander .left .map .salamanderMap {
  width: 100%;
}
#sustainabilityPage .innerWrap .salamander .left .map .caption {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}
#sustainabilityPage .innerWrap .salamander .right {
  width: calc(80% - 20px);
}
#sustainabilityPage .innerWrap .salamander .right .top {
  display: flex;
  justify-content: space-between;
}
#sustainabilityPage .innerWrap .salamander .right .top .salamanderHeader {
  font-size: 48px;
  margin: 0;
  text-align: left;
}
#sustainabilityPage .innerWrap .salamander .right .top .subHeader p {
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
}
#sustainabilityPage .innerWrap .salamander .right .top .vulnerable {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sustainabilityPage .innerWrap .salamander .right .top .vulnerable p {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
#sustainabilityPage .innerWrap .salamander .right .salamanderBody {
  margin-top: 30px;
}
#sustainabilityPage .innerWrap .partnersFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 100px auto;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard {
  display: flex;
  flex-wrap: wrap;
  width: calc(50% - 10px);
  background: #F0F0F0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 20px;
  box-sizing: border-box;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff {
  width: 100%;
  gap: 20px;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .left, #sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .right {
  width: calc(50% - 10px);
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .left iframe, #sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .right iframe {
  width: 100%;
  height: 100%;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard p {
  margin: 20px 0;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard img {
  height: 70px;
  width: auto;
  margin-right: 20px;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard h4 {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  margin: 0;
  display: block;
  width: 100%;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard .partnerBrand {
  display: flex;
  align-items: center;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard .partnerBrand .partnerName {
  width: fit-content;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard .howWeHelp {
  margin: 10px 0;
  color: #203B55;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}
#sustainabilityPage .innerWrap .partnersFlex .partnerCard .howWeHelp.half {
  width: 50%;
}
#sustainabilityPage .quoteSect {
  background-color: #203B55;
  padding: 80px;
  box-sizing: border-box;
}
#sustainabilityPage .quoteSect .quote {
  color: #fff;
  font-size: 48px;
  text-align: left;
  margin-bottom: 50px;
}
#sustainabilityPage .quoteSect .bot {
  display: flex;
  align-items: center;
}
#sustainabilityPage .quoteSect .bot .quoteTitle {
  color: #fff;
  width: fit-content;
  padding-right: 20px;
}
#sustainabilityPage .quoteSect .bot .quoteTitle .bold {
  font-weight: 900;
  font-size: 18px;
}
#sustainabilityPage .quoteSect .bot .underline {
  height: 2px;
  background-color: #fff;
  flex-grow: 1;
}

@media (max-width: 700px) {
  #sustainabilityPage h1 {
    font-size: 42px;
  }
  #sustainabilityPage h2 {
    font-size: 36px;
  }
  #sustainabilityPage .innerWrap .salamander .right .top .salamanderHeader {
    font-size: 36px;
  }
  #sustainabilityPage .quoteSect {
    padding: 30px;
  }
  #sustainabilityPage .quoteSect .quote {
    font-size: 28px;
  }
  #sustainabilityPage .innerWrap .salamander {
    flex-direction: column-reverse;
  }
  #sustainabilityPage .innerWrap .salamander .left {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  #sustainabilityPage .innerWrap .salamander .left .salamanderImg {
    position: static;
    width: calc(50% - 10px);
  }
  #sustainabilityPage .innerWrap .salamander .left .map {
    position: static;
    width: calc(40% - 10px);
  }
  #sustainabilityPage .innerWrap .salamander .right {
    width: 100%;
  }
  #sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff {
    flex-wrap: wrap;
  }
  #sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .left, #sustainabilityPage .innerWrap .partnersFlex .partnerCard.tff .right {
    width: 100%;
    min-height: 250px;
  }
}
@media (max-width: 550px) {
  #sustainabilityPage .innerWrap .partnersFlex .partnerCard {
    width: 100%;
  }
  #sustainabilityPage .innerWrap .salamander .right .top .salamanderHeader {
    font-size: 22px;
  }
  #sustainabilityPage h2 {
    font-size: 22px;
  }
  #sustainabilityPage .heroSect {
    flex-direction: column;
  }
  #sustainabilityPage .heroSect .left, #sustainabilityPage .heroSect .right {
    display: none;
  }
  #sustainabilityPage .heroSect .mobile {
    display: flex;
  }
  #sustainabilityPage .heroSect .main {
    width: 90%;
    margin: auto;
    height: 210px;
  }
}
#contactPage {
  margin: 50px auto 100px;
}
#contactPage .bold {
  font-weight: 800;
}
#contactPage .narrow {
  width: 1240px;
  max-width: 90%;
  margin: auto;
}
#contactPage .narrow .contactHeader {
  margin: 50px auto 0;
}
#contactPage .narrow .quoteForm {
  background-color: #203B55;
  padding: 50px;
  box-sizing: border-box;
  margin: 50px auto;
}
#contactPage .narrow .quoteForm .quoteHeader {
  color: #fff;
  margin: 0 0 30px;
}
#contactPage .narrow .quoteForm .whatYouGetFlex {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
#contactPage .narrow .quoteForm .whatYouGetFlex .youGet {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#contactPage .narrow .quoteForm .whatYouGetFlex .youGet .youGetText {
  color: #fff;
  text-align: center;
}
#contactPage #form form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#contactPage #form form :nth-child(-n+6 of p) {
  width: calc(50% - 10px);
}
#contactPage #form form :nth-child(7 of p) {
  width: 100%;
}
#contactPage #form form :nth-child(8 of p) input {
  background-color: #A23130;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
#contactPage #form form :nth-child(8 of p) input:hover {
  background-color: #fff;
  color: #A23130;
}
#contactPage #form label {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#contactPage #form input {
  background-color: #193148;
  border: none;
  color: #fff;
  font-family: Avenir, sans-serif;
  font-size: 15px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
#contactPage #form select {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #193148;
  border: none;
  color: #fff;
}
#contactPage #form textarea {
  color: #fff;
  width: 100%;
  border: none;
  background-color: #193148;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #contactPage .narrow .quoteForm .whatYouGetFlex .youGet {
    width: calc(50% - 10px);
  }
  #contactPage .narrow .contactHeader {
    font-size: 48px;
  }
  #contactPage .infoHeader {
    font-size: 32px;
  }
  #contactPage .narrow .quoteForm .quoteHeader {
    font-size: 32px;
  }
  #contactPage #form form :nth-child(-n+6 of p) {
    width: 100%;
  }
}
@media (max-width: 400px) {
  #contactPage .narrow .contactHeader {
    font-size: 42px;
  }
  #contactPage .narrow .quoteForm .whatYouGetFlex .youGet {
    width: 100%;
  }
}
.home .anniversaryBanner {
  display: block;
}

.anniversaryBanner {
  display: none;
  width: 100%;
  padding: 40px 0;
  background-color: #A23130;
}
.anniversaryBanner .ab_Wrapper {
  width: 90%;
  margin: auto;
  max-width: 1300px;
  display: grid;
  grid-template-columns: fit-content(100%) auto fit-content(100%);
  align-items: center;
  grid-gap: 60px;
}
.anniversaryBanner .ab_BadgeHeadline {
  display: flex;
  gap: 40px;
  width: 440px;
  height: 120px;
  align-items: center;
}
.anniversaryBanner .ab_Badge {
  width: 100px;
  height: auto;
  display: block;
}
.anniversaryBanner .abbh_Divider {
  width: 2px;
  height: 100%;
  background-color: white;
}
.anniversaryBanner .ab_Headline {
  color: white;
  text-wrap: balance;
  font-size: 33px;
}
.anniversaryBanner .ab_Copy {
  color: white;
  text-wrap: pretty;
}
.anniversaryBanner .ab_Btn {
  width: 178px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 950px) {
  .anniversaryBanner .ab_Btn {
    font-size: 16px;
    width: 155px;
  }
}
@media (max-width: 700px) {
  .anniversaryBanner .ab_Btn {
    font-size: 12px;
    width: 130px;
  }
}
@media (max-width: 1200px) {
  .anniversaryBanner .ab_Wrapper {
    grid-template-columns: repeat(3, 1fr);
    justify-items: end;
  }
  .anniversaryBanner .ab_BadgeHeadline {
    grid-column: span 3;
    margin: auto;
  }
  .anniversaryBanner .ab_Copy {
    grid-column: span 2;
  }
}
@media (max-width: 650px) {
  .anniversaryBanner .ab_Wrapper {
    grid-template-columns: 1fr;
    justify-items: initial;
    grid-gap: 30px;
  }
  .anniversaryBanner .ab_BadgeHeadline {
    grid-column: initial;
  }
  .anniversaryBanner .ab_Copy {
    grid-column: initial;
    text-align: center;
  }
  .anniversaryBanner .ab_Btn {
    margin: auto;
  }
}
@media (max-width: 500px) {
  .anniversaryBanner .ab_BadgeHeadline {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    height: fit-content;
    justify-content: center;
    gap: 20px;
  }
  .anniversaryBanner .abbh_Divider {
    display: none;
  }
  .anniversaryBanner .ab_Headline {
    text-align: center;
  }
}

html {
  scroll-behavior: smooth;
}

.white {
  color: #FFF;
}

.redButton {
  background: #A23130;
  padding: 10px 30px 10px 30px;
  font-size: 20px;
  font-weight: 900;
  color: #FFF;
  text-decoration: none;
  width: fit-content;
  display: block;
}

.whiteButton {
  background: #FFF;
  padding: 10px 30px 10px 30px;
  font-size: 20px;
  font-weight: 900;
  color: #203B55;
  text-decoration: none;
  width: fit-content;
  display: block;
}

body {
  margin: 0px;
  font-family: Avenir, sans-serif;
}

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

h1, h2 {
  font-family: Avenir, sans-serif;
  font-size: 78px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
  margin: 0;
  color: #203B55;
  text-align: center;
}
h1 span, h2 span {
  padding: 0px 10px 0px 10px;
}

h3 {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
}

h4 {
  color: #203B55;
  font-family: Avenir, sans-serif;
  font-weight: 900;
  line-height: 140%;
  font-size: 33px;
  margin: 0;
}

p, a, li {
  font-family: Avenir, sans-serif;
  margin: 0;
  color: #203B55;
}

ul {
  list-style-type: none;
}
ul li a {
  text-decoration: none;
  color: #203B55;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.blue {
  color: #203B55;
}

.whiteTextRedBackground {
  color: #FFF;
  background: #A23130;
  padding: 0 10px;
}

.whiteTextLightBlueBackground {
  color: #FFF;
  background: #386B9F;
  padding: 0 10px;
}

.whiteTextBlueBackground {
  color: #FFF;
  background: #203B55;
  padding: 0 10px;
}

.redTextWhiteBackground {
  background: #FFF;
  color: #A23130;
  padding: 0 10px;
}

span.noWrap {
  display: inline-block;
}

@media (max-width: 1000px) {
  h1, h2 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  h1, h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 800px) {
  h1, h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
}

/*# sourceMappingURL=style.css.map */
