/* 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 {
  --container-width: 1280px;

  /* Spacing */
  --spacing-0x: 0px;
  --spacing-05x: 0px;
  --spacing-1x: 0px;
  --spacing-2x: 4px;
  --spacing-3x: 8px;
  --spacing-4x: 12px;
  --spacing-5x: 16px;
  --spacing-6x: 20px;
  --spacing-8x: 24px;
  --spacing-10x: 32px;
  --spacing-12x: 32px;
  --spacing-14x: 32px;
  --spacing-16x: 32px;
  --spacing-18x: 32px;
  --spacing-20x: 32px;
  --spacing-24x: 32px;
  --spacing-30x: 32px;

  /* Dnd Spacing */
  --container-padding: var(--spacing-5x);
  --dnd-row-gap: var(--spacing-8x);
  /* --first-section-padding-top: var(--spacing-12x); */
  --dnd-section-bottom-margin: 48px;
  --dnd-section-bg-padding: var(--spacing-14x) var(--spacing-24x);
  
  /* Misc */
  --scroll-margin-top: 90px;
}

@media (min-width: 640px) {
  :root {
    /* Dnd Spacing */
    /* --first-section-padding-top: 120px; */
    /* --dnd-section-bottom-margin: 80px; */
    /* --dnd-section-bg-padding: 80px;  */
    
    /* Misc */
    --scroll-margin-top: 100px;
  }
}

@media (min-width: 820px) {
  :root {
    /* Spacing */
    --spacing-05x: 2px;
    --spacing-1x: 4px;
    --spacing-2x: 8px;
    --spacing-3x: 12px;
    --spacing-4x: 16px;
    --spacing-5x: 20px;
    --spacing-6x: 24px;
    --spacing-8x: 32px;
    --spacing-10x: 40px;
    --spacing-12x: 48px;
    --spacing-14x: 56px;
    --spacing-16x: 64px;
    --spacing-18x: 72px;
    --spacing-20x: 80px;
    --spacing-24x: 96px;
    --spacing-30x: 120px;

    /* Dnd Spacing */
    --dnd-row-gap: var(--spacing-14x);
  }
}

@media (min-width: 1024px) {
  :root {
    /* Dnd Spacing */
    /* --first-section-padding-top: 160px; */
    --dnd-section-bottom-margin: var(--spacing-24x);
    /* --dnd-section-bg-padding: 120px;  */
    
    /* Misc */
    --scroll-margin-top: var(--spacing-30x);
  }
}

/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     
:root,
:host {
  --yellow-50:         #FEFBF4;
  --yellow-base:       #EAAB2D;

  --dark-blue:         #0D2437;
  --light-periwinkle:  #CCCEDF;
  --cultured:          #F6F6F9;
  --ceil:              #98A4CC;

  --blue-50:           #D6E9F7;
  --blue-base:         #3393D6;
  --blue-600:          #22628F;

  --white:             #FFFFFF;

  --light-gray:        #F8F9FF;
  --bright-gray:       #E5EFF6;
  --dark-gray:         #656D88;

  --background-blue:   #F2F9FC;

  --border-base:       var(--light-periwinkle);
  --border-dark:       var(--text-base);

  --text-base:         var(--dark-blue);
  --text-light:        var(--dark-gray);
  
  --form-error:        #D63633;
  --form-placeholders: var(--text-light);
}

/* ========================================================================== */
/*  3. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */


:root {
  /* ========================================================================== */
  /*  base                                                                      */
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Sora', sans-serif;

  /* ========================================================================== */
  /*  Font Sizing                                                               */
  --rem-base-px: 18px;
  --base-line-height: 1.4;
  --secondary-line-height: 1.2; 

  /* update multiplier to change responsive sizing, unless design has specific sizing */
  --h1-font-size:         clamp(2.03rem, calc(1.260rem + 2.158vw), 2.99rem);  /* 36px - 54px */
  --h2-font-size:         clamp(1.80rem, calc(1.253rem + 1.543vw), 2.49rem);   /* 32px - 45px */
  --h3-font-size:         clamp(1.60rem, calc(1.224rem + 1.062vw), 2.07rem); /* 29px - 37px */
  --h4-font-size:         clamp(1.42rem, calc(1.181rem + 0.684vw), 1.73rem);  /* 26px - 31px */
  --h5-font-size:         clamp(1.27rem, calc(1.127rem + 0.391vw), 1.44rem);   /* 23px - 26px */
  --h6-font-size:         clamp(1.13rem, calc(1.065rem + 0.169vw), 1.20rem);       /* 20px - 22px */
  --preheader-font-size:  0.8333rem;  /* 15px */
  --text-sm:              0.8333rem;  /* 15px */
  --text-xs:              0.6667rem;  /* 12px */
}

/* ========================================================================== */
/*  4. Global Styles                                              #styles     */
/*=========================================================================== */

:root {
  /* General */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-round: 150px;
  --transition: all 300ms cubic-bezier(.4,0,.2,1);
}

/* ========================================================================== */
/*  5. Buttons                                                                */
/* ========================================================================== */
:root {
  --btn-font-size: var(--rem-base-px);
  --btn-font-weight: 600;
  --btn-line-height: 1;
  --btn-text-decoration: none;
  --btn-text-decoration-color: transparent;
  --btn-hover-text-decoration-color: transparent;
  --btn-text-color: var(--text-base);
  --btn-width: fit-content;
  --btn-padding: var(--spacing-4x) var(--spacing-6x);
  --btn-bg-color: transparent;
  --btn-border-color: transparent;
  --btn-hover-text-color: var(--white);
  --btn-hover-bg-color: transparent;
  --btn-hover-border-color: transparent;
  --btn-border-radius: var(--radius-round);
  --btn-transition: var(--transition);

  @media (max-width: 820px) {
    --btn-width: stretch;
  }
}

/* ========================================================================== */
/*  5. FORMS                                                #form             */
/* ========================================================================== */  

form, 
.form, 
form :before, 
.form :before, 
form :after,
.form :after,
div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  --form-font-family:  var(--body-font);

  /* ========================================================================== */
  /*  Labels                                                                    */
  --legend-font-size:   0.9375rem;

  --label-font-family:  var(--form-font-family);
  --label-font-size:    0.7778rem;
  --label-font-weight:  700;
  --label-line-height:  1;
  --label-color:        var(--text-base);
  --label-margin-b:     8px;

  --label-error-font-size:          var(--text-xs);
  --label-error-font-weight:        400;
  --label-error-line-height:        1;
  --label-error-color:              var(--form-error);
  --label-error-image:              url('');


  /* ========================================================================== */
  /*  Text Input                                                                */
  --input-font-size:                0.8889rem;
  --input-font-weight:              400;
  --input-line-height:              1;
  --input-color-text:               var(--text-base);
  --input-color-text-placeholder:   var(--form-placeholders);
  --input-color-required:           var(--blue-base);
  --input-color-bg:                 var(--white);
  --input-border-width:             1px;
  --input-border-style:             solid;
  --input-border-color:             var(--border-dark);
  --input-border:                   var(--input-border-width) var(--input-border-style) var(--input-border-color);
  --input-border-radius:            var(--radius-sm);
  --input-padding:                  var(--spacing-4x);
  --input-spacing-y:                var(--spacing-6x);
  --input-gap:                      var(--spacing-4x);
  --input-transition:               var(--transition);
  --input-color-outline:            transparent;

  /* States */
  --input-error-color-border:       var(--form-error);
  --input-error-color-outline:      transparent;
  --input-focus-color-border:       var(--yellow-base);
  --input-disabled-color-text:      var();
  --input-disabled-color-border:    var();
  --input-disabled-color-bg:        var();

  --textarea-height:                113px; 

  /* ========================================================================== */
  /*  Checkbox                                                                  */
  --checkbox-font-family:       var(--form-font-family);
  --checkbox-font-size:         var(--text-sm);
  --checkbox-font-weight:       400;
  --checkbox-line-height:       20px;
  --checkbox-color-text:        var(--text-light);
  --checkbox-dimensions:        20px;
  --checkbox-image-dimensions:  18px;
  --checkbox-border-width:      1px; 
  --checkbox-border-style:      solid;
  --checkbox-border-color:      var(--border-dark);
  --checkbox-border:            var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  --checkbox-border-radius:     var(--radius-xs);
  --checkbox-color-bg:          var(--white);

  /* States */
  --checkbox-hover-image:                 url();
  --checkbox-hover-color-border:          var(--yellow-base);
  --checkbox-checked-image:               url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iNDc5YTdhNjIiPgogICAgPHBhdGggaWQ9Ijc0MjE5YTlkIiBkPSJNMTMuODQyNyA2LjE1NzMzQzE0LjA1MjQgNi4zNjcxMSAxNC4wNTI0IDYuNzA2MzIgMTMuODQyNyA2LjkxMzg2TDcuOTUxMTMgMTIuODA3NkM3Ljc0MTM1IDEzLjAxNzQgNy40MDIxNCAxMy4wMTc0IDcuMTk0NiAxMi44MDc2TDQuMTU3MzMgOS43NzI2QzMuOTQ3NTYgOS41NjI4MiAzLjk0NzU2IDkuMjIzNjEgNC4xNTczMyA5LjAxNjA3QzQuMzY3MTEgOC44MDg1MyA0LjcwNjMyIDguODA2MjkgNC45MTM4NiA5LjAxNjA3TDcuNTY5NTIgMTEuNjcxN0wxMy4wODM5IDYuMTU3MzNDMTMuMjkzNyA1Ljk0NzU2IDEzLjYzMjkgNS45NDc1NiAxMy44NDA0IDYuMTU3MzNIMTMuODQyN1oiIGZpbGw9IiMwRDI0MzciPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==); /* SVG base64 format */
  --checkbox-checked-color-bg:            var(--yellow-base);
  --checkbox-checked-color-image-bg:      var(--text-base);
  --checkbox-checked-color-border:        var(--yellow-base);
  --checkbox-checked-hover-color-bg:      var(--yellow-base);
  --checkbox-checked-hover-color-border:  var(--yellow-base);
  /* --checkbox-error-color-border:          var();
  --checkbox-disabled-color-text:         var();
  --checkbox-disabled-color-bg:           var();
  --checkbox-disabled-color-border:       var();
  --checkbox-disabled-checked-image:      url();
  --checkbox-disabled-checked-color-bg:   var(); */
  
  
  /* ========================================================================== */
  /*  Radio                                                                     */
  --radio-font-family:        var(--form-font-family);
  --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:   14px;
  --radio-color-bg:           var(--white);
  --radio-border-width:      1px;
  --radio-border-style:      solid;
  --radio-border-color:      var(--border-dark);
  --radio-border:            var(--radio-border-width) var(--radio-border-style) var(--radio-border-color);
  --radio-border-radius:      var(--radius-round);

  /* States */
  --radio-hover-color-inner:              var(--white);
  --radio-hover-border:                   1px solid var(--yellow-base);
  --radio-checked-color-inner:            var(--yellow-base);
  --radio-checked-color-bg:               var(--white);
  --radio-checked-color-border:           1px solid var(--yellow-base);
  --radio-checked-hover-color-border:     1px solid var(--yellow-base);
  /* --radio-error-color-border:             var();
  --radio-disabled-color-text:            var();
  --radio-disabled-color-bg:              var();
  --radio-disabled-color-border:          1px solid var();
  --radio-disabled-color-inner:           var();
  --radio-disabled-checked-color-bg:      var();
  --radio-disabled-checked-color-border:  2px solid var();
  --radio-disabled-checked-color-inner:   var(); */

  /* ========================================================================== */
  /*  Select                                                                    */
  --select-icon:          url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEzIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggaWQ9IjJkZDRlYWJhIiBkPSJNMCAwLjAwNTU1MDg3TDEzIDBMNi41MDc3MyA3TDAgMC4wMDU1NTA4N1oiIGZpbGw9IiNFQUFCMkQiPjwvcGF0aD4KPC9zdmc+);

  /* ========================================================================== */
  /*  datepicker                                                                */
  /* --date-input-icon:                    url();
  --date-input-icon-height:             24px;
  --date-input-icon-width:              20px;
  --date-input-margin-right:            20px;

  --date-picker-font:                   var(--body-font);
  --date-picker-color:                  var();
  --date-picker-border:                 none;
  --date-picker-border-radius:          var(--radius-md);

  --date-picker-number-hover-color:     var();
  --date-picker-number-hover-bg:        var();
  --date-picker-number-today-color:     var();
  --date-picker-number-selected-color:  var();
  --date-picker-number-selected-bg:     var(); */
}


/* ========================================================================== */
/*  New Form Variables                                                        */
div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  --hsf-global__font-family: var(--form-font-family);
  --hsf-row__horizontal-spacing: var(--input-gap);
  --hsf-row__vertical-spacing: var(--input-spacing-y);
  --hsf-module__vertical-spacing: var(--spacing-2x);

  --hsf-erroralert__font-family: var(--form-font-family);
  --hsf-erroralert__font-size: var(--label-error-font-size);
  --hsf-erroralert__color: var(--form-error);

  --hsf-richtext__color: var(--label-color);

  --hsf-background__background-color: none;
  --hsf-background__background-image: none;
  --hsf-background__background-size: none;
  --hsf-background__background-position: none;
  --hsf-background__background-repeat: none;
  --hsf-background__border-style: none;
  --hsf-background__border-color: transparent;
  --hsf-background__border-radius: 0;
  --hsf-background__border-width: 0;
  --hsf-background__padding: 0;

  /* --hsf-field-label__font-family: var(--label-font-family);
  --hsf-field-label__font-size: var(--label-font-size); */
  --hsf-field-input__color: var(--input-color-text);
  --hsf-field-label-requiredindicator__color: var(--input-color-required);
  --hsf-field-input__font-size: var(--input-font-size);
  --hsf-field-input__background-color: var(--input-color-bg);
  --hsf-field-input__placeholder-color: var(--input-color-text-placeholder);
  --hsf-field-input__border-width: var(--input-border-width);
  --hsf-field-input__border-style: var(--input-border-style);
  --hsf-field-input__border-color: var(--input-border-color);
  --hsf-field-input__border-radius: var(--input-border-radius);
  --hsf-field-input__padding: var(--input-padding);

  --hsf-field-checkbox__padding: 0 !important;
  --hsf-field-checkbox__color: var(--checkbox-color-bg);
  --hsf-field-checkbox__background-color: var(--checkbox-color-bg);
  --hsf-field-checkbox__border-width: var(--checkbox-border-width);
  --hsf-field-checkbox__border-style: var(--checkbox-border-style);
  --hsf-field-checkbox__border-color: var(--checkbox-border-color);

  --hsf-field-radio__padding: 0 !important;
  --hsf-field-radio__border-width: var(--radio-border-width);
  --hsf-field-radio__border-style: var(--radio-border-style);
  --hsf-field-radio__border-color: var(--radio-border-color);

  --hsf-field-dropdown-options__border-radius: var(--radius-md);

  --hsf-navigationrow-buttons-single__justify-content: start;
}

/* ========================================================================== */
/*  Form Color Variants                                                       */
.form--style-dark form, 
.form--style-dark form :before, 
.form--style-dark form :after,
.form--bg-dark_blue .div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  --hsf-field-input__border-width: 2px;
  --hsf-field-input__border-color: var(--white);
  --hsf-field-checkbox__color: var(--blue-base);
  --hsf-field-checkbox__background-color: var(--white);
  --hsf-field-checkbox__border-color: var(--white);

  --hsf-field-radio__border-color: var(--white);
}
*, *: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: 0%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */
.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--dnd-row-gap);
}


  .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: 820px) {
  .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));
    }
  
}
/* container */
.dnd-section {
  overflow-x: clip;
  margin: 0 0 var(--dnd-section-bottom-margin);
}

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

.body-wrapper {
  width: 100%;
}

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

.dnd-section > .row-fluid:has(.module-wrapper--full-width) {
  max-width: 100%;
  padding-inline: 0;
}

/* set custom padding for fixed header */
.dnd-section:has([class*="section-background"]) {
  padding-block: var(--dnd-section-bg-padding);
}

.dnd-section:first-child {
  padding-top: var(--first-section-padding-top);
}

.dnd-section:last-child {
  margin-bottom: var(--spacing-8x);
}

.dnd-section:last-child:has([class*="section-background"]) {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  /* .dnd-section .row-fluid > .dnd-column:has(+ .dnd-column) {
    margin-bottom: var(--dnd-section-bottom-margin);
  } */

  .dnd-column:has(.hs-horizontal-spacer) {
    margin-bottom: 0 !important;
  }

  .dnd-column:has(.custom-text-wrapper) + .dnd-column:has(.custom-img-wrapper) {
    order: 1;
    
    .dnd-section:first-child & {
      order: unset;
    }
  }

  .dnd-column:has(+ .dnd-column .custom-img-wrapper) {
    order: 2;

    .dnd-section:first-child & {
      order: unset;
    }
  }
}


@media (min-width: 640px) {
  .dnd-section[class*="force-full-width-section"] .dnd-column {
    padding: 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;
  }
}

.icon-wrapper,
.icon-wrapper svg {
  display: block;
  height: fit-content;
  width: fit-content;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ========================================================================== */
/* Slider                                                                     */
/* ========================================================================== */
.slider-container {
  position: relative;
}

.swiper-button-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-3x);
}

.slider-container :is(.swiper-button-prev, .swiper-button-next) {
  flex-shrink: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;   
  height: 48px;
  width: 48px;
  border: 1px solid var(--navy-base);
  border-radius: var(--radius-round);
  background: var(--navy-base);
  transition: var(--transition);
  margin: 0 !important;

  & svg path {
    fill: var(--yellow-base);
    transition: var(--transition);
  }

  &.swiper-button-disabled {
    opacity: .5;
  }

  &:after {
    display: none;
  }

  &:not(.swiper-button-disabled):hover {
    background: var(--yellow-base);

    & svg path {
      fill: var(--navy-base);
    }
  }
}

/* ========================================================================== */
/*   Pagination                                                               */
.slider-container .swiper-pagination {
  display: none;
  position: static;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spacing-6x);

  @media (max-width: 820px) {
    display: flex;
  }  
}

.slider-container :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets) 
.swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  --swiper-pagination-bullet-inactive-color: var(--gray-100);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--yellow-base);
  transition: var(--transition);
}
html {
  font-family: var(--body-font);
  font-size: var(--rem-base-px);
  font-weight: 400;
  line-height: var(--base-line-height);
  color: var(--text-base);
  overflow-wrap: break-word;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.heading-display-1,
.heading-display-2,
.heading-display-3,
.heading-display-4,
.heading-display-5,
.heading-display-6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: var(--secondary-line-height);
  text-wrap: balance;
  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);
}

/* Paragraphs */
p {
  font-size: var(--rem-base-px);
  margin: 0;
}

/* Anchors */
a {
  --anchor-color: var(--blue-base);
  cursor: pointer;
  font-size: inherit;
  color: var(--anchor-color);
  text-decoration: underline;
  text-decoration-color: var(--anchor-color);
  text-underline-offset: 3px;
  transition: var(--transition);
  
  &:hover {
    --anchor-color: var(--blue-600);
  }
}


/* Preheaders */
.preheader {
  display: block;
  font-family: var(--heading-font);
  font-size: var(--preheader-font-size);
  font-weight: 600;
  color: var(--blue-base);
  text-transform: uppercase;

  &.preheader--yellow {
    color: var(--yellow-base);
  }
}

/* Lists */
ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  text-align: start;

  &:is(.no-list-styling, .inputs-list) {
    margin: 0;
  }

  li & {
    margin: 0;
    padding: 0;
    margin-top: 8px;
  }
}

ol {
  list-style: none !important;
  counter-reset: orderedlist;
  margin: 0;
  padding: 0;
  text-align: start;

  li & {
    margin: 0;
    padding: 0;
    margin-top: 8px;
  }
}

li {
  --list-font-size: var(--rem-base-px);
  --list-line-height: var(--base-line-height);
  font-size: var(--list-font-size);
  font-weight: 400;
  line-height: var(--list-line-height);
  margin-bottom: var(--spacing-2x);

  &:last-child {
    margin-bottom: 0;
  }
  
  ul > & {
    position: relative;
    padding-left: 34px;

    &:before {
      content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iODQ1MTg1MzciPgogICAgPHBhdGggaWQ9IjY1NTQxOWZjIiBkPSJNMTAuOTk5OSAyMC4xNjY3QzE2LjA2MjUgMjAuMTY2NyAyMC4xNjY2IDE2LjA2MjYgMjAuMTY2NiAxMUMyMC4xNjY2IDUuOTM3NCAxNi4wNjI1IDEuODMzMzQgMTAuOTk5OSAxLjgzMzM0QzUuOTM3MzEgMS44MzMzNCAxLjgzMzI1IDUuOTM3NCAxLjgzMzI1IDExQzEuODMzMjUgMTYuMDYyNiA1LjkzNzMxIDIwLjE2NjcgMTAuOTk5OSAyMC4xNjY3WiIgZmlsbD0iI0VBQUIyRCI+PC9wYXRoPgogICAgPHBhdGggaWQ9IjBmNzBiNmM3IiBkPSJNNy40NjQzOCAxMC44MzAxQzcuMjk1NiAxMC42NjEzIDcuMDY2NjggMTAuNTY2NCA2LjgyNzk4IDEwLjU2NjRDNi41ODkyOSAxMC41NjY0IDYuMzYwMzcgMTAuNjYxMyA2LjE5MTU4IDEwLjgzMDFDNi4wMjI4IDEwLjk5ODggNS45Mjc5OCAxMS4yMjc4IDUuOTI3OTggMTEuNDY2NUM1LjkyNzk4IDExLjcwNTEgNi4wMjI4IDExLjkzNDEgNi4xOTE1OCAxMi4xMDI5TDguOTQ5MzggMTQuODYwNkM5LjM3MzY1IDE1LjI4NDggOS43OTc5MiAxNS4yODQ4IDEwLjIyMjIgMTQuODYwNkwxNS44MDgzIDkuMjc0MzVDMTUuOTc3MSA5LjEwNTU3IDE2LjA3MTkgOC44NzY2NSAxNi4wNzE5IDguNjM3OTVDMTYuMDcxOSA4LjM5OTI1IDE1Ljk3NzEgOC4xNzAzMyAxNS44MDgzIDguMDAxNTVDMTUuNjM5NSA3LjgzMjc3IDE1LjQxMDYgNy43Mzc5NSAxNS4xNzE5IDcuNzM3OTVDMTQuOTMzMiA3LjczNzk1IDE0LjcwNDMgNy44MzI3NyAxNC41MzU1IDguMDAxNTVMOS41ODU3OCAxMi45NTE0TDcuNDY0MzggMTAuODMwMVoiIGZpbGw9IiMwRDI0MzciPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==);
      position: absolute;
      inset: 0 auto auto 0;
      line-height: 0;
      height: 22px;
      width: 22px;
    }
  }

  .list--sm & {
    --list-font-size: var(--text-sm);
    --list-line-height: var(--secondary-line-height);
  }

  :is(ul.list--sm, .list--sm ul) & {
    padding-left: 32px;

    &:before {
      content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iNmU2NmZiOWMiPgogICAgPHBhdGggaWQ9ImEwNTM1YmY2IiBkPSJNMTAuMDAwMSAxNi42NjY3QzE0LjYwMjUgMTYuNjY2NyAxOC4zMzM0IDEyLjkzNTcgMTguMzMzNCA4LjMzMzMzQzE4LjMzMzQgMy43MzA5NiAxNC42MDI1IDAgMTAuMDAwMSAwQzUuMzk3NzEgMCAxLjY2Njc1IDMuNzMwOTYgMS42NjY3NSA4LjMzMzMzQzEuNjY2NzUgMTIuOTM1NyA1LjM5NzcxIDE2LjY2NjcgMTAuMDAwMSAxNi42NjY3WiIgZmlsbD0iI0VBQUIyRCI+PC9wYXRoPgogICAgPHBhdGggaWQ9IjA4N2U1MjIwIiBkPSJNNi43ODU4OSA3LjgxMTAxQzYuNjMyNDUgNy42NTc1NyA2LjQyNDM0IDcuNTcxMzYgNi4yMDczNSA3LjU3MTM2QzUuOTkwMzUgNy41NzEzNiA1Ljc4MjI0IDcuNjU3NTcgNS42Mjg4IDcuODExMDFDNS40NzUzNiA3Ljk2NDQ0IDUuMzg5MTYgOC4xNzI1NSA1LjM4OTE2IDguMzg5NTVDNS4zODkxNiA4LjYwNjU1IDUuNDc1MzYgOC44MTQ2NiA1LjYyODggOC45NjgxTDguMTM1ODkgMTEuNDc1MUM4LjUyMTU5IDExLjg2MDggOC45MDcyOSAxMS44NjA4IDkuMjkyOTggMTEuNDc1MUwxNC4zNzEzIDYuMzk2NzNDMTQuNTI0NyA2LjI0MzI5IDE0LjYxMDkgNi4wMzUxOCAxNC42MTA5IDUuODE4MTlDMTQuNjEwOSA1LjYwMTE5IDE0LjUyNDcgNS4zOTMwOCAxNC4zNzEzIDUuMjM5NjRDMTQuMjE3OCA1LjA4NjIgMTQuMDA5NyA1IDEzLjc5MjcgNUMxMy41NzU3IDUgMTMuMzY3NiA1LjA4NjIgMTMuMjE0MiA1LjIzOTY0TDguNzE0NDQgOS43Mzk0Nkw2Ljc4NTg5IDcuODExMDFaIiBmaWxsPSIjMEQyNDM3Ij48L3BhdGg+CiAgPC9nPgo8L3N2Zz4=);
      height: 20px;
      width: 20px;
    }
  }

  :is(ul.list-reset, .list-reset ul) & {
    padding-left: 19px;

    &:before {
      content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDcgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgaWQ9IjkzYzgzNjM4Ij4KICAgIDxwYXRoIGlkPSI4NmU2MTViZiIgZD0iTTMuNSA2Ljk1NTk5QzIuNTcxNzQgNi45NTU5OSAxLjY4MTUgNy4zMjQ3NCAxLjAyNTEzIDcuOTgxMTJDMC4zNjg3NDkgOC42Mzc1IDAgOS41Mjc3NCAwIDEwLjQ1NkMwIDExLjM4NDMgMC4zNjg3NDkgMTIuMjc0NSAxLjAyNTEzIDEyLjkzMDlDMS42ODE1IDEzLjU4NzIgMi41NzE3NCAxMy45NTYgMy41IDEzLjk1NkM0LjQyODI2IDEzLjk1NiA1LjMxODUgMTMuNTg3MiA1Ljk3NDg3IDEyLjkzMDlDNi42MzEyNSAxMi4yNzQ1IDcgMTEuMzg0MyA3IDEwLjQ1NkM3IDkuNTI3NzQgNi42MzEyNSA4LjYzNzUgNS45NzQ4NyA3Ljk4MTEyQzUuMzE4NSA3LjMyNDc0IDQuNDI4MjYgNi45NTU5OSAzLjUgNi45NTU5OVoiIGZpbGw9IiNFQUFCMkQiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==);
      height: 15px;
      width: 7px;
    }
  }

  :is(ul.list-reset.list--gray, .list-reset.list--gray ul) &:before {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDcgMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgaWQ9IjkzYzgzNjM4Ij4KICAgIDxwYXRoIGlkPSI4NmU2MTViZiIgZD0iTTMuNSA2Ljk1NTk5QzIuNTcxNzQgNi45NTU5OSAxLjY4MTUgNy4zMjQ3NCAxLjAyNTEzIDcuOTgxMTJDMC4zNjg3NDkgOC42Mzc1IDAgOS41Mjc3NCAwIDEwLjQ1NkMwIDExLjM4NDMgMC4zNjg3NDkgMTIuMjc0NSAxLjAyNTEzIDEyLjkzMDlDMS42ODE1IDEzLjU4NzIgMi41NzE3NCAxMy45NTYgMy41IDEzLjk1NkM0LjQyODI2IDEzLjk1NiA1LjMxODUgMTMuNTg3MiA1Ljk3NDg3IDEyLjkzMDlDNi42MzEyNSAxMi4yNzQ1IDcgMTEuMzg0MyA3IDEwLjQ1NkM3IDkuNTI3NzQgNi42MzEyNSA4LjYzNzUgNS45NzQ4NyA3Ljk4MTEyQzUuMzE4NSA3LjMyNDc0IDQuNDI4MjYgNi45NTU5OSAzLjUgNi45NTU5OVoiIGZpbGw9IiM2NTZEODgiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==);
  }

  :is(ul.list-reset.list--sm, .list-reset.list--sm ul) &:before {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgaWQ9IjkzYzgzNjM4Ij4KICAgIDxwYXRoIGlkPSI4NmU2MTViZiIgZD0iTTMuNSA1QzIuNTcxNzQgNSAxLjY4MTUgNS4zNjg3NSAxLjAyNTEzIDYuMDI1MTNDMC4zNjg3NDkgNi42ODE1IDAgNy41NzE3NCAwIDguNUMwIDkuNDI4MjYgMC4zNjg3NDkgMTAuMzE4NSAxLjAyNTEzIDEwLjk3NDlDMS42ODE1IDExLjYzMTMgMi41NzE3NCAxMiAzLjUgMTJDNC40MjgyNiAxMiA1LjMxODUgMTEuNjMxMyA1Ljk3NDg3IDEwLjk3NDlDNi42MzEyNSAxMC4zMTg1IDcgOS40MjgyNiA3IDguNUM3IDcuNTcxNzQgNi42MzEyNSA2LjY4MTUgNS45NzQ4NyA2LjAyNTEzQzUuMzE4NSA1LjM2ODc1IDQuNDI4MjYgNSAzLjUgNVoiIGZpbGw9IiNFQUFCMkQiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==);
    height: 12px;
    width: 7px;
  }
    
  :is(ul.list-reset.list--gray.list--sm, .list-reset.list--gray.list--sm ul) &:before {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDcgMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGcgaWQ9IjkzYzgzNjM4Ij4KICAgIDxwYXRoIGlkPSI4NmU2MTViZiIgZD0iTTMuNSA1QzIuNTcxNzQgNSAxLjY4MTUgNS4zNjg3NSAxLjAyNTEzIDYuMDI1MTNDMC4zNjg3NDkgNi42ODE1IDAgNy41NzE3NCAwIDguNUMwIDkuNDI4MjYgMC4zNjg3NDkgMTAuMzE4NSAxLjAyNTEzIDEwLjk3NDlDMS42ODE1IDExLjYzMTMgMi41NzE3NCAxMiAzLjUgMTJDNC40MjgyNiAxMiA1LjMxODUgMTEuNjMxMyA1Ljk3NDg3IDEwLjk3NDlDNi42MzEyNSAxMC4zMTg1IDcgOS40MjgyNiA3IDguNUM3IDcuNTcxNzQgNi42MzEyNSA2LjY4MTUgNS45NzQ4NyA2LjAyNTEzQzUuMzE4NSA1LjM2ODc1IDQuNDI4MjYgNSAzLjUgNVoiIGZpbGw9IiM2NTZEODgiPjwvcGF0aD4KICA8L2c+Cjwvc3ZnPg==);
  }

  ul:is(.no-list-styling, .inputs-list) & {
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0;

    &:before {
      display: none;
    }
  }

  ol > & {
    position: relative;
    padding-left: 24px;
  }

  ol > &:before {
    counter-increment: orderedlist;
    content: counter(orderedlist) '.';
    position: absolute;
    inset: 0 auto auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body-font);
    font-size: var(--list-font-size);
    line-height: var(--list-line-height);
    color: inherit; 
    width: auto;
  }
}

:is(.hs-tools-actions, .hubspot-disable-focus-styles) li {
  &:before {
    display: none;
  }
}

/* Code blocks */
pre {
  overflow: auto;
  margin: 0;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0;
  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;
}

/* Figcaptions */
figcaption {
  font-size: 0.875rem;
}

/* ========================================================================== */
/*  RICH TEXT STYLING                                                         */
.custom-text-wrapper,
.custom-text-wrapper__rich-text {
  display: flex;
  flex-direction: column;
}

:is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text) :is(.preheader, p, ul, ol):has(+ *) {
  margin-bottom: var(--spacing-4x);
}

:is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text) :is(h1, h2, h3, h4, h5, h6):has(+ *) {
  margin-bottom: var(--spacing-5x);
}
.form {
  --form-heading-color: var(--text-base);
  --form-description-color: var(--text-light);
  
  &.form--bg {
    padding: var(--spacing-12x);
    border-radius: var(--radius-md);
  
    &.form--bg-white {
      --form-heading-color: var(--text-base);
      --form-description-color: var(--text-light);
      background: var(--white);
      border: 1px solid var(--border-base);
    }
  
    @media (max-width: 640px) {
      padding: var(--spacing-8x);
    }
  }
}


.form__heading {
  color: var(--form-heading-color);
  margin-bottom: var(--spacing-4x); 

  .form:has(.submitted-message, .hsfc-PostSubmit) & {
    display: none;
  }
}

.form__description {
  color: var(--form-description-color);
  margin-bottom: var(--spacing-8x);

  .form:has(.submitted-message, .hsfc-PostSubmit) & {
    display: none;
  }
}

/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--input-spacing-y);
}

/* ========================================================================== */
/*  Labels                                                                    */
:is(.form, form) label {
  margin-bottom: var(--label-margin-b);
}

:is(.form, form) label, :is(.form, form) label span {
  display: flex;
  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                                                                 */
:is(.form, form) legend {
  font-size: var(--legend-font-size);
}

/* ========================================================================== */
/*  Fieldsets                                                                 */
:is(.form, form) fieldset {
  max-width: 100% !important;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

:is(.form, form) fieldset.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr;
}

:is(.form, form) fieldset:is(.form-columns-1, .form-columns-2) .hs-form-field {
  width: 100% !important;
  float: none !important;
}

:is(.form, form) fieldset:is(.form-columns-1, .form-columns-2) .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  :is(.form, form) fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--input-gap);
  }
}

/* ========================================================================== */
/*  Inputs                                                                    */
:is(.form, 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: none;
  outline-offset: 0;
  transition: var(--input-transition);
}

:is(.form, form) :is(input, textarea, select):is(:focus) {
  border-color: var(--input-focus-color-border);
  outline-color: var(--input-color-outline);
}

:is(.form, 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);
}

:is(.form, form) :is(
  select, 
  select option, 
  input:is(
    [type=text], 
    [type=search], 
    [type=email],
    [type=tel]))
{
  height: 50px;
}

:is(.form, form) textarea {
  height: var(--textarea-height);
}

:is(.form, form) .hs_submit input[type=submit] {
  display: block;
}

:is(.form, form) input::-webkit-input-placeholder, 
:is(.form, form) input::placeholder, 
:is(.form, form) select.is-placeholder, 
:is(.form, form) select option:disabled {
  font-family: var(--form-font-family);
  font-weight: 400;
  line-height: 1 !important;
  color: var(--input-color-text-placeholder);
}

:is(.form, form) input:placeholder:disabled {
  color: var(--input-disabled-color-text); 
}

/* ========================================================================== */
/*  Form List Items                                                           */  
:is(.form, form) .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

:is(.form, form) .inputs-list > li {
  display: block;
  margin: 0 0 12px;
}

:is(.form, form) .inputs-list :is(input, span) {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
:is(.form, form) li:has(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  display: block;
  font-size: var(--checkbox-font-size);
  font-weight: var(--checkbox-font-weight);
  line-height: 1;
  margin-bottom: 0 !important;
}

:is(.form, form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

:is(.form, form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) span,
div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) .hsfc-FieldLabel:has(> .hsfc-CheckboxInput) 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;
}

:is(.form, form) .hs-form-checkbox-display:has(input[type=checkbox]:disabled) span {
  color: var(--checkbox-disabled-color-text);
}

:is(.form, 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;
  overflow: clip;
}

:is(.form, form) .inputs-list.error input[type="checkbox"] {
  border-color: var(--checkbox-error-color-border);
}

:is(.form, form) input[type="checkbox"]:checked {
  background-color: var(--checkbox-checked-color-bg);
  border-color: var(--checkbox-checked-color-border);
}

:is(.form, form) input[type="checkbox"]:disabled,
:is(.form, form) input[type="checkbox"]:disabled:hover {
  background-color: var(--checkbox-disabled-color-bg);
  border-color: var(--checkbox-disabled-color-border);
}

:is(.form, form) input[type="checkbox"]:disabled:checked,
:is(.form, form) input[type="checkbox"]:disabled:checked:hover {
  background-color: var(--checkbox-disabled-checked-color-bg);
  border-color: var(--checkbox-disabled-color-border);
}

:is(.form, form) input[type="checkbox"]:after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  mask-repeat: no-repeat;
  mask-position: center;
  background: var(--checkbox-checked-color-bg);
  transition: var(--input-transition);
}

:is(.form, form) input[type="checkbox"]:checked:after {
  mask-image: var(--checkbox-checked-image);
  mask-size: 100%;
  opacity: 1;
}

:is(.form, form) input[type="checkbox"]:disabled:after {
  opacity: 0;
}

div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  & .hsfc-CheckboxFieldGroup__Options label {
    cursor: pointer;
    display: inline-flex;
    align-items: flex-start;

    div:has(> &) {
      display: flex;
    }

    & > span {
      display: block;
    }
  }

  & .hsfc-CheckboxInput {
    border-radius: var(--checkbox-border-radius);
    left: unset;
    transition: var(--input-transition);

    &:is(:hover, :active, :focus) {
      box-shadow: none; 
    }

    &:checked:after {
      mask-image: var(--checkbox-checked-image);
      mask-size: 100%;
      opacity: 1;
      background-color: var(--checkbox-checked-color-image-bg);
    }
  }
}

/* Hover States */
@media (hover: hover) {
  :is(.form, form) input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled) {
    border-color: var(--checkbox-hover-color-border);
  }

  :is(.form, 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);
  }
}

/* ========================================================================== */
/*  Inputs - Radio                                                            */
:is(.form, form) li:has(.hs-form-radio-display) {
  display: block;
  font-size: var(--radio-font-size);
  font-weight: var(--radio-font-weight);
  line-height: 1;
  margin-bottom: 0 !important;
}

:is(.form, form) .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

:is(.form, form) .hs-form-radio-display span,
div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) .hsfc-FieldLabel:has(> .hsfc-RadioInput) 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;
}

:is(.form, form) .hs-form-radio-display:has(input[type=radio]:disabled) span {
  color: var(--radio-disabled-color-text);
}

:is(.form, 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;
}

:is(.form, form) .inputs-list.error input[type="radio"] {
  border-color: var(--radio-error-color-border);
}

:is(.form, form) input[type="radio"]:checked {
  border: var(--radio-checked-color-border);
  background: var(--radio-checked-color-bg);
}

:is(.form, form) input[type="radio"]:disabled,
:is(.form, form) input[type="radio"]:disabled:hover {
  background-color: var(--radio-disabled-color-bg);
  border: var(--radio-disabled-color-border);
}

:is(.form, form) input[type="radio"]:disabled:checked,
:is(.form, form) input[type="radio"]:disabled:checked:hover {
  background-color: var(--radio-disabled-checked-color-bg);
  border: var(--radio-disabled-checked-color-border);
} 

:is(.form, 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);
}

:is(.form, form) input[type="radio"]:checked:after {
  background-color: var(--radio-checked-color-inner);
}

:is(.form, form) input[type="radio"]:disabled:after {
  background-color: var(--radio-disabled-color-inner);
}

:is(.form, form) input[type="radio"]:disabled:checked:after {
  background-color: var(--radio-disabled-checked-color-inner);
}

div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  & .hsfc-RadioFieldGroup__Options label {
    cursor: pointer;
    display: inline-flex;
    align-items: flex-start;

    div:has(> &) {
      display: flex;
    }

    & > span {
      display: block;
    }
  }

  & .hsfc-RadioInput {
    transition: all .2s ease;
    left: auto;

    &:is(:hover, :active, :focus) {
      box-shadow: none; 
    }

    &:after {
      position: absolute;
      inset: 50% auto auto 50%;
      height: var(--radio-inner-dimensions);
      width: var(--radio-inner-dimensions);
      mask-image: none;
      mask-size: 100%;
      transform: translate(-50%, -50%);
      opacity: 1;
    }

    &:checked:after {
      background: var(--radio-checked-color-inner);
    }
  }
}

/* Hover States */
@media (hover: hover) {
  :is(.form, form) input[type="radio"]:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-hover-border);
  }

  :is(.form, form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-checked-hover-color-border);
  }

  :is(.form, form) input[type="radio"]:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-hover-color-inner);
  }

  :is(.form, form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-checked-color-inner);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
:is(.form, form) .hs-fieldtype-select .input {
  position: relative;
}

:is(.form, form) select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

:is(.form, 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;
}

:is(.form, form) .hs-fieldtype-select .input:has(select:focus):after {
  transform: translateY(-50%) rotate(-180deg);
}

div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  & .hsfc-PhoneInput__FlagAndCaret {
    padding-block: 0;
  }

  & .hsfc-DropdownInput__Caret,
  & .hsfc-PhoneInput__FlagAndCaret__Caret {
    border: none;
    transition: all 200ms ease;

    & span {
      display: none;
    }

    &:before {
      content: var(--select-icon);
      line-height: 0;
      height: 7px;
      width: 13px;
    }
  }

  & .hsfc-DropdownOptions {
    box-shadow: var(--box-shadow-md);
  }

  & .hsfc-DropdownOptions__Search {
    display: none;
  }

  & .hsfc-DropdownOptions__List {
    padding-block: var(--spacing-2x);
  }

  & li.hsfc-DropdownOptions__List__ListItem {
    font-size: var(--input-font-size);
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    margin: 0;
    padding: var(--spacing-2x) var(--spacing-6x);
    transition: var(--input-transition);

    &.hsfc-DropdownOptions__List__ListItem--selected {
      filter: unset;
      color: var(--blue-base);
      background: var(--blue-50);

      &:hover {
        color: var(--blue-base);
      }
    }

    &:before {
      display: none !important;
    }

    &:hover {
      color: var(--text-base);
      background: var(--blue-50);
      filter: none;
    }
  }

  & .hsfc-TextInput--button[aria-expanded="true"] + * + .hsfc-DropdownInput__Caret {
    transform: 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(--form-font-family);
  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(--form-font-family);
  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: 600;
  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) {
  :is(.form, 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                                                      */
:is(.form, 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: var(--text-xs);
  color: var(--form-description-color);
  margin-bottom: var(--spacing-6x);
}

.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                                                                */
:is(.form, 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);
}

:is(.form, form) .inputs-list.hs-error-msgs {
  margin: 0;
}

:is(.form, form) .hs-error-msgs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
}

:is(.form, form) .hs-error-msgs li:before {
  content: var(--label-error-image);
  display: none;
  line-height: 1;
  height: 16px;
  width: 16px;
}

:is(.form, 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: 600;

  .form--bg-dark_blue & {
    color: var(--white);
  }
}

/* ========================================================================== */
/*  New Form System - One Offs                                                */
/* ========================================================================== */
div[data-hsfc-id=Renderer] div.hsfc-FormWrapper:not(div[data-hsfc-id=Renderer] a.hsfc-FormWrapper) {
  @media (max-width: 640px) {
    padding: 0;
  }

  & .hsfc-FieldLabel {
    font-weight: 600;
    line-height: 1;
    text-align: left !important;

    & > span {
      text-align: left;
      margin: 0 0 !important;
    }

    &:has(> .hsfc-CheckboxInput, > .hsfc-RadioInput) span {
      &:before, &:after {
        display: none;
      }
    }
  }

  & .hsfc-TextInput {
    transition: var(--transition);
    box-shadow: none;

    &:is(:active, :focus, :focus-visible) {
      --hsf-field-input__border-color: var(--input-focus-color-border);
      box-shadow: none; 
    }

    &:hover {
      box-shadow: none;
    }

    &:has(+ .hsfc-ErrorAlert) {
      --hsf-field-input__border-color: var(--form-error);
    }
  }

  & .hsfc-ErrorAlert {
    font-weight: 400;
    line-height: 1;
    text-align: left;
  }
  
  & .hsfc-TextareaInput {
    display: block;
    height: var(--textarea-height);

    &:is(:active, :focus, :focus-visible) {
      --hsf-field-textarea__border-color: var(--input-focus-color-border);
      box-shadow: none; 
    }

    &:hover {
      box-shadow: none;
    }
  }

  & .hsfc-NavigationRow {
    margin-top: var(--spacing-8x);
  }

  & .hsfc-Button:not([disabled]):hover {
    transform: translateY(0);
  }

  & .hsfc-DataPrivacyField {
    & .hsfc-Row:last-child {
      margin-bottom: 0;
    }

    & .hsfc-RichText {
      font-size: var(--text-xs);
      color: var(--form-description-color);
    }
  } 
  
  .hsfc-PostSubmit .hsfc-RichText {
    text-align: center;
  }

  .hsfc-FieldLabel__RequiredIndicator {
    font-size: var(--label-error-font-size);
  }
}
.reset-button {
  all: unset;
  box-sizing: border-box;
}

/* ========================================================================== */
/*  Button Group                                                              */
.btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-4x);
  width: 100%;

  @media (max-width: 820px) {
    flex-direction: column;
  }

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

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

/* ========================================================================== */
/*  Button Styles                                                             */
.btn,
a.btn,
.btn-cta-wrapper a,
.form input[type="submit"],
[data-hsfc-id=Renderer] button.hsfc-Button,
.systems-page .email-prefs input[type="submit"],
#hs-subscriptions-survey-submit-button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2x);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  text-decoration: var(--btn-text-decoration);
  color: var(--btn-text-color);
  width: var(--btn-width);
  padding: var(--btn-padding);
  background: var(--btn-bg-color);
  border: 1px solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  transition: var(--btn-transition);

  & svg {
    transition: var(--btn-transition);
  }

  & svg path {
    fill: var(--btn-text-color);
    transition: var(--btn-transition);
  }

  @media (hover: hover) {
    &:hover {
      color: var(--btn-hover-text-color);
      background: var(--btn-hover-bg-color);
      border-color: var(--btn-hover-border-color);

      & svg path {
        fill: var(--btn-hover-text-color);
      }
    } 
  }
}

.btn-cta-wrapper {
  width: var(--btn-width);
}

.form input[type="submit"],
[data-hsfc-id=Renderer] button.hsfc-Button {
  --hsf-button__background-image: none;
  --hsf-button__box-shadow: none;
  width: 100% !important;
}

.btn--primary,
a.btn--primary,
.btn-cta-wrapper--primary,
.btn-cta-wrapper--primary a,
:is(.form, form) input[type="submit"],
[data-hsfc-id=Renderer] button.hsfc-Button,
.systems-page .email-prefs input[type="submit"],
#hs-subscriptions-survey-submit-button {
  --btn-bg-color: var(--yellow-base);
  --btn-border-color: var(--yellow-base);
  --btn-hover-bg-color: var(--dark-blue);
  --btn-hover-border-color: var(--dark-blue);
}

.btn--primary-clear,
a.btn--primary-clear,
.btn-cta-wrapper--primary-clear,
.btn-cta-wrapper--primary-clear a {
  --btn-text-color: var(--dark-blue);
  --btn-border-color: var(--dark-blue);
  --btn-hover-text-color: var(--white);
  --btn-hover-bg-color: var(--dark-blue);
  --btn-hover-border-color: var(--dark-blue);
}

.btn--ghost,
a.btn--ghost,
.btn-cta-wrapper--ghost,
.btn-cta-wrapper--ghost a {
  --btn-text-color: var(--white);
  --btn-border-color: var(--white);
  --btn-hover-text-color: var(--yellow-base);
  --btn-hover-border-color: var(--yellow-base);
}

.btn--link,
.btn--link-white,
.btn-cta-wrapper--link,
.btn-cta-wrapper--link-white,
a:is(.btn--link, .btn--link-white) {
  justify-content: flex-start;
  text-decoration: none;
  transition: var(--btn-transition);

  &:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 820px) {
    width: fit-content !important; 
  }
}

.btn--link,
a.btn--link,
.btn-cta-wrapper--link,
.btn-cta-wrapper--link a {
  --btn-text-color: var(--yellow-base);
  --btn-hover-text-color: var(--text-base);
  --btn-padding: 0;
  border: none;
}

.btn--link-white,
a.btn--link-white,
.btn-cta-wrapper--link-white,
.btn-cta-wrapper--link-white a {
  --btn-text-color: var(--white);
  --btn-hover-text-color: var(--yellow-base);
  --btn-padding: 0;
  border: none;
}

.btn-cta-wrapper--link,
.btn-cta-wrapper--link-white {
  --btn-transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  & svg {
    transition: var(--btn-transition);
  }

  & svg path {
    fill: var(--btn-text-color);
    transition: var(--btn-transition);
  }

  @media (hover: hover) {
    &:hover svg path {
      fill: var(--btn-hover-text-color);
    } 
  }
}

.btn--card-link,
a.btn--card-link {
  --btn-text-color: var(--yellow-base);
  --btn-hover-text-color: var(--yellow-base);
  --btn-padding: 0;
  justify-content: flex-start;

  &:hover,
  .card:hover & {
    color: var(--btn-hover-text-color);

    & svg {
      transform: translateX(4px);
    }
  
    & svg path {
      fill: var(--btn-hover-text-color) !important;
    }
  }

  @media (max-width: 820px) {
    width: fit-content !important; 
  }
}
/* 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;
}
.is-anchor {
  scroll-margin-top: var(--scroll-margin-top);
}

.anchor-id-element {
  position: absolute;
  inset: 0 auto auto 0;
  height: 0;
  width: 100%;

  .dnd-section:has(&) {
    position: relative;
  }
}

/* ========================================================================== */
/*  BACKGROUNDS                                                               */
/* ========================================================================== */
.dnd-section:has(.section-background--blue) {
  background: var(--background-blue);
}

.dnd-section:has(.section-background--gradient) {
  background: linear-gradient(0deg, rgb(from var(--blue-50) r g b / 1) 0%, rgb(from var(--white) r g b / 1) 100%);
}

.dnd-section:has(.section-background--gradient-right) {
  background: linear-gradient(90deg, rgb(from var(--white) r g b / 1) 0%, rgb(from var(--white) r g b / 1) 41.29%, rgb(from var(--blue-50) r g b / 1) 100%);

  @media (max-width: 820px) {
    background: none;
  }
}

.section-background-hidden-element {
  display: none;
}

.section-helper {
  text-align: center;
  width: 100%;
  padding: var(--spacing-3x) var(--spacing-4x);
  margin-block: var(--spacing-4x);
  border: 1px dashed var(--text-base);
  border-radius: var(--radius-md);

  & p {
    font-size: var(--text-sm);
  }
}

.section-helper__title {
  font-weight: 700;
}

/* ========================================================================== */
/*  Typography                                                                */
/* ========================================================================== */
.text-white,
.text-white :where(*:not(.btn):not(a)) {
  color: var(--white);
}

.text-light,
.text-light :where(*:not(.btn):not(a)) {
  color: var(--text-light);
}

.text-highlight {
  position: relative;
  z-index: 0;

  &:before {
    content: '';
    position: absolute;
    inset: .16em -.06em .01em -.06em;
    background: var(--blue-50);
    clip-path: shape(
      from calc(100% - 3.983px) calc(100% - 7.3091px),
      curve to calc(100% - 11.953px) 100% with calc(100% - 4.344px) calc(100% - 3.1758px)/calc(100% - 7.804px) 100%,
      line to calc(0% + 8px) 100%,curve to 0% calc(100% - 8.0039px) with calc(0% + 3.5817px) 100%/0% calc(100% - 3.5856px),line to 0% calc(0% + 17.7952px),
      curve to calc(0% + 7.8603px) calc(0% + 9.7964px) with 0% calc(0% + 13.4314px)/calc(0% + 3.4971px) calc(0% + 9.8726px),line to calc(100% - 8.881px) calc(0% + .1513px),
      curve to calc(100% - .771px) calc(0% + 8.8449px) with calc(100% - 4.133px) calc(0% + .0684px)/calc(100% - .359px) calc(0% + 4.1147px),
      line to calc(100% - 3.983px) calc(100% - 7.3091px),
      close
    );
    z-index: -1;

    @media (max-width: 640px) {
      display: none;
    }
  }
}

.text-highlight-blue {
  color: var(--blue-base);
}

.text-sm {
  font-size: var(--text-sm);
  line-height: var(--secondary-line-height);
}

.text-xs {
  font-size: var(--text-sm);
  line-height: var(--secondary-line-height);
}

:has(> .masked-link) {
  position: relative;
}

.masked-link {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
[data-accordion-panel-wrapper] {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transition);
  transition-duration: 300ms;
  
  [data-accordion][aria-expanded="true"] & {
    grid-template-rows: 1fr;
  }
}

[data-accordion-panel] {
  min-height: 0;
  overflow: clip;
  opacity: 0;
  transition: var(--transition);
  transition-duration: 200ms;
  padding: 0 !important;

  [data-accordion][aria-expanded="true"] & {
    opacity: 1;
    transition-delay: 100ms;
  }
}

.accordion-wrapper {
  --tab-transition-duration: 300ms;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4x);
}

.accordion {
  padding-bottom: 4px;
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  transition-duration: var(--tab-transition-duration);

  &[aria-expanded="true"] {
    border-color: var(--border-dark);
    background: var(--light-gray);
  }

  &:hover {
    border-color: var(--yellow-base);

    &[aria-expanded="true"] {
      border-color: var(--border-dark);
    }
  }
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: var(--spacing-5x) var(--spacing-5x) var(--spacing-4x);
  transition: var(--transition);
  transition-duration: var(--tab-transition-duration);

  .accordion[aria-expanded="not-active"] & {
    cursor: text;
  }
}

.accordion-header__title {
  font-family: var(--heading-font);
  font-weight: 700;
}

.accordion-header__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  height: 25px;
  width: 25px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-round);
  background: var(--white);
  transition: var(--transition);
  transition-duration: var(--tab-transition-duration);

  .accordion[aria-expanded="true"] & {
    background: var(--yellow-base);
  }

  svg {
    transition: var(--transition);
    transition-duration: var(--tab-transition-duration);

    .accordion[aria-expanded="true"] & {
      transform: rotate(-180deg);
    }
  }
}

.accordion-panel-inner {
  padding: 0 var(--spacing-5x) var(--spacing-4x);
}

.accordion-panel > *:has(+ *) {
  margin-bottom: var(--spacing-4x);
}
.video-player-wrapper {
  --media-button-touch-hover-border-radius: 8px;
  --media-button-touch-hover-bg: transparent;
  position: relative;
  width: fit-content !important;
  height: fit-content;
  overflow: clip;
  border-radius: var(--radius-md);
}

.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__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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 .vds-poster :where(img) {
  object-fit: cover;
}


/* ========================================================================== */
/*  MODAL VARIANT                                                             */
body:has(dialog.video-player-modal-wrapper[open]) {
  overflow: clip;
}

body:has(dialog.video-player-modal-wrapper[open][data-state="closing"]) {
  overflow: auto;
}

dialog.video-player-modal-wrapper[open] {
  display: flex;
  opacity: 1;
}

dialog.video-player-modal-wrapper {
  cursor: default;
  justify-content: center;
  align-items: center;
  max-height: 100vh;
  max-width: 100vw;
  background: transparent;
  border: none;
  padding: 0 var(--container-padding);
  opacity: 0;
  transition: all 500ms cubic-bezier(.4,0,.2,1) allow-discrete;
  z-index: 0;
}

@starting-style {
  dialog.video-player-modal-wrapper[open] {
    opacity: 0;
  }
}

dialog.video-player-modal-wrapper::backdrop {
  background: transparent;
  transition: all 500ms allow-discrete;
}

dialog.video-player-modal-wrapper[open]::backdrop {
  background: rgb(from var(--navy-base) r g b / .9);
  backdrop-filter: blur(12px);
}

@starting-style {
  dialog.video-player-modal-wrapper[open]::backdrop {
    background-color: transparent;
  }
}

.video-player-modal {
  --media-button-icon-size: 24px;
  max-width: 1063px;
  aspect-ratio: 16/9;
  height: auto !important;
  width: 100vw !important;
  max-height: calc(100% - (var(--container-padding * 2)));
  border-radius: var(--radius-lg);
  overflow: clip;
}

.video-player-modal media-player[data-media-player] {
  height: 100 !important;
  width: 100% !important;
  background: var(--black-base);
} 

.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;
}

.modal-close-btn {
  cursor: pointer;
  position: fixed;
  inset: 43px 51px auto auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  border-radius: 150px;
  transition: var(--transition);
  background: var(--red-base);
  z-index: 10;
  
  &:hover {
    background: var(--red-600);
  }

  @media (max-width: 640px) {
    inset: 20px 20px auto auto;
  } 
}

.video-modal-trigger {
  cursor: pointer;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(from var(--navy-base) r g b / .48);
}

.video-modal-trigger__icon {
  --bg-color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  aspect-ratio: 1;
  background: var(--bg-color);
  border-radius: 150px;
  transition: var(--transition);
  z-index: 0;
  
  & .icon-wrapper {
    margin-left: 8px;
  }

  &:before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 124px;
    aspect-ratio: 1;
    border-radius: 150px;
    transform: translate(-50%, -50%);
    border: 3px solid var(--white);
    transition: var(--transition);
    z-index: 1;
  }

  .video-modal-trigger:hover & {
    &:before {
      transform: translate(-50%, -50%) scale(1.12);
    }
  }
}

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

body:has(.header[data-state="open"]) {
  overflow: clip;
}

div :has(> header.header) {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  --nav-item-color: var(--text-base);
  --nav-item-color-hover: var(--blue-base);
  --bg-color: var(--white);
  --mobile-trigger-color: var(--text-base);
  --box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, .05);
  width: 100%;
  padding-block: var(--spacing-5x);
  background: var(--bg-color);
  border-bottom: none;
  transition: var(--transition);

  @media (max-width: 1050px) {
    padding-block: var(--spacing-5x);
  }

  &[data-scrolled="true"] {
    box-shadow: var(--box-shadow);

    &[data-state="open"] {
      box-shadow: none;
    }
  }

  &[data-state="open"] {
    --nav-item-color: var(--text-base);
    --bg-color: var(--white);
  }

  .hubspot-disable-focus-styles & {
    position: relative;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-14x);
}

.header-logo {
  flex: 0 0 260px;
  display: block;

  & :is(svg, img) {
    width: 100%;
    height: auto;
  }

  @media (max-width: 820px) {
    flex: 0 0 240px;
  }
}

.mobile-trigger {
  display: none;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--gray-100);
  
  & .mobile-trigger-wrapper {
    --width: 16px;
    --open-width: 22px;
    position: relative;
    height: 14px;
    width: 22px;
  }
  
  & span {
    --translate-start: -50%;
    --translate-end: -50%;
    --rotate-start: 0;
    --rotate-end: 0;
    --inset-start: 50% auto auto 50%;
    --inset-end: 50% auto auto 50%;
    --opacity-end: 0;
    position: absolute;
    inset: 50% auto auto 0;
    width: var(--width);
    height: 2px;
    transform: translateY(var(--translate-start));
    animation: triggerClose 400ms forwards;
    border-radius: 2px;
    background: var(--mobile-trigger-color);
    
    .header[data-state="open"] & {
      animation: triggerOpen 400ms forwards;
    }
  
    &:first-child {
      --translate-start: 0;
      --rotate-end: 45deg;
      --inset-start: 0 auto auto 50%;
      --opacity-end: 1;
    }
  
    &:last-child {
      --translate-start: 0;
      --rotate-end: -45deg;
      --inset-start: auto auto 0 50%;
      --opacity-end: 1;
    }
  }
  
  @media (max-width: 1050px) {
    display: flex;
  }
}


@keyframes triggerOpen {
  0% {
    opacity: 1;
    inset: var(--inset-start);
    transform: translate(-50%, var(--translate-start)) rotate(var(--rotate-start));
  }

  50% {
    width: var(--width);
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translate(-50%, var(--translate-end)) rotate(var(--rotate-start));
  }

  100% {
    width: var(--open-width);
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translate(-50%, var(--translate-end)) rotate(var(--rotate-end));
  }
}

@keyframes triggerClose {
  0% {
    width: var(--open-width);
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translate(-50%, var(--translate-end)) rotate(var(--rotate-end));
  }

  50% {
    width: var(--width);
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translate(-50%, var(--translate-end)) rotate(var(--rotate-start));
  }

  100% {
    width: var(--width);
    opacity: 1;
    inset: var(--inset-start);
    transform: translate(-50%, var(--translate-start)) rotate(var(--rotate-start));
  }
}

/* ========================================================================== */
/*  Buttons                                                                   */
.header .btn-group {
  width: fit-content;

  @media (max-width: 1050px) {
    width: 100%;
    padding: 0 var(--container-padding);
  }
}

/* ========================================================================== */
/*  Navigation                                                                */
.header-nav-wrapper {
  /* flex: 1 1 100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-16x);

  @media (max-width: 1050px) {
    flex: none;
    position: absolute;
    inset: 100% auto auto 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    height: 0;
    width: 100vw;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;

    .header[data-state="open"] & {
      height: calc(100vh - 100%);
      overflow-y: auto;
    }
  }
}

.hn-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-6x);

  @media (max-width: 1050px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

ul.no-list-styling li.hn-item-wrapper {
  margin-bottom: 0;
  position: relative;
  padding-block: 9px;
  
  /* &:before {
    content: '';
    display: none;
    position: absolute;
    inset: 100% auto auto 0;
    width: 100%;
    height: 20px;
    background: transparent;
  }

  @media (min-width: 1050px) {
    &[data-state="open"] {
      &:before {
        display: block;
      }
    }
  } */

  @media (max-width: 1050px) {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--bright-gray);
  }
}

.hn-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
  font-size: 0.8889rem;
  font-weight: 600;
  line-height: var(--base-line-height);
  color: var(--nav-item-color);
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  transition: var(--transition);
  transition-duration: 600ms;

  a& {
    transition-duration: 300ms;
  }
  
  & svg {
    transition: var(--transition);
    
    & path {
      fill: var(--nav-item-color);
      transition: var(--transition);
    }
  }

  li.hn-item-wrapper[aria-expanded="true"] & {
    --nav-item-color: var(--nav-item-color-hover);
    
    & svg {
      transform: rotate(-180deg);
    }
  }
  

  @media (min-width: 1050px) {
    li.hn-item-wrapper[data-state="open"] & {
      --nav-item-color: var(--nav-item-color-hover);

      & svg {
        transform: rotate(-180deg);
      }
    }
  }

  &:hover {
    text-decoration-color: transparent;

    a& {
      --nav-item-color: var(--nav-item-color-hover);
    }
  }

  @media (hover: hover) {
    &:hover {
      text-decoration-color: var(--nav-item-color-hover);
    }
  }

  @media (max-width: 1050px) {
    justify-content: space-between;
    font-size: 1.1111rem;
    width: 100%;
    padding-block: var(--spacing-4x);
  }
}

@media (max-width: 1050px) {
  .header-nav {
    width: 100%;
    background: var(--background-white);
    padding: 0 var(--container-padding) var(--spacing-10x);
  }
}

/* ========================================================================== */
/*  Dropdowns                                                                 */
.hn-dropdown-wrapper {
  background: var(--surface-white);
  transition: var(--transition);

  @media (min-width: 1050px) {
    pointer-events: none;
    position: absolute;
    inset: calc(100% - 4px) auto auto 50%;
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow-sm);
    opacity: 0;
    transform: translateX(-50%);
    transition: var(--transition) !important;

    .hn-item-wrapper[data-state="open"] & {
      pointer-events: auto;
      grid-template-rows: 1fr;
      opacity: 1;
    }
  }
}

.hn-dropdown {
  padding: 0 0 var(--spacing-5x);
  width: 100%;

  & li {
    margin-bottom: 0;
  }

  @media (min-width: 1050px) {
    opacity: 1;
    width: fit-content;
  }
}

.hn-dropdown-inner {
  padding: 0 !important;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow:  0px 0px 7px 2px rgba(0, 0, 0, .05);
  margin: 10px;
  overflow: clip;
  
  @media (max-width: 1050px) {
    padding: 0 0 var(--spacing-5x) !important;
    margin: 0;
    box-shadow: none;
  }
}

.hn-dropdown-item {
  --anchor-color: var(--text-base);
  display: block;
  position: relative;
  font-size: 0.8889rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: var(--spacing-2x) var(--spacing-8x); 
  z-index: 0;

  &:before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    height: 100%;
    width: 100%;
    background: var(--blue-50);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
  }

  &:hover {
    --anchor-color: var(--text-base);

    &:before {
      opacity: 1;
    }
  }

  @media (max-width: 1050px) {
    padding: var(--spacing-2x) var(--spacing-5x);
  }
}
.footer {
  position: relative;
  background: var(--white);
  z-index: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-14x);
  padding-block: var(--spacing-14x) var(--spacing-20x);

  @media (max-width: 640px) {
    flex-direction: column;
    gap: var(--spacing-8x);
    padding-block: var(--spacing-8x); 
  }
}


/* ========================================================================== */
/*  Company Info                                                              */
.footer-company-info {
  flex: 0 1 323px;

  @media (max-width: 640px) {
    flex: none;
  }
}

.footer-company-info__logo {
  height: auto;
  width: 259px;
  margin-bottom: var(--spacing-5x);

  @media (max-width: 820px) {
    width: 240px;
  }
}

.footer-company-info__description {
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* ========================================================================== */
/*  Navigation                                                                */
.footer-nav-wrapper {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-20x);
}

.footer-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap; 
  gap: var(--spacing-12x);

  @media (max-width: 820px) {
    justify-content: flex-start;
  }
}

.footer-nav-menu {
  flex: 0 1 158px;
  justify-content: flex-end;
}

.footer-nav-menu__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-base);
  margin-bottom: var(--spacing-3x) !important;
}

li.footer-nav-menu__item {
  font-size: var(--text-sm);
  width: fit-content;
  margin-bottom: var(--spacing-3x) !important;

  & a {
    --anchor-color: var(--text-base);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--anchor-color);
    text-decoration: none;

    @media (hover: hover) {
      &:hover {
        --anchor-color: var(--blue-base);
      }
    }
  }
}

.company-contact {
  flex: 0 1 216px;
}

.footer-company-contact__item {
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-3x);

  & a {
    --anchor-color: var(--text-base);

    @media (hover: hover) {
      &:hover {
        --anchor-color: var(--blue-base);
      }
    }
  }
}

.footer-company-contact__item-label {
  font-weight: 700;
}



/* ========================================================================== */
/*  Subfooter                                                                 */
.subfooter {
  padding-block: var(--spacing-5x);
  border-top: 1px solid var(--bright-gray);
}

.subfooter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-5x);

  @media (max-width: 820px) {
    justify-content: center;
    text-align: center;
  } 
}

.subfooter-copyright-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-6x);
}

.subfooter-text {
  font-size: var(--text-xs);
  color: var(--text-light);
}

.subfooter-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-3x);

  @media (max-width: 640px) {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

.subfooter-link {
  font-size: var(--text-xs);
}
/* 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%;
}