/* 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: 1240px;

  /* spacing */
  --spacer-sm: 16px;
  --spacer-md: 32px;
  --spacer-lg: 32px;
  --spacer-xl: 32px;
  --spacer-xxl: 32px;
  --vertical-section-spacer: 48px;
}

@media (min-width: 640px) {
  :root {
    --spacer-sm: 16px;
    --spacer-md: 32px;
    --spacer-lg: 48px;
    --spacer-xl: 64px;
    --spacer-xxl: 80px;
    --vertical-section-spacer: 64px;
  }
}

@media (min-width: 1024px) {
  :root {
    --vertical-section-spacer: 120px;
  }
}

/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     



:root, :before, :after {
  /*** Import color properties from figma ***/
  --primary-base: #2681ff;
  --primary-50:   #f0f6ff;
  --primary-200:  #BED9FF;
  --primary-600:  #084499;
  --primary-800:  #042849;
  --primary-950:  #061732;
  --primary-100:      #d9e9ff;
  --primary-100-rgb:  217, 233, 255;

  --secondary-base: #ffb526;
  --secondary-400:  #ffc451;
  --secondary-600:  #ffa70e;
  --secondary-50:       #ffe9be;
  --secondary-50-rgb:   255, 233, 190;

  --gray-base: #cfd8e5;
  --gray-50:   #fbfbfd;
  --gray-100:  #f0f3f7;
  --gray-300:  #e7ecf2;
  --gray-400:  #d9e0ea;
  --gray-700:  #a6adb7;
  --gray-750:  #9199A4;
  --gray-800:  #66707f;

  --red-base:  #e62256;
  --red-40:    #fee2e9;
  --red-50:    #f8bdcc;
  --red-100:   #ffd9e3;

  --blue-green-base: #b5f7f4;

  --teal-base: #0cc4c1;
  --teal-50:   #b6edec;

  --white-base: #ffffff;
  --white-600:  #dadbdd;

  --black-base: #040d19;
  --text-base:  #040d19;

  --gradient-blue: linear-gradient(75deg, #2681FF 1.49%, #004AAF 99.46%);
  --gradient-light: linear-gradient(104deg, rgba(38, 129, 255, 0.10) 1.07%, rgba(92, 84, 255, 0.10) 35.55%, rgba(248, 189, 204, 0.16) 69.48%, rgba(38, 129, 255, 0.05) 100%);
}

/* ========================================================================== */
/*  3. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */


:root {
  /* ========================================================================== */
  /*  base                                                                      */
  /*** For custom fonts, add google links to base.html or uncomment and add font-face properties to typography.css ***/
  --body-font: ;
  --heading-font: ;

  /* rem base font size, define in px */
  --rem-base-px: 18px;

  /* ========================================================================== */
  /*  Font Sizing                                                               */

  /* update multiplier to change responsive sizing */
  --text-multiplier: .8;
  --base-font-size: 1rem;
  --h1-font-size: 3.000rem
;
  --h2-font-size: 2.500rem
;
  --h3-font-size: 2.056rem
;
  --h4-font-size: 1.723rem
;
  --h5-font-size: 1.445rem
;
  --h6-font-size: 1.223rem
;
  --preheader-font-size: 0.778rem
;
  --md-font-size: 0.8889rem;
  --sm-font-size: 0.834rem
;
  --xs-font-size: 0.667rem
;

  /* ========================================================================== */
  /*  Line Heights                                                              */
  --base-line-height: 1.4;
  --h1-line-height: 1.32;
  --h2-line-height: 1.32;
  --h3-line-height: 1.32;
  --h4-line-height: 1.32;
  --h5-line-height: 1.4;
  --h6-line-height: 1.4;
  --preheader-line-height: 1;
  --md-line-height: 1.4;
  --sm-line-height: 1.4;
  --xs-line-height: 1.4;
}

/*** Tablet Multiplier ***/
@media (min-width: 640px) {
  :root {
    --text-multiplier: 1;
  }
}

/*** Destktop Multiplier ***/
@media (min-width: 1024px) {
  :root {
    --text-multiplier: 1;
  }
}


/* ========================================================================== */
/*  4. BUTTONS                                               #btn             */
/*=========================================================================== */

.btn--wrapper, form {
  /* global settings */
  --btn-transition: all 250ms ease;
  /* primary */
  --btn-primary-bg:     var(--primary-base);
  --btn-primary-hover:  var(--primary-600);
  --btn-primary-text:   var(--white);
  --btn-primary-border: var(--primary-base);
  /* secondary */
  --btn-secondary-bg:          var(--secondary-base);
  --btn-secondary-text:        var(--text-base);
  --btn-secondary-text-hover:  var(--text-base);
  --btn-secondary-hover:       var(--secondary-600);
  /* clear */
  --btn-clear-text:         var(--primary-base) ;
  --btn-clear-border:       var(--primary-base);
  --btn-clear-hover:        var(--primary-600);
  --btn-clear-border-hover: var(--primary-600);
  /* ghost */
  --btn-ghost-border:       var(--white);
  --btn-ghost-text:         var(--white);
  --btn-ghost-hover:        var(--white);
  --btn-ghost-border-hover: var(--white);
}

/* ========================================================================== */
/*  5. FORMS                                                #form             */
/* ========================================================================== */  

.form, .form :before, .form :after {
  /* ========================================================================== */
  /*  Spacing                                                                   */
  --label-margin-b: 4px;

  --input-padding: 12px;
  --input-spacing-y: 20px;

  --textarea-height: 121px; 

  --checkbox-dimensions: 18px;

  --radio-dimensions: 18px;
  --radio-inner-dimensions: 10px;
  
  --select-icon-height: 7px;
  --select-icon-width: 12px;

  /* ========================================================================== */
  /*  Colors                                                                    */
  --label-color:                          var(--text-base);

  --input-color-text:                     var(--text-base);
  --input-color-text-placeholder:         var(--gray-800);
  --input-color-bg:                       var(--white-base);
  --input-color-border-focus:             var(--primary-base);
  --input-color-border-disabled:          var(--text-400);
  --input-color-required:                 var(--red-base);
  --input-color-error:                    var(--red-base);

  --checkbox-color-text:                  var(--text-base);
  --checkbox-color-bg:                    var(--white);
  --checkbox-color-bg-checked:            var(--primary-200);
  --checkbox-color-bg-checked-hover:      var(--primary-200);
  --checkbox-color-border-hover:          var(--black-base);
  --checkbox-color-border-checked:        var(--black-base);
  --checkbox-color-border-checked-hover:  var(--black-base);

  --radio-color-text:                     var(--text-base);
  --radio-color-bg:                       var(--white-base);
  --radio-color-bg-checked:               var(--primary-200);
  --radio-color-border-hover:             var(--black-base);
  --radio-color-border-checked:           var(--black-base);
  --radio-color-border-checked-hover:     var(--black-base);
  --radio-color-inner:                    transparent;
  --radio-color-inner-hover:              transparent;

  /* ========================================================================== */
  /*  Typography                                                                */

  --label-font-size:        0.7778rem;
  --label-font-weight:      700;
  --label-line-height:      1;

  --legend-font-size:       0.8333rem;

  --input-font-size:        0.7778rem;
  --input-font-weight:      700;
  --input-line-height:      1.4;

  --input-error-font-size:  0.6667rem;

  --checkbox-font-size:     0.8889rem;
  --checkbox-font-weight:   400;

  --radio-font-size:        0.8889rem;
  --radio-font-weight:      400;

  /* ========================================================================== */
  /*  Misc                                                                      */
  --input-opacity-disabled:         .4;
  --input-border-radius:    4px;
  --input-transition:       all 200ms ease;
  --input-border:     1px solid var(--gray-base);

  --checkbox-border-radius: 2px;
  --checkbox-checked-image: url('https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/form-checkbox-checkmark.svg');
  --checkbox-border:  2px solid var(--black-base);
  
  --radio-border-radius:    50px;
  --radio-border:     2px solid var(--black-base);

  --select-icon:            url('https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/form-chevron-down.svg');

  /* ========================================================================== */
  /*  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(--border-radius);

  --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);
}
*, *: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: 1024px) {
  .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));
    }
  
}
.hubspot-disable-focus-styles .header {
  top: 30px;
}

/* container */
.dnd-section {
  margin: 0 0 var(--vertical-section-spacer);
}

.content-wrapper,
.dnd-section > .row-fluid {
  --padding: 20px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: calc(var(--container-width) + (var(--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-column {
  order: 1;
}

.dnd-column:has(.custom-image) {
  order: 0;
  margin-bottom: 21px;
}

.dnd-section:has(.dnd-column + .dnd-column:has(.custom-image)) {
  padding-top: 24px;
}

/* set custom padding for fixed header */
.dnd-section:first-child {
  padding-top: 90px;
}

.dnd-section:has(.breadcrumbs):first-child {
  padding-top: 90px;
}

@media (min-width: 640px) {
  .dnd-section[class*="force-full-width-section"] .dnd-column {
    padding: 0;
  }

  .dnd-section:first-child {
    padding-top: 120px;
  }
}

@media (min-width: 1024px) {  
  .dnd-section:first-child {
    padding-top: 160px;
  }

  .dnd-column:has(.custom-image) {
    order: 1;
    margin-bottom: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

:root {
  scroll-behavior: smooth;
}

.icon-wrapper,
.icon-wrapper svg {
  display: block;
}

.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: 1024px) {
  .module-wrapper--right {
    margin: 0 0 0 auto;
  }
}

.masked-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hubspot-disable-focus-styles .header {
  position: relative;
  background: var(--gray-100);
}

.custom-video-wrapper video {
  display: block;
  max-width: 100%;
  height: auto;
}
.background--gradient-blue {
  background: var(--gradient-blue);
}

.background--gradient-light {
  background: var(--gradient-light);
}

.background--dark-blue {
  background: var(--primary-800);
}
/*** Custom Fonts (uncomment for manual font-face properties) ***/
@font-face {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-style: normal;
  src: url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg-webfont.ttf")
      format("truetype"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg-webfont.woff2")
      format("woff2"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg-webfont.woff")
      format("woff");
}

@font-face {
  font-family: "Proxima Nova";
  font-weight: 400;
  font-style: italic;
  src: url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg_it-webfont.ttf")
      format("truetype"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg_it-webfont.woff2")
      format("woff2"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_reg_it-webfont.woff")
      format("woff");
}

@font-face {
  font-family: "Proxima Nova";
  font-weight: 700;
  font-style: normal;
  src: url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_bold-webfont.ttf")
      format("truetype"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_bold-webfont.woff2")
      format("woff2"),
    url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/proxima_nova_bold-webfont.woff")
      format("woff");
}

@font-face {
  font-family: "Gotham";
  font-weight: 700;
  font-style: normal;
  src: url("https://2603532.fs1.hubspotusercontent-na1.net/hubfs/2603532/fonts/Gotham%20Bold.otf")
    format("opentype");
}

:root {
  --heading-font: "Gotham", sans-serif;
  --body-font: "Proxima Nova", sans-serif;
}

html {
  font-size: var(--rem-base-px);
  line-height: var(--base-line-height);
}

body {
  font-family: var(--body-font);
  overflow-wrap: break-word;
}

/* ========================================================================== */
/* Paragraphs                                                                 */
p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* ========================================================================== */
/* Anchors                                                                    */
a {
  font-size: var(--anchor-font-size);
  line-height: var(--anchor-line-height);
  color: var(--primary-base);
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

a:not(.btn-wrapper a, .header a, .footer a):hover {
  color: var(--primary-600);
}

/* ========================================================================== */
/* Headings                                                                   */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* --text-multiplier: 1; */
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}

h1,
.heading-display-1 {
  font-size: calc(var(--h1-font-size) * var(--text-multiplier, 1));
  line-height: var(--h1-line-height);
  letter-spacing: -1.08px;
}

h2,
.heading-display-2 {
  font-size: calc(var(--h2-font-size) * var(--text-multiplier, 1));
  line-height: var(--h2-line-height);
  letter-spacing: -0.9px;
}

h3,
.heading-display-3 {
  font-size: calc(var(--h3-font-size) * var(--text-multiplier, 1));
  line-height: var(--h3-line-height);
  letter-spacing: -0.74px;
}

h4,
.heading-display-4 {
  font-size: calc(var(--h4-font-size) * var(--text-multiplier, 1));
  line-height: var(--h4-line-height);
  letter-spacing: -0.62px;
}

h5,
.heading-display-5 {
  font-size: calc(var(--h5-font-size) * var(--text-multiplier, 1));
  line-height: var(--h5-line-height);
  letter-spacing: -0.52px;
}

h6,
.heading-display-6 {
  font-size: calc(var(--h6-font-size) * var(--text-multiplier, 1));
  line-height: var(--h6-line-height);
  letter-spacing: -0.44px;
}



/* ========================================================================== */
/* Preheader                                                                  */
.preheader {
  font-size: var(--preheader-font-size);
  line-height: var(--preheader-line-height);
  color: var(--primary-base);
  text-transform: uppercase;
  font-weight: 700;
}

.preheader--gray {
  color: var(--gray-800);
}

.preheader--white {
  color: var(--white-base);
}

/* ========================================================================== */
/* Highlighted Text                                                           */
.highlight {
  display: inline-block;
  position: relative;
  white-space: nowrap; /* to avoid weird linebreak issues */
  z-index: 1;
}

.highlight:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--primary-100);
  transform: translateY(-0.1em) scale(1.025);
  z-index: -1;
}

.highlight--lg-font:before {
  top: 65%;
  left: 50%;
  width: 104%;
  transform: translateX(-50%);
}

/* ========================================================================== */
/* Lists                                                                      */
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul {
  list-style: none;
  margin: 20px 0 30px 10px;
  padding: 0;
  /* text-indent: -15px; */
}

ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 21px;
}

ul li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-base);
}

.form ul,
ul:is(.reset-list, .no-list, .hs-tools-actions) {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form ul li,
ul:is(.reset-list, .no-list, .hs-tools-actions) li {
  margin: 0;
  padding: 0;
}

.form ul li:before,
ul:is(.reset-list, .no-list, .hs-tools-actions) li:before {
  display: none;
}

/* ========================================================================== */
/* Code blocks                                                                */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* ========================================================================== */
/* Blockquotes                                                                */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* ========================================================================== */
/* Horizontal rules                                                           */

hr {
  border: none;
  border-bottom: 1px solid #ccc;
}

/* ========================================================================== */
/* Image alt text                                                             */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* ========================================================================== */
/*  Utilities                                                                 */
.text-white,
.text-white :is(*) {
  color: var(--white-base);
}

.text-black,
.text-black :is(*):not(a) {
  color: var(--text-base);
}

.text-muted {
  color: var(--gray-800);
}

.background--dark-blue .text-muted {
  color: var(--primary-100);
}

.text-md {
  font-size: var(--md-font-size);
  line-height: var(--md-line-height);
}

.text-sm {
  font-size: var(--sm-font-size);
  line-height: var(--sm-line-height);
}

.text-xs {
  font-size: var(--xs-font-size);
  line-height: var(--xs-line-height);
}

.text-center {
  text-align: center;
}

/* ========================================================================== */
/*  Rich Text *container queries for tablet and desktop below*                */

/* :is(.rich-text, .hs_cos_wrapper_type_rich_text) :is(h2 + img, h3 + img, h4 + img, h5 + img, h6 + img) {
  margin-top: 0;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) img {
  width: 100% !important;
  margin: 32px 0;
  box-shadow: 0 6px 9px 0 rgb(18 30 255 / 6%);
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) img.no-margins {
  margin: 0;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 40px;
  margin-bottom: 20px;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) p {
  line-height: 1.65;
  margin-bottom: 20px;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) a:hover {
  color: var(--primary-base);
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) figure {
  margin: 0;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) figure img {
  margin: 16px 0 0;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) figcaption {
  font-size: 15px;
  color: #777;
  margin-bottom: 32px;
}
:is(.rich-text, .hs_cos_wrapper_type_rich_text) ul {
  list-style: none;
  margin: 20px 0 30px 10px;
  padding: 0;
  text-indent: -15px;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 21px;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) ul li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-base);
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) blockquote {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-style: italic;
  min-height: 60px;
  margin: 35px 0 45px;
  padding-left: 124px;
  border: none;
  overflow: hidden;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) blockquote::before {
  content: '';
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: url() #fff no-repeat 50%;
  opacity: .6;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) blockquote::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 75px;
  left: 30px;
  width: 2px;
  height: 100%;
  background-color: #a570ff;
  opacity: .6;
}

:is(.rich-text, .hs_cos_wrapper_type_rich_text) blockquote cite {
  margin-top: 15px;
  font-weight: 700;
  font-style: initial;
  color: #777;
}
*/
@container (min-width: 640px) {
  :is(.rich-text, .hs_cos_wrapper_type_rich_text) p {
    line-height: 1.6;
  }
}

@container (min-width: 1024px) {
  :is(.rich-text, .hs_cos_wrapper_type_rich_text) p {
    line-height: 1.8;
  }
}


/* ========================================================================== */
/*  BLOG POST TYPOGRAPHY                                                      */
/* ========================================================================== */

.post-body :is(h1,h2,h3,h4,h5,h6) {
  --text-multiplier: .7; /* set custom sizing for blog post headings */
  line-height: 1.3;
}

.post-body p + h2, 
.post-body p + h3, 
.post-body p + h4, 
.post-body p + h5, 
.post-body p + h6 {
  margin-top: var(--spacer-md);
  margin-bottom: var(--spacer-sm);
} 

.post-body p {
  margin-bottom: var(--spacer-sm);
  line-height: 1.6em;
}

.post-body li {
  margin-bottom: 12px;
}

.post-body img, .post-body p img, .post-body a img {
  max-width: 100%;
  width: 100%;
  margin-bottom: var(--spacer-sm);
}

.post-body :is(h1,h2,h3,h4,h5,h6,p):has(img) {
  margin: 0;
}

.post-body :is(h1,h2,h3,h4,h5,h6,p):has(img) + :is(h1,h2,h3,h4,h5,h6,p) {
  margin-top: 0;
}

.post-body .cta_button img {
  object-fit: contain;
  height: auto;
}

.post-body br:not(.post-body .hs-baymax-editor br) {
  display: none;
}

@media (max-width: 640px) {
  .post-body :is(h1,h2,h3,h4,h5,h6) {
    --text-multiplier: .5;  
  }
}

.hover-shadow {
  height: fit-content;
  width: fit-content;
}

.hover-shadow > * {
  transition: all 200ms ease-in-out;
}

@media (max-width: 640px) {
  .hover-shadow:has(.btn) {
    width: 100%;
  } 
}

.hover-shadow--primary {
  background: var(--primary-base);
}

.hover-shadow--primary-100 {
  background: var(--primary-100);
}

.hover-shadow--primary-800,
.btn--primary .hover-shadow{
  background: var(--primary-800);
}

.hover-shadow--black,
.btn--secondary .hover-shadow {
  background: var(--black-base);
}

.hover-shadow--secondary-50 {
  background: var(--secondary-50);
}

.hover-shadow--red-50 {
  background: var(--red-50);
}

.btn--ghost .hover-shadow > :is(.btn, a:not(a.masked-link)) {
  box-shadow: 0px 0px 0px 0px rgba(218, 219, 221, .6);
}

.btn--primary-outline .hover-shadow > :is(.btn, a:not(a.masked-link)) {
  box-shadow: 0px 0px 0px 0px rgba(var(--primary-100-rgb), 1);
}

.btn--secondary-outline .hover-shadow > :is(.btn, a:not(a.masked-link)) {
  box-shadow: 0px 0px 0px 0px rgba(var(--secondary-50-rgb), 1);
}

@media (hover: hover) {
  .hover-shadow:hover > * {
    transform: translate(5px, -5px);
  }

  .header .hover-shadow:hover > * {
    transform: translate(3px, -3px);
  }

  .hover-shadow--top-left:hover > *:not(.hover-shadow--box-shadow > *) {
    transform: translate(-5px, -5px);
  }

  .btn--ghost .hover-shadow :is(.btn, a:not(a.masked-link)):hover {
    box-shadow: -5px 5px 0px 0px rgba(218, 219, 221, .6);
  }

  .btn--primary-outline .hover-shadow :is(.btn, a:not(a.masked-link)):hover {
    box-shadow: -5px 5px 0px 0px rgba(var(--primary-100-rgb), 1);
  }

  .btn--secondary-outline .hover-shadow :is(.btn, a:not(a.masked-link)):hover {
    box-shadow: -5px 5px 0px 0px rgba(var(--secondary-50-rgb), 1);
  }
}
/* ========================================================================== */
/*  Button Tag Reset Class                                                    */
.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;
  gap: 16px;
  margin-bottom: 16px;
}

.btn-group--center {
  justify-content: center;
}

.btn-group--right {
  justify-content: flex-end;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

/* ========================================================================== */
/*  Button Base                                                               */

.btn,
.btn-wrapper a,
.form .hs_submit input[type=submit] {
  --transition: all 200ms ease-in-out;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: var(--rem-base-px);
  line-height: normal;
  font-weight: 700;
  color: var(--text-base);
  text-decoration: none;
  padding: 20px 38px;
  border: 1px solid transparent;
  width: 100%;
  transition: var(--transition);
  z-index: 0;
}

.form .hs_submit input[type=submit] {
  border-radius: 0;
}

.btn svg {
  transition: var(--transition);
}

@media (min-width: 640px) {
  .btn,
  .btn-wrapper a,
  .form .hs_submit input[type=submit] {
    width: auto;
  }
}

/* ========================================================================== */
/*  Variants - Comment these out as needed for theme                          */
/* ========================================================================== */

/* ========================================================================== */
/*  Primary Variant                                                           */
.btn--primary,
.btn--primary a {
  background: var(--primary-base);
  border-color: var(--primary-base);
}

.btn--primary svg {
  fill: var(--text-base);
}

.btn--primary-outline,
.btn--primary-outline a {
  color: var(--primary-base);
  background: transparent;
  border-color: var(--primary-base);
}

.btn--primary-outline svg {
  fill: var(--primary-base);
}

/*** Hover ***/
@media (hover: hover) {
  .btn--primary:hover,
  .btn--primary a:hover {
    color: var(--white-base);
    background: var(--primary-600);
    border-color: var(--primary-600);
  }
  
  .btn--primary:hover svg {
    fill: var(--white-base);
  }

  .btn--primary-outline:hover,
  .btn--primary-outline a:hover {
    color: var(--primary-600);
    border-color: var(--primary-600);
  }

  .btn--primary-outline:hover svg {
    fill: var(--primary-600);
  }
}

/* ========================================================================== */
/*  Secondary Variant                                                           */
.btn--secondary,
.btn--secondary a,
.form .hs_submit input[type=submit] {
  background: var(--secondary-base);
  border-color: var(--secondary-base);
}

.btn--secondary svg {
  fill: var(--text-base);
}

.btn--secondary-outline,
.btn--secondary-outline a {
  background: transparent;
  border-color: var(--secondary-base);
}

.btn--secondary-outline svg {
  fill: var(--text-base);
}

/*** Hover ***/
@media (hover: hover) {
  .btn--secondary:hover,
  .btn--secondary a:hover,
  .form .hs_submit input[type=submit]:hover { 
    background: var(--secondary-600);
    border-color: var(--secondary-600);
  }

  .btn--secondary-outline:hover,
  .btn--secondary-outline a:hover {
    border-color: var(--secondary-600);
  }
}

/* ========================================================================== */
/*  Ghost Variant                                                             */
.btn--ghost,
.btn--ghost a { 
  color: var(--white-base);
  border-color: var(--white-base);
}

.btn--ghost svg {
  fill: var(--white-base);
}
/*** Hover ***/
/* @media (hover: hover) {
  .btn--ghost:hover,
  .btn--ghost a:hover {
    color: var(--white-600);
    border-color: var(--white-600); 
  }

  .btn--ghost:hover svg {
    fill: var(--white-600);
  }
} */

/* ========================================================================== */
/*  Link Only Variant                                                         */
.btn--link,
.btn--link a {
  color: var(--primary-base);
  border: none;
  padding: 0;
  width: auto;
}

.btn--link svg {
  fill: var(--primary-base);
}

@media (hover: hover) {
  .btn--link:hover,
  .btn--link a:hover {
    color: var(--primary-600);
  }
  
  .btn--link:hover svg {
    fill: var(--primary-600);
    transform: translateX(3px);
  }
}
/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--input-spacing-y);
}

/* ========================================================================== */
/*  Labels                                                                    */
.form label {
  display: block;
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: 1;
  color: var(--label-color);
  margin-bottom: var(--label-margin-b);
}

/* ========================================================================== */
/*  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-1, .form-columns-2) .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  .form fieldset.form-columns-2 div:first-child .input {
    margin-right: 8px !important;
  }
}

/* ========================================================================== */
/*  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);
}

.form :is(input, textarea, select):is(:focus, :focus-visible, :active) {
  border-color: var(--input-color-border-focus);
  outline: none;
}

.form :is(input, textarea, select):disabled {
  cursor: not-allowed;
  opacity: var(--input-opacity-disabled);
}

.form :is(input, textarea, select):disabled:is(:focus, :focus-visible, :active) {
  border-color: var(--input-color-error);
}

.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: 700;
  color: var(--input-color-text-placeholder);
}

/* ========================================================================== */
/*  Form List Items                                                           */  
.form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

.form .inputs-list :is(input, span) {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
.form .hs-form-checkbox-display {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

.form .hs-form-checkbox-display span {
  font-size: var(--checkbox-font-size);
  font-weight: var(--checkbox-font-weight);
  color: var(--checkbox-color-text);
  transition: var(--input-transition);
  line-height: 1.1;
  margin-top: 1px;
}

.form input[type=checkbox] {
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  height: var(--checkbox-dimensions);
  width: var(--checkbox-dimensions) !important;
  border: none;
  transition: var(--input-transition);
}

.form input[type=checkbox]:is(:focus, :focus-visible, :active, :disabled, :disabled:hover) {
  border: none;
}

.form input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--checkbox-dimensions);
  width: var(--checkbox-dimensions);
  background-color: var(--checkbox-color-bg);
  border: var(--checkbox-border);
}

.form input[type="checkbox"]:is(:before, :after) {
  transition: var(--input-transition);
}

.form input[type="checkbox"]:before {
  border-radius: var(--checkbox-border-radius);
}

.form input[type="checkbox"]:checked:before {
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--checkbox-color-bg-checked);
  border-color: var(--checkbox-color-border-checked);
  background-image: var(--checkbox-checked-image);
}

.form input[type="checkbox"]:is(:disabled:before, :disabled:checked:before, :disabled + span, :disabled:checked + span) {
  opacity: var(--input-opacity-disabled);
}

/* Hover States */
@media (hover: hover) {
  .form input[type="checkbox"]:hover:before {
    border-color: var(--checkbox-color-border-hover);
  }

  .form input[type="checkbox"]:checked:hover:before {
    background-color: var(--checkbox-color-bg-checked-hover);
    border-color: var(--checkbox-color-border-checked-hover);
  }
}

/* ========================================================================== */
/*  Inputs - Radio                                                            */
.form .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  gap: 12px;
}

.form .hs-form-radio-display span {
  font-size: var(--radio-font-size);
  font-weight: var(--radio-font-weight);
  color: var(--radio-color-text);
  transition: var(--input-transition);
  line-height: 1.1;
  margin-top: 1px;
}

.form input[type=radio] {
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  height: var(--radio-dimensions);
  width: var(--radio-dimensions) !important;
  background: transparent;
  transition: var(--input-transition);
}

.form input[type=radio],
.form input[type=radio]:is(:focus, :focus-visible, :active) {
  border: none;
}

.form input[type="radio"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--radio-dimensions);
  width: var(--radio-dimensions);
  background-color: var(--radio-color-bg);
  border: var(--radio-border);
}

.form input[type="radio"]:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--radio-inner-dimensions);
  width: var(--radio-inner-dimensions);
  border-radius: var(--radio-border-radius);
  margin: 4px;
}

.form input[type="radio"]:is(:before, :after) {
  transition: var(--input-transition);
}

form input[type="radio"]:before {
  border-radius: var(--radio-border-radius);
}

.form input[type="radio"]:checked:before {
  border-color: var(--radio-color-border-checked);
  background: var(--radio-color-bg-checked);
}

.form input[type="radio"]:checked:after {
  background-color: var(--radio-color-inner);
}

.form input[type="radio"]:is(:disabled:before, :disabled:checked:before, :disabled + span, :disabled:checked + span) {
  opacity: var(--input-opacity-disabled);
}

/* Hover States */
@media (hover: hover) {
  .form input[type="radio"]:hover:before {
    border-color: var(--radio-color-border-hover);
  }

  .form input[type="radio"]:checked:hover:before {
    border-color: var(--radio-color-border-checked-hover);
  }

  .form input[type="radio"]:checked:hover:after {
    background-color: var(--radio-color-inner-hover);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
.form :is(.hs-fieldtype-select .input, select) {
  position: relative;
}

.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form :is(.hs-fieldtype-select .input, select):after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  height: var(--select-icon-height);
  width: var(--select-icon-width);
  margin-right: var(--input-padding);
  background-image: var(--select-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  z-index: 1;
}

/* ========================================================================== */
/*  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-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* ========================================================================== */
/*  Validation                                                                */
.hs-form-required {
  color: var(--input-color-required);
}

.hs-input.invalid.error {
  border-color: var(--input-color-error);
}

.form .hs-error-msgs li {
  position: relative;
  margin-top: 4px !important;
}

.hs-error-msgs label {
  display: inline-block;
  font-size: var(--input-error-font-size);
  font-weight: 400;
  color: var(--input-color-error);
  padding: 4px 8px;
  background: var(--red-40);
  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;
}
.global-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.global-cards .hover-shadow {
  height: 100%;
}

.global-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding: 21px;
  border-radius: 2px;
  background-color: var(--white-base);
}

.global-card--has-border {
  border: 1px solid var(--gray-base);
}

.global-card--has-border:hover {
  border-color: var(--primary-base);
}

.global-card__img {
  height: 227px;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}

.global-card__body {
  flex-grow: 1;
}

.global-card__tag {
  display: inline-block;
  font-size: 0.8333rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-base);
  padding: 7px 12px;
  margin-bottom: 12px;
  background: var(--primary-100);
}

.global-card__title {
  margin-bottom: 8px;
}

.global-card__desc {
  color: var(--gray-800);
  font-size: 0.8889rem;
  margin-bottom: 0;
}

.global-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.global-card__time, 
.global-card__date {
  font-size: 0.8333rem;
  color: var(--gray-800);
  font-weight: bold;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ========================================================================== */
/*  Layout                                                                    */
.footer {
  --transition: all 200ms ease-in-out;
  padding-top: 50px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .footer-container {
    flex-direction: row;
    gap: 84px;
    margin-bottom: 64px;
  }
}

/* ========================================================================== */
/*  Content                                                                   */
.footer .btn-group {
  margin-bottom: 0;
}

.footer .btn {
  padding: 14px 38px;
}

.footer-content__logo {
  margin-bottom: 12px;
}

.footer-content__description {
  max-width: 36ch;
  margin-bottom: 8px;
}

.footer-content__phone {
  margin-bottom: 21px;
}

.footer-content__label {
  font-family: var(--heading-font);
  font-size: 0.8333rem;
  line-height: 1;
  margin-bottom: 8px;
}

/* .footer-content__link {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--primary-base);
  margin-bottom: 16px;
  transition: var(--transition);
}

.footer-content__link:hover {
  color: var(--primary-600);
} */

.footer-content__email {
  margin-bottom: 16px;
}

.footer-content-wrapper .btn {
  gap: 12px;
  font-size: 15px;
  text-decoration: underline;
  padding: 0;
  width: fit-content;
}

.footer-content-wrapper .btn svg {
  fill: var(--primary-200);
}

.footer-content-wrapper .btn:hover svg {
  fill: var(--primary-base);
  transform: none;
}

/* ========================================================================== */
/*  Menu                                                                      */
.footer-menu-wrapper {
  flex: 1 0 50%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

ul.reset-list li.footer-menu__title {
  font-family: var(--heading-font);
  font-size: 0.7222rem;
  line-height: 1.4;
  color: var(--primary-base);
  text-transform: uppercase;
  margin-bottom: 20px;
}

ul.reset-list li.footer-menu__link {
  margin-bottom: 10px;
}

.footer-menu__link a {
  display: block;
  font-size: 0.7778rem;
  line-height: 1.4;
  color: var(--gray-800);
  text-decoration: none;
  max-width: 20ch;
  transition: var(--transition);
}

.footer-menu__link a:hover {
  color: var(--primary-base);
}

@media (min-width: 640px) {
  .footer-menu-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }  
}

@media (min-width: 1024px) {
  .footer-menu-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }  
}



/* ========================================================================== */
/*  Subfooter                                                                 */
.subfooter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  padding: 21px 0 25px;
  border-top: 1px solid var(--gray-300);
}

.subfooter p {
  margin-bottom: 0;
}

.subfooter__company-info,
.subfooter__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subfooter__link--text {
  line-height: 1.2;
  letter-spacing: .24px;
  color: var(--text-base);
  transition: var(--transition);
}

.subfooter__link--text:last-child {
  margin-right: 4px;
}

.subfooter__link--text:hover {
  color: var(--primary-600);
}

.subfooter__link--icon svg {
  fill: #0A66C2;
  transition: var(--transition);
}

.subfooter__link--icon:hover svg {
  fill: var(--primary-600);
}

.subfooter__link--image img {
  display: block;
}

@media (min-width: 640px) {
  .subfooter,
  .subfooter__company-info,
  .subfooter__links {
    flex-direction: row;
    align-items: center;
  }  
}
/* ========================================================================== */
/*  Layout & Global                                                           */
.header {
  --logo-color: var(--primary-600);
  --nav-item-color: var(--text-base);
  --nav-item-color-hover: var(--primary-base);
  --header-bg: var(--white-base);
  --transition: all 200ms ease-in-out;
  --bg-transition: opacity 200ms ease-in-out, height 500ms cubic-bezier(.1,1,.59,1);
  --border: none;
  --box-shadow: none;
  --dropdown-bg-height: 0;
}

.header[data-style="transparent"] {
  --logo-color: var(--white-base);
  --nav-item-color: var(--white-base);
  --nav-item-color-hover: var(--white-600);
  --header-bg: transparent; 
}

.header[data-style="transparent-dark"] {
  --header-bg: transparent; 
}

.header[data-style="scrolled"] {
  --border: 1px solid var(--border-color);
  --box-shadow: 0 0 6px 0 rgba(0, 0, 0, .10);
}

.header {
  position: fixed;
  width: 100%;
  background: var(--header-bg);
  transition: var(--transition);
  border-bottom: var(--border);
  box-shadow: var(--box-shadow);
  z-index: 100;
}

.header--no-nav {
  position: absolute;
}

.header .content-wrapper {
  --padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: var(--padding);
}

.h-nav-wrapper {
  flex: 0 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body:has(.header[data-state="open"]) {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .header .content-wrapper {
    justify-content: space-between;
  }

  .h-nav-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: var(--transition);
    z-index: 0;
  }
  
  .header[data-state="open"] .h-nav-wrapper {
    height: calc(100vh - 71px);
    overflow-y: scroll;
  }
}


/* ========================================================================== */
/*  Logo                                                                      */
.h__logo,
.h__logo svg {
  transition: var(--transition);
  display: block;
}

.h__logo svg {
  fill: var(--logo-color);
}

@media (max-width: 1023px) {
  .h__logo svg {
    max-width: 160px;
  }
}
/* ========================================================================== */
/*  Nav Items                                                                 */
.h-nav__items {
  display: flex;
  align-items: center;
  gap: 24px;
}

ul li.h-nav__item-wrapper {
  position: static;
}

:is(button, a).h-nav__item, 
.h-nav-wrapper .btn {
  font-size: 0.8333rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  color: var(--nav-item-color);
  transition: var(--transition);
}

button.h-nav__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

button.h-nav__item svg {
  height: 8px;
  width: 10px;
  fill: var(--nav-item-color);
  transition: var(--transition);
}

button.h-nav__item[aria-expanded="true"] {
  color: var(--nav-item-color-hover);
}

button.h-nav__item[aria-expanded="true"] svg {
  fill: var(--nav-item-color-hover);
  transform: rotate(-180deg);
}

@media (hover: hover) {
  :is(button, a).h-nav__item:hover {
    color: var(--nav-item-color-hover);
  }

  button.h-nav__item:hover svg {
    fill: var(--nav-item-color-hover);
  }
}

@media (max-width: 1023px) {
  .h-nav {
    width: 100%;
  }

  .h-nav__items {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  ul li.h-nav__item-wrapper {
    position: relative;
    width: 100%;
  }
  
  ul li.h-nav__item-wrapper:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: calc(100% - (var(--padding) * 2));
    height: 1px;
    background: var(--gray-100);
    transform: translateX(-50%);
  }

  button.h-nav__item {
    position: relative;
    justify-content: space-between;
    font-size: 0.8889rem;
    padding: var(--padding);
    width: 100%;
    z-index: 0;
  }

  button.h-nav__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-100);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  button.h-nav__item[aria-expanded="true"]:before {
    opacity: 1;
    visibility: visible;
  }
}

/* ========================================================================== */
/*  Buttons                                                                   */
.h__mobile-btns {
  display: none;
}

.h__mobile-btns .btn {
  font-size: 0.7778rem;
  padding: 10px 12px;
}

.mobile-trigger {
  position: relative;
  display: none;
  height: 12px;
  width: 16px;
}

.mobile-trigger span {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  width: 16px;
  background: var(--nav-item-color);
  transition: var(--transition);
}

.mobile-trigger span:first-child {
  top: 0;
}

.mobile-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-trigger span:nth-child(3) {
  bottom: 0;
}

.h-nav-wrapper .btn-group {
  gap: 12px;
  margin-bottom: 0;
} 

.h-nav-wrapper .btn {
  color: var(--text-base);
  padding: 10px 12px;
}

@media (max-width: 1023px) {
  .h__mobile-btns {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .h-nav-wrapper .btn-group {
    padding: 32px 16px;
  }

  a.h-nav__item,
  .h-nav-wrapper .btn {
    font-size: 1rem;
    padding: 20px 32px;
  }

  .h__mobile-btns .btn {
    width: auto;
  }

  .mobile-trigger {
    display: block;
  }

  .header[data-state="open"] .mobile-trigger span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .header[data-state="open"] .mobile-trigger span:nth-child(2) {
    transform: translateY(-50%);
    opacity: 0;
  }

  .header[data-state="open"] .mobile-trigger span:nth-child(3) {
    bottom: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  a.h-nav__item {
    border: 1px solid var(--secondary-base);
  }

  a.h-nav__item.mobile-hide {
    display: none;
  }
}

@media (max-width: 640px) {
  .h-nav-wrapper .btn-group {
    width: 100%;
    padding: 32px 16px 16px;
  }

  a.h-nav__item,
  .h-nav-wrapper .btn {
    text-align: center;
  }
}

/* ========================================================================== */
/*  Dropdown                                                                  */
.h-dropdown-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 13, 25, 0.50);
  opacity: 0;
  visibility: hidden;
  transition: var(--bg-transition), visibility 0ms 500ms linear
}

.header[data-state="open"] .h-dropdown-overlay {
  opacity: 1;
  visibility: visible;
  transition: var(--bg-transition);
}

.h-dropdown-bg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--dropdown-bg-height);
  opacity: 0;
  visibility: hidden;
  transition: var(--bg-transition), visibility 0ms 500ms linear;
}

.header[data-state="open"] .h-dropdown-bg {
  opacity: 1;
  visibility: visible;
  transition: var(--bg-transition);
}

.h-dropdown-bg:before,
.h-dropdown-bg:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  border-top: 1px solid var(--gray-100);
}

.h-dropdown-bg:before {
  right: 30%;
  width: 150%;
  background: var(--white-base);
}

.h-dropdown-bg:after {
  left: 64%;
  width: 100%;
  background: var(--gray-50);
}

@media (max-width: 1023px) {
  .h-dropdown-bg {
    top: 0;
    min-height: 100%;
    opacity: 1;
    visibility: visible;
    transition: none;
    z-index: -1;
  }

  .header[data-state="open"] .h-dropdown-bg {
    transition: none;
  }

  .h-dropdown-bg:before {
    right: 0;
    width: 100%;
  }

  .h-dropdown-bg:after {
    display: none;
  }
}

/*** Dropdown Main ***/
.h-nav__item-wrapper .h-dropdown {
  position: absolute;
  display: flex;
  width: 100%;
  height: fit-content;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.h-nav__item[aria-expanded="true"] + .h-dropdown {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .h-nav__item-wrapper .h-dropdown {
    --mobile-dropdown-height: 0;
    position: relative;
    overflow: hidden;
    height: var(--mobile-dropdown-height);
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
  }

  .h-nav__item[aria-expanded=true] + .h-dropdown {
    overflow: auto;
    z-index: 0;
  }
/* 
  .h-nav__item[aria-expanded="true"] + .h-dropdown:before,
  .h-nav__item[aria-expanded="true"] + .h-dropdown:after {
    content: '';
    position: absolute;
    height: 16px;
    width: 100%;
    left: 0;
    transition: var(--transition);
    z-index: 1;
  }

  .h-nav__item[aria-expanded="true"] + .h-dropdown:before {
    top: 0;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  }

  .h-nav__item[aria-expanded="true"] + .h-dropdown:after {
    bottom: 0;
  }  */

}

/*** Sections ***/
.h-dropdown-section {
  display: grid;
  gap: 32px;
  padding: 36px 40px 0 32px;
}

.h-dropdown-section:first-child {
  flex: 0 0 64%;
}

.h-dropdown-section:last-child {
  flex: 0 0 36%;
}

.h-dropdown-section--1-col {
  grid-template-columns: 1fr;
}

.h-dropdown-section--2-col {
  grid-template-columns: 2fr 1fr;
}

.h-dropdown-section--3-col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
  .h-dropdown-section:first-child {
    flex: 0 0 100%;
    grid-template-columns: 1fr;
    padding: 16px;
    height: fit-content;
  }

  .h-dropdown-section:last-child {
    display: none;
  }

  .h-dropdown-section--2-col,
  .h-dropdown-section--3-col {
    grid-template-columns: 1fr;
  }
}
/*** Columns ***/
@keyframes headerFadeIn {
  to {
    transform: none;
    opacity: 1;
  }
}

.h-dropdown-column {
  opacity: 0;
  transform: var(--transform);
  width: fit-content;
}

.h-nav__item[aria-expanded="true"] + .h-dropdown .h-dropdown-column {
  animation: headerFadeIn var(--animation-duration) cubic-bezier(0,0,0,.99) var(--animation-delay) forwards;
}

.h-dropdown-column__title {
  font-size: 0.7222rem;
  font-weight: 700;
  line-height: normal;
  color: var(--gray-750);
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-300);
}

@media (max-width: 1023px) {
  .h-dropdown-column {
    opacity: 1;
    transform: none;
    width: 100%;
  }

  .h-nav__item[aria-expanded="true"] + .h-dropdown .h-dropdown-column {
    animation: none;
  }
}
/*** Menu Items ***/
ul.h-dropdown-items {
  display: grid;
  gap: 0 32px; 
  margin-top: 14px;
}

.h-dropdown-section--1-col ul.h-dropdown-items {
  grid-template-columns: repeat(3, 1fr);
}

.h-dropdown-section--2-col .h-dropdown-column:first-child ul.h-dropdown-items {
  grid-template-columns: repeat(2, 1fr);
}

.h-dropdown-section--2-col .h-dropdown-column:last-child ul.h-dropdown-items {
  grid-template-columns: 1fr;
}

.h-dropdown-section--3-col ul.h-dropdown-items {
  grid-template-columns: 1fr;
}

.h-dropdown-item {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 10px 0;
  z-index: 0;
}

.h-dropdown-item:before {
  content: '';
  position: absolute;
  height: 100%;
  width: calc(100% + 20px);
  top: 0;
  left: 50%;
  background: var(--primary-100);
  opacity: 0;
  transform: translateX(-50%);
  transition: var(--transition);
  z-index: -1;
}

.h-dropdown-item:is(:hover, :focus, :focus-visible):before {
  opacity: 1;
}

.h-dropdown-item__title {
  font-size: 0.8333rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-base);
  margin-bottom: 0;
}

.h-dropdown-item__description {
  font-size: 0.6667rem;
  color: var(--gray-800);
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .h-dropdown-section--1-col ul.h-dropdown-items,
  .h-dropdown-section--2-col .h-dropdown-column:first-child ul.h-dropdown-items,
  .h-dropdown-section--2-col .h-dropdown-column:last-child ul.h-dropdown-items,
  .h-dropdown-section--3-col ul.h-dropdown-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .h-dropdown-section--1-col ul.h-dropdown-items,
  .h-dropdown-section--2-col .h-dropdown-column:first-child ul.h-dropdown-items,
  .h-dropdown-section--2-col .h-dropdown-column:last-child ul.h-dropdown-items,
  .h-dropdown-section--3-col ul.h-dropdown-items {
    grid-template-columns: 1fr;
  }
    
  .h-dropdown-item {
    padding: 6px 0;
  }
}

/*** Feature Section - Callout ***/
.h-dropdown-callout {
  margin-top: 20px; 
  max-width: 286px;
}

.h-dropdown-callout__title {
  font-size: 0.8333rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-base);
  margin-bottom: 5px;
}

.h-dropdown-callout__description {
  font-size: 0.6667rem;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.h-dropdown-callout .hover-shadow {
  width: 100%;
}

.h-dropdown-callout .btn {
  font-size: 0.7222rem;
  width: 100%;
  padding: 14px;
}

/*** Feature Section - Resource ***/
.h-dropdown-resources {
  margin-top: 20px;
}

.h-dropdown-section:last-child:has(.h-dropdown-resources) {
  padding-right: 20px;
}

.h-dropdown-resources li:has(.h-dropdown-resource) {
  display: block;
  margin-bottom: 12px;
}

.h-dropdown-resource {
  display: flex;
  gap: 12px;
  padding: 12px;
  /* margin-bottom: 12px; */
  border: 1px solid transparent;
  background: var(--white-base);
}

.h-dropdown-resource:hover {
  border-color: var(--primary-base);
}

.h-dropdown-resource__img {
  height: 124px;
  width: 117px;
  object-fit: cover;
}

.h-dropdown-resource__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.h-dropdown-resource__type {
  font-size: 0.6111rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-base);
}

.h-dropdown-resource__title {
  font-family: var(--heading-font);
  font-size: 0.8333rem;
  letter-spacing: -.3px;
  margin-bottom: 0;
}

.h-dropdown-resource__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7222rem;
  font-weight: 700;
  line-height: normal;
  color: var(--gray-800);
}

.h-dropdown-resource__link svg {
  fill: var(--gray-800);
}
/* 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;
  }
}