@layer {
  /*! 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;
}
  


/* 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: 64em) {
  .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;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
  /* 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: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

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

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

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  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 {
  display: inline-block;
  font-size: 0.875rem;
  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;
  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;
}


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

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



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

:root {
  --te-navy: #002439;
  --te-blue: #0069D6;
  --te-blue-hover: #0057B3;
  --te-cyan: #00CEE3;
  --te-light: #F2F4F7;
  --te-white: #FFFFFF;
  --te-body-text: #33414C;
  --te-muted-text: #7A8791;
  --te-border: #E3E8EE;

  /* Derived from the palette above; not exposed as theme fields. */
  --te-navy-mid: #013456;
  --te-gradient: linear-gradient(135deg, var(--te-navy) 0%, var(--te-navy-mid) 55%, var(--te-blue) 100%);
  --te-on-dark-sub: #DCE8F2;
  --te-card-text: #3C4A56;

  --te-spacing-gutter: 1.5em;
  --te-site-width: min(calc(100% - var(--te-spacing-gutter) * 2), 68.75em);
  --te-section-pad: 4.5em;
  --te-hero-pad: 5em 0 6em;

  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--te-navy);
}

a {
  color: var(--te-blue);
}

.content-wrapper {
  max-width: var(--te-site-width);
}

.dnd-section:not(:where(:has(.dnd-module > .hs_cos_wrapper > .full-width))),
:where(.dnd-section .dnd-module > .hs_cos_wrapper > .full-width),
.content-wrapper--vertical-spacing {
  padding: 3em 0;
}

.row-fluid-wrapper + .row-fluid-wrapper:not(:where(:has(.dnd-module > .hs_cos_wrapper > .full-width))) {
  padding-block-start: 3em;
}

.dnd-section > .row-fluid {
  gap: 3em;
}

.dnd-section > .row-fluid:not(:where(:has(.dnd-module > .hs_cos_wrapper > .full-width))),
:where(.dnd-section > .row-fluid .dnd-module > .hs_cos_wrapper > .full-width > *) {
  max-width: var(--te-site-width);
  margin-inline: auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

/* Section modules manage their own padding, so the wrapping dnd-section must not add more. */
.dnd-section:has(.te-section) {
  padding: 0;
}

@media all and (max-width: 64em) {
  .dnd-column + .dnd-column:not(:where(:has(.dnd-module > .hs_cos_wrapper > .full-width))) {
    padding-block-start: 3em;
  }
}

/* ==========================================================================
   Shared primitives — consumed by every te-* module
   ========================================================================== */

.te-wrap {
  max-width: var(--te-site-width);
  margin-inline: auto;
}

.te-btn {
  display: inline-block;
  padding: 1.125em 1.5em;
  border: .125em solid transparent;
  border-radius: .375em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}

.te-btn--primary {
  background: var(--te-blue);
  color: var(--te-white);
}

.te-btn--primary:hover {
  background: var(--te-blue-hover);
  color: var(--te-white);
  transform: translateY(-1px);
}

.te-btn--outline {
  background: transparent;
  border-color: currentcolor;
  color: inherit;
}

.te-btn--outline:hover {
  background: var(--te-navy);
  border-color: var(--te-navy);
  color: var(--te-white);
}

/* On dark sections the fill inverts, otherwise navy-on-navy would disappear. */
.te-section--navy .te-btn--outline:hover,
.te-section--gradient .te-btn--outline:hover {
  background: var(--te-white);
  border-color: var(--te-white);
  color: var(--te-navy);
}

.te-h2 {
  font-size: 1.875em;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.te-tag {
  font-size: .75em;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--te-blue);
  margin-bottom: .75em;
}

.te-eyebrow {
  font-size: .8125em;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--te-cyan);
  margin-bottom: 1em;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

/* The boilerplate sets p { font-size: 1rem }, which is absolute and would
   otherwise ignore the size set on each richtext wrapper. */
.rich-text p {
  font-size: inherit;
}

/* ==========================================================================
   Section backgrounds — the background_style choice on each section module
   ========================================================================== */

.te-section {
  padding: var(--te-section-pad) 0;
}

.te-section--white {
  background: var(--te-white);
}

.te-section--light {
  background: var(--te-light);
}

.te-section--navy {
  background: var(--te-navy);
}

.te-section--gradient {
  background: var(--te-gradient);
}

/* Invert text on dark backgrounds so sections can be reordered freely. */
.te-section--navy,
.te-section--gradient {
  color: var(--te-white);
}

.te-section--navy .te-tag,
.te-section--gradient .te-tag {
  color: var(--te-cyan);
}

.te-section--navy .rich-text,
.te-section--gradient .rich-text {
  color: var(--te-on-dark-sub);
}

.te-section--navy a:not(.te-btn),
.te-section--gradient a:not(.te-btn) {
  color: var(--te-cyan);
}

.te-section--white .rich-text,
.te-section--light .rich-text {
  color: var(--te-body-text);
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  background: var(--te-white);
  transition: transform 0.3s ease;
  z-index: 2;
}

/* Toggled by modules/global/Header.module/module.js */
header.hidden {
  transform: translateY(-100%);
}

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

:is(header, footer) .dnd-section {
  padding: 0;
}

/* The header nav and footer both carry .te-wrap, so the outer row must not
   constrain them again or their gutters would be subtracted twice. */
:is(header, footer) .dnd-section > .row-fluid {
  max-width: none;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
  padding-block: 1.375em;
}

header img {
  width: auto !important;
  height: 2.5em !important;
  object-fit: contain;
}

header nav .hs-menu-wrapper > ul {
  justify-content: flex-end;
  align-items: center;
  gap: 1.5em;
  width: fit-content;
  margin-left: auto;
  white-space: nowrap;
}

header nav .hs-menu-wrapper > ul a {
  font-weight: 700;
  text-decoration: none;
  color: var(--te-navy);
}

header nav .hs-menu-wrapper > ul a:hover {
  color: var(--te-blue);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--te-white);
  border-top: 1px solid var(--te-border);
  padding: 2.25em 0 1.75em;
  color: var(--te-muted-text);
}

footer a {
  color: var(--te-card-text);
  text-decoration: none;
}

footer a:hover {
  color: var(--te-blue);
  text-decoration: underline;
}

.te-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25em;
}

.te-footer__brand {
  display: flex;
  align-items: center;
  gap: .625em;
}

.te-footer__brand-img {
  height: 1.5em;
  width: auto;
  display: block;
}

.te-footer__nav .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.375em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.te-footer__nav .hs-menu-wrapper > ul a {
  font-size: .875em;
}

.te-footer__legal {
  margin-top: 1.625em;
  padding-top: 1.375em;
  border-top: 1px solid var(--te-border);
  font-size: .75em;
}

.te-footer__legal p {
  font-size: inherit;
  margin: 0 0 .5em;
}

.te-footer__legal .rich-text {
  margin-bottom: 8px;
}

.te-footer__copyright {
  margin: 0;
}

/* ==========================================================================
   System pages — 404, 500, Password, Search Results
   ========================================================================== */

/* auto margins rather than justify-content, so tall content (search results)
   overflows downward instead of becoming unreachable above the scroll area. */
#main-content:has(.te-syspage) {
  display: flex;
  flex-direction: column;
}

.te-syspage {
  padding: var(--te-section-pad) 0;
  margin-block: auto;
  text-align: center;
}

.te-syspage h1 {
  font-size: 2.75em;
  letter-spacing: -0.01em;
  margin-bottom: .5em;
}

.te-syspage p {
  color: var(--te-body-text);
  max-width: 34em;
  margin-inline: auto;
}

.te-syspage__actions {
  margin-top: 2em;
}

.te-syspage form {
  max-width: 26em;
  margin-inline: auto;
  text-align: left;
}

.te-syspage--search {
  text-align: left;
}

.te-syspage--search form {
  margin-inline: 0;
}

/* ==========================================================================
   Layout, typography and HubSpot module overrides
   ========================================================================== */

.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

.hs_cos_wrapper_type_rich_text > :last-child {
  margin-block-end: 0;
}

img {
  font-size: 1em; /* Override boilerplate typography */
}

ul, ol {
  padding-inline-start: 2em;
}

ul li::marker {
  color: var(--te-blue);
}

p:last-child {
  margin-bottom: 0;
}

.form-title {
  margin-bottom: 1.4em;
}

.form-title:empty {
  display: none;
}

.hs-button,
[data-testid="blog-post"] .button,
header nav .hs-menu-wrapper > ul > li:last-child > a {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 1.125em 1.5em;
  border: .125em solid transparent;
  border-radius: .375em !important;
  background: var(--te-blue);
  color: var(--te-white);
  transition: all .2s ease;
}

.hs-button:hover,
[data-testid="blog-post"] .button:hover,
header nav .hs-menu-wrapper > ul > li:last-child > a:hover {
  background: var(--te-blue-hover);
  color: var(--te-white);
  transform: translateY(-1px);
}

.hs-button:is(:focus, :active),
[data-testid="blog-post"] .button:is(:focus, :active),
header nav .hs-menu-wrapper > ul > li:last-child > a:is(:focus, :active) {
  background: var(--te-navy);
  color: var(--te-white);
}

[class^="_hsPostListingWrapper--tiles"] {
  justify-content: start !important;
  margin-inline: -10px;
}

[data-testid="blog-post"] {
  background: var(--te-white);
  border: 1px solid var(--te-border);
  border-radius: 1.25em !important;
  padding: 1.5em;
  box-shadow: 0 .75em 1.5em rgba(15, 23, 42, .05);
}

@media all and (max-width: 42em) {
  [class^="_hsPostListingWrapper--tiles"] {
    grid-template-columns: 1fr !important;
  }
}

.hs-blog-post #main-content {
  padding-block: 3em;
}

.hs-blog-post #main-content .content-wrapper {
  padding: 0;
}

.hs-blog-post #main-content .blog-post__body {
  margin-block-start: 1.5em;
}

img[data-testid="post-image"] {
  border-radius: .375em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media all and (max-width: 47.5em) {
  header nav {
    flex-wrap: wrap;
    gap: .875em;
  }

  header nav .hs-menu-wrapper > ul {
    margin-left: 0;
  }

  header img {
    height: 2em !important;
  }

  .te-h2 {
    font-size: 1.5em;
  }

  .te-syspage h1 {
    font-size: 2em;
  }

  .te-footer__row {
    flex-direction: column;
  }
}
}


@media all and (min-width: 768px) and (max-width: 64em) {
  [class*="body-row-"][class*="-vertical-alignment"] > .row-fluid {
    display: block !important;
  }
  [class*="cell_"][class*="-vertical-alignment"] {
    display: block !important;
  }
}

@media all and (min-width: 64em) {
  [class*="body-row-"][class*="-vertical-alignment"] > .row-fluid {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  [class*="cell_"][class*="-vertical-alignment"] {
    display: -ms-flexbox !important;
    display: flex !important;
  }
}


.hs_cos_wrapper_type_form {
  display: block;
  background-color: var(--te-white);
  padding: 2.5em;
  border-radius: .5em;
  box-shadow: 0 0px 1.25em -.125px #0002;
}

.hs_cos_wrapper_type_form form {
  width: 100%;
}

.hs_cos_wrapper_type_form label {
  color: var(--te-navy);
  font-size: 14px;
  vertical-align: top;
}

.hs_cos_wrapper_type_form form .hs-form-field {
  background: var(--te-light);
  padding: 12px 20px 12px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.hs_cos_wrapper_type_form form fieldset {
  min-width: 100%;
}

.hs_cos_wrapper_type_form form fieldset.form-columns-2 {
  display: flex;
  flex-wrap: nowrap;
}

.hs_cos_wrapper_type_form form fieldset.form-columns-2 .hs-form-field:first-child {
  margin-right: 5px;
}

.hs_cos_wrapper_type_form form fieldset.form-columns-2 .hs-form-field:last-child {
  margin-left: 5px;
}

.hs_cos_wrapper_type_form form .hs-form-field input[type=text],
.hs_cos_wrapper_type_form form .hs-form-field input[type=email],
.hs_cos_wrapper_type_form form .hs-form-field input[type=tel] {
  width: 100%;
  box-sizing: border-box;
  background: var(--te-light);
  color: var(--te-navy);
  font-size: 14px;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 0;
}

.hs_cos_wrapper_type_form form input[type=submit] {
  width: fit-content;
  border: .125em solid var(--te-blue);
  border-radius: .375em;
  font-weight: 600;
  color: var(--te-white);
  background: var(--te-blue);
  padding: 1.125em 1.5em;
  transition: all .2s ease;
}

.hs_cos_wrapper_type_form form input[type=submit]:hover {
  border-color: var(--te-blue-hover);
  color: var(--te-white);
  background: var(--te-blue-hover);
  transform: translateY(-1px);
}

.hs_cos_wrapper_type_form form .legal-consent-container p {
  color: var(--te-navy);
  font-size: 65%;
}

.hs_cos_wrapper_type_form form .hs-recaptcha {
  background: var(--te-white);
  padding: 0;
}

.grecaptcha-badge {
  margin-left: 0;
}

ul.hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.hs-form-field {
  position: relative;
}

ul.hs-error-msgs li {
  margin: 0;
}

ul.hs-error-msgs label.hs-error-msg,
.hs_error_rollup .hs-error-msgs label {
  color: rgb(218, 33, 0);
}

@media all and (min-width: 48em) {
  ul.hs-error-msgs label.hs-error-msg,
  .hs_error_rollup .hs-error-msgs label {
    position: absolute;
    top: 2.5em;
    pointer-events: none;
  }
}

.hs_cos_wrapper_type_form .form-title {
  font-size: 1.5em;
  color: var(--te-navy);
}

.hs_cos_wrapper_type_form .hs-fieldtype-select select {
  border: 0;
  background-color: transparent;
  margin-left: -4px;
  font-size: 14px;
}

.hs_cos_wrapper_type_form .submitted-message {
  color: var(--te-navy);
}
/*
ul:not(.hs-error-msgs) {
  list-style: none;
}

ul:not(.hs-error-msgs):not(.inputs-list):not(.box-ul) li {
  list-style-position: outside;
  margin-left: -0.6em;
  padding: 0 0 .5em 0;
}

ul:not(.hs-error-msgs):not(.inputs-list):not(.box-ul) li::before {
  content: "\2022";
  color: #3FC7A0;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
*/
.hs-fieldtype-checkbox ul.inputs-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 5px;
}

.hs-fieldtype-checkbox ul.inputs-list input {
  margin-right: 5px;
  transform: translateY(2px);
}

@media (max-width: 767px) {
  .hs_submit.hs-submit {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hs_cos_wrapper_type_form {
    padding: 30px 30px;
  }
}

@media (min-width: 577px) and (max-width: 1199.98px) {
  .hs_cos_wrapper_type_form {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {

  .hs_cos_wrapper_type_form form fieldset.form-columns-2 {
    flex-wrap: wrap;
  }

  .hs_cos_wrapper_type_form form fieldset.form-columns-2 .hs-form-field:first-child {
    margin-right: 0;
  }

  .hs_cos_wrapper_type_form form fieldset.form-columns-2 .hs-form-field:last-child {
    margin-left: 0;
  }
}