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








/* ========================================================================== */
/*  1. LAYOUT                                                #layout          */
/* ========================================================================== */
:root {
  /* ========================================================================== */
  /*  Spacing                                                 #spacing          */
  --container-width: 1680px;

  /* spacing */
  --spacer-sm: 16px;
  --spacer-md: 32px;
  --spacer-lg: 48px;
  --spacer-xl: 64px;
  --spacer-xxl: 80px;
  --vertical-section-spacer: 64px;
  --section-padding: 120px; 
}


@media (max-width: 799px) {
  :root {
    --section-padding: 48px;
    --spacer-lg: 32px;
    --spacer-xl: 32px;
    --spacer-xxl: 32px;
  }
}


@media (min-width: 799px) {
  :root {
    --vertical-section-spacer: 80px;
  }
}

@media (min-width: 1050px) {
  :root {
    --vertical-section-spacer: 120px;
  }
}

/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     

:root,
:host {
  /*** Import color properties from figma ***/
  
  --primary-400: #BF8A15;
  --primary-300: #FFB81C; /* base */
  --primary-200: #FFD477;
  --primary-100: #FFEFCD;
  
  --neutral-900:  #1B1A1A;
  --neutral-800:  #474646;
  --neutral-700:  #585757;
  --neutral-600:  #6C6B6B;
  --neutral-500:  #767676;
  --neutral-400:  #B2B2B2;
  --neutral-300:  #CDCDCD;
  --neutral-200:  #EEEEEE;
  --neutral-100:  #F8F8F8;
  --white:        #FFFFFF; 
   
  --teal-400: #144E4D;
  --teal-300: #1B6D6A; /* base */
  --teal-200: #C2E4E4;
  --teal-100: #DFF2F1;
   
  --navy-400: #2C3546;
  --navy-300: #364258; /* base */
  --navy-200: #A3AEC0;
  --navy-100: #E6ECF4;
   
  --red-400: #762927;
  --red-300: #9E3835; /* base */
  --red-200: #E19F9E;
  --red-100: #F5E0E0;
  
  --success-400: #086343;
  --success-300: #008556;
  --success-200: #0B9061;
  --success-100: #D6F3E2;
  
  --warning-400: #A24D20;
  --warning-300: #CD4D0A;
  --warning-200: #E86825;
  --warning-100: #FFE1BE;
  
  --error-400: #9F1B1F;
  --error-300: #DE1C22;
  --error-200: #EE2C32;
  --error-100: #FFD6D7;
  
  --focus-color: #458988;
  
  --bg-primary: #364258;
  --bg-secondary: #2C3546;
  
  --card-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .02) 47%, rgba(0, 0, 0, .37) 72%, rgba(0, 0, 0, .55) 100%);
}

/* ========================================================================== */
/*  3. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */
/*** Custom Fonts (uncomment for manual font-face properties) ***/
/* @font-face {
  font-family: ;
  font-weight:  ;
  font-style: ;
  src: url('') format(''),
       url('') format(''),
       url('') format('');
} */

:root {
  /* ========================================================================== */
  /*  base                                                                      */
  --body-font: "Jost", sans-serif;
  --heading-font: "futura-pt", sans-serif;

  /* rem base font size, define in px */
  --rem-base-px: 16px;

  /* ========================================================================== */
  /*  Font Sizing                                                               */
  --h1-font-size:     2.5rem;
  --h2-font-size:     2rem;
  --h3-font-size:     1.5rem;
  --h4-font-size:     1.25rem;
  --h5-font-size:     1.125rem;
  --h6-font-size:     1rem;
  --paragraph:        1rem;
  --paragraph-lg:     1.125rem;
  --paragraph-sm:     0.875rem;
  --subtitle-lg:      1rem;
  --subtitle-sm:      0.875rem;
}

/*** Tablet Multiplier ***/
@media (min-width: 1050px) {
  :root {
    --h1-font-size:     4.5rem;
    --h2-font-size:     3rem;
    --h3-font-size:     2rem;
    --h4-font-size:     1.5rem;
    --h5-font-size:     1.25rem;
    --h6-font-size:     1.125rem;
    --paragraph:        1.125rem;
    --paragraph-lg:     1.25rem;
    --paragraph-sm:     1rem;
  }
}

/* ========================================================================== */
/*  4. FORMS                                                #form             */
/* ========================================================================== */  

form, form :before, form :after {
  /* ========================================================================== */
  /*  Label                                                                     */
  --legend-font-size:   0.9375rem;

  --label-font-family:  var(--heading-font);
  --label-font-size:    1rem;
  --label-font-weight:  500;
  --label-line-height:  1.125;
  --label-color:        var(--neutral-900);
  --label-margin-b:     8px;

  --label-error-font-size:          0.875rem;
  --label-error-font-weight:        450;
  --label-error-line-height:        1;
  --label-error-color:              var(--error-300);
  --label-error-image:              url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/form-alert-icon.svg');


  /* ========================================================================== */
  /*  Input                                                                     */
  --input-font-size:                1.125rem;
  --input-font-weight:              450;
  --input-line-height:              1.111;
  --input-color-text:               var(--neutral-900);
  --input-color-text-placeholder:   var(--neutral-500);
  --input-color-required:           var(--neutral-900);
  --input-color-bg:                 var(--neutral-100);
  --input-border:                   1px solid var(--neutral-500);
  --input-border-radius:            4px;
  --input-padding:                  14px 16px;
  --input-spacing-y:                16px;
  --input-transition:               all 200ms ease;
  --input-color-outline:            rgb(from var(--focus-color) r g b / 40%);

  /* States */
  --input-error-color-border:       var(--error-300);
  --input-error-color-outline:      0px 0px 0px 3px rgba(222, 28, 34, 0.30);
  --input-focus-color-border:       var(--teal-300);
  --input-disabled-color-text:      var(--neutral-400);
  --input-disabled-color-border:    var(--neutral-300);
  --input-disabled-color-bg:        var(--neutral-200);

  --textarea-height:                113px; 

  /* ========================================================================== */
  /*  Checkbox                                                                  */
  --checkbox-font-family:       var(--body-font);
  --checkbox-font-size:         1rem;
  --checkbox-font-weight:       450;
  --checkbox-line-height:       1.111;
  --checkbox-color-text:        var(--neutral-900);
  --checkbox-dimensions:        20px;
  --checkbox-image-dimensions:  18px;
  --checkbox-border:            1px solid var(--neutral-500);
  --checkbox-border-radius:     var(--radius-sm);
  --checkbox-color-bg:          var(--white);

  /* States */
  --checkbox-hover-image:                 url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/checkmark-gray-18x18.svg');
  --checkbox-hover-color-border:          var(--neutral-900);
  --checkbox-checked-image:               url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/checkmark-white-18x18.svg');
  --checkbox-checked-color-bg:            var(--neutral-900);
  --checkbox-checked-color-border:        var(--neutral-900);
  --checkbox-checked-hover-color-bg:      var(--neutral-900);
  --checkbox-checked-hover-color-border:  var(--neutral-900);
  --checkbox-error-color-border:          var(--error-300);
  --checkbox-disabled-color-text:         var(--neutral-400);
  --checkbox-disabled-color-bg:           var(--neutral-200);
  --checkbox-disabled-color-border:       var(--neutral-300);
  --checkbox-disabled-checked-image:      url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/checkmark-black-18x18.svg');
  --checkbox-disabled-checked-color-bg:   var(--neutral-300);
  
  
  /* ========================================================================== */
  /*  Radio                                                                     */
  --radio-font-family:        var(--body-font);
  --radio-font-size:          var(--checkbox-font-size);
  --radio-font-weight:        var(--checkbox-font-weight);
  --radio-color-text:         var(--checkbox-color-text);
  --radio-line-height:        var(--checkbox-line-height);
  --radio-dimensions:         20px;
  --radio-inner-dimensions:   10px;
  --radio-color-bg:           var(--white);
  --radio-border:             1px solid var(--neutral-500);
  --radio-border-radius:      50px;

  /* States */
  --radio-hover-color-inner:              var(--neutral-400);
  --radio-hover-border:                   1px solid var(--neutral-900);
  --radio-checked-color-inner:            var(--neutral-900);
  --radio-checked-color-bg:               var(--white);
  --radio-checked-color-border:           2px solid var(--neutral-900);
  --radio-checked-hover-color-border:     2px solid var(--neutral-900);
  --radio-error-color-border:             var(--error-300);
  --radio-disabled-color-text:            var(--neutral-400);
  --radio-disabled-color-bg:              var(--neutral-200);
  --radio-disabled-color-border:          1px solid var(--neutral-300);
  --radio-disabled-color-inner:           var(--neutral-200);
  --radio-disabled-checked-color-bg:      var(--white);
  --radio-disabled-checked-color-border:  2px solid var(--neutral-300);
  --radio-disabled-checked-color-inner:   var(--neutral-300);

  /* ========================================================================== */
  /*  Select                                                                    */
  --select-icon:          url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/form-chevron-down.png');

  /* ========================================================================== */
  /*  datepicker                                                                */
  --date-input-icon:                    url('');
  --date-input-icon-height:             24px;
  --date-input-icon-width:              20px;
  --date-input-margin-right:            20px; /* match this to x-padding on input fields */

  --date-picker-font:                   var(--body-font);
  --date-picker-color:                  var(--purple-base);
  --date-picker-border:                 none;
  --date-picker-border-radius:          var(--radius-md);

  --date-picker-number-hover-color:     var(--white);
  --date-picker-number-hover-bg:        var(--secondary-600);
  --date-picker-number-today-color:     var(--primary-base);
  --date-picker-number-selected-color:  var(--white);
  --date-picker-number-selected-bg:     var(--primary-base);
}

/* ========================================================================== */
/*  Form Color Variants                                                       */
.form--style-light form, .form--style-light form :before, .form--style-light form :after {
  --input-color-bg:     var(--white);
  --checkbox-color-bg:  transparent;
  --radio-color-bg:     transparent;
}

.form--style-dark form, .form--style-dark form :before, .form--style-dark form :after {
  --label-color:                    var(--white);
  --label-error-color:              var(--error-100);
  --label-error-image:              url(https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/form-alert-icon-light.png);

  --input-color-text:               var(--white);
  --input-color-text-placeholder:   var(--neutral-400);
  --input-color-required:           var(--white);
  --input-color-bg:                 transparent;
  --input-color-outline:            rgb(from var(--focus-color) r g b / 70%);
  --input-border:                   1px solid var(--neutral-400);
  --input-disabled-color-text:      var(--neutral-500);
  --input-disabled-color-border:    var(--neutral-600);
  --input-disabled-color-bg:        var(--neutral-700);
  --input-error-color-border:       var(--error-100);
  --input-error-color-outline:      0px 0px 0px 3px rgba(222, 28, 34, 0.70);

  --checkbox-color-text:                  var(--white);
  --checkbox-border:                      1px solid var(--neutral-400);
  --checkbox-color-bg:                    var(--neutral-900);
  --checkbox-hover-color-border:          var(--white);
  --checkbox-checked-image:               url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/checkmark-black-18x18.svg');
  --checkbox-checked-color-bg:            var(--white);
  --checkbox-checked-color-border:        var(--white);
  --checkbox-checked-hover-color-bg:      var(--white);
  --checkbox-checked-hover-color-border:  var(--white);
  --checkbox-disabled-color-text:         var(--neutral-500);
  --checkbox-disabled-color-bg:           var(--neutral-700);
  --checkbox-disabled-color-border:       var(--neutral-600);
  --checkbox-disabled-checked-image:      url('https://23101795.fs1.hubspotusercontent-na1.net/hubfs/23101795/xpel-theme-2024/icons/checkmark-white-18x18.svg');
  --checkbox-disabled-checked-color-bg:   var(--neutral-600);

  --radio-color-bg:                       var(--neutral-900);
  --radio-border:                         1px solid var(--neutral-400);
  --radio-hover-color-inner:              var(--neutral-700);
  --radio-hover-border:                   1px solid var(--white);
  --radio-checked-color-inner:            var(--white);
  --radio-checked-color-bg:               var(--neutral-900);
  --radio-checked-color-border:           2px solid var(--white);
  --radio-checked-hover-color-border:     2px solid var(--white);
  --radio-disabled-color-text:            var(--neutral-500);
  --radio-disabled-color-bg:              var(--neutral-700);
  --radio-disabled-color-border:          1px solid var(--neutral-600);
  --radio-disabled-color-inner:           var(--neutral-700);
  --radio-disabled-checked-color-bg:      var(--neutral-900);
  --radio-disabled-checked-color-border:  2px solid var(--neutral-600);
  --radio-disabled-checked-color-inner:   var(--neutral-600);
}


  

/* ========================================================================== */
/*  5. MISC                                                 #misc             */
/* ========================================================================== */  

:root {
  --radius-lg: 100px;
  --radius-md: 14px;
  --radius-sm: 4px;
  --blur-bg: rgba(33, 45, 66, .35);
  --blur-border: 1px solid rgba(255, 255, 255, 0.25);
  --blur-filter: blur(0.5625rem);
}
*, *: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: 1050px) {
  .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));
    }
  
}
:root {
  scroll-behavior: smooth;
}

.anchor {
  scroll-margin-top: 120px;
}

.hubspot-disable-focus-styles .header {
  top: 30px;
}

.body-wrapper {
  width: 100%;
}

/* container */
.dnd-section {
  margin: 0 0 var(--vertical-section-spacer);
}

.content-wrapper,
.dnd-section > .row-fluid {
  --padding-x: 6.4vw;
  margin: 0 auto;
  padding-inline: var(--padding-x);
  max-width: calc(var(--container-width) + (var(--padding-x) * 2));
}

.dnd-section:has(.dnd-column:nth-child(2)) > .row-fluid > .dnd-column:not(.dnd-column:has(.hs-horizontal-spacer), .dnd-column:last-child) {
  margin-bottom: var(--spacer-md);
}

.dnd-section .dnd-column,
.dnd-section .content-wrapper,
.dnd-section[class*="body_dnd_area-row"] {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* set custom padding for fixed header */
.dnd-section:first-child {
  padding-top: 90px;
}

@media (min-width: 799px) {
  .dnd-section[class*="force-full-width-section"] .dnd-column {
    padding: 0;
  }

  .dnd-section:first-child {
    padding-top: 120px;
  }
}

@media (min-width: 1050px) {  
  .dnd-section:first-child {
    padding-top: 160px;
  }
}

@media (min-width: 1050px) {
  .content-wrapper,
  .dnd-section > .row-fluid {
    --padding: 7.14vw
  }

  .dnd-section:has(.dnd-column:nth-child(2)) > .row-fluid > .dnd-column:not(.dnd-column:has(.hs-horizontal-spacer)) {
    margin-bottom: 0;
  }
}

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

.module-wrapper {
  display: flex;
  max-width: 100%;
}

.module-wrapper--center {
  margin: 0 auto;
}

.module-wrapper--right {
  margin: 0;
}

.module-wrapper > div {
  width: 100%;
}

.module-wrapper--col {
  flex-direction: column;
}

@media (min-width: 1050px) {
  .module-wrapper--right {
    margin: 0 0 0 auto;
  }
}
html {
  --font-size: var(--rem-base-px);
  font-size: var(--font-size);
  line-height: 1.5;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-size);
  overflow-wrap: break-word;
}

:is(h1, h2, h3, h4, h5, h6, p, a, li, span, div) {
  color: var(--neutral-900);
  font-size: var(--font-size);
}

.text-white :is(h1, h2, h3, h4, h5, h6, p, a, li, span, div):not(a.btn),
:is(h1, h2, h3, h4, h5, h6, p, ul, ol, a, li, span, div).text-white {
  color: var(--white);
}

/* Anchors */
a:not(a.btn) {
  --font-size: var(--paragraph);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0;
  transition: all 200ms ease-in-out;
}

a:not(a.btn):hover {
  color: var(--primary-400);
  text-decoration-color: var(--primary-400);
}

.text-white a:not(a.btn):hover,
a.text-white:not(a.btn):hover {
  color: var(--primary-300);
  text-decoration-color: var(--primary-300);
}
/* Paragraphs */
p,
p a {
  --font-size: var(--paragraph);
  font-weight: 400;
  letter-spacing: calc(var(--font-size) / 100);
  margin: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: calc(var(--font-size) / -100);
  margin: 0;
}

h1, .heading-display-1 {
  --font-size: var(--h1-font-size);
}

h2, .heading-display-2 {
  --font-size: var(--h2-font-size);
}

h3, .heading-display-3 {
  --font-size: var(--h3-font-size);
}

h4, .heading-display-4 {
  --font-size: var(--h4-font-size);
}

h5, .heading-display-5 {
  --font-size: var(--h5-font-size);
}

h6, .heading-display-6 {
  --font-size: var(--h6-font-size);
}

/* Subtitle (preheader) */
.subtitle {
  --font-size: var(--subtitle-lg);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1;
  letter-spacing: calc((var(--font-size) / 100) * 6);
  text-transform: uppercase;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.575rem;
  padding: 0;
}

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

li :is(ul, ol) {
  margin-top: 6px;
}

ul > li {
  margin-left: 20px;
}

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

ul.no-list li {
  margin-left: 0;
}

li {
  --font-size: var(--paragraph);
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size) / 100);
  margin-bottom: 6px;
}

ol {
  list-style: none;
  counter-reset: orderedlist;
}

ol > li {
  position: relative;
  padding-left: 36px;
}

ol > li:before {
  counter-increment: orderedlist;
  content: counter(orderedlist);
  position: absolute;
  top: 1px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  height: 22px;
  width: 22px;
  background: var(--neutral-200);
  border-radius: var(--radius-lg);
}

@media (min-width: 799px) {
  ul > li {
    margin-left: 22px;
  }
  
  ul > li::marker {
    font-size: 20px;
  }

  ol > li {
    padding-left: 40px;
  }

  ol > li:before {
    font-size: 0.875rem;
    height: 24px;
    width: 24px;
  }
}


/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.575rem;
  padding-left: 0.7875rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  --font-size: 0.6559rem;
  word-break: normal;
}

/* ========================================================================== */
/*  RICH TEXT STYLING                                                         */
.custom-text-wrapper {
  scroll-margin-top: 150px;
} 
 
.custom-text-wrapper .subtitle {
  margin-bottom: 12px;
}

:is(.hs_cos_wrapper_type_rich_text, 
.custom-text-wrapper) :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 20px;
}

:is(.hs_cos_wrapper_type_rich_text, 
.custom-text-wrapper) p {
  margin-bottom: 12px;
}

.custom-text-wrapper *:last-child {
  margin-bottom: 0;
}

:is(.hs_cos_wrapper_type_rich_text, 
.custom-text-wrapper) span > a {
  font-size: inherit;
}

@media (min-width: 799px) {
  .custom-text-wrapper .subtitle {
    margin-bottom: 16px;
  }

  :is(.hs_cos_wrapper_type_rich_text, 
  .custom-text-wrapper) :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 24px;
  }

  :is(.hs_cos_wrapper_type_rich_text, 
  .custom-text-wrapper) p {
    margin-bottom: 16px;
  }

  .custom-text-wrapper *:last-child {
    margin-bottom: 0;
  }
}

/* ========================================================================== */
/*  UTILITIES                                                                 */
/* ========================================================================== */

.masked-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-sm {
  --font-size: var(--paragraph-sm);
}

.blurred-bg {
  backdrop-filter: var(--blur-filter) !important;
  background: var(--blur-bg) !important;
  border: var(--blur-border) !important;
  border-radius: 100% !important;
}

/* ========================================================================== */
/*  LAYOUT                                                                    */
/* ========================================================================== */

.heading-section {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacer-lg);
}

.heading-section :is(h1,h2,h3,h4,h5,h6) {
  max-width: 25ch;
}

.heading-section--space-between {
  justify-content: space-between;
}

@media (max-width: 1050px) {
  .heading-section {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
.reset-button {
  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 Group                                                              */
.btn-group {
  display: flex;
  /* flex-direction: column; */
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-group--center {
  justify-content: center;
}

.btn-group--right {
  justify-content: flex-end;
}

/* @media (min-width: 799px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
} */

/* ========================================================================== */
/*  Button Styles                                                             */
.btn,
.form input[type="submit"],
.systems-page .email-prefs input[type="submit"] {
  --gap: 8px;
  --font-size: 1.125rem;
  --line-height: 1.11;
  --text-color: var(--neutral-900);
  --bg-color: transparent;
  --border-color: transparent;
  --padding: 14px 35px;
  --transition: all 200ms ease-in-out;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  font-family: var(--heading-font);
  font-size: var(--font-size);
  font-weight: 600;
  line-height: var(--line-height);
  color: var(--text-color);
  text-decoration: none;
  width: fit-content;
  margin: 0;
  padding: var(--padding);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  z-index: 0;
  outline: 3px solid transparent;
  outline-offset: 3px;
}

:is(.btn:focus-visible, 
  .form input[type="submit"]:focus-visible, 
  .systems-page .email-prefs input[type="submit"]:focus-visible) {
  outline-color: rgb(from var(--focus-color) r g b / 60%);
}

:is(.btn--primary-dark,
  .btn--secondary-dark,
  .btn--tertiary-dark,
  .form.form-btn--primary-dark input[type="submit"],
  .form.form-btn--secondary-dark input[type="submit"],
  .form.form-btn--tertiary-dark input[type="submit"]):focus-visible {
    outline-color: rgb(from var(--focus-color) r g b / 90%);
}
 
.btn--lg {
  --gap: 10px;
  --font-size: 1.25rem;
  --line-height: 1.11;
  --padding: 16px 46px;
}

.btn--sm {
  --gap: 6px;
  --font-size: 1rem;
  --line-height: 1.125;
  --padding: 10px 16px;
}

/* ========================================================================== */
/*  BUTTON COLORS                                                             */

.btn--primary,
.btn--primary-dark,
.form.form-btn--primary input[type="submit"],
.form.form-btn--primary-dark input[type="submit"],
.systems-page .email-prefs input[type="submit"] {
  --border-color: var(--primary-300);
  --bg-color: var(--primary-300);
}

.btn--secondary,
.form.form-btn--secondary input[type="submit"] {
  --border-color: var(--neutral-900);
  --bg-color: var(--neutral-900);
  --text-color: var(--white);
}

.btn--secondary-dark,
.form.form-btn--secondary-dark input[type="submit"] {
  --border-color: var(--white);
  --bg-color: var(--white);
  --text-color: var(--neutral-900);
}

.btn--tertiary,
.form.form-btn--tertiary input[type="submit"] {
  --border-color: var(--neutral-900);
  --bg-color: transparent;
}

.btn--tertiary-dark,
.form.form-btn--tertiary-dark input[type="submit"] {
  --border-color: var(--white);
  --text-color: var(--white);
}

/*** HOVER ***/
@media (hover: hover) {
  .btn--primary:hover,
  .btn--tertiary:hover,
  .form.form-btn--primary input[type="submit"]:hover,
  .form.form-btn--tertiary input[type="submit"]:hover,
  .systems-page .email-prefs input[type="submit"]:hover {
  --border-color: var(--neutral-900);
    --bg-color: var(--neutral-900);
    --text-color: var(--white);
  }

  .btn--primary-dark:hover,
  .btn--tertiary-dark:hover,
  .form.form-btn--primary-dark input[type="submit"]:hover,
  .form.form-btn--tertiary-dark input[type="submit"]:hover {
  --border-color: var(--white);
    --bg-color: var(--white);
    --text-color: var(--neutral-900);
  }

  .btn--secondary:hover,
  .form.form-btn--secondary input[type="submit"]:hover {
  --border-color: rgb(from var(--neutral-900) r g b / 10%);
    --bg-color: rgb(from var(--neutral-900) r g b / 75%);
    --text-color: var(--white);
  }

  .btn--secondary-dark:hover,
  .form.form-btn--secondary-dark input[type="submit"]:hover {
  --border-color: rgb(from var(--white) r g b / 10%);
    --bg-color: rgb(from var(--white) r g b / 75%);
    --text-color: var(--neutral-900);
  }
}

/* ========================================================================== */
/*  BUTTON LINK ONLY                                                          */
.btn--link,
.btn--link-dark { 
  --font-size: 18px;
  --line-height: 1.11;
  --padding: 0;
  position: relative;
}

.btn--link {
  --text-color: var(--neutral-900);
}

.btn--link-dark {
  --text-color: var(--white);
}

:is(.btn--link,
.btn--link-dark):after {
  content: '';
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  height: 1px;
  width: 0;
  transition: var(--transition);
}

.btn--link:after {
  background: var(--neutral-900);
}

.btn--link-dark:after {
  background: var(--white);
}

@media (hover: hover) {
  :is(.btn--link:hover,
  .btn--link-dark:hover):after {
    width: 100%;
  }
}

/* ========================================================================== */
/*  BUTTON ICONS                                                              */
.btn svg {
  fill: var(--neutral-900);
  height: 16px;
  width: 16px;
  transition: var(--transition);
}

.btn--lg svg {
  height: 20px;
  width: 20px;
}

:is(.btn--primary-dark, 
  .btn--secondary, 
  .btn--tertiary-dark,
  .btn--primary:hover,
  .btn--tertiary:hover,
  .btn--link-dark) svg {
    fill: var(--white);

}

:is(.btn--primary-dark:hover,
.btn--tertiary-dark:hover) svg {
  fill: var(--neutral-900);
}
.form--bg {
  padding: 48px;
  border-radius: 8px;
}

.form--bg-white {
  background: var(--white);
}

.form--bg-light-gray {
  background: var(--neutral-100);
}

.form--bg-black {
  background: var(--neutral-900);
}

.form--style-dark h3.form-heading {
  color: var(--white);
}

.form-heading {
  margin-bottom: 24px;
}

/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--input-spacing-y);
}

/* ========================================================================== */
/*  Labels                                                                    */
form label {
  margin-bottom: var(--label-margin-b);
}

form label, form label span {
  display: inline-block;
  font-family: var(--label-font-family);
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
  color: var(--label-color);
}

/* ========================================================================== */
/*  Help Text                                                                 */
form legend {
  font-size: var(--legend-font-size);
}

/* ========================================================================== */
/*  Fieldsets                                                                 */
form fieldset {
  max-width: 100% !important;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

form fieldset:is(.form-columns-2, .form-columns-3, .form-columns-4) {
  display: grid;
  grid-template-columns: 1fr;
}

form fieldset:is(.form-columns-1, .form-columns-2, .form-columns-3, .form-columns-4) .hs-form-field {
  width: 100% !important;
  float: none !important;
}

form fieldset:is(.form-columns-1, .form-columns-2, .form-columns-3, .form-columns-4) .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  form fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  form fieldset.form-columns-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  form fieldset.form-columns-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

/* ========================================================================== */
/*  Inputs                                                                    */
form :is(
  select, 
  select option, 
  textarea, 
  input:is(
    [type=radio], 
    [type=text], 
    [type=checkbox], 
    [type=search], 
    [type=email],
    [type=tel])) 
  {
  display: inline-block;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  color: var(--input-color-text);
  padding: var(--input-padding);
  width: 100% !important;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  background-color: var(--input-color-bg);
  outline: 3px solid transparent;
  outline-offset: 0;
}

form :is(input, textarea, select):is(:focus) {
  border-color: var(--input-focus-color-border);
  outline-color: var(--input-color-outline);
}

form :is(input, textarea, select):disabled {
  cursor: not-allowed;
  color: var(--input-disabled-color-text);
  background: var(--input-disabled-color-bg);
  border-color: var(--input-disabled-color-border);
}

form textarea {
  height: var(--textarea-height);
}

form .hs_submit input[type=submit] {
  display: block;
}

form :is(input:placeholder, form select.is-placeholder, form select option:disabled) {
  font-family: var(--body-font);
  font-weight: 450;
  line-height: 1.111;
  color: var(--input-color-text-placeholder);
}

form input:placeholder:disabled {
  color: var(--input-disabled-color-text); 
}

/* ========================================================================== */
/*  Form List Items                                                           */  
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}

form .inputs-list > li {
  display: block;
  margin: 0 0 12px;
}

form .inputs-list :is(input, span) {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
form :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

form :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) span {
  font-family: var(--checkbox-font-family);
  font-size: var(--checkbox-font-size);
  font-weight: var(--checkbox-font-weight);
  line-height: var(--checkbox-line-height);
  color: var(--checkbox-color-text);
  transition: var(--input-transition);
  margin: 0;
}

form .hs-form-checkbox-display:has(input[type=checkbox]:disabled) span {
  color: var(--checkbox-disabled-color-text);
}

form input[type=checkbox] {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  height: var(--checkbox-dimensions);
  width: var(--checkbox-dimensions) !important;
  background-color: var(--checkbox-color-bg);
  border-radius: var(--checkbox-border-radius);
  border: var(--checkbox-border);
  transition: var(--input-transition);
  outline-offset: 3px;
}

form .inputs-list.error input[type="checkbox"] {
  border-color: var(--checkbox-error-color-border);
}

form input[type="checkbox"]:checked {
  background-color: var(--checkbox-checked-color-bg);
  border-color: var(--checkbox-checked-color-border);
}

form input[type="checkbox"]:disabled,
form input[type="checkbox"]:disabled:hover {
  background-color: var(--checkbox-disabled-color-bg);
  border-color: var(--checkbox-disabled-color-border);
}
form input[type="checkbox"]:disabled:checked,
form input[type="checkbox"]:disabled:checked:hover {
  background-color: var(--checkbox-disabled-checked-color-bg);
  border-color: var(--checkbox-disabled-color-border);
}

form input[type="checkbox"]:before {
  --checkbox-content: var(--checkbox-checked-image);
  content: var(--checkbox-content);
  position: absolute;
  inset: 0;
  height: var(--checkbox-image-dimensions);
  width: var(--checkbox-image-dimensions);
  transition: var(--input-transition);
  opacity: 0;
}

form input[type="checkbox"]:checked:before {
  opacity: 1;
}

form input[type="checkbox"]:disabled:checked:before {
  --checkbox-content: var(--checkbox-disabled-checked-image);
}

form input[type="checkbox"]:after {
  content: var(--checkbox-hover-image);
  position: absolute;
  inset: 0;
  height: var(--checkbox-image-dimensions);
  width: var(--checkbox-image-dimensions);
  transition: var(--input-transition);
  opacity: 0;
}

form input[type="checkbox"]:disabled:after {
  opacity: 0;
}

/* Hover States */
@media (hover: hover) {
  form input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled) {
    border-color: var(--checkbox-hover-color-border);
  }

  form input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled) {
    background-color: var(--checkbox-checked-hover-color-bg);
    border-color: var(--checkbox-checked-hover-color-border);
  }

  form input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 1;
  }

  form input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 0;
  }
}

/* ========================================================================== */
/*  Inputs - Radio                                                            */
form .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

form .hs-form-radio-display span {
  font-family: var(--radio-font-family);
  font-size: var(--radio-font-size);
  font-weight: var(--radio-font-weight);
  line-height: var(--radio-line-height);
  color: var(--radio-color-text);
  transition: var(--input-transition);
  margin: 0;
}

form .hs-form-radio-display:has(input[type=radio]:disabled) span {
  color: var(--radio-disabled-color-text);
}

form input[type=radio] {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  height: var(--radio-dimensions);
  width: var(--radio-dimensions) !important;
  background-color: var(--radio-color-bg);
  border-radius: var(--radio-border-radius);
  border: var(--radio-border);
  transition: var(--input-transition), border-width 0ms linear;
  outline-offset: 3px;
}

form .inputs-list.error input[type="radio"] {
  border-color: var(--radio-error-color-border);
}

form input[type="radio"]:checked {
  border: var(--radio-checked-color-border);
  background: var(--radio-checked-color-bg);
}

form input[type="radio"]:disabled,
form input[type="radio"]:disabled:hover {
  background-color: var(--radio-disabled-color-bg);
  border: var(--radio-disabled-color-border);
}

form input[type="radio"]:disabled:checked,
form input[type="radio"]:disabled:checked:hover {
  background-color: var(--radio-disabled-checked-color-bg);
  border: var(--radio-disabled-checked-color-border);
} 

form input[type="radio"]:after {
  content: '';
  height: var(--radio-inner-dimensions);
  width: var(--radio-inner-dimensions);
  border-radius: var(--radio-border-radius);
  transition: var(--input-transition);
}

form input[type="radio"]:checked:after {
  background-color: var(--radio-checked-color-inner);
}

form input[type="radio"]:disabled:after {
  background-color: var(--radio-disabled-color-inner);
}

form input[type="radio"]:disabled:checked:after {
  background-color: var(--radio-disabled-checked-color-inner);
}

/* Hover States */
@media (hover: hover) {
  form input[type="radio"]:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-hover-border);
  }

  form input[type="radio"]:checked:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-checked-hover-color-border);
  }

  form input[type="radio"]:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-hover-color-inner);
  }

  form input[type="radio"]:checked:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-checked-color-inner);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
form .hs-fieldtype-select .input {
  position: relative;
}

form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

form .hs-fieldtype-select .input:after {
  content: var(--select-icon);
  pointer-events: none;
  position: absolute;
  inset: 50% 16px auto auto;
  line-height: 1;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
  z-index: 1;
}

form .hs-fieldtype-select .input:has(select:focus):after {
  transform: translateY(-50%) rotate(-180deg);
}

/* ========================================================================== */
/*  Inputs - Date Picker                                                      */
.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '';
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: var(--date-input-margin-right);
  height: var(--date-input-icon-height);
  width: var(--date-input-icon-width);
  background-image: var(--date-input-icon);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.hs-datepicker {
  width: 100%;
  max-width: 400px;
}

.fn-date-picker.pika-single.is-bound {
  width: 100%;
  border-radius: var(--date-picker-border-radius);
  border: var(--date-picker-border);
}

.fn-date-picker .pika-lendar {
  height: 100%;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px;
  float: none !important;
}

.fn-date-picker .pika-table {
  margin-bottom: 0;
}

.fn-date-picker .pika-label,
.fn-date-picker .pika-table thead th,
.fn-date-picker .pika-button {
  font-family: var(--body-font);
  color: var(--date-picker-color) !important;
}

.fn-date-picker .pika-table thead th abbr {
  text-decoration: none;
}

.fn-date-picker .pika-button {
  font-family: var(--body-font);
  font-weight: 400;
  text-align: center !important;
  background: transparent !important;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.fn-date-picker td.is-today .pika-button {
  font-weight: 700;
  color: var(--date-picker-number-today-color) !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: var(--date-picker-number-selected-bg) !important;
  color: var(--date-picker-number-selected-color) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: none;
}

@media (hover: hover) {
  form .fn-date-picker .pika-button:hover {
    background: var(--date-picker-number-hover-bg) !important;
    border-radius: var(--border-radius) !important;
    color: var(--date-picker-number-hover-color) !important;
  }
}

/* ========================================================================== */
/*  Inputs - File Picker                                                      */
form input[type=file] {
  background-color: transparent;
  border-radius: 0;
  border: initial;
  padding-left: 0;
}

/* ========================================================================== */
/*  GDPR                                                                      */
.legal-consent-container .hs-richtext,
.legal-consent-container .hs-richtext p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.form--style-dark .legal-consent-container .hs-richtext,
.form--style-dark .legal-consent-container .hs-richtext p {
  color: var(--neutral-200);
}

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

/* ========================================================================== */
/*  Validation                                                                */
form label span.hs-form-required {
  color: var(--input-color-required);
}

.hs-input.invalid.error {
  border-color: var(--input-error-color-border);
  box-shadow: var(--input-error-color-outline);
}

form .inputs-list.hs-error-msgs {
  margin: 0;
}

form .hs-error-msgs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
}

form .hs-error-msgs li:before {
  content: var(--label-error-image);
  display: block;
  line-height: 1;
  height: 16px;
  width: 16px;
}

form .hs-error-msgs label {
  --font-size: var(--label-error-font-size);
  display: inline-block;
  font-size: var(--font-size);
  font-weight: var(--label-error-font-weight);
  line-height: var(--label-error-line-height);
  color: var(--label-error-color);
  margin-bottom: 0;
}

/* ========================================================================== */
/*  Captcha                                                                   */
.grecaptcha-badge {
  margin: 0 auto;
}

/* ========================================================================== */
/*  Submit Message                                                            */
.submitted-message {
  text-align: center;
  font-weight: 700;
  color: var(--primary-base);
}
/* 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;
}
.video-player-wrapper {
  --media-button-touch-hover-border-radius: 8px;
  --media-button-touch-hover-bg: transparent;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: clip;
}

.video-player-wrapper.video-player--custom-height {
  height: 100%;
  width: auto;
}

.video-player {
  --media-button-icon-size: 42px;
  --media-button-hover-transform: none;
  --media-button-hover-bg: transparent;
  --right-btn-pos: 24px;
  position: relative;
  height: fit-content;
}

.video-player--custom-height .video-player {
  position: absolute;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: 100%;
  transform: translateX(-50%);
  overflow: clip;
}

.video-player media-player[data-media-player] {
  cursor: pointer;
  position: static;
  display: block;
  height: 100% !important;
  width: 100% !important;
}

.video-player iframe .ytp-watermark {
  display: none;
}

.video-player:not(.video-player-modal) :where([data-media-provider] video, [data-media-provider] iframe) {
  height: 100%;
  object-fit: cover;
}

.video-player:not(.video-player-modal) .vds-button {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.video-player:not(.video-player-modal) .vds-icon {
  position: absolute;
  right: var(--right-btn-pos);
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 100ms ease-in-out;
}

.video-player:not(.video-player-modal) .vds-icon svg {
  height: 16px;
  width: 16px;
}

.video-player:not(.video-player-modal) .vds-button[data-paused] .pause-icon,
.video-player:not(.video-player-modal) .vds-button .play-icon {
  opacity: 0;
}

.video-player:not(.video-player-modal) .vds-button[data-paused] .play-icon {
  opacity: 1;
}

.video-player .vds-poster :where(img) {
  object-fit: cover;
}

@media (min-width: 1050px) {
  .video-player-wrapper.video-player--custom-height {
    aspect-ratio: auto;
  }
}


/* ========================================================================== */
/*  MODAL VARIANT                                                             */
body:has(dialog.video-player-modal-wrapper[open]) {
  overflow: clip;
}

dialog.video-player-modal-wrapper {
  cursor: default;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: var(--neutral-900);
  padding: var(--padding-x);
}

dialog.video-player-modal-wrapper[open] {
  display: flex;
}

.video-player-modal {
  --media-button-icon-size: 24px;
  max-width: 1680px;
  aspect-ratio: 16/9;
  height: auto !important;
  width: 100% !important;
}

.video-player-modal media-player[data-media-player] {
  height: 100 !important;
  width: 100% !important;
  background: var(--neutral-900);
} 

.video-player-modal [data-media-player][data-layout=video]:not([data-fullscreen]) {
  border: none;
  border-radius: 0;
}

:where(.video-player-modal .vds-video-layout .vds-controls[data-visible]) {
  border-radius: 0 !important;
  background-image: linear-gradient(to top,rgb(0 0 0 / .6),10%,transparent,95%,rgb(0 0 0 / .0)) !important;
}

.modal-close-btn {
  cursor: pointer;
  position: absolute;
  inset: 18px 18px auto auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  border-radius: 100%;
  transition: all 550ms cubic-bezier(.215,.61,.355,1)
}

.modal-close-btn:hover {
  background: var(--neutral-800);
  transform: rotate(180deg);
}

.modal-close-btn svg {
  display: block;
}

.video-modal-trigger {
  cursor: pointer;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-trigger__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  aspect-ratio: 1;
  transition: transform .3s cubic-bezier(.215,.61,.355,1);
}

.video-slide:hover .video-modal-trigger__icon {
  transform: scale(1.2);
}

.video-modal-trigger__icon svg {
  display: block;
  fill: var(--white);
  height: 16px;
  width: 16px;
}

@media (min-width: 1050px) {
  .video-modal-trigger__icon {
    width: 80px;
  }

  .video-modal-trigger__icon svg {
    height: 20px;
    width: 20px;
  }
}

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

.header:not(.systems-page .header) {
  --transition: all 200ms ease-in-out;
  position: fixed;
  width: 100%;
  height: 4rem;
  background: var(--background);
  border-bottom: var(--border);
  transition: var(--transition);
  -webkit-backdrop-filter: var(--bg-blur);
  backdrop-filter: var(--bg-blur);
  z-index: 10;
}

.header.transparent {
  --background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.07) 66.67%, rgba(0, 0, 0, 0.00) 100%);
  --bg-blur: none;
  --logo-color: var(--white);
  --border: none;
  --typography-color: var(--neutral-900);
}

.header.default,
.header[data-scrolled="true"] {
  --background: rgb(from var(--white) r g b / 80%);
  --bg-blur: blur(.5625rem);
  --logo-color: var(--neutral-900);
  --border: 1px solid var(--neutral-300);
  --typography-color: var(--white);
  --btn-hover-border-color: rgb(from var(--neutral-900) r g b / 10%);
  --btn-hover-bg-color: rgb(from var(--neutral-900) r g b / 75%);
}

.header[data-state="hidden"] {
  transform: translateY(-100%);
}

.header .content-wrapper {
  max-width: 100%;
  height: 100%;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header__logo {
  display: block;
}

.header__logo svg {
  display: block;
  fill: var(--logo-color);
  height: 24px;
  width: 94px;
  transition: var(--transition);
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header[data-scrolled="true"] .btn {
  --border-color: var(--logo-color);
  --bg-color: var(--logo-color);
  --text-color: var(--typography-color);
  width: fit-content;
}

.header[data-scrolled="true"] .btn:hover {
  --border-color: var(--btn-hover-border-color);
  --bg-color: var(--btn-hover-bg-color);
}

.header .btn svg {
  fill: none;
}

.header .btn svg path#locator-outer {
  stroke: var(--text-color);
  transition: var(--transition);
}

.header .btn svg path#locator-inner {
  fill: var(--text-color);
  transition: var(--transition);
}

@media (min-width: 1050px) {
  .header:not(.systems-page .header) {
    height: 5.5rem;
  }

  .header .content-wrapper {
    padding: 0 2rem;
  }
}

@media (min-width: 1440px) {
  .header .content-wrapper {
    padding: 0 3rem;
  }

  .header__logo svg {
    height: 32px;
    width: 125px;
  }
}

@media (max-width: 400px) {
  .header .btn--sm {
    padding: 6px 10px;
    font-size: 15px;
  }
}
/* 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;
  }
}