/* 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;
  --cc-horizontal-padding: 1rem;
  --cc-easing: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  :root {
    --cc-horizontal-padding: 2rem;
  }
}


/* 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 var(--cc-horizontal-padding);
}

.dnd-section {
  position: relative;
}

.dnd-section[class*="full-width-section"] {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  margin-bottom: -1rem; /* hack to show the bottom border radius */
}

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

@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.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

:root {
  --cc--line-height-base: 1.5;
  --cc--line-height: 1.33;
  --cc--link-hover: #000;
}

body {
  line-height: var(--cc--line-height-base);
  overflow-wrap: break-word;
  letter-spacing: -0.02em;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-underline-offset: 5px;
  transition: color 0.2s;
}

header a:hover,
header a:focus,
.menu .menu__link:hover,
.menu .menu__link:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus,
.footer a:focus, 
.footer a:hover, 
.footer a:hover span {
  color: var(--cc--link-hover);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 1.5rem;
}

h1,
h3,
h4,
h5,
h6 {
  line-height: var(--cc--line-height);
  margin: 0 0 1.4rem;
}

h4 {
  font-weight: normal;
}

/* Lists */

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

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;
}

.font-normal {
  font-weight: 400;
}

.text-small {
  font-size: 0.75rem;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  text-decoration: none;
}

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;
}

.button.button--secondary,
button.button--secondary {
  color: #fff;
  border-color: #fff;
}
/* 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: 0.875rem;
  padding: 12px 27px;
  width: 100%;
}
@media (min-width: 768px) {
  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 {
    padding: 20px 25px;
  }
}

form select {
  border: 1px solid #ffffff !important;
  background-color: rgba(43, 145, 255, 0) !important;
  border-radius: 48px !important;
  appearance: none;
  position: relative;
  background-image: url('data:image/svg+xml,<svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 9L0.73686 0.750001L10.2631 0.75L5.5 9Z" fill="white"/></svg>');
  background-position-x: calc(100% - 20px);
  background-position-y: 50%;
  background-size: 11px;
  background-repeat: no-repeat;
  padding-left: 30px;
}

form select:focus-visible {
  outline: none;
}

form textarea {
  resize: vertical;
}

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

form fieldset.form-columns-2 {
  display: flex;
  gap: 40px;
}

/* form fieldset.form-columns-1 .input, */
form fieldset .input {
  margin-right: 0 !important;
}
form fieldset.form-columns-2 input {
  width: 100%;
}

/* 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;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

.hs-form-checkbox-display {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 70px;
  padding: 17px 26px;
  border: 1px solid #BCBCBC;
  border-radius: 16px;
}
.hs-form-checkbox-display:hover {
  background-color: #f4f4f4;
}
form input[type=checkbox] {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 1px solid #bcbcbc;
  border-radius: 100%;
  display: grid;
  place-content: center;
}
input[type="checkbox"]:checked {
  border: none;
}
input[type="checkbox"]::before {
  content: "";
  width: 23px;
  height: 18px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  background: url('data:image/svg+xml;utf8,<svg width="23" height="18" viewBox="0 0 23 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M2 7.74419L8.80597 15L21 2" stroke="black" stroke-width="4"/> </svg>') no-repeat;
  background-size: contain;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* Inputs - date picker */

.hs-input:not([type="checkbox"]) {
  width: 100% !important;
}

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10px;
  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: inherit;
}

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

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

/* Submit button */

.hs-submit {
  margin-top: 80px;
}

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;
}


/* 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;
}

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

/* 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
*/

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.aspect-ratio-16-9 {
  padding-bottom: 56.25%;
}

.text-small {
  font-size: 0.75rem;
}

 /* 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;
  }
}
.mr-10 {
  margin-right: 40px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/* ==========================================================================
  Elements
========================================================================== */
/* Header DND sections */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 115px;
  transition: 0.35s all cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 0 var(--cc-horizontal-padding);
}
.header a {
  text-decoration: none;
}

@media (min-width: 767px) {
  .header.hide {
    transform: translateY(-100%);
  }
}
.header .dnd-section {
  padding: 0;
}

/* Header container */
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 3.75rem;
  margin-left: -1rem;
  margin-right: -1rem;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  z-index: 1;
}
.header__container > .container-fluid {
  flex: 1;
  margin-right: 40px;
}
@media (max-width: 767px) {
  .header__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 767px) {
  .header__column {
    position: relative;
  }
  .header__column a.button {
    display: none;
  }
  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}
/* 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;
}

/* Logo */
.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: 20px;
  width: 282px;
  max-width: 100%;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .header__logo a {
    width: 54px;
    height: 48px;
    background-image: var(--cc-logo-mobile);
  }
  .header__logo a img {
    display: none;
  }
}
.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Navigation */
#nav-toggle {
  display: none;
}

/* Mobile toggles */
.header__navigation--toggle {
  cursor: pointer;
  margin: auto;
  position: relative;
  width: 22px;
  height: 12px;
  border: none;
  background-color: transparent;
}
.header__navigation--toggle span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.header__navigation--toggle span:first-of-type {
  top: 0;
}
.header__navigation--toggle span:last-of-type {
  bottom: 0;
}
.header__navigation--toggle.open span:first-of-type {
  transform: rotate(45deg);
  top: 5px;
}
.header__navigation--toggle.open span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
.header__navigation--toggle.open:hover span:first-of-type, .header__navigation--toggle.open:hover span:last-of-type {
  width: 22px;
}
@media (min-width: 1024px) {
  .header__navigation--toggle:hover span:first-of-type {
    width: 26px;
  }
  .header__navigation--toggle:hover span:last-of-type {
    width: 12px;
  }
}

/* ==========================================================================
 The header nav
 ========================================================================== */
.header__navigation {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  margin: 0 auto;
  position: absolute;
  max-width: 100%;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.45, 0.05, 0, 1);
  padding: 170px var(--cc-horizontal-padding) 0;
  background-color: #f4f4f4;
  z-index: 0;
  overflow: hidden;
}
.header__navigation > .container-fluid {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
}
.header__navigation .dnd-section > .row-fluid > .dnd-column:first-of-type > div:first-child {
  flex-grow: 1;
}
@media (min-width: 767px) {
  .header__navigation .span4:last-of-type > div {
    max-width: 301px;
  }
}
.header__navigation .menu__item,
.header__navigation .span4:last-of-type > div:nth-child(2),
.header__navigation .span4:last-of-type > div:nth-child(3),
.header__navigation .span4:last-of-type > div:nth-child(4),
.header__navigation .span4:last-of-type > div:nth-child(5) {
  transform: translate3d(-2.5rem, 0, 0);
  opacity: 0;
  transition: transform 0.6s var(--cc-easing), opacity 0.6s var(--cc-easing);
}
.header__navigation .menu__item:nth-child(1) {
  transition-delay: 0.05s;
}
.header__navigation .menu__item:nth-child(2) {
  transition-delay: 0.1s;
}
.header__navigation .menu__item:nth-child(3) {
  transition-delay: 0.15s;
}
.header__navigation .menu__item:nth-child(4) {
  transition-delay: 0.2s;
}
.header__navigation .menu__item:nth-child(5) {
  transition-delay: 0.25s;
}
.header__navigation .menu__item:nth-child(6) {
  transition-delay: 0.3s;
}
.header__navigation .menu__item:nth-child(7) {
  transition-delay: 0.35s;
}
.header__navigation .menu__item:nth-child(8) {
  transition-delay: 0.4s;
}
.header__navigation .menu__item:nth-child(9) {
  transition-delay: 0.45s;
}
.header__navigation .span4:last-of-type > div:nth-child(2),
.header__navigation .span4:last-of-type > div:nth-child(3) {
  transition-delay: 0.25s;
}
.header__navigation .span4:last-of-type > div:nth-child(4),
.header__navigation .span4:last-of-type > div:nth-child(5) {
  transition-delay: 0.35s;
}
.header__navigation.flex {
  display: flex;
}
.header__navigation.open {
  clip-path: inset(0);
}
.header__navigation.open .menu__item,
.header__navigation.open .span4:last-of-type > div {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.header__navigation h3 {
  margin-bottom: 0;
  letter-spacing: -1px;
}
.header__navigation a:hover {
  color: #7c7c7c !important;
}
.header__navigation a:hover span {
  color: #7c7c7c !important;
}
@media (max-width: 767px) {
  .header__navigation {
    text-align: center;
  }
  .header__navigation .row-fluid {
    justify-content: center;
  }
}

footer a,
.footer a {
  text-decoration: none;
}
footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:first-child #footer-lottie-canvas,
footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:first-child img,
.footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:first-child #footer-lottie-canvas,
.footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:first-child img {
  width: 988px !important;
  max-width: 100%;
  display: block;
}
@media (max-width: 767px) {
  footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:last-child .dnd-row:last-child .row-fluid,
  .footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:last-child .dnd-row:last-child .row-fluid {
    gap: 1.5rem;
  }
  footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:last-child .dnd-row:last-child .row-fluid .span3,
  .footer > .footer__container > .row-fluid-wrapper > .row-fluid > .span12 > .row-fluid-wrapper:last-child .dnd-row:last-child .row-fluid .span3 {
    order: -1;
  }
}
footer .hs-menu-wrapper ul,
.footer .hs-menu-wrapper ul {
  gap: 10px;
}

.lity-form-heading {
  margin-bottom: 40px;
}

/* ==========================================================================
 Newsletter Popup
 ========================================================================== */
#newsletter-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: auto;
}

@media (max-width: 767px) {
  #newsletter-form {
    height: 100%;
    max-width: none;
    width: 100%;
  }
}
#whoweare-video iframe {
  display: block;
  background: transparent;
}

#whoweare-video.landscape-mode {
  position: relative;
  padding-bottom: 56.25%;
  width: 1920px;
  max-width: 100%;
  overflow: hidden;
}
#whoweare-video.landscape-mode iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
 Purchase CRC Form
 ========================================================================== */
@font-face {
  font-family: "PP Object Sans";
  src: url("https://25370990.fs1.hubspotusercontent-eu1.net/hubfs/25370990/PPObjectSans-Medium.otf") format("opentype");
  font-display: swap;
  font-weight: bold;
}
body, input, textarea, select, button {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: ltr;
}

main {
  position: relative;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin-bottom: -1rem;
  overflow: hidden;
  z-index: 1;
  background: white;
}
main .row-fluid-wrapper.dnd-section:first-child {
  border-radius: 0px 0px 16px 16px;
  margin-bottom: -16px;
  z-index: 1;
  padding-top: 205px;
  padding-bottom: 40px;
}
main .row-fluid-wrapper.dnd-section:first-child h1 {
  margin-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
}

/* ==========================================================================
 Modules
 ========================================================================== */
.widget-type-linked_image {
  overflow: hidden;
}

.hs-image__grid__list {
  justify-content: flex-start !important;
}

/* ==========================================================================
 Forms
 ========================================================================== */
.hs-dependent-field {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
.hs-dependent-field > * {
  flex-basis: calc(50% - 20px);
}
.hs-dependent-field > *:first-of-type {
  flex-basis: 100%;
}
.hs-dependent-field > *:last-of-type {
  flex-basis: 100%;
}

/* ==========================================================================
 HS modules
 ========================================================================== */
.hs-video-widget {
  border-radius: 1rem;
  overflow: hidden;
}

/* ==========================================================================
 Lity 
 ========================================================================== */
.lity {
  background: rgba(0, 0, 0, 0.7);
}

.lity-content {
  background-color: #f4f4f4 !important;
  color: black;
}
.lity-content .popup-container {
  padding: 48px 24px;
}
.lity-content input:not([type=submit]),
.lity-content textarea,
.lity-content select {
  background-color: white !important;
  color: black !important;
  width: 100% !important;
}
.lity-content .hs-submit {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.lity-content input[type=submit] {
  color: black;
  border-color: black;
}
.lity-content input[type=submit]:hover {
  background-color: black;
  border: 1px solid black;
}
.lity-content .form-title {
  display: none;
}
.lity-content h1,
.lity-content h2,
.lity-content h3,
.lity-content h4,
.lity-content h5,
.lity-content h6 {
  margin-bottom: 1rem;
  color: black;
}
.lity-content label {
  margin-bottom: 0;
  color: black;
  font-weight: 400;
}
.lity-content video {
  max-height: calc(80vh - 80px);
}

/* ==========================================================================
  Pages
========================================================================== */
.hs-content-id-104536743103 .dnd-section:nth-child(6) .span6:first-of-type canvas {
  margin-left: auto;
  margin-right: 80px;
  margin-bottom: 80px;
}
.hs-content-id-104536743103 .dnd-section:nth-child(6) .span6:last-of-type canvas {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 40px;
}

/* ==========================================================================
 Project Bison
 ========================================================================== */
.hs-content-id-104391202790 .video-container:first-of-type {
  border-radius: 0;
}

.hs-content-id-185577154773 form p {
  font-weight: 400;
}
.hs-content-id-185577154773 form .grecaptcha-badge {
  margin-left: 0 !important;
}
.hs-content-id-185577154773 form input[type=text],
.hs-content-id-185577154773 form input[type=tel],
.hs-content-id-185577154773 form input[type=email] {
  font-weight: bold;
  background-color: #fff;
}
.hs-content-id-185577154773 form input[type=text]:focus,
.hs-content-id-185577154773 form input[type=tel]:focus,
.hs-content-id-185577154773 form input[type=email]:focus {
  background-color: #f4f4f4 !important;
}
.hs-content-id-185577154773 form input[type=text]:focus-visible,
.hs-content-id-185577154773 form input[type=tel]:focus-visible,
.hs-content-id-185577154773 form input[type=email]:focus-visible {
  outline: none;
}
.hs-content-id-185577154773 form legend,
.hs-content-id-185577154773 form label {
  font-size: 16px;
  font-weight: 400;
}
.hs-content-id-185577154773 form .hs_how_can_you_help {
  margin-top: 80px;
}
.hs-content-id-185577154773 form .hs_how_can_you_help legend {
  font-size: 12px;
  margin-bottom: 40px;
}
.hs-content-id-185577154773 form .hs_how_can_you_help .hs-form-checkbox {
  margin-top: 0;
  margin-bottom: 8px;
}
.hs-content-id-185577154773 form .hs_how_can_you_help label {
  margin-bottom: 0;
}
.hs-content-id-185577154773 form .hs_how_can_you_help > label {
  font-size: 24px;
  margin-bottom: 40px;
}
.hs-content-id-185577154773 form input[type=submit] {
  border: 1px solid #000000;
  background-color: rgba(0, 0, 0, 0);
  color: black;
}
@media (min-width: 768px) {
  .hs-content-id-185577154773 form .hs-form-checkbox span,
  .hs-content-id-185577154773 form input {
    font-size: 40px;
  }
  .hs-content-id-185577154773 form .hs-fieldtype-text,
  .hs-content-id-185577154773 form .hs-fieldtype-phonenumber {
    width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * var(--column-width-multiplier) * 3 / 100);
  }
  .hs-content-id-185577154773 form .hs-fieldtype-text input,
  .hs-content-id-185577154773 form .hs-fieldtype-phonenumber input {
    padding: 25px;
  }
  .hs-content-id-185577154773 form ul.inputs-list[role=checkbox] {
    margin-left: auto;
    margin-right: auto;
    width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * var(--column-width-multiplier) * 2 / 100);
  }
}
.hs-content-id-185577154773 .submitted-message {
  font-size: 24px;
  font-weight: 400;
  min-height: 200px;
}
@media (min-width: 768px) {
  .hs-content-id-185577154773 .submitted-message {
    margin-left: auto;
    width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * var(--column-width-multiplier) * 6 / 100);
  }
}

.hs-content-id-106129013697 .hs-submit {
  border-top: 1px solid #fff;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .hs-content-id-106129013697 fieldset.form-columns-2 {
    display: block;
  }
  .hs-content-id-106129013697 .hs-dependent-field > .hs-form-field {
    flex-basis: 100%;
  }
}

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