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

/* _fonts.css is NOT included here -- @font-face src urls need to resolve
   in the page's own request context (so they match the domain the preload
   in templates/layouts/base.html resolves to), not this stylesheet's own
   separate request context. See base.html for where it's actually used. */


:root {
  /* Colors */
  --color-primary: #152753;
  --color-primary-deep: #01133f;
  --color-secondary: #ffffff;
  --color-accent: #FF7A00;
  --color-accent-hover: #eb6600;
  --color-surface-lt: rgba(247, 246, 243, 1);
  --color-white: rgba(255, 255, 255, 1);

  /* Named background gradient preset (see modules/macros/background.html) */
  --gradient-navy: linear-gradient(180deg, #304069 0%, #152753 100%);

  /* Content schema colors: text colors for content sitting on a light
     background ("dark" schema, dark text) vs. a dark background ("light"
     schema, light text). See modules/macros/content-schema.html. */
  --color-description-dark: rgba(107, 122, 153, 1);
  --color-description-light: rgba(139, 162, 195, 1);

  --schema-dark-heading: var(--color-primary);
  --schema-dark-eyebrow: var(--color-accent);
  --schema-dark-description: var(--color-description-dark);
  --schema-dark-link: var(--color-primary);

  --schema-light-heading: rgba(255, 255, 255, 1);
  --schema-light-eyebrow: rgba(255, 255, 255, 1);
  --schema-light-description: var(--color-description-light);
  --schema-light-link: rgba(255, 255, 255, 1);

  /* Fonts -- self-hosted, see css/tools/_fonts.css for the @font-face rules
     (font-display: optional, so there's no swap/reflow if the font isn't
     ready by first paint). Helvetica Neue/Arial are the closest common
     fallbacks if it's ever unavailable. */
  --font-primary: 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-vertical: 80px;
 /* Normal Container, Most of the Module use this */
  --content-max-width: 1240px;
 /* Bigger Container, Used on Header/Footer/Hero */
  --content-lg-max-width: 1360px;
  /* Spacing scale, for gaps/margins between elements inside a module 
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-128: 128px;
  --space-256: 256px;
  We added a factorization of 1 to keep same values for desktop and a
  0.75 factorization to calculate the value * .75 of these values for mobile
  */
  --space-factor: 1;
  --space-4: calc(4px * var(--space-factor));
  --space-8: calc(8px * var(--space-factor));
  --space-12: calc(12px * var(--space-factor));
  --space-16: calc(16px * var(--space-factor));
  --space-24: calc(24px * var(--space-factor));
  --space-32: calc(32px * var(--space-factor));
  --space-48: calc(48px * var(--space-factor));
  --space-64: calc(64px * var(--space-factor));
  --space-128: calc(128px * var(--space-factor));
  --space-256: calc(256px * var(--space-factor));

  /* Typography scale. Each size has a "-base" token (the single source of
     truth, desktop value) and a plain token that modules actually use;
     the mobile media query below recomputes the plain token from -base.
     A token can't reference itself across a media query (self-referencing
     --text-h1-size in terms of var(--text-h1-size) is a cycle and computes
     to nothing), hence the separate -base indirection. line-height is
     unitless and letter-spacing is in em, so both already scale with
     font-size and need no separate mobile value. */
  --mobile-type-reduction: 1.25;

  --text-eyebrow-weight: 600;
  --text-eyebrow-size-base: 24px;
  --text-eyebrow-size: var(--text-eyebrow-size-base);
  --text-eyebrow-line-height: 1;
  --text-eyebrow-letter-spacing: 0em;

  --text-h1-weight: 800;
  --text-h1-size-base: 54px;
  --text-h1-size: var(--text-h1-size-base);
  --text-h1-line-height: 1.2;
  --text-h1-letter-spacing: -0.05em;

  --text-h1-special-weight: 900;

  --text-h2-weight: 700;
  --text-h2-size-base: 36px;
  --text-h2-size: var(--text-h2-size-base);
  --text-h2-line-height: 1.3;
  --text-h2-letter-spacing: -0.02em;

  --text-h3-weight: 600;
  --text-h3-size-base: 32px;
  --text-h3-size: var(--text-h3-size-base);
  --text-h3-line-height: 1.2;
  --text-h3-letter-spacing: 0em;

  --text-h4-weight: 700;
  --text-h4-size-base: 24px;
  --text-h4-size: var(--text-h4-size-base);
  --text-h4-line-height: 1.3;
  --text-h4-letter-spacing: -0.02em;

  --text-body-weight: 400;
  --text-body-size-base: 20px;
  --text-body-size: var(--text-body-size-base);
  --text-body-line-height: 1.3;
  --text-body-letter-spacing: 0em;

  --text-sm-weight: 400;
  --text-sm-size-base: 14px;
  --text-sm-line-height: 1.5;
  --text-sm-letter-spacing: 0em;

  --text-quotes-weight: 600;
  --text-quote-size-base: 28px;
  --text-quote-size: var(--text-quote-size-base);
  --text-quote-line-height: 1.2;
  --text-quote-letter-spacing: 0;
}
/* old quote value, used on testimonials --text-quote-size-base: 32px; */
@media (max-width: 767px) {
  :root {
    --space-factor: 0.75;
    --text-eyebrow-size: calc(var(--text-eyebrow-size-base) / var(--mobile-type-reduction));
    --text-h1-size: calc(var(--text-h1-size-base) / var(--mobile-type-reduction));
    --text-h1-special-size: calc(var(--text-h1-special-size-base) / var(--mobile-type-reduction));
    --text-h2-size: calc(var(--text-h2-size-base) / var(--mobile-type-reduction));
    --text-h3-size: calc(var(--text-h3-size-base) / var(--mobile-type-reduction));
    --text-h4-size: calc(var(--text-h4-size-base) / var(--mobile-type-reduction));
    --text-body-size: calc(var(--text-body-size-base) / var(--mobile-type-reduction));
    --text-sm-size: calc(var(--text-sm-size-base) / var(--mobile-type-reduction));
    --text-quote-size: calc(var(--text-quote-size-base) / var(--mobile-type-reduction));
  }
}

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

*, *:before, *:after {
  box-sizing: border-box;
}

/* Smooth in-page scrolling for anchor links (html, not body, since html is
   the actual scrolling element). Gated behind prefers-reduced-motion so it
   doesn't override a user's OS-level motion setting -- same guard already
   used for the hero word rotator and the testimonials2 carousel. */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/*! 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;
}

/* Shared centered content wrapper, used by modules built on the new design tokens */

.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 1rem;
}
.container--lg {
  width: 100%;
  max-width: var(--content-lg-max-width);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media(max-width: 767px) {
  .container,
  .container--lg {
    padding: 0 1rem;
  }
}

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

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

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


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

/* Elements
Base HTML 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 {
  line-height: 1.4;
  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: inherit;
  margin: 0 0 1rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .7rem;
}

/* 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,
.cta {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* CTA variants (macros/ui.html cta() macro) */

.cta {
  font-size: 16px;
  text-transform: uppercase;
}

.cta--accent {
  background-color: var(--color-accent);
  border: none;
  border-radius: 5px;
  color: #FFFFFF;
  font-weight: 700;
  padding: 16px 20px;
  text-decoration: none;
}

.cta--accent:hover,
.cta--accent:focus,
.cta--accent:focus-visible {
  background-color: var(--color-accent-hover);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}

.cta--outline {
  background-color: transparent;
  border: 1px solid rgba(226, 231, 240, 1);
  border-radius: 5px;
  color: var(--color-primary);
  font-weight: 700;
  padding: 16px 20px;
  text-decoration: none;
}

.cta--outline:hover,
.cta--outline:focus,
.cta--outline:focus-visible {
  background-color: var(--color-surface-lt);
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.cta--sm {
  font-size: 14px;
  padding: 12px 16px;
  text-transform: none;
}

.cta--link {
  align-items: center;
  background: none;
  color: var(--schema-link);
  display: inline-flex;
  font-weight: 700;
  gap: 0.4em;
  padding: 15px 0;
  text-decoration: none;
}

.cta--link::after {
  background-color: currentColor;
  clip-path: polygon(
    58.43% 75%,
    52.6% 68.96%,
    67.39% 54.17%,
    16.76% 54.17%,
    16.76% 45.83%,
    67.39% 45.83%,
    52.6% 31.04%,
    58.43% 25%,
    83.43% 50%
  );
  content: '';
  display: inline-block;
  height: 1em;
  transition: transform 0.15s ease;
  width: 1em;
}

.cta--link:hover,
.cta--link:focus,
.cta--link:focus-visible {
  color: var(--schema-link);
  font-weight: 700;
  text-decoration: none;
}

.cta--link:hover::after,
.cta--link:focus-visible::after {
  transform: translateX(3px);
}

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

@media(max-width:767px){
  .cta--sm {
    font-size: 12px;
    padding: 10px 14px;
    text-transform: none;
  }
  .cta {
    font-size: 14px;
  }
}
/* Fields */

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

/* Labels */

form label {
  color: var(--color-description-dark) !important;
  display: block;
  font-size: 16px !important;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background: transparent !important;
  border: 1px solid rgba(226, 231, 240, 1) !important;
  border-radius: 5px !important;
  display: inline-block;
  font-size: 16px !important;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

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

/* 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 {
  margin-left: 1rem !important;
}

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51 !important;
  font-size: 13px !important;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: var(--color-accent) !important;
  border: none !important;
  border-radius: 5px !important;
  color: #FFFFFF !important;
  cursor: pointer;
  display: inline-block;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 16px 20px !important;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width: 100% !important;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: var(--color-accent-hover) !important;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* Next-gen HubSpot Forms ("Forms 2.0", rendered with hsfc-* classes --
   a completely different DOM/class set from the .hs-form-* rules above,
   used by forms created/edited in the newer HubSpot form builder). */

.hsfc-FieldLabel,
.hsfc-TextInput,
.hsfc-TextInput::placeholder {
  font-size: 16px !important;
}

.hsfc-FieldLabel {
  color: var(--color-description-dark) !important;
}

.hsfc-TextInput {
  background: transparent !important;
  border: 1px solid rgba(226, 231, 240, 1) !important;
  border-radius: 5px !important;
}

.hsfc-Button {
  background-color: var(--color-accent) !important;
  border: none !important;
  border-radius: 5px !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 16px 20px !important;
  width: 100% !important;
}

.hsfc-Button:hover,
.hsfc-Button:focus,
.hsfc-Button:focus-visible {
  background-color: var(--color-accent-hover) !important;
}

.hsfc-DataPrivacyField .hsfc-RichText,
.hsfc-DataPrivacyField .hsfc-FieldLabel {
  font-size: 12px !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
*/

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

/* Flexbox
   Compose these on a container instead of writing one-off flex rules in a
   module's own stylesheet: <div class="flex flex--col flex--items-center gap-16">
*/

.fl {
  display: flex;
}

.inl-flex {
  display: inline-flex;
}

.fl--row {
  flex-direction: row;
}

.fl--row-rev {
  flex-direction: row-reverse;
}

.fl--col {
  flex-direction: column;
}

.fl--col-rev {
  flex-direction: column-reverse;
}

.fl--wrap {
  flex-wrap: wrap;
}

.fl-nowrap {
  flex-wrap: nowrap;
}

.fl--wrap-rev {
  flex-wrap: wrap-reverse;
}

/* Flex item sizing, for children of a .flex/.grid container */

.fl-1 {
  flex: 1 1 0%;
}

.fl-auto {
  flex: 1 1 auto;
}

.fl-init {
  flex: 0 1 auto;
}

.fl-none {
  flex: none;
}

.fl-grow {
  flex-grow: 1;
}

.fl-grow-0 {
  flex-grow: 0;
}

.fl-shrink-0 {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .fl--row-mob {
    flex-direction: row;
  }

  .fl--col-mob {
    flex-direction: column;
  }

  .fl--wrap-mob {
    flex-wrap: wrap;
  }
}

/* Grid
   .grid--cols-* sets an even N-column track; pair with a .gap-* below.
   The responsive media queries in individual modules still decide when a
   grid should collapse to a single column on mobile -- these classes just
   provide the column-count building blocks. */

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid--cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid--flow-row {
  grid-auto-flow: row;
}

.grid--flow-col {
  grid-auto-flow: column;
}

.grid--flow-dense {
  grid-auto-flow: dense;
}

@media (max-width: 767px) {
  .grid--cols-1-mobile {
    grid-template-columns: repeat(1, 1fr);
  }

  .grid--cols-2-mobile {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Alignment
   align-items/justify-content/align-content work the same way on a flex or
   a grid container, so these are shared rather than duplicated per layout
   mode -- use alongside .flex or .grid. */

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

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

.justify-end {
  justify-content: flex-end;
}

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

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

.content-between {
  align-content: space-between;
}

.hero--static {
  color: var(--color-white) !important;
  font-style: normal;
  font-weight: 700;
}


/* Gap
   Mirrors the --space-* scale from tools/_variables.css so grid/flex gaps
   stay on-scale with everything else. Use row-gap-N or col-gap-N when the
   two axes need to differ. */

.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }
.gap-24 { gap: var(--space-24); }
.gap-32 { gap: var(--space-32); }
.gap-48 { gap: var(--space-48); }
.gap-64 { gap: var(--space-64); }
.gap-128 { gap: var(--space-128); }
.gap-256 { gap: var(--space-256); }

.row-gap-4 { row-gap: var(--space-4); }
.row-gap-8 { row-gap: var(--space-8); }
.row-gap-16 { row-gap: var(--space-16); }
.row-gap-24 { row-gap: var(--space-24); }
.row-gap-32 { row-gap: var(--space-32); }

.col-gap-4 { column-gap: var(--space-4); }
.col-gap-8 { column-gap: var(--space-8); }
.col-gap-16 { column-gap: var(--space-16); }
.col-gap-24 { column-gap: var(--space-24); }
.col-gap-32 { column-gap: var(--space-32); }

@media (max-width: 767px) {
  .gap-4-mobile { gap: var(--space-4); }
  .gap-8-mobile { gap: var(--space-8); }
  .gap-16-mobile { gap: var(--space-16); }
  .gap-24-mobile { gap: var(--space-24); }
  .gap-32-mobile { gap: var(--space-32); }
  .gap-48-mobile { gap: var(--space-48); }
}

/* Order
   Pairs well with .reverse-layout below for one-off reordering that isn't
   a straight two-child swap. */

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-first { order: -9999; }
.order-last { order: 9999; }

/* Visually swaps the first two direct children of a grid/flex container
   (e.g. a content column and a media column), without touching DOM order.
   Add/remove this class from the container based on a module's "reverse
   layout" toggle. */

.reverse-layout > :first-child {
  order: 2;
}

.reverse-layout > :last-child {
  order: 1;
}
.section--gradient-navy{
  background:var(--gradient-navy);
}

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