@charset "UTF-8";
@import url("https://use.typekit.net/cxl1cgg.css");
.site-main {
  padding: 0;
}

:root {
  --base-font-size: 16px;
  --line-height: 1.6;
  --heading-line-height: 1.2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: var(--base-font-size);
  line-height: var(--line-height);
  font-family: "Inter", sans-serif;
  color: #333;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

/* 
USAGE
<div class="container">
  <div class="row">
    <!-- These columns will share equal width -->
    <div class="col">Column 1</div>
    <div class="col">Column 2</div>
    <div class="col">Column 3</div>
  </div>
  <div class="row">
    <!-- Mixed usage: fixed and flexible columns -->
    <div class="col-4">Fixed 4/12 width</div>
    <div class="col">Flexible (fills remaining space)</div>
    <div class="col">Flexible (fills remaining space)</div>
  </div>
  <div class="row">
    <!-- Responsive: flexible at medium breakpoint and below -->
    <div class="col col-md-auto">Flexible on medium and below</div>
    <div class="col col-md-auto">Flexible on medium and below</div>
  </div>
</div>
*/
.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.container.full-width {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
}
.container.full-width .row {
  margin-left: 2rem;
  margin-right: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.row.right {
  flex-direction: row-reverse;
}

.col {
  padding-left: 7.5px;
  padding-right: 7.5px;
  box-sizing: border-box;
  flex: 1 1 0;
  max-width: 100%;
}
.col img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 576px) {
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xs-auto {
    flex: 1 1 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 1 1 0;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 1 1 0;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 1 1 0;
    max-width: 100%;
  }
}
@media (max-width: 1400px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 1 1 0;
    max-width: 100%;
  }
}
.show-xs-down {
  display: none;
}
@media (max-width: 576px) {
  .show-xs-down {
    display: block;
  }
}

.show-xs-up {
  display: none;
}
@media (min-width: 577px) {
  .show-xs-up {
    display: block;
  }
}

.hide-xs-down {
  display: block;
}
@media (max-width: 576px) {
  .hide-xs-down {
    display: none;
  }
}

.hide-xs-up {
  display: block;
}
@media (min-width: 577px) {
  .hide-xs-up {
    display: none;
  }
}

.show-sm-down {
  display: none;
}
@media (max-width: 768px) {
  .show-sm-down {
    display: block;
  }
}

.show-sm-up {
  display: none;
}
@media (min-width: 769px) {
  .show-sm-up {
    display: block;
  }
}

.hide-sm-down {
  display: block;
}
@media (max-width: 768px) {
  .hide-sm-down {
    display: none;
  }
}

.hide-sm-up {
  display: block;
}
@media (min-width: 769px) {
  .hide-sm-up {
    display: none;
  }
}

.show-md-down {
  display: none;
}
@media (max-width: 992px) {
  .show-md-down {
    display: block;
  }
}

.show-md-up {
  display: none;
}
@media (min-width: 993px) {
  .show-md-up {
    display: block;
  }
}

.hide-md-down {
  display: block;
}
@media (max-width: 992px) {
  .hide-md-down {
    display: none;
  }
}

.hide-md-up {
  display: block;
}
@media (min-width: 993px) {
  .hide-md-up {
    display: none;
  }
}

.show-lg-down {
  display: none;
}
@media (max-width: 1200px) {
  .show-lg-down {
    display: block;
  }
}

.show-lg-up {
  display: none;
}
@media (min-width: 1201px) {
  .show-lg-up {
    display: block;
  }
}

.hide-lg-down {
  display: block;
}
@media (max-width: 1200px) {
  .hide-lg-down {
    display: none;
  }
}

.hide-lg-up {
  display: block;
}
@media (min-width: 1201px) {
  .hide-lg-up {
    display: none;
  }
}

.show-xl-down {
  display: none;
}
@media (max-width: 1400px) {
  .show-xl-down {
    display: block;
  }
}

.show-xl-up {
  display: none;
}
@media (min-width: 1401px) {
  .show-xl-up {
    display: block;
  }
}

.hide-xl-down {
  display: block;
}
@media (max-width: 1400px) {
  .hide-xl-down {
    display: none;
  }
}

.hide-xl-up {
  display: block;
}
@media (min-width: 1401px) {
  .hide-xl-up {
    display: none;
  }
}

.btn {
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  padding: 0.625rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "acumin-pro", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 0.125em solid rgb(255, 255, 255);
  border-radius: 1.5625em;
  padding: 0.5em 1.5em 0.5em 1.5em;
}
.btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0) !important;
  text-decoration: none !important;
}

.btn-alt {
  background-color: rgb(37, 51, 67);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(37, 51, 67);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-alt:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(37, 51, 67);
  text-decoration: none;
}

.btn-red {
  background-color: rgb(212, 35, 38);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(212, 35, 38);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-red:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(212, 35, 38);
  text-decoration: none;
}

body.blog .row.filters {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(212, 35, 38);
  margin-bottom: 4rem;
}
body.blog .facetwp-facet {
  display: flex;
  justify-content: center;
}
body.blog .facetwp-facet .facetwp-counter {
  display: none;
}
body.blog .facetwp-facet .facetwp-radio {
  background: none;
  padding: 0;
  margin: 0 1.5rem;
}
body.blog .facetwp-facet .facetwp-radio:not(:has(span)) {
  display: none;
}
body.blog .facetwp-facet .facetwp-radio:hover span {
  opacity: 0.5;
  text-decoration: none;
}
body.blog .facetwp-facet .facetwp-radio span {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  font-style: normal;
  color: rgb(0, 0, 0);
  padding-bottom: 0.25rem;
}
body.blog .facetwp-facet .facetwp-radio.checked span {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
}
@media (max-width: 992px) {
  body.blog .facetwp-template {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
body.blog article {
  text-align: center;
  margin-bottom: 6rem;
}
body.blog article .thumbnail {
  margin-bottom: 3rem;
  width: 100%;
  aspect-ratio: 16/5;
}
body.blog article .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.blog article .blog-meta {
  max-width: 1100px;
  margin: 0 auto;
}
body.blog article h2 {
  font-family: "acumin-pro", sans-serif;
  font-size: 3.5rem;
  line-height: 4.875rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -1%;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 992px) {
  body.blog article h2 {
    padding-left: 0;
    padding-right: 0;
    font-family: "acumin-pro", sans-serif;
    font-size: 2.8rem;
    line-height: 3.2rem;
    font-weight: 400;
    font-style: normal;
  }
}
body.blog article .byline {
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 300;
  font-style: normal;
}
body.blog article .subheading {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "acumin-pro", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
  font-style: normal;
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 992px) {
  body.blog article .subheading {
    padding-left: 0;
    padding-right: 0;
  }
}
body.blog article .subheading p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
  font-style: normal;
}
body.blog article .intro {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 300;
  font-style: normal;
  padding-left: 8rem;
  padding-right: 8rem;
}
body.blog article .click {
  padding-top: 2rem;
}
body.blog article .click a {
  color: rgb(0, 0, 0);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  font-style: normal;
}
body.blog article .click a .cta-arrow {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
  background-image: url("../img/Arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body.blog article .click a:hover {
  text-decoration: underline;
}
body.blog article .click a:hover .cta-arrow {
  transform: translateX(5px);
  opacity: 0.5;
}

body.single-post #main-content {
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  body.single-post #main-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
body.single-post #blog-hero {
  height: auto !important;
  background-image: none !important;
  background-color: rgb(255, 255, 255) !important;
  min-height: auto !important;
  height: auto !important;
  margin-bottom: 1rem;
}
body.single-post #blog-hero .col-5 {
  width: 83%;
}
body.single-post #blog-hero .col-5 h1 {
  color: rgb(0, 0, 0);
  font-family: "acumin-pro", sans-serif;
  font-size: 3rem;
  line-height: 3.625rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -1%;
}
@media (max-width: 992px) {
  body.single-post #blog-hero .col-5 h1 {
    font-family: "acumin-pro", sans-serif;
    font-size: 2.4rem;
    line-height: 2.9rem;
    font-weight: 400;
    font-style: normal;
  }
}
body.single-post #blog-hero .meta {
  display: none !important;
}
body.single-post #blog-content {
  top: 0;
  left: 0;
  padding-top: 0;
}
body.single-post #blog-content .entry-content {
  width: 83%;
  padding: 0 !important;
}
body.single-post #blog-content .entry-content h2 {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 300;
  font-style: normal;
}
body.single-post #blog-content .entry-content h4 {
  font-family: "acumin-pro", sans-serif;
  font-size: 2rem;
  line-height: 2.125rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
body.single-post #blog-content .entry-content ul {
  margin-left: 24px;
}
body.single-post #blog-content .entry-content ul li {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 300;
  font-style: normal;
}
body.single-post #blog-content .entry-content .content {
  margin-bottom: 2.5rem;
  padding-top: 5rem;
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  font-style: normal;
}
body.single-post #blog-content .entry-content .content:first-of-type {
  margin-top: 5rem;
  border-top: 1px solid rgb(212, 35, 38);
}
body.single-post #blog-content .entry-content .content ul li {
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  font-style: normal;
}
body.single-post #blog-content .entry-content .content h6 {
  font-family: "acumin-pro", sans-serif;
  font-size: 2rem;
  line-height: 2.125rem;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}
body.single-post #blog-content img {
  max-width: 100%;
  height: auto;
}
body.single-post #share {
  padding-top: 1rem;
}
body.single-post #share ul {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: flex;
}
body.single-post #share ul li {
  font-size: 0.7rem;
  line-height: 1.2rem;
}
body.single-post #share ul li.icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.9rem;
}
body.single-post #share ul li.icon a {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
body.single-post #share span.facebook {
  background: url("../img/facebook.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
body.single-post #share span.twitter {
  background: url("../img/twitter.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
body.single-post #share span.mail {
  background: url("../img/mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
body.single-post #share span.link {
  background: url("../img/link.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  text-indent: -999999px;
}
body.single-post #tags {
  padding-top: 2.5rem;
}
body.single-post #tags a {
  color: rgb(0, 0, 0);
  background-color: rgb(212, 35, 38);
  border: 1px solid rgb(212, 35, 38);
  padding: 0.25rem 1rem;
  margin-right: 0.75rem;
  text-decoration: none;
}
body.single-post #tags a:hover {
  border: 1px solid rgb(212, 35, 38);
  background-color: rgb(0, 0, 0);
  color: rgb(212, 35, 38);
  text-decoration: none;
}

ul.social {
  display: flex;
  gap: 1.5em;
  list-style: none;
  padding-left: 0;
  margin-bottom: 4em;
}
ul.social li {
  width: 2.5em;
  height: 2.5em;
  text-indent: -99999px;
  background: rgb(212, 35, 38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.social li a {
  width: 1.5em;
  height: 1.5em;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
ul.social li a.facebook {
  background-image: url("../img/facebook.svg");
}
ul.social li a.youtube {
  background-image: url("../img/youtube.svg");
}
ul.social li a.instagram {
  background-image: url("../img/instagram.svg");
}
ul.social li:hover {
  opacity: 0.5;
}

a.arrow {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0.5em;
  color: rgb(37, 51, 67);
  display: block;
  position: relative;
}
a.arrow:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0.1em;
  right: 0;
  background-image: url("../img/caret-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(-90deg);
}
a.arrow:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper video,
.video-wrapper embed,
.video-wrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper--4by3 {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}
.video-wrapper--4by3 iframe,
.video-wrapper--4by3 video,
.video-wrapper--4by3 embed,
.video-wrapper--4by3 object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper--square {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.video-wrapper--square iframe,
.video-wrapper--square video,
.video-wrapper--square embed,
.video-wrapper--square object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper--cinema {
  position: relative;
  width: 100%;
  padding-bottom: 42.8571428571%;
  height: 0;
  overflow: hidden;
}
.video-wrapper--cinema iframe,
.video-wrapper--cinema video,
.video-wrapper--cinema embed,
.video-wrapper--cinema object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrapper--vertical {
  position: relative;
  width: 100%;
  padding-bottom: 177.7777777778%;
  height: 0;
  overflow: hidden;
}
.video-wrapper--vertical iframe,
.video-wrapper--vertical video,
.video-wrapper--vertical embed,
.video-wrapper--vertical object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------------------------------------------------
   1. TOP BAR
   ------------------------------------------------- */
#top-bar {
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  height: 4.0625rem;
  border-bottom: 0.625rem solid rgb(212, 35, 38);
}

/* -------------------------------------------------
   2. BASE NAVIGATION
   ------------------------------------------------- */
.site-header {
  background-color: rgb(37, 51, 67);
  position: sticky;
  z-index: 9999;
  top: 0;
  /* ----- HAMBURGER (hidden on desktop) ----- */
  /* ----- MENU LIST (desktop) ----- */
  /* -------------------------------------------------
     2. SUB-MENUS (desktop dropdown)
     ------------------------------------------------- */
  /* -------------------------------------------------
     3. MOBILE (≤ 991px)
     ------------------------------------------------- */
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
@media (max-width: 992px) {
  .site-header .header-inner {
    flex-wrap: wrap;
  }
}
.site-header .header-inner a#logo {
  width: 11rem;
}
@media (max-width: 768px) {
  .site-header .header-inner a#logo {
    margin-left: 0.5em;
  }
}
.site-header .header-inner a#logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-header .site-nav {
  position: relative;
  padding-left: 5rem;
  padding-top: 0.4rem;
}
.site-header .site-nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}
.site-header .site-nav__toggle .site-nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: rgb(255, 255, 255);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.site-header .site-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Current page */
}
.site-header .site-nav__menu > li {
  position: relative;
  padding-right: 0.75em;
}
.site-header .site-nav__menu > li:has(.sub-menu)::after {
  content: "";
  display: inline-block;
  width: 0.8125em;
  height: 0.8125em;
  background-image: url("../img/caret.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 0.15em;
}
.site-header .site-nav__menu li.find {
  position: relative;
  padding-left: 2.25rem;
}
.site-header .site-nav__menu li.find:before {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background-image: url("../img/find.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.site-header .site-nav__menu li.find:hover a {
  color: rgb(255, 255, 255);
}
.site-header .site-nav__menu li.find a {
  color: rgb(212, 35, 38);
}
.site-header .site-nav__menu a {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  font-size: 0.8125em;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.site-header .site-nav__menu a:hover, .site-header .site-nav__menu a:focus {
  text-decoration: underline;
}
.site-header .site-nav__menu .current-menu-item > a,
.site-header .site-nav__menu .current-menu-parent > a,
.site-header .site-nav__menu .current-menu-ancestor > a {
  font-family: "acumin-pro", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  color: rgb(212, 35, 38);
  text-decoration: none;
}
.site-header .site-nav__menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgb(237, 240, 241);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
  z-index: 1000;
  list-style: none;
}
.site-header .site-nav__menu .sub-menu li {
  position: relative;
  width: 100%;
}
.site-header .site-nav__menu .sub-menu li.current_page_item, .site-header .site-nav__menu .sub-menu li.current-product-ancestor {
  background-color: rgb(212, 35, 38);
}
.site-header .site-nav__menu .sub-menu li.current_page_item > a, .site-header .site-nav__menu .sub-menu li.current-product-ancestor > a {
  color: rgb(255, 255, 255);
}
.site-header .site-nav__menu .sub-menu li:has(.sub-menu) {
  position: relative;
}
.site-header .site-nav__menu .sub-menu li:has(.sub-menu)::after {
  content: "";
  display: inline-block;
  width: 0.8125em;
  height: 0.8125em;
  background-image: url("../img/caret-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30%;
  right: 1rem;
  transform: rotate(-90deg);
}
.site-header .site-nav__menu .sub-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125em;
  color: #333;
  font-weight: 800;
}
.site-header .site-nav__menu .sub-menu a:hover {
  background: rgb(212, 35, 38);
  color: rgb(237, 240, 241);
  text-decoration: none;
}
.site-header .site-nav__menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.site-header .site-nav__menu li:hover > .sub-menu {
  display: block;
}
@media (max-width: 991px) {
  .site-header {
    /* ---- MENU (hidden until toggle) ---- */
    /* ---- OPEN STATE ---- */
    /* ---- HAMBURGER → X ---- */
    /* Mobile accordion */
    /* ---- KEY FIX: Toggle submenu when the <a> is clicked ----
     This works because clicking the <a> gives it :active and :focus
     We use :focus-within to detect interaction */
    /* Show submenu when parent <li> has .open class */
    /* Optional: Add smooth height transition */
  }
  .site-header .site-nav {
    justify-self: end;
  }
  .site-header .site-nav__toggle {
    display: block;
  }
  .site-header .site-nav__menu li:hover > .sub-menu {
    display: none;
  }
  .site-header .site-nav__menu {
    position: fixed;
    left: 0;
    z-index: 50;
    width: 100vw !important;
    background: rgb(237, 240, 241);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    z-index: 1050;
  }
  .site-header .site-nav.active .site-nav__menu {
    transform: translateX(0);
  }
  .site-header .site-nav__toggle[aria-expanded=true] .site-nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header .site-nav__toggle[aria-expanded=true] .site-nav__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .site-header .site-nav__toggle[aria-expanded=true] .site-nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .site-header .site-nav__menu > li {
    width: 100%;
    margin: 0;
  }
  .site-header .site-nav__menu a {
    color: rgb(0, 0, 0);
    padding: 1rem 0;
    font-size: 1.125rem;
  }
  .site-header .site-nav__menu a:hover {
    text-decoration: none;
  }
  .site-header .site-nav__menu .sub-menu {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 1.5rem;
  }
  .site-header .site-nav__menu li {
    background-color: transparent !important;
  }
  .site-header .site-nav__menu li.current-product-ancestor > a, .site-header .site-nav__menu li.current-menu-parent > a, .site-header .site-nav__menu li.current-product-parent > a {
    display: block;
    background-color: rgb(212, 35, 38) !important;
    color: rgb(255, 255, 255) !important;
    padding: 0.5rem 1rem !important;
  }
  .site-header .site-nav__menu li.menu-item-has-children > a:focus,
  .site-header .site-nav__menu li.menu-item-has-children > a:active,
  .site-header .site-nav__menu li.menu-item-has-children.open > a {
    outline: none;
    position: relative;
  }
  .site-header .site-nav__menu li.menu-item-has-children.open > a::after {
    display: none;
  }
  .site-header .site-nav__menu li.menu-item-has-children:has(.sub-menu)::after {
    display: none;
  }
  .site-header .site-nav__menu li.menu-item-has-children.open > .sub-menu {
    display: block;
  }
  .site-header .site-nav__menu .sub-menu {
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    max-height: 0;
  }
  .site-header .site-nav__menu li.open > .sub-menu {
    max-height: 2000px; /* Large enough for any menu depth */
  }
  .site-header .site-nav__menu li.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 1.4rem;
    color: rgb(212, 35, 38);
    transition: transform 0.25s ease;
    pointer-events: none;
    display: inline-block;
    width: 0.8125em;
    height: 0.8125em;
    background-image: url("../img/caret.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .site-header .site-nav__menu li.menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(0);
  }
  .site-header .site-nav__menu li.open > .sub-menu {
    display: block;
  }
  .site-header .site-nav__menu li.menu-item-has-children.open > a,
  .site-header .site-nav__menu li.menu-item-has-children.current-menu-ancestor > a {
    color: rgb(212, 35, 38);
    font-weight: bold;
  }
}

/* -------------------------------------------------
   4. SEARCH
   ------------------------------------------------- */
@media (max-width: 992px) {
  form#search {
    flex: 0 0 100%;
    padding-top: 0.5rem;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  form#search {
    margin-left: 0.5em;
  }
}
@media (max-width: 992px) {
  form#search input[type=text] {
    width: 90%;
  }
}
form#search fieldset {
  border: 0;
  position: relative;
  top: -0.25rem;
}
form#search input {
  border: 0;
  border-bottom: 1px solid rgb(255, 255, 255);
  background-color: transparent;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  padding: 0.25rem;
}
form#search input:focus {
  outline: none;
}
form#search button {
  border: 0;
  background: transparent;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../img/magnifying-glass.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  top: 0.4rem;
}
form#search button::-moz-placeholder {
  color: rgb(255, 255, 255); /* Change text color */
  font-size: 1rem; /* Adjust font size */
  opacity: 0.4; /* Ensure full opacity if needed, as default can be lower */
}
form#search button::placeholder {
  color: rgb(255, 255, 255); /* Change text color */
  font-size: 1rem; /* Adjust font size */
  opacity: 0.4; /* Ensure full opacity if needed, as default can be lower */
}
form#search button:hover {
  cursor: pointer;
}

footer.site-footer {
  background-color: rgb(17, 17, 17);
  padding-bottom: 4rem;
  padding-top: 4rem;
  margin-top: 4rem;
}
footer.site-footer .icon {
  height: 10em;
  background-image: url("/wp-content/uploads/2022/09/icon_american2-1-1.svg");
  background-position: 66% top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100vw;
  max-width: 1400px;
  margin: -8rem auto 0 auto;
}
footer.site-footer .container {
  display: flex;
  justify-content: flex-start;
  padding: 2rem 0;
}
footer.site-footer .container .footer-logo {
  width: 11rem;
}
footer.site-footer .container .footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
footer.site-footer .container .footer-social {
  display: flex;
  padding-top: 2rem;
}
footer.site-footer .container .footer-social a {
  width: 2rem;
  height: 2rem;
  text-align: center;
  margin-right: 1.5rem;
  transition: all 0.5s ease-in-out;
}
footer.site-footer .container .footer-social a:hover {
  opacity: 0.6;
}
footer.site-footer .container .footer-social a svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer.site-footer .container .sim_address_field {
  padding-top: 2rem;
  padding-bottom: 4rem;
  color: rgb(255, 255, 255);
  font-family: "acumin-pro", sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 300;
  font-style: normal;
}
footer.site-footer .container .footer-phone a {
  display: block;
  font-family: "acumin-pro", sans-serif;
  font-size: 1.1em;
  line-height: 1.8;
  font-weight: 300;
  font-style: normal;
  color: rgb(255, 255, 255);
}
footer.site-footer .container .footer-menu-nav {
  list-style: none;
  padding-left: 0;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  footer.site-footer .container .footer-menu-nav {
    padding-top: 2em;
    padding-left: 0;
  }
}
footer.site-footer .container .footer-menu-nav li {
  margin: 0;
}
footer.site-footer .container .footer-menu-nav li a {
  font-family: "acumin-pro", sans-serif;
  font-size: 0.9em;
  line-height: 1.75em;
  font-weight: 400;
  font-style: normal;
  color: rgb(255, 255, 255);
  transition: all 0.5s ease-in-out;
}
footer.site-footer .container .footer-menu-nav li a:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}
footer.site-footer .container .footer-menu-nav li:first-of-type {
  margin-bottom: 0.75rem;
}
footer.site-footer .container .footer-menu-nav li:first-of-type a {
  font-family: acumin-pro-wide, sans-serif;
  font-size: 0.9em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  footer.site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  footer.site-footer .container {
    flex-wrap: wrap;
  }
  footer.site-footer .container .copyright {
    flex: 0 0 100%;
  }
}

.img-responsive {
  display: block;
  height: auto;
  max-width: 100%;
}

.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.video-responsive {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.video-responsive::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

video.video-responsive {
  height: auto;
  max-width: 100%;
}
video.video-responsive::before {
  content: none;
}

.video-responsive-4-3::before {
  padding-bottom: 75%;
}

.video-responsive-1-1::before {
  padding-bottom: 100%;
}

h1,
.h1 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 7em;
  line-height: 0.9;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h2,
.h2 {
  text-transform: uppercase;
  word-spacing: 12px;
  margin-bottom: 1.25rem;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 6.25em;
  line-height: 0.8em;
  font-weight: 800;
  font-style: normal;
}

h3,
.h3 {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 4.75em;
  line-height: 0.85;
  font-weight: 800;
  font-style: normal;
}

h4,
.h4 {
  margin-bottom: 0.75rem;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.625em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

h5,
.h5 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2.4375em;
  line-height: 2.25rem;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0.5rem;
}

h6 {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: var(--heading-line-height);
  font-weight: 300;
  font-style: normal;
  margin-bottom: 0.5rem;
}

p,
p a,
span,
article {
  font-family: acumin-pro-wide, sans-serif;
  font-size: 1em;
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}

em {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: var(--line-height);
  font-weight: 400;
  font-style: normal;
}

strong {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: var(--line-height);
  font-weight: 700;
  font-style: normal;
}

p a,
a {
  color: rgb(18, 144, 183);
  text-decoration: none;
}
p a:hover,
a:hover {
  color: rgb(212, 35, 38);
  text-decoration: underline;
}

ul, ol {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: var(--line-height);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

blockquote {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125rem;
  line-height: var(--line-height);
  font-weight: 400;
  font-style: normal;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #ccc;
}

.alternating-content-section {
  padding: 0;
  background-color: transparent !important;
  /* @include media(md) {
    padding: 3rem 0;

    .alternating-content-text .content-inner {
      padding: 2rem;
      padding-left: 0;
    }

    .row.right {
      padding: 0;
    }
  }

  @include media(sm) {
    .row {
      //flex-direction: column;

      .alternating-content-image,
      .alternating-content-text {
        width: 100%;
        max-width: 100%;
      }
    }
  }

  @include media-max ( md ) {
      .row {
        flex-wrap: wrap;

        .col {
          flex: 0 0 100% !important;
          width: 100% !important;
          max-width: 100% !important;
        }
      }
    } */
}
.alternating-content-section.fade-in-active .alternating-content-image,
.alternating-content-section.fade-in-active .alternating-content-text .content-inner {
  opacity: 1;
}
.alternating-content-section .full-width .alternating-content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.alternating-content-section .full-width h2 {
  text-align: left;
}
.alternating-content-section .full-width .content-text p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125em;
  line-height: 1.6875em;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}
.alternating-content-section .full-width .content-cta {
  text-align: left;
}
.alternating-content-section .col {
  padding: 0;
}
.alternating-content-section .row.right {
  flex-direction: row;
}
.alternating-content-section .row.right .alternating-content-text {
  justify-content: flex-end;
}
.alternating-content-section .row.left {
  flex-direction: row-reverse;
}
.alternating-content-section .alternating-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-out;
  /* Optional: Full-width responsive container */
}
.alternating-content-section .alternating-content-image img {
  max-width: 100%;
  height: auto;
}
.alternating-content-section .alternating-content-image .responsive-video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover; /* Optional: cover container like background-size: cover */
}
.alternating-content-section .alternating-content-image .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 1rem;
}
.alternating-content-section .alternating-content-image .video-container .responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.alternating-content-section .alternating-content-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.alternating-content-section .alternating-content-text .content-inner {
  max-width: 600px;
  padding: 1em 4em;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.alternating-content-section .alternating-content-text .content-inner .content-text {
  margin-bottom: 1.5rem;
}
.alternating-content-section .alternating-content-text .content-inner .content-cta a {
  color: rgb(0, 0, 0);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  font-style: normal;
}
.alternating-content-section .alternating-content-text .content-inner .content-cta a .cta-arrow {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
  background-image: url("../img/Arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.alternating-content-section .alternating-content-text .content-inner .content-cta a:hover {
  text-decoration: underline;
}
.alternating-content-section .alternating-content-text .content-inner .content-cta a:hover .cta-arrow {
  transform: translateX(5px);
  opacity: 0.5;
}

.columns-section {
  padding: 2rem 0;
}
@media (max-width: 992px) {
  .columns-section .container {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.columns-section h5 {
  margin-bottom: 0.5em;
}
.columns-section .columns-header {
  margin-left: 7.5px;
  margin-right: 7.5px;
  margin-bottom: 6em;
  padding-bottom: 2.5em;
  border-bottom: 1px solid rgb(37, 51, 67);
}
.columns-section .column-inner {
  padding-right: 2em;
}
.columns-section .column-inner p {
  font-size: 1.125em;
  line-height: 1.6875em;
}
.columns-section .column-inner p + h5 {
  margin-top: 1.5em;
}
@media (max-width: 768px) {
  .columns-section.small {
    padding-top: 0;
  }
  .columns-section.small:has(+ section.small) {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .columns-section.small .col {
    flex: 0 0 100%;
    margin-bottom: 1em;
  }
}
.columns-section.small .column-inner {
  height: 100%;
  padding: 3em;
}
.columns-section.small .column-inner .column-text p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125em;
  line-height: 1.6875em;
  font-weight: 400;
  font-style: normal;
}

.content-area-section {
  padding-top: 3em;
  padding-bottom: 3em;
}
.content-area-section.blue h2 {
  color: rgb(37, 51, 67);
}
.content-area-section .content {
  padding-top: 3rem;
}
@media (max-width: 992px) {
  .content-area-section .content {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.content-area-section .content p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 300;
  font-style: normal;
}
.content-area-section .content p small {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 300;
  font-style: normal;
}
.content-area-section .content-area-ctas-inner {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}
.content-area-section .content-area-ctas-inner a {
  margin: 0 0.5rem;
}
.content-area-section.small h2 {
  font-size: 2.5em;
}

.cta-section .row {
  padding: 4em 6em;
}
.cta-section .intro {
  font-family: acumin-pro-wide, sans-serif;
  font-size: 1.3125em;
  line-height: 1.6;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 3em;
}
.cta-section .content-inner,
.cta-section .content-area-ctas {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.cta-section .content-inner.fade-in-active,
.cta-section .content-area-ctas.fade-in-active {
  opacity: 1;
}
.cta-section .content-area-ctas-inner a {
  margin-left: 1em;
  margin-right: 1em;
}
@media (max-width: 992px) {
  .cta-section .content-area-ctas-inner a {
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

section.featured_products-section {
  padding-bottom: 4rem;
}
section.featured_products-section h2 {
  padding-bottom: 3rem;
}
section.featured_products-section .featured-products-list {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  section.featured_products-section .featured-products-list {
    padding-left: 1em;
    padding-right: 1em;
  }
}
section.featured_products-section .featured-products-list .product-item {
  border: 1px solid rgb(212, 212, 212);
  flex: 0 0 calc(25% - 2rem);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
@media (max-width: 992px) {
  section.featured_products-section .featured-products-list .product-item {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  section.featured_products-section .featured-products-list .product-item {
    flex: 0 0 100%;
  }
}
section.featured_products-section .featured-products-list .product-item.fade-in-active {
  opacity: 1;
}
section.featured_products-section .featured-products-list .product-item a {
  transition: all 0.3s ease;
  color: rgb(37, 51, 67);
}
section.featured_products-section .featured-products-list .product-item a:hover {
  text-decoration: none;
  color: rgb(212, 35, 38);
}
section.featured_products-section .featured-products-list .product-item a:hover .view {
  border-bottom: 1px solid transparent;
}
section.featured_products-section .featured-products-list .product-item .image-wrapper {
  aspect-ratio: 61/47;
}
section.featured_products-section .featured-products-list .product-item .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.featured_products-section .featured-products-list .product-item h4 {
  padding: 0.5rem 1.5rem;
}
section.featured_products-section .featured-products-list .product-item .view {
  border-bottom: 1px solid rgb(212, 35, 38);
  font-family: "acumin-pro", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  margin: 0 1.5rem 1.5rem 1.5rem;
  position: relative;
}
section.featured_products-section .featured-products-list .product-item .view:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
}

.form-section {
  padding: 5rem 0;
  background-color: rgb(212, 35, 38);
}
.form-section .row {
  align-items: center;
  box-shadow: 10px 10px 20px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 10px 10px 20px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 10px 10px 20px 1px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
}
.form-section .form-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section .form-content .content-inner {
  max-width: 500px;
}
.form-section .form-content .content-inner h2 {
  margin-bottom: 1rem;
  font-family: "acumin-pro", sans-serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  font-style: normal;
}
.form-section .form-content .content-inner .form-intro p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 300;
  font-style: normal;
}
.form-section .form-content .content-inner.text-align-center h2, .form-section .form-content .content-inner.text-align-center .form-intro {
  margin-left: auto;
  margin-right: auto;
}
.form-section .form-content .content-inner.text-align-right h2, .form-section .form-content .content-inner.text-align-right .form-intro {
  margin-left: auto;
}
.form-section .form-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section .form-form .form-card {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
}
.form-section .form-form .form-card .gform_wrapper {
  margin: 3rem 0;
}
.form-section .form-form .form-card .gform_wrapper .gform_fields {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}
.form-section .form-form .form-card .gform_wrapper .gform_required_legend {
  display: none;
}
.form-section .form-form .form-card .gform_wrapper .gfield {
  margin-bottom: 1.5rem;
}
.form-section .form-form .form-card .gform_wrapper .gfield label {
  color: rgb(212, 35, 38);
  margin-bottom: 0.5rem;
  display: block;
  font-family: "acumin-pro", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
  font-style: normal;
}
.form-section .form-form .form-card .gform_wrapper .gfield input[type=text],
.form-section .form-form .form-card .gform_wrapper .gfield input[type=email],
.form-section .form-form .form-card .gform_wrapper .gfield select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgb(212, 35, 38);
  border-radius: 4px;
  font-size: 1rem;
  box-shadow: none;
}
.form-section .form-form .form-card .gform_wrapper .gfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23666"><path d="M2 5l4 4 4-4H2z"/></svg>') no-repeat right 0.75rem center;
  background-size: 12px;
}
.form-section .form-form .form-card .gform_wrapper .gform_footer {
  margin-top: 1rem;
}
.form-section .form-form .form-card .gform_wrapper .gform_footer input[type=submit] {
  width: 100% !important;
  background-color: rgb(0, 0, 0) !important;
  border: 1px solid rgb(0, 0, 0) !important;
  color: rgb(255, 255, 255);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block !important;
  text-align: center;
}
.form-section .form-form .form-card .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: rgb(255, 255, 255) !important;
  color: rgb(0, 0, 0) !important;
}
@media (min-width: 992px) {
  .form-section {
    padding: 6rem 0;
  }
  .form-section .form-content .content-inner,
  .form-section .form-form .form-card {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .form-section .row .form-content,
  .form-section .row .form-form {
    width: 100%;
    max-width: 100%;
  }
  .form-section .row .form-content .content-inner {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .form-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .form-section .row .col {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .form-section .row .col .content-inner {
    padding: 3rem 3rem 0 3rem;
  }
}

section.hero-section .container {
  padding-top: 20em;
  padding-bottom: 10em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
section.hero-section .content-cta {
  padding-top: 5em;
}

section.image-section {
  padding: 0;
  text-align: center;
}
section.image-section .container.full-width .row {
  margin: 0;
}
section.image-section .row {
  justify-content: center;
}
section.image-section img {
  max-width: 100%;
  height: auto;
}
section.image-section .align-left {
  text-align: left;
}
section.image-section .align-left img {
  margin-left: 0;
  margin-right: auto;
}
section.image-section .align-center {
  text-align: center;
}
section.image-section .align-center img {
  margin-left: auto;
  margin-right: auto;
}
section.image-section .align-right {
  text-align: right;
}
section.image-section .align-right img {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 992px) {
  section.image-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

section.content-product_categories .category-item {
  padding: 1.25em;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
section.content-product_categories .category-item.fade-in-active {
  opacity: 1;
}
section.content-product_categories a.category-image {
  aspect-ratio: 79/53;
}
section.content-product_categories a.category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.content-product_categories .category-name {
  background-color: rgb(1, 53, 73);
  padding: 0.6em 2em !important;
  margin-top: -0.5em;
}
section.content-product_categories .category-name a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-family: "acumin-pro", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  display: block;
  position: relative;
}
section.content-product_categories .category-name a:after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  display: block;
  background-image: url("../img/caret.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.15em;
  right: 0;
  transform: rotate(-90deg);
}
section.content-product_categories .category-name a:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}

.slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
}
.slider-section.fade-in-active {
  opacity: 1;
}
.slider-section.center .swiper .swiper-slide .slide-image {
  -o-object-position: center center;
     object-position: center center;
}
.slider-section .swiper-container-full {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  /* @include media(md) {
    height: 80vh; // Taller on desktop
  } */
}
.slider-section .swiper-container-full .row {
  margin-left: 2rem;
  margin-right: 2rem;
}
.slider-section .swiper {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .slider-section .swiper {
    max-width: 100vw !important;
  }
}
.slider-section .swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-section .swiper .swiper-slide .slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  display: block;
}
.slider-section .swiper .swiper-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
.slider-section .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.slider-section .swiper .swiper-pagination .swiper-pagination-bullet:hover, .slider-section .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .slider-section .swiper-pagination {
    bottom: 1rem;
  }
}

section.team-section .team-member-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
section.team-section .team-member-list .team-member {
  flex: 0 0 calc(33% - 2rem);
  background-color: #F9F9F9;
  padding: 1.5rem 0 0 1.5rem;
}
@media (max-width: 992px) {
  section.team-section .team-member-list .team-member {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  section.team-section .team-member-list .team-member {
    flex: 0 0 100%;
  }
}
section.team-section .team-member-list .team-member a:hover {
  text-decoration: none;
  cursor: pointer;
}
section.team-section .team-member-list .team-member .image-wrapper {
  margin: 1.5rem 0 0 1.5rem;
}
section.team-section .team-member-list .team-member h5 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 2.125em;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  color: rgb(37, 51, 67);
  margin: 0;
}
section.team-section .team-member-list .team-member h6 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.25em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  color: #7C7C7C;
}

/* -------------------------------------------------
   MODAL
   ------------------------------------------------- */
.team-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.team-modal.is-open {
  display: flex;
}
.team-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.team-modal__content {
  position: relative;
  margin: auto;
  background: rgb(255, 255, 255);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  padding: 2rem;
}
@media (min-width: 992px) {
  .team-modal__content {
    padding: 3rem;
  }
}
.team-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
}
.team-modal__close:hover {
  color: rgb(212, 35, 38);
}
.team-modal__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-modal__info {
  display: none;
}
.team-modal__info.active {
  display: block;
}
.team-modal__info h4 {
  margin: 0 0 0.5rem;
}
.team-modal__info .team-modal__title {
  margin: 0 0 1rem;
}
.team-modal__info .team-modal__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
  text-decoration: underline;
}
.team-modal__info .team-modal__linkedin:hover {
  color: rgb(212, 35, 38);
}
.team-modal__info .team-modal__title {
  color: #7C7C7C;
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.375em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
}
.team-modal__info .team-modal__bio {
  font-family: acumin-pro-wide, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
}
.team-modal__info .team-modal__linkedin {
  width: 2rem;
  height: 2rem;
  background-image: url("../img/linkedin.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

#manuals-hero {
  margin-top: 5em;
}
#manuals-hero #manual-nav {
  margin-top: 2.5em;
  list-style: none;
  padding-left: 0;
  padding-right: 5em;
}
#manuals-hero #manual-nav li {
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 1em 0;
}
#manuals-hero #manual-nav a {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.375em;
  line-height: 2.1em;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
#manuals-hero .image-holder {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 4em 3em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#manuals-hero .image-holder h3 {
  color: rgb(255, 255, 255);
  margin-bottom: 1em;
}

#manuals-list {
  margin-top: 4em;
}
#manuals-list h3 {
  padding-top: 2em;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(0, 0, 0);
  font-size: 5em;
  margin-bottom: 4rem;
}
#manuals-list .row .col {
  padding-bottom: 1.25rem;
}
#manuals-list .file {
  background-color: #F4F4F4;
  padding: 1.5em 1.5em 3em 1.5em;
  height: 100%;
}
#manuals-list .file h5 {
  text-transform: uppercase;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#manuals-list .file a {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.125em;
  line-height: 1.125em;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  border-bottom: 2px solid red;
  padding-bottom: 0.25rem;
}
#manuals-list .file a:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}

@media (max-width: 992px) {
  body.search-results main.site-main .container {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
body.search-results header.page-header {
  margin-top: 3em;
  margin-bottom: 4em;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  padding-top: 1em;
}
body.search-results header.page-header h1 {
  font-size: 4em;
}
body.search-results header.page-header h1 span {
  font-size: 3.25rem;
  text-transform: none;
}
@media (max-width: 992px) {
  body.search-results header.page-header h1 {
    font-size: 2.5em;
  }
}
body.search-results #search-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
body.search-results #search-holder article {
  margin: 0;
  border: 1px solid rgb(212, 212, 212);
  flex: 0 0 calc(33.3333333% - 2rem);
}
@media (max-width: 992px) {
  body.search-results #search-holder article {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  body.search-results #search-holder article {
    flex: 0 0 100%;
  }
}
body.search-results #search-holder article .thumbnail {
  width: 100%;
  aspect-ratio: 63/42;
}
body.search-results #search-holder article .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.search-results #search-holder article .blog-meta {
  padding: 1em 1.5em;
}
body.search-results #search-holder article .blog-meta h2 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.625em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  color: rgb(37, 51, 67);
}
body.search-results #search-holder article .click {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
body.search-results #search-holder article .click a {
  display: inline-block;
  border-bottom: 1px solid rgb(212, 35, 38);
  font-family: "acumin-pro", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  position: relative;
  background-color: transparent;
  padding: 0;
  padding-right: 2rem;
  color: rgb(37, 51, 67);
}
body.search-results #search-holder article .click a:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
}
body.search-results #search-holder article .click a:hover {
  text-decoration: none;
  color: rgb(212, 35, 38);
}

@media (max-width: 992px) {
  body.woocommerce.tax-product_cat .site-main {
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
}
body.woocommerce.tax-product_cat .woocommerce-breadcrumb {
  display: none;
}
body.woocommerce.tax-product_cat #product-header {
  padding-top: 3em;
  padding-bottom: 4em;
}
body.woocommerce.tax-product_cat #product-header .woocommerce-products-header {
  max-width: 50%;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  padding-top: 1em;
}
@media (max-width: 992px) {
  body.woocommerce.tax-product_cat #product-header .woocommerce-products-header {
    max-width: 100%;
  }
}
body.woocommerce.tax-product_cat #product-header .woocommerce-products-header h1 {
  font-size: 5em;
}
body.woocommerce.tax-product_cat #product-category ul.category-nav {
  padding-left: 0;
  padding-right: 5em;
  list-style: none;
}
body.woocommerce.tax-product_cat #product-category ul.category-nav li {
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 0.5rem 0;
}
body.woocommerce.tax-product_cat #product-category ul.category-nav li a {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.375em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 0.5em;
  color: rgb(37, 51, 67);
  display: block;
  position: relative;
}
body.woocommerce.tax-product_cat #product-category ul.category-nav li a:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0.1em;
  right: 0;
  background-image: url("../img/caret-blue.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(-90deg);
}
body.woocommerce.tax-product_cat #product-category ul.category-nav li a:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}
body.woocommerce.tax-product_cat #product-category .product-category.product {
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 1.5em;
}
@media (max-width: 992px) {
  body.woocommerce.tax-product_cat #product-category .product-category.product {
    padding-left: 0;
  }
}
body.woocommerce.tax-product_cat #product-category .product-category.product a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.7em !important;
  color: rgb(0, 0, 0);
}
@media (max-width: 992px) {
  body.woocommerce.tax-product_cat #product-category .product-category.product a {
    flex-wrap: wrap;
  }
}
body.woocommerce.tax-product_cat #product-category .product-category.product a:hover {
  color: rgb(212, 35, 38);
  text-decoration: none;
}
body.woocommerce.tax-product_cat #product-category .product-category.product a .image-wrapper {
  width: 425px;
  aspect-ratio: 85/57;
  margin-right: 2rem;
  flex: 0 0 425px;
}
@media (max-width: 992px) {
  body.woocommerce.tax-product_cat #product-category .product-category.product a .image-wrapper {
    margin-right: 0;
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }
}
body.woocommerce.tax-product_cat #product-category .product-category.product a .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.woocommerce.tax-product_cat .woocommerce-result-count,
body.woocommerce.tax-product_cat .woocommerce-ordering,
body.woocommerce.tax-product_cat .woocommerce-Price-amount,
body.woocommerce.tax-product_cat .woocommerce-notices-wrapper {
  display: none;
}
body.woocommerce.tax-product_cat ul.products {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
body.woocommerce.tax-product_cat ul.products:before {
  display: none;
}
body.woocommerce.tax-product_cat ul.products li.product {
  margin: 0;
  border: 1px solid rgb(212, 212, 212);
  flex: 0 0 calc(25% - 2rem);
}
@media (max-width: 992px) {
  body.woocommerce.tax-product_cat ul.products li.product {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  body.woocommerce.tax-product_cat ul.products li.product {
    flex: 0 0 100%;
  }
}
body.woocommerce.tax-product_cat ul.products li.product .product-image-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body.woocommerce.tax-product_cat ul.products li.product .product-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  margin-bottom: 0;
}
body.woocommerce.tax-product_cat ul.products li.product a.woocommerce-loop-product__link {
  height: 82%;
}
body.woocommerce.tax-product_cat ul.products li.product h2 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 1.625em;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  word-spacing: 0;
  color: rgb(37, 51, 67);
  margin: 0 1.5rem;
}
body.woocommerce.tax-product_cat ul.products li.product a.button {
  border-bottom: 1px solid rgb(212, 35, 38);
  font-family: "acumin-pro", sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  margin: 0 1.5rem 1.5rem 1.5rem;
  position: relative;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  padding-right: 2rem;
}
body.woocommerce.tax-product_cat ul.products li.product a.button:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
}
body.woocommerce.tax-product_cat ul.products li.product a.button:hover {
  color: rgb(212, 35, 38);
}
body.woocommerce.tax-product_cat .star-rating {
  margin-left: 1.5rem;
}
body.woocommerce.tax-product_cat .star-rating:before {
  background-color: rgb(255, 255, 255);
  z-index: 10;
  mix-blend-mode: screen;
  border-bottom: 2px solid rgb(255, 255, 255);
}
body.woocommerce.tax-product_cat .star-rating span {
  z-index: 1;
  background-color: rgb(212, 35, 38);
}
body.woocommerce.tax-product_cat .star-rating span::before {
  content: "" !important;
}

body.single-product nav.woocommerce-breadcrumb,
body.single-product .single_variation_wrap .quantity,
body.single-product .quantity,
body.single-product button.button,
body.single-product .product_meta {
  display: none !important;
}
body.single-product #single-product .container {
  border: 1px solid rgb(212, 212, 212);
  margin-top: 2.5em;
  padding: 1em;
  margin-bottom: 4em;
}
body.single-product #single-product .container .woocommerce-product-gallery {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
body.single-product #single-product .container .woocommerce-product-gallery.fade-in-active {
  opacity: 1;
}
body.single-product #single-product .container h1.product_title {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 5em;
  line-height: 4.5rem;
  font-weight: 800;
  font-style: normal;
}
body.single-product #single-product .container .woocommerce-product-details__full-description p {
  font-family: "acumin-pro", sans-serif;
  font-size: 1.25em;
  line-height: 1.6;
  font-weight: 300;
  font-style: normal;
}
body.single-product #single-product .container table.variations {
  font-size: 1em;
  margin-top: 1.5em;
}
body.single-product #single-product .container table.variations select {
  font-size: 1em;
  border-radius: 0;
  padding: 0.25em 0.5em;
}
body.single-product #single-product .container .cta-holder {
  padding-top: 1.5em;
}
body.single-product #image-gallery li {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.single-product ul.lSGallery:hover:before, body.single-product ul.lSGallery:hover:after {
  display: none;
}
body.single-product ul.lSGallery:before, body.single-product ul.lSGallery:after {
  content: "→" !important;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: calc(50% - 1rem);
  left: 0.5rem;
  z-index: 99;
  color: rgb(0, 0, 0);
}
body.single-product ul.lSGallery:after {
  content: "←" !important;
  left: calc(100% - 2.5rem);
}
body.single-product ul.lSGallery li:hover {
  cursor: pointer;
}
body.single-product ul.lSGallery li:hover img {
  opacity: 0.8;
}
body.single-product ul.lSGallery li.active {
  border: 2px solid rgb(212, 35, 38);
}
body.single-product ul.lSGallery li:has(img[src^="https://img.youtube.com"]) {
  position: relative;
}
body.single-product ul.lSGallery li:has(img[src^="https://img.youtube.com"]):before {
  content: "►" !important;
  font-size: 1.5rem;
  width: 2rem;
  height: 2rem;
  position: absolute;
  z-index: 99;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  color: rgb(255, 255, 255);
}
body.single-product #product-specs .container {
  border: 1px solid rgb(212, 212, 212);
  padding: 0 0 1rem 0;
}
body.single-product #product-specs .container .col-12 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
body.single-product #product-specs .header {
  background-color: rgb(212, 212, 212);
  padding: 0.5em 2em 0 2em;
  margin-bottom: 1.5em;
  flex: 0 0 100%;
}
body.single-product #product-specs .header h4 {
  font-family: "acumin-pro-extra-condensed", sans-serif;
  font-size: 3em;
  line-height: 1.6;
  font-weight: 700;
  font-style: normal;
}
body.single-product #product-specs .spec {
  padding: 1em 1.5em;
  font-size: 1.1em;
  flex: 0 0 calc(33% - 2rem);
  margin-bottom: 1rem;
}
body.single-product #product-specs .spec strong {
  font-size: 1.1em;
  display: block;
}
body.single-product #product-specs .product_specification {
  order: -1;
}
body.single-product #product-specs .tab_body {
  padding: 1rem 2rem;
  width: 100%;
}
body.single-product #product-cta {
  padding-top: 4em;
  padding-bottom: 4em;
  margin-top: 6em;
  margin-bottom: 4em;
  text-align: center;
}
body.single-product #product-cta h2 {
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
.site-main {
  padding: 5rem 0 0 0;
}

section.spacer .row:last-of-type {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgb(212, 35, 38);
}
section.spacer + section {
  padding-top: 6rem;
}

.site-main {
  padding: 0;
}

:root {
  --base-font-size: 16px;
  --line-height: 1.6;
  --heading-line-height: 1.2;
}

main.site-main section {
  margin-bottom: 1.5rem;
}/*# sourceMappingURL=main.css.map */