/* Theme base styles */

:root {

	/* Spacing */

	--container-width: 1180px;
	--container-width-narrow: 880px;
	--vertical-spacing: 12rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) / 4);
	--gap-sm: calc(var(--gap) / 2);
	--gap-md: calc(var(--gap) * 2);
	--gap-lg: calc(var(--gap) * 4);

	/* Colors */

	--base-color: #1C1D22;
	--primary-color: #FF7A42;
	--primary-color-hover: #E55214;
	--dark-blue: #00216B;
    --wave-blue: #125ECC;
    --blue: #0095FF;
    --orange: var(--primary-color);
    --light-blue: #D4EDFF;
    --light-orange: #FCE4DA;

	--off-white: #F5F5F7;
	--white: #fff;
    --gray: #9E9E9E;
    --black: #1C1D22;

	/* Typography */

	--base-font-size: 18px;
	--base-line-height: 1.7;
	--primary-font-family: 'Inter', sans-serif;

}

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

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

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

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

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

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

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

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

body {
  margin: 0;
  font-weight: 300;
}

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

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

.content-wrapper.content-wrapper--narrow {
  max-width: var(--container-width-narrow); 
}

section {
  padding: 4rem 0;
}

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

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

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

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

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

body {
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: 1.7;
  overflow-wrap: break-word;
}

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

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

/* Paragraphs */

p {
  font-size: var(--base-font-size);
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  font-weight: 500;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4 {
  margin: 0 0 1.4rem;
  line-height: 1.1;
}

h1, .h1 {
  font-size: 60px;
  font-weight: 700;
}
h2, .h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-blue);
}
h3, .h3 {
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 48px;
  }
}

@media (max-width: 450px) {
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 36px;
  }
}

h1 span {
    display: inline-block;
    background: var(--primary-color);
}

h1 + p span {
  color: var(--primary-color);
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button,
input[type="submit"],
.submitted-message p > a:only-child {
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s linear;
  white-space: normal;
  background: var(--primary-color);
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.submitted-message p > a:only-child:hover,
.submitted-message p > a:only-child:focus {
  background: var(--primary-color-hover); 
}

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

/* No button */

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

.button.button--text {
    background: transparent;
    color: var(--base-color);
    display: inline-flex;
  align-items: center;
}

.button.button--text::after {
    content: url(https://46871477.fs1.hubspotusercontent-na1.net/hubfs/46871477/icons/Chevron%20Right.svg);
    margin-left: 4px;
    transition: 0.2s ease-out;
  width: 24px;
  height: 24px;
}

.button.button--text:hover::after,
.button.button--text:focus::after {
  margin-left: 8px;
}

.button.button--flex {
  display: flex;
  gap: 8px;
  align-items: center;
}

.button-flex__image {
    transform: translateY(5px);
}

.button-disclaimer {
  font-size: 16px;
  margin-top: 0.5rem;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 18px;
  margin-bottom: .35rem;
  font-weight: bold;
}
form li[role=checkbox] label {
    font-weight: normal;
    font-size: 16px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,
.nice-select.hs-input {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: 0;
  border-radius: 8px;
  color: #00216b;
  padding: 12px;
  font-size: 16px;
}

.nice-select.hs-input {
  height: 42px;
  float: unset;
}

.nice-select .option:not(.disabled) {
  color: #00216b;
}

.nice-select span.current {
  display: block;
  line-height: 1;
}

form textarea {
  resize: vertical;
}

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

form fieldset.form-columns-1 .hs-input:not(select, [type="checkbox"]) {
  width: 100% !important;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .input {
  margin: 0 !important;
}
form fieldset.form-columns-2 > .field .hs-input:not([type="checkbox"]) {
  width: calc(100% - 8px); 
}
form fieldset.form-columns-2 > .field:first-child .hs-input:not([type="checkbox"]) {
  margin-right: 8px;
}
form fieldset.form-columns-2 > .field:last-child .hs-input:not([type="checkbox"]) {
  margin-right: 0;
  margin-left: 8px;
}
form fieldset.form-columns-2 > .hs-fieldtype-checkbox {
  width: calc(50% - 16px) !important;
}
form fieldset.form-columns-2 > .hs-fieldtype-checkbox:first-child {
  margin-right: 16px;
}
form fieldset.form-columns-2 > .hs-fieldtype-checkbox:last-child  {
  margin-right: 0px;
  margin-left: 16px;
}
form select:invalid + .nice-select.hs-input {
  color: gray;
}
form .hs-fieldtype-select > label:first-child {
/*   display: none; */
}
form .hs-fieldtype-checkbox > label:first-child {
  font-size: 20px;
}

form select option:not([disabled]) {
  color: #00216b;
}

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

.hs_error_rollup {
    display: none;
}

label.hs-form-booleancheckbox-display {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

input[type="checkbox"] {
    width: fit-content;
    display: block;
    max-width: fit-content;
}

input[type="checkbox"] + span {
  margin-left: 0;
}

#main-content .hs-form .hs-richtext {
    font-size: 9px !important;
}

#main-content .hs-form input[type="checkbox"] + span {
  font-size: 14px !important;
}


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

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

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

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

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



@media (max-width: 400px) {
  form input:not([type=checkbox]) {
    margin-inline: 0 !important;
    width: 100% !important;
  }
  form fieldset.form-columns-2>.hs-fieldtype-checkbox {
    width: 100% !important;
    margin-inline: 0 !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;
}

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

.site-header {
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

.site-header .content-wrapper {
  display: flex;
  justify-content: space-between;
}

.site-header__logo-wrapper img {
  max-width: 150px;
}
.site-header__main {
  transition: 0.3s ease-out;
}
.site-header__nav-toggle {
  display: none;
    padding: 0;
    border-radius: 0;
    width: 30px;
    height: 26px;
    background: transparent;
  position: relative;
  overflow: hidden;
}
.site-header__nav-toggle:hover,
.site-header__nav-toggle:focus {
  background: transparent;
}
.site-header__nav-toggle__line {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--dark-blue);
    position: absolute;
    transition: 0.3s ease-out;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__nav-toggle__line:nth-child(1) {
  top: 0;
}

.site-header__nav-toggle__line:nth-child(2) {
  transform: translate(-50%, -50%);
  top: 50%;
}

.site-header__nav-toggle__line:nth-child(3) {
  bottom: 0;
}

.site-header--mobile-nav-open .site-header__nav-toggle__line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header--mobile-nav-open .site-header__nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header--mobile-nav-open .site-header__nav-toggle__line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__main {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

.site-header__menu {
  display: flex;
  gap: 2rem;
  margin: 0 auto 0 2rem;
  align-items: center;
}

.site-header__menu__section-link {
  font-size: 14px;
  text-decoration: none;
  color: var(--base-color);
  font-weight: 500;
  line-height: 24px;
}
.site-header__menu__section-dropdown-toggle {
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: var(--base-color);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.site-header__menu__section-link:hover,
.site-header__menu__section-link:focus,
.site-header__menu__section-dropdown-toggle:hover,
.site-header__menu__section-dropdown-toggle:focus {
  background: transparent;
  color: var(--wave-blue);
}
.site-header__menu__section-dropdown-toggle__icon {
  display: block;
  line-height: 1;
  transition: 0.2s ease-out;
}
.site-header__menu__section--dropdown-open .site-header__menu__section-dropdown-toggle__icon {
  transform: rotate(180deg);
}
.site-header__menu__section-dropdown-toggle:hover .site-header__menu__section-dropdown-toggle__icon path,
.site-header__menu__section-dropdown-toggle:focus .site-header__menu__section-dropdown-toggle__icon path {
  fill: var(--wave-blue);
}
.site-header__menu__section-dropdown {
  position: absolute;
  height: 0;
  overflow: hidden;
  display: block;
  transition: 0.3s ease-out;
  background: var(--off-white);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 100%;
}

.site-header__menu__section-dropdown__inner {
  display: flex;
  max-width: min(calc(100% - 2rem), var(--container-width));
  width: 100%;
  margin: 0 auto;
}

.site-header__menu__section-dropdown__subsections-wrapper {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.site-header__menu__section-dropdown__subsections-wrapper:only-child {
  padding-inline: 0;
}

.site-header__menu__section-dropdown__subsection {
  flex-basis: 0;
  flex-grow: 1;
}
.site-header__menu__section-dropdown__subsection__title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.site-header__menu__section-dropdown__subsection__links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-header__menu__section-dropdown__subsection--stacked .site-header__menu__section-dropdown__subsection__links-wrapper {
  flex-flow: column;
}

.site-header__menu__section-dropdown__subsection__link {
    width: calc(50% - 2rem);
    display: flex;
    gap: 1rem;
    align-items: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.5rem;
    color: var(--base-color);
  transition: 0.3s ease-out;
}
.site-header__menu__section-dropdown__subsection--stacked .site-header__menu__section-dropdown__subsection__link {
  width: 100%;
}
.site-header__menu__section-dropdown__subsection__link:hover,
.site-header__menu__section-dropdown__subsection__link:focus {
  background: #fff;
}
.site-header__meu__section-dropdown__subsection__link__icon {
    width: 40px;
    aspect-ratio: 1;
    padding: 10px;
    object-fit: scale-down;
    background: var(--light-blue);
    border-radius: 4px;
}
.site-header__menu__section-dropdown__subsection__link__title {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    color: var(--base-color);
  transition: 0.3s ease-out;
}
.site-header__menu__section-dropdown__subsection__link:hover .site-header__menu__section-dropdown__subsection__link__title,
.site-header__menu__section-dropdown__subsection__link:focus .site-header__menu__section-dropdown__subsection__link__title {
  color: var(--wave-blue);
}
.site-header__menu__section-dropdown__subsection__link__desc {
    margin: 0;
    font-size: 14px;
    color: var(--base-color);
}
.site-header__menu__section-dropdown__featured-resource {
  max-width: 33%;
  min-width: 33%;
  position: relative;
  background: #fff;
  padding: 2rem;
  margin-left: auto;
  z-index: 0;
}

.site-header__menu__section-dropdown__featured-resource-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  text-decoration: none;
}

.site-header__menu__section-dropdown__featured-resource__image {
  max-width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.site-header__menu__section-dropdown__featured-resource__title {
  margin: 0;
  font-weight: 700;
  color: var(--base-color);
  line-height: 1.3;
}

.site-header__menu__section-dropdown__featured-resource-wrapper:hover .site-header__menu__section-dropdown__featured-resource__title,
.site-header__menu__section-dropdown__featured-resource-wrapper:focus .site-header__menu__section-dropdown__featured-resource__title {
  color: var(--wave-blue); 
}
.site-header__menu__section-dropdown__subsection:nth-child(2) {
    padding-left: 2rem;
    border-left: 1px solid var(--gray);
}

.site-header__menu__section-dropdown__featured-resource__read-all {
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s ease-out;
  color: var(--base-color);
  text-decoration: none;
  font-weight: 700;
}

.site-header__menu__section-dropdown__featured-resource__read-all:hover,
.site-header__menu__section-dropdown__featured-resource__read-all:focus {
  color: var(--wave-blue);
  gap: 8px;
}

.site-header__menu__section-dropdown__featured-resource__read-all__copy {
  font-size: 16px;
}

.site-header__menu__section-dropdown__featured-resource__read-all__icon {
  transform: rotate(-90deg);
}

.site-header__menu__section-dropdown__featured-resource__read-all:hover path,
.site-header__menu__section-dropdown__featured-resource__read-all:focus path {
  fill: var(--wave-blue);
}
.site-header .webinar-text {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
  color: #fff;
}
.site-header .webinar-text::before {
  content: '';
  position: absolute;
  display: block;
  left: -1rem;
  height: 100%;
  background: var(--primary-color);
  --side-width: max(calc((100vw - var(--container-width)) / 2), 2rem);
  width: calc(100% + var(--side-width) + 1rem);
  z-index: -1;
}
@media (max-width: 767px) {
  .site-header .webinar-text::before {
    --side-width: max(calc((100vw - var(--container-width)) / 2), 1rem);
    width: calc(100% + var(--side-width) + 1rem);
  }
}
.site-header--webinar .content-wrapper {
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1080px) {
  .site-header__main {
    height: auto !important;
    align-items: center;
  }
  
  .site-header__menu__section-dropdown__featured-resource::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 100vw;
    height: 100%;
    z-index: -1;
  }
}

@media (max-width: 1079px) {
  .site-header .content-wrapper {
    align-items: center;
  }
  
  .site-header__main {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    height: 0;
    overflow: hidden;
    flex-flow: column;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: var(--gray) #ffffff;
  }
  
  .site-header__nav-toggle {
    display: block;
  }
  
  .site-header__cta {
    margin: 1rem auto;
    text-align: center;
    max-width: calc(100% - 2rem);
  }
  
  .site-header__menu {
    flex-flow: column;
    padding: 2rem 0;
    width: 100%;
    margin: 0;
    flex-basis: 0;
    flex-grow: 1;
    overflow-y: scroll;
    align-items: start;
    gap: 0;
  }
  
  .site-header__menu__section {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 2px solid var(--gray);
    transition: 0.3s ease-out;
  }
  
  .site-header__menu__section.site-header__menu__section--dropdown-open {
    padding-bottom: 0;
  }
  
  .site-header__menu__section-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0 2rem;
  }
  
  .site-header__menu__section-dropdown {
    position: relative;
    top: unset;
    margin: 2rem 0 -2rem;
  }
  
  .site-header__menu__section-dropdown__inner {
    flex-flow: column;
    max-width: 100%;
  }
  
  .site-header__menu__section--dropdown-open  .site-header__menu__section-dropdown {
    margin-bottom: 0;
    justify-content: space-between;
  }
  
  .site-header__menu__section-dropdown__subsections-wrapper {
    flex-flow: column;
    padding: 0;
  }
  
  .site-header__menu__section-dropdown__subsection {
    padding: 2rem;
  }
  
  .site-header__menu__section-dropdown__subsection:nth-child(2) {
    padding: 2rem;
    border-left: 0;
    border-top: 1px solid var(--gray);
  }
  
  .site-header__menu__section-dropdown__featured-resource {
    width: 100%;
    max-width: 100%;
  }
  
  .site-header__menu__section-link {
    padding: 0 2rem;
  }
}

@media (max-width: 650px) {
  .site-header__menu__section-dropdown__subsection__link {
    width: 100%;
  }
  
  .site-header__menu__section-dropdown__featured-resource-wrapper {
    flex-flow: column;
  }
}
/* 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
*/

/* Fade In Styles */

.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in .button {
  opacity: 0; 
}


.fade-in .button,
.fade-in input[type="submit"] {
  transform: translateY(100px);
}

.fade-in.fade-in--fading-in {
  opacity: 1 !important;
  transform: translateX(0px) translateY(0px) !important;
}

@keyframes fadeInLeft {
  0% { transform: translateX(-100px); opacity: 0; }
  50% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}

@keyframes fadeInRight {
  0% { transform: translateX(100px); opacity: 0; }
  50% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}

@keyframes fadeInBottom {
  0% { transform: translateY(100px); opacity: 0; }
  50% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.fade-in.fade-in--fading-in .button,
.fade-in.fade-in--fading-in input[type="submit"] {
  animation-name: fadeInBottom;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
/* 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;
  }
}
.nice-select{-webkit-tap-highlight-color:rgba(0,0,0,0);background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:normal;height:38px;line-height:36px;outline:none;padding-left:18px;padding-right:30px;position:relative;text-align:left !important;transition:all .2s ease-in-out;user-select:none;white-space:nowrap;width:auto}.nice-select:hover{border-color:#dbdbdb}.nice-select:active,.nice-select.open,.nice-select:focus{border-color:#999}.nice-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:"";display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;transform-origin:66% 66%;transform:rotate(45deg);transition:all .15s ease-in-out;width:5px}.nice-select.open:after{transform:rotate(-135deg)}.nice-select.open .nice-select-dropdown{opacity:1;pointer-events:auto;transform:scale(1) translateY(0)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .nice-select-dropdown{left:0 !important;right:0 !important}.nice-select.right{float:right}.nice-select.right .nice-select-dropdown{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-select .nice-select-dropdown{margin-top:4px;background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);pointer-events:none;position:absolute;top:100%;left:0;transform-origin:50% 0;transform:scale(0.75) translateY(19px);transition:all .2s cubic-bezier(0.5, 0, 0, 1.25),opacity .15s ease-out;z-index:9;opacity:0}.nice-select .list{border-radius:5px;box-sizing:border-box;overflow:hidden;padding:0;max-height:210px;overflow-y:auto}.nice-select .list:hover .option:not(:hover){background-color:rgba(0,0,0,0) !important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;outline:none;padding-left:18px;padding-right:29px;text-align:left;transition:all .2s}.nice-select .option:hover,.nice-select .option.focus,.nice-select .option.selected.focus{background-color:#f6f6f6}.nice-select .option.selected{font-weight:bold}.nice-select .option.disabled{background-color:rgba(0,0,0,0);color:#999;cursor:default}.nice-select .optgroup{font-weight:bold}.no-csspointerevents .nice-select .nice-select-dropdown{display:none}.no-csspointerevents .nice-select.open .nice-select-dropdown{display:block}.nice-select .list::-webkit-scrollbar{width:0}.nice-select .has-multiple{white-space:inherit;height:auto;padding:7px 12px;min-height:36px;line-height:22px}.nice-select .has-multiple span.current{border:1px solid #ccc;background:#eee;padding:0 10px;border-radius:3px;display:inline-block;line-height:24px;font-size:14px;margin-bottom:3px;margin-right:3px}.nice-select .has-multiple .multiple-options{display:block;line-height:24px;padding:0}.nice-select .nice-select-search-box{box-sizing:border-box;width:100%;padding:5px;pointer-events:none;border-radius:5px 5px 0 0}.nice-select .nice-select-search{box-sizing:border-box;background-color:#fff;border:1px solid #e8e8e8;border-radius:3px;color:#444;display:inline-block;vertical-align:middle;padding:7px 12px;margin:0 10px 0 0;width:100%;min-height:36px;line-height:22px;height:auto;outline:0 !important;font-size:14px}