/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media screen and (min-width: 1680px) {
  .content-wrapper {
    padding: 0;
  }
  
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  padding-left:1.25rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}




/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  padding: 1rem;
  width: 100%;
      border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #000;
    min-height: 50px;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */




form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
      color: #333;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0.65px;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
      margin-right: 0.75rem;
    transform: scale(1.5);
    display: inline-block;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.hero__container {
      min-height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.hero__container.hero__container--slider {
 overflow:hidden; 
}

.hero__container.hero__container--slider .swiper-pagination__wrapper {
      position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
}

.hero__container.hero__container--slider .swiper-pagination__wrapper .content-wrapper {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex; 
}

.hero__container.hero__container--slider .swiper-pagination__wrapper .swiper-pagination {
      position: relative;
    bottom: auto;
}

.hero__container--slider .swiper-wrapper {
min-height:100vh;
}

.hero-slider__item {
      min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.hero-overlay {
  background: -o-linear-gradient(4.2deg, rgba(32, 32, 32, 0.6) 34.78%, rgba(32, 32, 32, 0) 69.2%);
  background: linear-gradient(85.8deg, rgba(32, 32, 32, 0.6) 34.78%, rgba(32, 32, 32, 0) 69.2%);
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

.hero__wrapper {
 padding-bottom:25vh; 
    color: #FFF;
}

.hero__wrapper.hero__wrapper--slider {
 padding-bottom:0; 
}

.hero__wrapper:not(.hero__wrapper--slider) {
   position: relative;
}

.hero__wrapper--slider .hero {
 position:relative; 
}


.hero {
 max-width:63%; 
}

.hero__event {
      position: absolute;
    bottom: -2rem;
    right: 0;
    background: #EFF2F5;
      max-width: 37vw;
  z-index:10;
}

.hero__event.hero__event--dark {
 background:#202020; 
}

.hero__event.hero__event--dark > a,
.hero__event.hero__event--dark > * {
 color:#FFF; 
}

.hero__event > a {
      text-decoration: none;
    color: inherit;
  padding: 2.5rem;
    display: block;
}

.hero-event__info {
 text-transform:uppercase; 
  margin-bottom:1rem;
}

.hero-event__info > span {
 display:block; 
}

.products__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3rem;
}

.products-header__title h2 {
 margin:0; 
}

.products-header__link a {
 text-decoration:none;
  color:inherit;
}

.products__items {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    gap: 2.5%;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}

.products__items.products__items--three-col {
  gap:0;
justify-content:space-between;
}

.products__item {
 -webkit-box-flex:0;
     -ms-flex:0 1 18%;
         flex:0 1 18%; 
}

.products__items.products__items--three-col .products__item {
 -webkit-box-flex:0;
     -ms-flex:0 1 30%;
         flex:0 1 30%; 
  margin-bottom:2rem;
}


.products__item a {
  text-decoration:none;
  color:inherit;
}

.products-item__image {
 text-align:center; 
  margin-bottom:1rem;
  position:relative;
}

.products-item__image img {
 max-width:75% !important; 
}

.products__items.products__items--three-col .products__item img {
 max-width:45% !important; 
}

.products-item__text {
 text-align:center; 
}

.products-item__title {
 display:block; 
}

.products-item__info {
 display:block; 
}

.segments__header {
     margin-bottom: 3rem; 
}

.segments {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}

.segments__item {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
    min-height: 80vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  text-align:center;
}

.segments__item a {
 text-decoration:none;
  color:inherit;
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

.segments__overlay {
  background: -o-linear-gradient(top, rgba(32, 32, 32, 0) 30.49%, rgba(32, 32, 32, 0.6) 49.93%, rgba(32, 32, 32, 0) 67.47%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30.49%, rgba(32, 32, 32, 0)), color-stop(49.93%, rgba(32, 32, 32, 0.6)), color-stop(67.47%, rgba(32, 32, 32, 0)));
  background: linear-gradient(180deg, rgba(32, 32, 32, 0) 30.49%, rgba(32, 32, 32, 0.6) 49.93%, rgba(32, 32, 32, 0) 67.47%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.segments__title {
 -webkit-box-flex:0;
     -ms-flex:0 1 auto;
         flex:0 1 auto;
  color:#FFF;
  position:relative;
}

.text-and-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; 
}

.text-and-image--align-top {
 -webkit-box-align:start;
     -ms-flex-align:start;
         align-items:flex-start; 
}

.text-and-image--align-center {
 -webkit-box-align:center;
     -ms-flex-align:center;
         align-items:center; 
}

.text-and-image--align-bot {
 -webkit-box-align:end;
     -ms-flex-align:end;
         align-items:flex-end; 
}

.text-and-image__image-right {
 -webkit-box-pack:end;
     -ms-flex-pack:end;
         justify-content:flex-end;
}

.text-and-image__image-left {
 -webkit-box-pack:start;
     -ms-flex-pack:start;
         justify-content:flex-start; 
}

.text-and-image__image-right .text-and-image__text {
  left:0;
}

.text-and-image__image-left .text-and-image__text {
  right:0;
}

.text-and-image__text {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 35%;
              flex: 0 1 35%;
    position: absolute;
    max-width: 700px;
    background: #FFF;
    padding: 2rem 6rem 2rem 2rem;
}

.text-and-image__image {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 75%;
              flex: 0 1 75%;
    min-height: 800px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.text-and-image-text__label {
 margin-bottom:1.5rem; 
}

.logo-feed {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.logo-feed__item {
 -webkit-box-flex:0;
     -ms-flex:0 1 auto;
         flex:0 1 auto; 
  margin-bottom:1rem;
}


.sticky-cta__container {
      position: fixed;
    right: 0;
    top: 20%;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: right 100%;
        -ms-transform-origin: right 100%;
            transform-origin: right 100%;
  z-index:10;
}

.sticky-cta a {
      background-color: #1D1D1B;
    color: #fff;
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    white-space: nowrap;
  font-weight: 700;
font-size: 16px;
  text-transform:uppercase;
  cursor:pointer;
}

.sticky-cta__form {
      position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
}

.sticky-cta-form__inner {
  background: #FFF;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
    max-height: 80vh;
    overflow: scroll;
    padding: 3rem;
  height:auto;
}

.sticky-cta--open .sticky-cta__form {
 opacity:1;
visibility:visible; 
}

.sticky-cta__close {
  position:relative;
  height:30px;
  width:30px;
      margin-left: auto;
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
}

.sticky-cta__close > span {
  position:absolute;
  top:50%;
  left:0;
  right:0;
  width:100%; 
  height:2px;
  background:#000;
}

.sticky-cta__close > span:nth-child(1) {
  -webkit-transform:rotate(45deg);
      -ms-transform:rotate(45deg);
          transform:rotate(45deg);
}

.sticky-cta__close > span:nth-child(2) {
 -webkit-transform:rotate(-45deg);
     -ms-transform:rotate(-45deg);
         transform:rotate(-45deg); 
}

.sticky-cta--open {
 overflow:hidden; 
}

/* PRODUCT PAGE */



.product-listing-hero__container {
 overflow:hidden; 
  min-height:60vh;
}

.product-listing-hero__wrapper {
 position:relative; 
}

.product-listing-hero__item {
      min-height: 60vh;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    padding: 8rem 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  position:relative;
}

.product-listing-hero__overlay {
  background: -o-linear-gradient(4.2deg, rgba(32, 32, 32, 0.6) 34.78%, rgba(32, 32, 32, 0) 69.2%);
  background: linear-gradient(85.8deg, rgba(32, 32, 32, 0.6) 34.78%, rgba(32, 32, 32, 0) 69.2%);
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

.product-listing-hero-item__content {
 -webkit-box-flex:0;
     -ms-flex:0 1 100%;
         flex:0 1 100%; 
  position:relative;
}

.product-listing-hero-item__content > * {
 max-width:50%;
  color:#FFF;
}

.product-listing-hero__container .swiper-pagination-bullet,
.hero__container--slider .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    border: 1px solid #FFF;
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
  background:transparent;
}

.product-listing-hero__container .swiper-pagination-bullet-active,
.hero__container--slider .swiper-pagination-bullet-active{
 background:#FFF; 
}

.swiper-pagination__wrapper {
 position:relative; 
}

.swiper-pagination__wrapper .swiper-pagination {
 text-align:left; 
}


.small-hero-banner__container {
      background: #202020;
    padding: 1.5rem 0;
}

.small-hero-banner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}

.small-hero-banner__text h3 {
      color: #FFF;
    margin-bottom: 0;
}

.small-hero-banner__cta {
 margin-left:2rem; 
}

.small-hero-banner__links {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.small-hero-banner-links__item > a {
      text-decoration: none;
    color: #FFF;
    text-transform: initial;
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
  font-weight:500;
}

.small-hero-banner-links__item > a:hover {
  color: #7B7B7B;
}

.small-hero-banner-links__divider {
      width: 2px;
    height: 18px;
    background: #FFF;
    display: block;
}


/* Hide the default checkbox */
.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Define the checkbox container */
.product-checkbox {
  position: relative;
      margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* Customize the checkbox appearance */
.product-checkbox label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}

.product-checkbox label:before {
      content: "";
    height: 26px;
    left: 0;
    position: absolute;
    top: 0;
    width: 26px;
    border: 1px solid #333333;
    border-radius: 0;
    background: #FCFDFF;
}

.product-checkbox label:after {
      border: solid #333333;
    border-width: 0 1px 1px 0;
    content: "";
    height: 15px;
    left: 8px;
    opacity: 0;
    position: absolute;
    top: 3px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 9px;
}

/* Change checkbox appearance when checked */
.product-checkbox input:checked ~ label:before {
  
}

.product-checkbox input:checked ~ label:after {
  opacity: 1;
}

/* Change the label color when checkbox is checked */
.product-checkbox input:checked ~ label {
  
}

.product-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3rem 0;
}

@media screen and (max-width:1680px) {
 .product-container.content-wrapper {
  padding:3rem 1.5rem;
  }
  
  .product-listing-hero__wrapper .swiper-pagination__wrapper .swiper-pagination {
    left:1.5rem;
  }
}


.product-container__categories {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 20%;
              flex: 0 1 20%;
}

.product-container-categories__header {
 margin-bottom:1rem; 
}

.product-container-categories__header span {
 display:block; 
}

.product-container-categories__item {
     border-bottom: 1px solid #7B7B7B;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem; 
}

.product-container__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 75%;
          flex: 0 1 75%;
}

.product-item__gutter {
	width:4%; 
}

.product-item {
  width:22%;
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
  padding:1rem;
}



.product-item:hover {
 background:#EFF2F5; 
}

.product-item > a {
      text-decoration: none;
    text-align: center;
    color: #333;
  
}

.product-item__image {
 position:relative; 
}

.product-item__image img {
  max-width:100%;
}

.product-item__image--cross {
      position: absolute;
    bottom: 0;
    right: 0;
}


.product-item__text > span {
  display:block;
}

.product-item__text > .product-item-text__title {
 margin-top:0.25rem; 
}

/* Single product */

.single-product__hero {
      padding-top: 10rem;
    text-align: center;
  overflow:hidden;
}

.single-product-hero__images {
      position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  padding:5rem 0;
}

.single-product-hero__images > .swiper-wrapper {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.single-product-hero__image img {
 max-height:415px; 
  display:block;
      margin: 0 auto;
}

.product-hero-images__prev,
.product-hero-images__next {
  z-index:10;
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
  height: 63px;
  position: absolute;
    top: calc(50% - 31.5px);
  cursor:pointer;
  opacity:1;
}

.product-hero-images__prev img,
.product-hero-images__next img {
  width:63px; 
}

.product-hero-images__prev {
    left: 30%;
}

.product-hero-images__next {
    right: 30%;
  -webkit-transform:rotate(180deg);
      -ms-transform:rotate(180deg);
          transform:rotate(180deg);
}

.product-hero-images__prev.swiper-button-disabled,
.product-hero-images__next.swiper-button-disabled {
 opacity:0.5;
  cursor:initial;
}


.product-hero-images__next:not(.swiper-button-disabled):hover,
.product-hero-images__prev:not(.swiper-button-disabled):hover {
      -webkit-filter: invert(1);
              filter: invert(1);
}

@media screen and (max-width:1600px) {
 .product-hero-images__prev {
   left:7.5%;
  }
  
  .product-hero-images__next {
   right:7.5%; 
  }
}

.single-product-hero__image.swiper-slide-active {
  opacity:1;
  -webkit-transform:scale(1.45) !important;
      -ms-transform:scale(1.45) !important;
          transform:scale(1.45) !important;
}

.single-product-hero__image {
  -webkit-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
 opacity:0.5;
  -webkit-transform:scale(1);
      -ms-transform:scale(1);
          transform:scale(1);
}

.single-product-main__container {
      padding: 3rem 0;
}

.single-product-main {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.single-product-hero-images__nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  margin-bottom:1.5rem;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
}

.single-product-hero-images__nav > .swiper-pagination-bullet {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50px;
              flex: 0 1 50px;
    background: none;
    border-radius: 0;
    width: 50px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  opacity:0.5;
}

.single-product-hero-images__nav > .swiper-pagination-bullet.swiper-pagination-bullet-active {
 opacity:1; 
}

.single-product-hero-images__nav > .swiper-pagination-bullet img {
 width:100%;
  height:auto;
}

.single-product-main__variations {
     -webkit-box-flex: 0;
         -ms-flex: 0 1 100%;
             flex: 0 1 100%;
    text-align: center; 
}

.single-product-main__description {
 -webkit-box-flex:0;
     -ms-flex:0 1 50%;
         flex:0 1 50%; 
}

.single-product-main__description > p {

}

.single-product-main__product-number.info {
      display: block;
    margin: 1rem 0 0.5rem;
}

.single-product-main__info {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 40%;
              flex: 0 1 40%;
}

.single-product-main-info__colors {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
    gap: 28px;
      margin-bottom: 3rem;
}

.single-product-main-info-colors__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
    text-align: center;
  cursor:pointer;
}

.single-product-main-info__color {
  position:relative;
      width: 49px;
    height: 49px;
    border-radius: 50%;
  background: -o-linear-gradient(
        left,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 154, 0, 1) 10%,
        rgba(208, 222, 33, 1) 20%,
        rgba(79, 220, 74, 1) 30%,
        rgba(63, 218, 216, 1) 40%,
        rgba(47, 201, 226, 1) 50%,
        rgba(28, 127, 238, 1) 60%,
        rgba(95, 21, 242, 1) 70%,
        rgba(186, 12, 248, 1) 80%,
        rgba(251, 7, 217, 1) 90%,
        rgba(255, 0, 0, 1) 100%
    );
  background: -webkit-gradient(
        linear,
        left top, right top,
        from(rgba(255, 0, 0, 1)),
        color-stop(10%, rgba(255, 154, 0, 1)),
        color-stop(20%, rgba(208, 222, 33, 1)),
        color-stop(30%, rgba(79, 220, 74, 1)),
        color-stop(40%, rgba(63, 218, 216, 1)),
        color-stop(50%, rgba(47, 201, 226, 1)),
        color-stop(60%, rgba(28, 127, 238, 1)),
        color-stop(70%, rgba(95, 21, 242, 1)),
        color-stop(80%, rgba(186, 12, 248, 1)),
        color-stop(90%, rgba(251, 7, 217, 1)),
        to(rgba(255, 0, 0, 1))
    );
  background: linear-gradient(
        90deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 154, 0, 1) 10%,
        rgba(208, 222, 33, 1) 20%,
        rgba(79, 220, 74, 1) 30%,
        rgba(63, 218, 216, 1) 40%,
        rgba(47, 201, 226, 1) 50%,
        rgba(28, 127, 238, 1) 60%,
        rgba(95, 21, 242, 1) 70%,
        rgba(186, 12, 248, 1) 80%,
        rgba(251, 7, 217, 1) 90%,
        rgba(255, 0, 0, 1) 100%
    );
      margin: 0 auto;
      border: 3px solid #FFF;
  border:3px solid #FFF;
}

.single-product-main-info__color:before {
 background: transparent;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    border: 2px solid #FFF;
    border-radius: 50%;
}

.single-product-main-info-color__label.info {
 text-transform:initial; 
}

.single-product-main-info__solutions {
 padding:1.5rem; 
}

.single-product-main-info__solutions > a {
 text-decoration:none;
  
}

.single-product-main-info__solutions > a > span {
 display:block; 
      text-transform: initial;
}

.single-product-main-info__solutions > a > span:nth-child(1) {
 margin-bottom:1rem; 
}

.single-product-main-info__sizes {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1rem;
}

.single-product-main-info__sizes .info {
      margin-right: 0.5rem;
    text-transform: initial;
  line-height:1;
}

.single-product-main-info__sizes p {
    margin:0;
}

.single-product-main-info__download {
 margin-bottom:2rem; 
}

.single-product-highlights__container {
      padding-top: 3rem;
}

.single-product-highlights__header {
      margin-bottom: 2rem;
}

.single-product-highlights__header h2 {
      margin-bottom: 2rem;
}

.single-product-highlights {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    gap: 3%;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}

.single-product-highlights__item {
 -webkit-box-flex:0;
     -ms-flex:0 1 22.75%;
         flex:0 1 22.75%; 
}

.single-product-highlights-item__image {
      aspect-ratio: 1 / 1;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.single-product-highlights-item__text {
      text-align: center;
    margin-top: 1rem;
  padding:0 1.5rem;
}

.single-product-features__container {
      padding: 5rem 0;
}

.single-product-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.single-product-features  h4 {
 text-transform:initial; 
}

.single-product-features > div {
 -webkit-box-flex:0;
     -ms-flex:0 1 45%;
         flex:0 1 45%; 
}

.single-product-banner__container {
 min-height:65vh;
  position:relative;
  padding:3rem 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
      background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.single-product-banner__overlay {
 position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: -o-linear-gradient(4.2deg, rgba(32, 32, 32, 0.45) 34.78%, rgba(32, 32, 32, 0) 69.2%);
  background: linear-gradient(85.8deg, rgba(32, 32, 32, 0.45) 34.78%, rgba(32, 32, 32, 0) 69.2%);
}

.single-product-banner__wrapper {
 position:relative; 
}

.single-product-banner {
max-width:50%;
}

.single-product-banner > * {
color:#FFF;
}

/* Small image banner */

.small-image-banner {
 background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  min-height:360px;
  position:relative;
}

.small-image-banner__overlay {
 position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

/* Basic text */


.basic-text__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 5rem;
}

.basic-text__image {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.basic-text__inner {
 -webkit-box-flex:1;
     -ms-flex:1;
         flex:1; 
}

.basic-text__basic .basic-text {
 max-width:75%;
  margin:0 auto;
}

.basic-text {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
}

.basic-text__title {
-webkit-box-flex:0;
    -ms-flex:0 1 100%;
        flex:0 1 100%;
  margin-bottom:2rem;
}

.basic-text-content__item h2 {
 margin-bottom:2rem; 
}

.basic-text__content {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  gap:50px;
  -webkit-box-flex:0;
      -ms-flex:0 1 100%;
          flex:0 1 100%;
}

.basic-text-content__item {
 -webkit-box-flex:1;
     -ms-flex:1;
         flex:1; 
}

.basic-text__cta {
 -webkit-box-flex:0;
     -ms-flex:0 1 100%;
         flex:0 1 100%; 
}

.form-and-text__container {
 max-width:80%;
  margin:0 auto;
}

.form-and-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15%;
}

.form-and-text__form {
 -webkit-box-flex:1;
     -ms-flex:1;
         flex:1; 
}

.form-and-text__text {
 -webkit-box-flex:1;
     -ms-flex:1;
         flex:1; 
}

@media screen and (max-width:1024px) {
  .hero__container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 15rem;
  }
  
  .hero__container.hero__container--slider {
   padding-top:0; 
  }
  
  .hero__wrapper {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
    padding:3rem 0;
  }
  
  .hero__wrapper.content-wrapper {
   padding:3rem 1.5rem; 
  }
  
  .hero__event {
       position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 100%;
            flex: 0 100%;
    bottom: 0;
    max-width: 100%; 
  }
  
  .hero__container.hero__container--slider .swiper-pagination__wrapper {
   top:95vh;
    bottom:auto;
  }
  
  .products__items {
   gap:5%; 
  }
  
  .products__items.products__items--three-col .products__item img {
    max-width:70% !important; 
  }
  
  .products__item,
  .products__items.products__items--three-col .products__item {
   -webkit-box-flex:0;
       -ms-flex:0 1 47.5%;
           flex:0 1 47.5%;
    margin-bottom:2rem;
  }
  
  
  .product-item {
   width:47.5%; 
  }
  
  .product-item__gutter {
    width:5%; 
  }
  
  .product-container {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .product-container__categories {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .product-container-categories__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
  }
  
  .product-container-categories__header {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .product-checkbox {
   -webkit-box-flex:0;
       -ms-flex:0 1 auto;
           flex:0 1 auto; 
  }
  
  .product-container__content {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .product-item__image img {
   max-height:250px; 
  }
  
  .small-hero-banner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  
  .small-hero-banner__text {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%;
    margin-bottom: 1rem;
  }
  
  .small-hero-banner__cta {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-left: 0;
  }
  
  .product-listing-hero-item__content > * {
   max-width:100%; 
  }
  
  .product-listing-hero__item {
        min-height: 70vh;
    padding: 7rem 0 3rem;
  }
  
  .sticky-cta-form__inner {
   padding:1.5rem;
    -webkit-box-flex:0;
        -ms-flex:0 1 90%;
            flex:0 1 90%;
  }
  
  .single-product__hero {
   padding-top:17.5rem; 
  }
  
  .single-product-hero__image img {
   max-height:307.5px; 
    margin:0 auto;
  }
  
  .single-product-hero__image.swiper-slide-active {
        -webkit-transform: scale(1.25) !important;
            -ms-transform: scale(1.25) !important;
                transform: scale(1.25) !important;
  }
  
  .single-product-main__description {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .single-product-main__info {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .single-product-highlights {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .single-product-highlights__item {
   -webkit-box-flex:0;
       -ms-flex:0 1 47%;
           flex:0 1 47%;
    margin-bottom:3%;
  }
  
  .single-product-banner {
   max-width:100%; 
  }
  
}

@media screen and (max-width:767px) {
  
  
  
  .sticky-cta a {
        padding: 7.5px 15px;
    font-size: 14px;
  }
  
  .form-and-text {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap;
    gap:2rem;
  }
  
  .form-and-text__form {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
    -webkit-box-ordinal-group:3;
        -ms-flex-order:2;
            order:2;
  }
  
  .form-and-text__text {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
    -webkit-box-ordinal-group:2;
        -ms-flex-order:1;
            order:1;
  }
  
  .form-and-text__text .hs-embed-wrapper {
   max-width:100% !important; 
  }
  
  .form-and-text__container {
   max-width:100%; 
  }
  
  .basic-text__content {
   gap:1rem; 
  }
  
  .basic-text-content__item{
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
  }
  
  .basic-text__basic .basic-text {
   max-width:100%; 
  }
  
  .basic-text__wrapper {
   gap:1rem;
    -ms-flex-wrap:wrap;
        flex-wrap:wrap;
  }
  
  .basic-text__image {
   aspect-ratio:3/2;
    -webkit-box-flex:0;
        -ms-flex:0 1 100%;
            flex:0 1 100%;
    -webkit-box-ordinal-group:3;
        -ms-flex-order:2;
            order:2;
  }
  
  .basic-text__inner {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
    -webkit-box-ordinal-group:2;
        -ms-flex-order:1;
            order:1;
  }
  
  .products__header {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .products-header__title {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .products-header__link {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .products-header__link > a {
   padding-left:0; 
  }
  
  .hero {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
    max-width:100%;
  }
  .segments {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .segments__item {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
  
  .text-and-image {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .text-and-image__image {
   -webkit-box-ordinal-group:2;
       -ms-flex-order:1;
           order:1;
    -webkit-box-flex:0;
        -ms-flex:0 1 100%;
            flex:0 1 100%;
    min-height:400px;
  }
  
  .text-and-image__text {
   -webkit-box-ordinal-group:3;
       -ms-flex-order:2;
           order:2;
    position:relative;
    -webkit-box-flex:0;
        -ms-flex:0 1 100%;
            flex:0 1 100%;
    max-width:initial;
    padding:1rem;
  }
  
}

@media screen and (max-width:600px) {
  .product-hero-images__next, .product-hero-images__prev {
   height:40px;
    top: calc(50% - 20px);
  }
  
  .product-hero-images__next img, .product-hero-images__prev img {
        width: 40px;
  }
  
  .single-product__hero {
   padding-top:10.5rem; 
  }
  
  
  .single-product-features {
   -ms-flex-wrap:wrap;
       flex-wrap:wrap; 
  }
  
  .single-product-features>div {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
    margin-bottom:1.5rem;
  }
  
  .single-product-highlights__item {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
  }
  
 .products__item,
  .products__items.products__items--three-col .products__item {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%;
  }
  
  .product-item__gutter {
   width:0%; 
  }
  
  .product-item {
   width:100%; 
  }
  
  .product-checkbox {
   -webkit-box-flex:0;
       -ms-flex:0 1 100%;
           flex:0 1 100%; 
  }
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}



/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}


header {
 position:fixed;
  width:100%;
  z-index:999;
}

.white-header header {
 background:#FFF; 
}

.scrolled .white-header header {
 background:transparent; 
}

header .header-gradient {
   background: linear-gradient(180deg, rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, 0) 100%);
  opacity:1;
  transition:all 0.3s ease; 
  position:absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  display:none;
}

.white-header header .header-gradient {
 display:none; 
}

.scrolled header .header-gradient {
 background-color:rgba(0, 0, 0, 0);
  opacity:0;
}

.header__container {
      display: flex;
    align-items: center;
      padding: 1.5rem 0 0;
  position:relative;
      min-height: 135px;
}

@media screen and (max-width:1700px) {
  .header__container {
   padding:1.5rem 1rem 0; 
  }
}

.white-header header .header__container--desktop .header__logo img,
.white-header .nav-toggle img {
     filter: brightness(0) saturate(100%) invert(18%) sepia(0%) saturate(1260%) hue-rotate(255deg) brightness(95%) contrast(96%); 
}

.nav-item .nav-toggle {
 margin-left:5px; 
}

.nav-item .nav-toggle img {
 transform:rotate(180deg);
  transition:all 0.3s ease;
}

.nav-item:hover .nav-toggle img {
 transform:rotate(0deg); 
}

.header__container--desktop,
.header__container--mobile {
  position: absolute;
    left: 0;
    right: 0;
  top:27px;
    align-items: center;
    display: flex;
  transition:top 0.3s ease;
}

.header__container--mobile {
  opacity:0;
  visibility:hidden;
  top:-100%;
  right: auto;
      padding: 1rem 2rem;
      background: #1D1D1B;
      display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  width:14rem;
  
}

.header__container--mobile .header__logo {
 display:inline-block; 
}

.header__container--mobile .header-logo__logo a {
 display:flex; 
}

.header__container--mobile .header__logo img {
 max-height:55px !important;
  width:auto !important;
}

.header__container--mobile .header-nav__toggle {
 display:inline-block; 
}

.scrolled .header__container--desktop {
 opacity:0;
  visibility:hidden;
  top:-100%;
}

.scrolled .header__container--mobile {
 top:0;
  opacity:1;
  visibility:visible;
}

.header__container--mobile .header-nav__toggle {
      height: 41px;
    width: 41px;
    margin-left: 2rem;
    position: relative;
  cursor:pointer;
}

.header__container--mobile .header-nav__toggle i {
      position: absolute;
    height: 3px;
    background: #D9D9D9;
    width: 100%;
  transition:all 0.3s ease;
}

.header__container--mobile .header-nav__toggle i:nth-child(1) {
     top:calc(50% - 9px);
}

.header__container--mobile .header-nav__toggle i:nth-child(2) {
     top:calc(50% + 3px);
}

.mobile-nav--open .header__container--mobile .header-nav__toggle i:nth-child(1) {
  top: calc(50% - 3px);
      transform: rotate(45deg);
}

.mobile-nav--open .header__container--mobile .header-nav__toggle i:nth-child(2) {
  top: calc(50% - 3px);
      transform: rotate(-45deg);
}



.header__container--mobile .header__nav {
  display:none;
  margin-left: 0;
  margin-top: 1.5rem;
  height:auto;
  width:100%;
}

.header__container--mobile .nav {
        display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.header__container--mobile .nav-item {
     display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex: 0 1 100%;
    align-items: center;
}



.header__container--mobile .nav-item--2:not(:last-child) {
 margin-bottom:1rem; 
}

.header__container--mobile .nav-item > a {
 flex:0 1 auto; 
}

.header__container--mobile .nav-item > .nav-toggle {
 flex:1;
  margin-left:10px;
  cursor:pointer;
}

.header__container--mobile .nav-item > .nav-toggle img {
 transition:all 0.3s ease;
}

.header__container--mobile .nav-item.nav-item--open > .nav-toggle img {
  transform: rotate(0deg);
}

.header__container--mobile .nav-item:last-child {
margin-bottom:0.5rem;  
}

.header__container--mobile .nav-item__children {
 display:none; 
  flex:0 1 100%;
  padding-top:0.75rem;
}

.header__nav {
 margin-left:5rem; 
}

.nav {
      display: flex;
    align-items: center;
    gap: 3rem;
  flex-wrap:wrap;
}

.header__container--desktop .nav-item.nav-item--1 {
      position: relative;
    padding-bottom: 1rem;
}

.header__container--desktop .nav-item > .nav-item__children {
      position: absolute;
    top: 100%;
    background: #1D1D1B;
    padding: 1rem;
    left: -1rem;
  opacity:0;
  visibility:hidden;
  min-width:250px;
}

.header__container--desktop .nav-item:hover > .nav-item__children {
 opacity:1; 
  visibility:visible;
}

.nav-item > a {
      text-decoration: none;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 22px;
  transition:all 0.15s ease;
}

.white-header .header__container--desktop .nav-item > a {
 color:#000000; 
}

.white-header .header__container--desktop .nav-item--2 > a {
 color:#FFF; 
}

.nav-item--2 > a {
 text-transform:initial; 
  
}

.header__container--desktop .nav-item--2:not(:last-child) {
     margin-bottom: 10px; 
}

.header-tag__container {
      background: #202020;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
      z-index: 99999 !important;
}

.header-tag__wrapper {
     flex: 0 1 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__tag {
      align-items: center;
    display: flex;
}

.header__tag > span {
      color: #FFF;
    font-size: 12.5px;
    margin-right: 1rem;
}

.header-tag__image {
      background: #00AEEF;
    display: flex;
    align-items: center;
    padding: 2px;
}

.header-tag__image img {
 height:23px; 
}

.header-tag__image a {
 display:flex;
  align-items:center;
}

@media screen and (min-width:768px) {
  .header-logo__logo {
   display:none; 
  }
}


@media screen and (max-width:767px) {
  
  .white-header header {
   background:transparent; 
  }
  
  .white-header .nav-toggle img {
   filter:none; 
  }
  
  .header__container--desktop .header__nav {
   display:none; 
  }
  
  .header__logo--shield {
   display:none; 
  }
  
  .header__container--mobile .nav-item {
    margin-bottom:0.5rem;
  }
  
  .header__container--desktop {
   display:none; 
  }
  
  .header__container--mobile {
        top: 27px;
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
  
  .scrolled-past-tag .header__container--mobile {
   top:0; 
  }
  
  .scrolled.scrolling-down.scrolled-past-tag .header__container--mobile {
    top:-300%;
  }
  
  .header__nav--mobile .nav__wrapper {
   padding-left:0.6rem; 
  }
  
  
  
}
footer {
 overflow:hidden; 
}

.footer__container {
      min-height: 47.5rem;
    position: relative;
  padding:5rem 0;
}

.footer-background {
  position: absolute;
    bottom: 0;
  z-index:-1;
}

.footer-background > span {
      font-weight: 700;
    font-size: 323px;
    color: rgba(150, 150, 150, 0.1);
    display: block;
    text-transform: uppercase;
}

.footer-background > span:nth-child(1) {
 line-height:1; 
}

.footer-background > span:nth-child(2) {
 line-height:0.6; 
}

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

.footer-content__main {
  flex: 0 1 39%;
}

.footer-content-text__label {
      margin-bottom: 2rem;
    display: block;
}

.footer-content__text .h1 {
 margin-bottom:2.25rem; 
  text-transform:initial;
}

.footer-content-text__button {
 margin-top:2.5rem; 
}

.footer-content__side {
      flex: 0 1 30%;
      position: relative;
    padding-right: 10rem;
}

.footer-content-side__image {
     position: absolute;
    top: 0;
    right: 0; 
}

.footer-content-side__image img {
 height:85px;
}

.footer-nav {
      display: flex;
    justify-content: space-between;
}

.footer-nav a {
  text-decoration:none;
      display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-content-side__some {
 margin-top:3rem; 
}

.footer-some__email a {
      text-decoration: none;
    color: inherit;
}

.footer-some__icons {
      display: flex;
    align-items: center;
    gap: 7px;
  flex-wrap:wrap;
  margin-top:1rem;
}

.footer-some__item {
  flex:0 1 auto;
}

.footer-some__item a img {
 max-width:70px !important;
  transition:all 0.3s ease;
}

.footer-some__item a:hover img {
 filter:invert(1);
}

.footer__under {
      position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
}

.footer-privacy {
      display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-privacy a {
 text-decoration:none; 
  text-transform:initial;
}

@media screen and (max-width:767px) {
  .footer-content {
        flex-wrap: wrap;
    position: relative;
  }
  
  .footer-content__main {
    flex: 0 1 100%;
    padding-right: 7rem;
    margin-bottom: 3rem;
  }
  
  .footer-content__side {
        flex: 0 1 100%;
    padding-right: 0;
    position: initial;
  }
  
  .footer-nav-item--1 {
   flex:0 1 45%; 
  }
}

@media screen and (max-width:400px) {
  .footer-content__main {
        padding-right: 0;
    padding-top: 8rem;
  }
  
  .footer-nav {
        flex-wrap: wrap;
  }
  
  .footer-nav-item--1 {
   flex:0 1 100%; 
  }
  
  .footer-nav-item--1:not(:last-child) {
   margin-bottom:1.5rem; 
  }
  
  .footer-content-side__image {
    position: absolute;
    left: 0;
    top: 0;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}