/* Theme base styles */


:root {

	/* Spacing */

	--container-width: 1140px;
	--vertical-spacing: 7.2rem;
	--vertical-spacing-mobile: 4rem;
	--gap: 2rem;
	--gap-xs: calc(var(--gap) / 4);
	--gap-sm: calc(var(--gap) / 2);
	--gap-md: calc(var(--gap) * 0.75);
	--gap-md-lg: calc(var(--gap) * 1.5);
	--gap-lg: calc(var(--gap) * 2);
	--gap-xl: calc(var(--gap) * 3);
	--gap-xxl: calc(var(--gap) * 4.5);

	/* Colors */

	--base-color: #58595b;

	--navy: #083550;
	--navy_dark: #052031;
	--coral: #ca6952;
	--coral_dark: #793f31;
  --forest: #3F4F37;
  --orange: #a25442;
	--black: #000;
	--white: #fefefe;

  --neutral: #e6ebee;
  --neutral_25: #f6f6f6;
  --gray: #58595b;
  --tan: #f1e5d9;

	/* Typography */

	--base-font-size: 1.6rem;
	--base-line-height: 1.5;
	--primary-font-family: 'Nunito', sans-serif;
	--secondary-font-family: 'Libre Baskervville', serif;
}

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

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/*! 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)
*/

.grid {
  display: grid;
}

.flex, .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display:flex;
}

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

.flex-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex:1 0
}

.flexInline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display:inline-flex
}

.flex-column {
  flex-direction:column
}

.flex-column-reverse {
  flex-direction:column-reverse
}

.flex-row {
  flex-direction:row
}

.flex-row-reverse {
  flex-direction:row-reverse
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items:center
}

.flex-top {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items:flex-start
}

.flex-bottom {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items:flex-end
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center
}

.flex-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content:flex-end
}

.flex-self {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self:center
}

.flex-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items:stretch
}

.flex-space {
  -ms-flex-pack: distribute;
  justify-content:space-around
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between
}

@media (max-width: 767px) {
  .flex-column-reverse, .flex:not(.flex-row) {
      flex-direction:column
  }
}

.block {
  display: block;
}


.col-full {
  width: 100%;
}

.gap {
  gap: var(--gap);
}

.gap-xs {
  gap: var(--gap-xs);
}

.gap-sm {
  gap: var(--gap-sm);
}

.gap-md {
  gap: var(--gap-md);
}

.gap-md-lg {
  gap: var(--gap-md-lg);
}

.gap-lg {
  gap: var(--gap-lg);
}

.gap-xl {
  gap: var(--gap-xl);
}

.mb-none {
  margin-bottom: 0 !important;
}

.mb {
  margin-bottom: var(--gap) !important;
}

.mb-sm {
  margin-bottom: var(--gap-sm) !important;
}

.mb-md {
  margin-bottom: var(--gap-md) !important;
}

.mb-md-lg {
  margin-bottom: var(--gap-md-lg) !important;
}

.mb-lg {
  margin-bottom: var(--gap-lg) !important;
}

.mb-xl {
  margin-bottom: var(--gap-xl) !important;
}

.mb-xxl {
  margin-bottom: var(--gap-xxl) !important;
}

.mt {
  margin-top: var(--gap) !important;
}

.mt-sm {
  margin-top: var(--gap-sm) !important;
}

.mt-md {
  margin-top: var(--gap-md) !important;
}

.mt-md-lg {
  margin-top: var(--gap-md-lg) !important;
}

.mt-lg {
  margin-top: var(--gap-lg) !important;
}

.mt-xl {
  margin-top: var(--gap-xl) !important;
}

.mt-xxl {
  margin-top: var(--gap-xxl) !important;
}

.mt-auto {
  margin-top: auto !important;
}

.pt-none {
  padding-top: 0 !important;
}

@media (max-width: 767px) {
  .mb\:gap {
    gap: var(--gap);
  }

  .mb\:gap-sm {
    gap: var(--gap-sm);
  }

  .mb\:gap-xs {
    gap: var(--gap-xs);
  }
}

.content-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
}

.content-wrapper--medium {
  max-width: 98.7rem;
  margin: 0 auto;
}

.content-wrapper--med-lg {
  max-width: 104.7rem;
  margin: 0 auto;
}

.content-wrapper--narrow {
  max-width: 80rem;
  margin: 0 auto;
}

.content-wrapper--wide {
  max-width: 120rem;
  margin: 0 auto;
}

@media (min-width: 1140px) {
  .content-wrapper__left {
    max-width: var(--container-width);
    padding-right: 0 !important;
    margin-left: calc((100% - var(--container-width)) / 2);
  }

  .content-wrapper__right {
    max-width: var(--container-width);
    padding-right: 0 !important;
    margin-right: calc((100% - var(--container-width)) / 2);
  }
}

@media (max-width: 1139px) {
  .content-wrapper__left {
    max-width: var(--container-width);
  }

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


section,
.section,
.dnd-section:not([class*='force-full-width']) {
  padding: var(--vertical-spacing-mobile) 2rem;
}

.dnd-section:not([class*='force-full-width']) section {
  padding: 0 !important;
}

.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-width);
  position: relative;
}

.dnd-section > .row-fluid .hs-private {
  width: 100%; /* for the dnd add module here placeholder */
}

@media (min-width: 768px) {
  .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .row-fluid [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  
    .row-fluid .span0 {
      flex-basis: 0.0%;
    }
  
    .row-fluid .span1 {
      flex-basis: 8.333333333333332%;
    }
  
    .row-fluid .span2 {
      flex-basis: 16.666666666666664%;
    }
  
    .row-fluid .span3 {
      flex-basis: 25.0%;
    }
  
    .row-fluid .span4 {
      flex-basis: 33.33333333333333%;
    }
  
    .row-fluid .span5 {
      flex-basis: 41.66666666666667%;
    }
  
    .row-fluid .span6 {
      flex-basis: 50.0%;
    }
  
    .row-fluid .span7 {
      flex-basis: 58.333333333333336%;
    }
  
    .row-fluid .span8 {
      flex-basis: 66.66666666666666%;
    }
  
    .row-fluid .span9 {
      flex-basis: 75.0%;
    }
  
    .row-fluid .span10 {
      flex-basis: 83.33333333333334%;
    }
  
    .row-fluid .span11 {
      flex-basis: 91.66666666666666%;
    }
  
    .row-fluid .span12 {
      flex-basis: 100.0%;
    }
  
}

@media (min-width: 992px) {
  section,
  .section,
  .dnd-section:not([class*='force-full-width']) {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* Visibility classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

/* Responsive visibility classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

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

@property --scrollbar {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  container-type: inline-size;
}

body {
  color: var(--base-color);
  font-family: var(--primary-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  --scrollbar: calc(100vw - 100cqw);
}

.body-container-wrapper {
  padding-top: var(--header-height, 9rem);
}

@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0px, 0px, 0px, 0px);
  padding: 0px;
  margin: -1px;
  overflow: hidden;
  border-width: 0px;
  border-style: initial;
  border-color: initial;
  border-image: initial;
}

/* Paragraphs */

p {
  margin: 0 0 1rem;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all .3s;
  color: var(--navy);
}

a:hover {
  text-decoration: none;
}

.bg-navy a:not(.button) {
  color: #fff;
}

.bg-navy .bg-white a:not(.button) {
  color: var(--navy);
}

/* Headings */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 1rem;
  line-height: 1.214285714285714;
  font-family: var(--secondary-font-family);
  font-weight: 400;
  color: var(--navy);
}

h1,
.h1 {
  font-size: 3.2rem;
}
h2,
.h2 {
  font-size: 2.8rem;
}
h3,
.h3 {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
}
h4,
.h4 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
}
h5,
.h5 {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
}
h6,
.h6 {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
}

.body {
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  font-family: var(--primary-font-family);
}

.tagline {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--coral);

  display: flex;
  gap: 0.1rem 1.3rem;
}

.tagline.gap-xs {
  gap: var(--gap-xs);
}

.tagline a {
  color: var(--coral);
  text-decoration: none;
}

.tagline a:hover {
  text-decoration: underline;
}

.bg-navy .tagline {
  color: #fff;
}

.bg-navy .tagline a {
  color: #fff;
}

.tagline-large {
  font-size: 1.6rem;
}

.tagline:not(.simple):before {
  content: '';
  display: inline-block;
  background: var(--coral);
  width: 5rem;
  height: 1px;
  position: relative;
  top: 7px;
}

.bg-navy .tagline:not(.simple):before {
  background: #fff;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 6.6rem;
    line-height: 1.05;
  }
  h2,
  .h2,
  .has-h2 h1 {
    font-size: 4.2rem;
  }
  h3,
  .h3,
  .has-h3 h2 {
    font-size: 2.4rem;
  }
  h4,
  .h4 {
    font-size: 2rem;
  }
  h5,
  .h5 {
    font-size: 1.8rem;
  }
  h6,
  .h6 {
    font-size: 1.6rem;
  }
}

.bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.text-coral {
  color: var(--coral);
}

.text-tan {
  color: var(--tan);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white);
}

.text-white h1,
.text-white .h1,
.text-white h2,
.text-white .h2,
.text-white h3,
.text-white .h3,
.text-white h4,
.text-white .h4,
.text-white h5,
.text-white .h5,
.text-white h6,
.text-white .h6 {
  color: var(--white);
}

.text-small {
  font-size: 1rem;
}

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

.text-left {
  text-align: left;
}

.header-content {
  margin-bottom: 3.5rem;
}

.header-content.narrow {
  margin-left: auto;
  margin-right: auto;
  max-width: 80.6rem;
}

.header-content *:last-child {
  margin-bottom: 0;
}

.header-content:has(.buttons) {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.header-content:not(:has(.buttons)) .header-text {
  text-align: center;
}

.header-content:not(:has(.buttons)) .header-text.text-left {
  text-align: left;
}

@media (min-width: 768px) {
  .header-buttons {
    padding-top: 1rem;
  }
}

@media (max-width: 767px) {
  .header-content:has(.buttons) {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

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

  .header-content .buttons {
    justify-content: center;
    width: 100%;
  }

  .header-content .buttons .button:first-child:last-child {
    width: 100%;
  }
}

/* Lists */

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

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 var(--coral);
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.bg-white {
  background: #fff;
}

.bg-navy {
  background-color: var(--navy);
  color: var(--white);
}

.bg-coral {
  background-color: var(--coral);
}

.bg-forest {
  background-color: var(--forest) !important;
  color: var(--white);
}

.bg-neutral {
  background-color: var(--neutral);
}

.bg-tan {
  background-color: var(--tan);
}
.button,
form input[type="submit"],
form .hs-button,
.blog-post__body .hs-button:not(.button) {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 0.95rem;
  border: 0;
  border-radius: 0;
  appearance: none;
  transition: all 0.2s ease;
  text-align: center;
  white-space: normal;
  cursor: pointer;

  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  font-family: var(--primary-font-family);
  text-decoration: none;
}

.button:has(.button__arrow-line) {
  gap: 0;
}

.button:has(.button__icon),
form .hs-button:has(.button__icon) {
  grid-template-columns: 1fr auto;
}

@media (max-width: 767px) {
  .button,
  form input[type="submit"],
  form .hs-button {
    font-size: 1.4rem;
    padding: 1rem 2.35rem;
  }
}

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


/* Primary - coral */
.button--primary,
form input[type="submit"],
form .hs-button,
.blog-post__body .hs-button:not(.button) {
  background-color: var(--orange);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus,
.button--primary:active,
.blog-post__body .hs-button:not(.button):hover,
.blog-post__body .hs-button:not(.button):focus,
.blog-post__body .hs-button:not(.button):active,
form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
  background-color: var(--coral_dark);
  color: var(--white);
}


/* Secondary - navy */
.button--secondary {
  background-color: var(--navy);
  color: var(--white);
}

.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active {
  background-color: var(--navy_dark);
  color: var(--white);
}


/* White */
.button--white {
  background-color: var(--white);
  color: var(--navy);
}

.button--white:hover,
.button--white:focus,
.button--white:active {
  background-color: var(--neutral);
  color: var(--navy);
}


/* Coral Outline */
.button--ghost-coral {
  padding: 1.1rem 0.85rem;
  border: 1px solid var(--coral);
  background-color: transparent;
  color: var(--white);
}

.button--ghost-coral:hover,
.button--ghost-coral:focus,
.button--ghost-coral:active {
  border: 1px solid var(--coral);
  background-color: var(--coral);
  color: var(--white);
}


/* Text */

.button--text,
.button--text-white {
  background-color: transparent;
  border-color: transparent;
  color: var(--coral_dark);

  font-size: 1.6rem;

  text-decoration: underline;
  text-decoration-color: var(--coral_dark);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;

  padding: 0;
}

a.card:hover .button--text,
.button--text:hover,
.button--text:focus,
.button--text:active,
.button--text-white:hover,
.button--text-white:focus,
.button--text-white:active {
  text-decoration: none;
}

.button--text.large {
  font-size: 2.4rem;
  gap: 3rem;
}


/* Text White */

.button--text-white {
  color: var(--white);
  text-decoration-color: var(--white);
}




/* Text */

.button--text-alt {
  background-color: transparent;
  border-color: transparent;
  color: var(--navy);

  font-size: 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0;
}

.button--text-alt:hover,
.button--text-alt:focus,
.button--text-alt:active,
.button--text-alt:has(input[type="checkbox"]:checked),
.button--text-alt:has(input[type="radio"]:checked) {
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* Text Navy */

.button--text.navy {
  color: var(--navy);
  text-decoration-color: transparent;
  text-transform: uppercase;
}

.button--text.navy:hover,
.button--text.navy.is-active {
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.button--text.navy svg path {
  fill: currentColor;
}


/* Icon */

.button__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  flex: 0 0 1.5rem;
  display: flex;
  height: 0.9rem;
}

.button__icon svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  flex: 0 0 1.5rem;
  height: 0.9rem;
}



/* icon only */
.button--icon {
  padding: 0;
  background: 0;
}

.button--icon .button__icon {
  flex: 0 0 2.4rem;
  height: 2.43rem;
}

.button--icon .button__icon svg {
  flex: 0 0 2.4rem;
  height: 2.4rem;
}




.button--text .button__icon,
.button--text .button__icon svg {
  flex: 0 0 0.5rem;
}

.bg-forest .button__icon svg path.rarrow,
.text-white .button__icon svg path.rarrow {
  fill: #fff;
}


.button__arrow-line {
  height: 1px;
  width: 12px;
  background: #fff;
  background: currentColor;
  position: relative;
  top: 4px;
  right: -8px;
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.bg-navy .button--text .button__arrow-line {
  background: var(--coral);
}

.bg-navy .button--text:has(.button__arrow-line) svg path {
  stroke: var(--coral);
}

.button:hover .button__arrow-line {
  transform: scaleX(1.5);
}

.button__icon svg {
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.button:not(.button--icon):hover .button__icon svg {
  transform: translateX(4px);
}

a.card:hover .button:not(.button--icon) .button__icon svg {
  transform: translateX(4px);
}

.button svg path:not(.rarrow) {
  stroke: currentColor;
}

.button.large .button__arrow-line {
  height: 2px;
  width: 17.5px;
  top: 3.5px;
  right: -13px;
}

.button.large:hover .button__arrow-line {
  transform: scaleX(2.057142857142857);
}

.button.large .button__icon svg {
  transform: scale(1.5);
}

.button.large:hover .button__icon svg {
  transform: scale(1.5) translateX(12.5px);
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

a.card {
  text-decoration: none;
}

.card a {
  text-decoration: ;
}

@media (min-width: 768px) {
  .cards__5 .card {
    flex: 0 1 calc(20% - 2.4rem);
  }

  .cards__4 .card {
    flex: 0 1 calc(25% - 2.25rem);
    min-width: 0;
  }

  .cards__3 .card {
    flex: 0 1 calc(33.333333% - 2rem);
  }

  .cards__2 .card {
    flex: 0 1 calc(50% - 1.5rem);
  }

  .cards__1 .card {
    flex: 1 0 100%;
  }

  .swiper-slide .card {
    flex: 1;
  }
}

.card.boxed {
  border: 1px solid var(--neutral);
  background: #fff;
  padding: 3.5rem 5rem;
  transition: all .3s ease;
}

.card.boxed.card__hover:hover {
  box-shadow: 0px 192px 77px 0px rgba(7, 36, 54, 0.01);
  box-shadow: 0px 300px 84px 0px rgba(7, 36, 54, 0);
  box-shadow: 0px 4px 20px 0px rgba(5, 30, 46, 0.15);
  border: 1px solid var(--coral);
}

.card.boxed.boxed__small {
  padding: 2.5rem;
}

.card.boxed.boxed__tiny {
  padding: 0;
}

.card.boxed.tall {
  padding: 2rem;
}

.card.boxed.short {
  padding: 2rem;
}

.card.boxed.border-coral {
  border: 1px solid var(--coral);
}

@media (max-width: 767px) {
  .testimonialsSwiper .swiper-slide-active .card.boxed {
    border: 1px solid var(--coral);
  }

  .swiper-initialized .swiper-slide-active .card.boxed .card__icon {
    opacity: 1 !important;
  }
}

.swiper-initialized .swiper-slide .card.boxed .card__icon {
  opacity: 0;
}

@media (min-width: 768px) {
  .testimonialsSwiper .swiper-slide-next .card.boxed {
    border: 1px solid var(--coral);
  }

  .swiper-initialized .swiper-slide-next .card.boxed .card__icon {
    opacity: 1;
  }
}

.card__image {
  height: 12.5rem;
}
.card.boxed.short .card__image {
  height: 22rem;
}

.card.boxed__tiny .card__image {
  height: 14.6rem;
}

.card.boxed.tall .card__image {
  height: 36rem;
}

.card.flex-row .card__image {
  height: auto;
  flex: 0 1 20.7rem;
}

.card.flex-row .card__image {
  height: auto;
  flex: 0 1 20.7rem;
}

.card.flex-row .card__content {
  flex: 1;
  gap: 1.1rem;
}

.card__content h2 a,
.card__content h3 a {
  text-decoration: none;
}

.card__content h3 a:hover,
.card__content h2 a:hover {
  text-decoration: underline;
}

.card.boxed.boxed__tiny {
  gap: 0;
}

.card.boxed.boxed__tiny h3 {
  font-size: 1.4rem;
}

.card.boxed.boxed__tiny .card__content {
  gap: 0.6rem;
  padding: .5rem 1.3rem 1rem !important;
}

.card__icon {
  width: 5.5rem;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem;
  border: 1px solid var(--coral);
  border-radius: 50%;
}

.card:not(.icon-card) .card.boxed .card__icon,
.card.boxed .card__icon.no-border {
  border: 0;
  border-radius: 0;
  padding: 0;
  width: 4.8rem;
  height: 3.9rem;
}

.card .tagline:not(.lined):before {
  display: none !important;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card__content:has(.card__content-inner) {
  height: 100%;
}

.card.flex-row {
  flex-direction: row;
  gap: 3.5rem;
}

.card.short,
.card.short .card__content {
  gap: 1rem;
}

.card.short .card__content h3:not(:last-child) {
  margin-bottom: 0.9rem;
}

.card__content {
  padding: 2rem;
  font-weight: 500;
}

.card.small .card__content {
  font-size: 1.5rem;
}

.card.no-bg .card__content,
.card.boxed .card__content {
  padding: 0;
}

.card__content > * {
  margin-bottom: 0;
}

.card__logo {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
}
/* Fields */

.hs-form-field {
  margin-bottom: 2.5rem;
  position: relative;

  padding: 0.8rem 1.6rem;
  width: 100%;
  border: 1px solid var(--neutral);
  border-radius: 0.8rem;
}

/* Labels */

.hs-form-field label {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* Help text */

form legend {
  margin: -0.8rem 0 0.5rem;
  font-size: 1.6rem;
}

/* 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;
  padding: 0.8rem 1.6rem;
  width: 100%;
  border: 1px solid var(--neutral);
  border-radius: 0.8rem;
  line-height: 2.2rem;
}

form .hs-form-field input[type=text],
form .hs-form-field input[type=search],
form .hs-form-field input[type=email],
form .hs-form-field input[type=password],
form .hs-form-field input[type=tel],
form .hs-form-field input[type=number],
form .hs-form-field input[type=file],
form .hs-form-field select,
form .hs-form-field textarea {
  padding: 0;
  border: 0;
  border-radius: 0;
}

form select {
  border-radius: 0;
}

form textarea {
  resize: vertical;
}

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

fieldset.form-columns-1 .hs-form-field > .input > .hs-input {
  width: 100% !important;
}

fieldset.form-columns-2 {
  display: flex;
  gap: 1.6rem;
}

fieldset.form-columns-2 .hs-form-field {
  width: unset !important;
  float: unset !important;
}

@media (min-width: 768px) {
  fieldset.form-columns-2 .hs-form-field {
    flex: 0 1 calc(50% - 0.8rem);
  }
}

fieldset .input {
  margin-right: 0 !important;
}

::-webkit-input-placeholder {
  color: #bebebe;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: #bebebe;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2.6rem;
}

form .legal-consent-container .inputs-list {
  grid-template-columns: 1fr;
}

form .inputs-list label {
  margin-bottom: 0 !important;
}

form .inputs-list > li {
  display: block;
  margin: 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.75rem;
}

/* 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 {
  margin: 0 0 1.4rem;
}

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

/* Alt Form Style */

.alt-form .hs-form-field {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.alt-form .hs-form-field label {
  font-size: 1.6rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.alt-form .hs-form-field input[type=text],
.alt-form .hs-form-field input[type=email],
.alt-form .hs-form-field input[type=tel],
.alt-form .hs-form-field textarea  {
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid #C1C7CD;
  background: #F2F4F8;
}

.alt-form .hs-form-field select  {
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid #C1C7CD;
  background: #F2F4F8;
  cursor: pointer;
}

.alt-form ::-webkit-input-placeholder {
  color: #697077;
}

.alt-form ::-webkit-input-placeholder,
.alt-form ::-moz-placeholder,
.alt-form :-ms-input-placeholder,
.alt-form :-moz-placeholder,
.alt-form ::placeholder,
.alt-form .hs-fieldtype-date .input .hs-dateinput:before {
  color: #697077;
}





/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
  flex: 1;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  float: none !important;
  margin-top: 0.5rem;
}

.footer .legal-consent-container .hs-form-booleancheckbox-display input {
  margin-top: 0;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
  font-size: 2.3rem;
  line-height: 1.6rem;
}

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

.hs-error-msgs {
  color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51 !important;
  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;
}


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

#nav-toggle, .submenu-toggle, .pre-nav {
  display: none;
}
.header--toggle.header__navigation--toggle {
  display: none;
}
.header .hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navigation-primary {
  display: inline-block;
}

.navigation-primary a.active-item {
  font-weight: 600;
  position: relative;
}

.navigation-primary .submenu.level-1 > li > a.active-item:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #494A52;
}

.navigation-primary .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation-primary .submenu a:not(.button),
.navigation-primary .submenu p {
  text-decoration: none;
}

.triangle {
  display: none;
}

.submenu.level-1 {
  display: inline-block;
  /*white-space: nowrap;*/
}

.submenu.level-1 > li {
  display: inline-block;
  padding: 5px 20px;
  text-transform: capitalize;
}



@media (min-width: 768px) {
  .submenu.level-2 {
    position: absolute;
    min-width: 250px;
    visibility: hidden;
    overflow: hidden;
    white-space: normal;
    opacity: 0;
    text-transform: none;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2);
    transition: visibility 0s, opacity 0.3s;
  }

}


.submenu.level-2 > li.has-submenu {
  position: relative;
}

.level-2 .has-submenu.menu-item label.menu-arrow {
  position: absolute;
  right: 4px;
  top: 4px;
}

.menu-item:last-child .submenu.level-2 {
  right: 0;
}

.submenu.level-2 > li {
  padding: 0;
  border-bottom: 1px solid #D1D6DC;
}

.submenu.level-2 .menu-item .menu-link {
  display: block;
  padding: 5px 10px;
  transition: background-color 0.3s;
  line-height: 2.08rem;
}

.submenu.level-2 > li:nth-child(2) {
  border-radius: 0;
}

.submenu.level-2 > li:last-child,
.submenu.level-2 > li:last-child .submenu {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.submenu.level-2 .menu-item .menu-link:hover,
.submenu.level-2 .menu-item .menu-link:focus {
  cursor: pointer;
}

.submenu.level-3 .menu-item .menu-link {
  padding-left: 30px;
    line-height: 1.76rem;
}

.submenu.level-1>li.has-submenu:hover .submenu.level-2,
.submenu.level-1>li.has-submenu:focus .submenu.level-2
{
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s;
  z-index:999
}

/* Hide navigation dropdown in the inline editor */
.hs-inline-edit .submenu.level-1 > li.has-submenu:hover .submenu.level-2,
.hs-inline-edit > li.has-submenu.focus .submenu.level-2 {
  visibility: hidden;
}


@media (min-width: 768px) and (max-width: 1150px) {

  .navigation-primary a {
    font-size: 20px;
  }


  .submenu.level-1 > li {
    padding: 22px 15px;
  }

  .submenu.level-1 > li:last-child {
    padding-right: 22px;
  }

  .submenu.level-2 {
    left: 0px;
  }
}

@media (max-width: 768px) {
  .pre-nav {
    display: block;
}
.header--toggle.header__navigation--toggle {
  display: block;
}
  .submenu .menu-arrow-bg .fas {display:none;}

  .navigation-primary a {
    font-size: 26px;
  }

  .navigation-primary {
    display: block;
  }
  .navigation-primary .submenu.level-1 > li > a.active-item:after {
    content: none;
  }

  .navigation-primary .submenu.level-1 > li > a.active-item:after {
    display: none;
  }

  .submenu > li > a {
    display: block;
    width: 100%;
  }

  .submenu.level-1 > li > a {
    display:inline-block;
  }

  .submenu > .has-submenu {
    position: relative;
  }

  .submenu > .has-submenu > a {
    width: 70%;
  }

  .submenu {
    display: none;
  }

  .submenu.level-1 {
    width: 100%;
    /* background:#cecece */
  }

  .submenu.level-1 > li {
    display: block;
    width: 100%;
    padding: 0;
  }

  .submenu.level-1 > li > a {
    font-weight: 600;
    padding: 7px 30px;
  }


  .submenu.level-2 > .has-submenu > .menu-arrow,
  .submenu.level-2 > .has-submenu > .menu-arrow,
  .submenu.level-2 .menu-arrow {
    padding: 5px 0;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center right 20px;
    height: 55px;
  }



  .triangle-container.level-2 {
    display: none;
  }

  input[type="checkbox"]:checked ~ .submenu {
    display: block;
  }

  input[type="checkbox"]:checked ~ .menu-arrow .menu-arrow-bg {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }

  .submenu.level-2 {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    border: none;
    box-shadow: none;
    transform: unset;
  }

  .submenu.level-2 .menu-item {
    padding: 0;
  }

  .submenu.level-2 .menu-item .menu-link {
    padding: 12px 30px;
    font-size: 1.6rem;
    line-height: 2.56rem;
  }

  .submenu.level-2 .menu-item .menu-link:hover {
    background-color: inherit;
  }

  .submenu.level-3 {
    width: 100%;
    background-color: inherit;
    padding: 0;
    margin: 0;
  }

  .submenu.level-3 > li {
    padding: 0;
    background-color: inherit;
  }

  .submenu.level-3 .menu-item .menu-link {
    padding: 7px 90px;
    font-size: 1.8rem;
  }
}





header.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  padding: 1.8rem 0;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.04);
}

header.header--no-navigation {
  position: relative;
  box-shadow: none;
}

header.header a.button {
  text-transform: none;
  white-space: nowrap;
}

header.header.header--up,
header.header.header--down {
  border-top-width: 5px;
}

.header--lp {
  position: relative;
  width: 100%;
  padding: 1.6rem 0;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.31);
  z-index: 9998;
}

@media (min-width: 768px) {
  .header--lp {
    padding: 0 0 2rem 0;
  }
}

.header.header--up,
.header.header--down {
  background: #fff;
  border-top-width: 5px;
}

@media (max-width: 767px) {
  main:has(.body-container--lp) {
    margin-top: 0;
  }
}

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

.navigation-primary {
  display: block;
}

.navigation-primary a {
  font-weight: 700;
  font-size: 20px;
}

.navigation-primary a:not(.button) {
  color: var(--navy);
  text-decoration: none;
}

.navigation-primary a:not(.button):hover {
  text-decoration: none;
}

/*.navigation-primary a.button--primary {
  color: var(--white) !important;
}

.navigation-primary a.button--primary:hover {
  color: var(--salsa) !important;
}*/

.navigation-primary a.active-item {
  position: relative;
}

.navigation-primary .submenu.level-1 > li > a.active-item:after {
  background-color: #494a52;
  bottom: -3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.navigation-primary .submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation-primary .submenu a:not(.button),
.navigation-primary .submenu p {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
}

.navigation-primary .submenu.level-4 a {
  justify-content: left;
}

.navigation-primary .submenu a {
  justify-content: center;
}

.navigation-primary .submenu a i {
  margin-top: 5px;
  width: 1.225rem;
  height: 1.4rem;
  display: flex;
}

.navigation-primary a i svg path {
  fill: currentcolor;
}

.submenu.level-1 {
  display: flex;
  align-items: center;
  position: relative;
}

.submenu.level-1 > li {
  display: inline-block;
  padding: 2.4rem 1.5rem;
  transition: all 0.3s;
  order: 4;
}

@media (min-width: 1024px) {
  .submenu.level-1 > li.lang_switcher {
    position: absolute;
    right: 0;
    top: 9px;
  }
}

.submenu.level-1 > li.lang_switcher {
  display: block !important;
  padding: 0;
}

.cta-wrapper {
  position: relative;
}

.cta-absolute {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}

.submenu.level-1 > li.menu-item-cta {
  padding: 2.4rem 0;
}

@media (min-width: 1024px) {
  .header .page-center {
    display: block;
    width: 100%;
    max-width: 1240px;
  }

  .submenu.level-1 > li:nth-child(2) {
    order: 1;
    padding-left: 0;
  }

  .submenu.level-1 > li:nth-child(3) {
    order: 2;
  }

  .submenu.level-1 > li:nth-child(4) {
    margin-left: auto;
  }

  .community_header_section .submenu.level-1 > li:nth-child(4) {
    margin-left: unset;
  }

  .community_header_section .submenu.level-1 > li:nth-child(5) {
    margin-left: auto;
  }

  .submenu.level-1 > .menu-phone {
    padding-right: 3rem;
  }

  .submenu.level-1 {
    transition: all 0.3s;
    gap: 6rem 0;
    min-height: 100px;
  }

  .header--up .submenu.level-1,
  .header--down .submenu.level-1 {
    min-height: 100px;
  }

  .submenu.level-1 > li.logo-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.submenu.level-1 > li.logo-item {
  background: #ffffff;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.07);
  padding: 6px 23px;
  max-width: 186px;
  width: 100%;
}

.header--no-navigation .header__logo {
  background: #ffffff;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0.07);
  padding: 6px 23px;
  max-width: 186px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header--no-navigation .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.header--up .submenu.level-1 > li.logo-item,
.header--down .submenu.level-1 > li.logo-item {
  padding: 8px 20px;
  box-shadow: 0 2px 19px 0 rgba(0, 0, 0, 0);
}

.submenu.level-1 > li.logo-item a {
  transition: all 0.3s;
  height: 114px;
  margin-left: auto;
  margin-right: auto;
}

.header--up .submenu.level-1 > li.logo-item a,
.header--down .submenu.level-1 > li.logo-item a {
  width: 99px;
  height: 83px;
}

li.logo-item a img {
  max-height: 100%;
}

@media (min-width: 1024px) {
  .submenu.level-1 > .has-submenu .menu-arrow {
    display: inline-block;
    margin-left: 6px;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='8px' height='8px' viewBox='0 0 8 8' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Navigation-And-Scroll-States' transform='translate(-219.000000, -595.000000)' fill='%23395775'%3E%3Cg id='Group-9' transform='translate(0.000000, 495.000000)'%3E%3Cpolygon id='Triangle' transform='translate(223.000000, 104.000000) scale(1, -1) translate(-223.000000, -104.000000) ' points='223 100 227 108 219 108'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.4s;
  }
}

@media (min-width: 1024px) {
  .submenu.level-1 > .has-submenu.focus .menu-arrow {
    transform: rotate(180deg);
  }
}

.submenu.level-2 {
  display: flex;
  align-items: stretch;
  background: #eceae9;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-transform: none;
  top: 80px;
}

@media (min-width: 1024px) {
  .submenu.level-2.single {
    display: grid;
    gap: 1rem;
    padding: 1rem 0;
  }

  .submenu.level-2.single > li {
    padding: 0 3.5rem;
  }
}

.submenu.level-1 > li.has-submenu:nth-child(1) .submenu.level-2,
.submenu.level-1 > li.has-submenu:nth-child(2) .submenu.level-2 {
  left: 0;
  top: 80px;
  max-width: 100%;
}

.submenu.level-1 > li.has-submenu:nth-child(4) .submenu.level-2 {
  right: 0;
}

.submenu.level-2 > li:first-child > a {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .submenu.level-2 > li {
    padding: 5.4rem 6.5rem;
  }

  .submenu.level-2 > li.child-bg-gray {
    background: #6c6865;
  }

  .submenu.level-2.dropdown > li.child-bg-gray {
    background: #6c6865;
    padding: 5.4rem 4.5rem;
    max-width: 300px;
  }

  .submenu.level-2 > li.child-bg-blue {
    background: var(--navy);
  }

  .submenu.level-2.dropdown > li.child-bg-blue {
    background: var(--navy);
    padding: 5.5rem 4.5rem;
    max-width: 300px;
  }
}

.submenu.level-2 > li.child-bg-gray a,
.submenu.level-2 > li.child-bg-blue a {
  color: #fff;
}

.submenu.submenu-right.level-4 .no-submenu.menu-item a {
  font-size: 1.6rem;
}

.submenu.level-2.dropdown .submenu-left {
  display: flex;
  gap: 90px;
  max-width: 100%;
}

.submenu.level-2.dropdown .submenu-left.count-3 {
  width: 801px;
}

.submenu.level-2.dropdown .submenu-left.count-2 {
  width: 504px;
}

.submenu.level-2.dropdown .submenu-left > li {
  flex: 0 0 207px;
  max-width: 207px;
}

.submenu.level-1 > li.has-submenu.focus .submenu.level-2 {
  opacity: 1;
  visibility: visible;
}

.submenu.level-3 > li:last-child {
  margin-bottom: 0;
}

.submenu.level-3 > li > a {
  display: block;
  font-size: 1.8rem;
  line-height: 1.222222222222222;
}

.submenu.level-3.submenu-right .menu-item-title:hover {
  text-decoration: underline !important;
  color: #af946f !important;
}

.submenu.level-3.submenu-left .menu-item-title:hover {
  color: #af946f !important;
}

.body-wrapper a.ml-active:hover {
  color: #af946f !important;
}

.submenu.level-3 > li > a:hover > span:first-child {
  text-decoration: underline;
}

.submenu.level-3 .submenu-header {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1;
  color: #252525;
}

.submenu.level-3.submenu-right .submenu-header {
  color: #fff;
}

.submenu.level-3.submenu-left .menu-item-title img {
  display: none;
}

@media (min-width: 1024px) {
  .submenu-header-mobile {
    display: none !important;
  }

  .submenu.level-3.submenu-left .menu-item-title {
    display: flex;
    align-items: flex-start;
  }

  .submenu.level-3.submenu-left .menu-item-title img {
    display: block;
    width: 50px;
    margin-left: 20px;
    vertical-align: middle;
  }

  .submenu.level-2.resources .submenu.level-3 > li {
    margin-bottom: 2.4rem;
  }

  .submenu.level-2.dropdown > li.child-bg-gray .submenu.level-3 > li,
  .submenu.level-2 > li.child-bg-light-gray .submenu.level-3 > li {
    margin-bottom: 2.4rem;
  }

  .submenu.level-2.dropdown > li.child-bg-blue .submenu.level-3 > li {
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 1023px) {
  .submenu-header-mobile {
    display: none !important;
  }

  .submenu.level-3.submenu-right .submenu-header img {
    display: none;
  }
}

.submenu.level-3 > li > a .menu-item-description {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  color: #777373;
  letter-spacing: 0;
  line-height: 1.375;
  padding-top: 15px;
}

.resources .submenu.level-3 > li > a .menu-item-description {
  padding-top: 7px;
}

.submenu.level-3.submenu-right > li > a .menu-item-description {
  color: #fff;
}

@media (min-width: 1024px) {
  .submenu.level-4 {
    padding: 9.6px 0 16px 27.2px;
    border-left: 3px solid #af946f;
    margin-top: 48px;
  }

  .submenu.level-4 a {
    font-weight: 500;
  }

  .submenu.level-4 a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1023px) {
  .submenu.level-4 {
    padding-left: 27.2px;
  }

  .submenu.level-4 a {
    font-weight: 400;
    font-size: 16px;
    line-height: 2.2;
  }

  .submenu.level-4 a:hover {
    text-decoration: underline;
  }

  .submenu.submenu-right.level-4 .no-submenu.menu-item a {
    color: #252525 !important;
  }
}

.submenu.submenu-resources {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.submenu.submenu-resources > li.menu-item {
  flex: 1 1 30.666666666666667%;
  max-width: 222px;
}

.submenu.submenu-resources > li.menu-item.resource-menu-header {
  width: 100%;
  max-width: 100%;
  flex: 1 0 100%;
}

.submenu.submenu-resources .menu-item-topic {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.125;
  display: block;
  margin-bottom: .5rem;
  color: #fff;
}

.submenu.level-3.submenu-resources .menu-item .menu-link {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -.58px;
  color: #fff;
  line-height: 1.25;
  padding: 0;
}

.resources-menu-more {
  padding-top: 3rem;
  text-align: right;
}

.submenu.level-2 > li > .resources-menu-more > a {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.125;
  color: #fff;
  justify-content: flex-end;
}

.resources-menu-more a img {
  display: inline-block;
  margin-left: 2px;
  vertical-align: middle;
}

/*@media (max-width: 1023px) {
  .header a.button {
    font-size: 15px;
    letter-spacing: 0px;
    padding: 6px 17px;
  }
}*/

#nav-toggle {
  display: none;
}

@media (max-width: 1023px) {
  .submenu,
  .submenu.level-2 {
    display: none;
  }

  .submenu > .has-submenu {
    position: relative;
  }

  .submenu > li > a {
    display: block;
    width: 100%;
  }

  li.has-submenu.focus .submenu {
    display: block !important;
  }

  .header {
    position: relative;
  }
  .header__container {
    display: grid;
    /*grid-template-columns: 6fr 1fr 1fr;*/
    align-items: center;
    padding: 0.2rem 3.2rem !important;
  }

  .hs-landing-page:has(.body-container--lp) .header__container {
    grid-template-columns: 1fr;
  }

  @media screen and (min-width: 768px) {
    .header__container {
    }

    .desktop {
      display: block;
    }

    .mobile {
    }
  }

  .header__logo {
    max-width: 20.2rem;
    margin: 0 auto;
  }
  .header__logo.mobile {
    display: block !important;
    width: 75px;
    margin-right: 1.6rem;
  }
  .header__cta.mobile {
    margin-right: 2.4rem;
  }

  .hs-landing-page:has(.body-container--lp) .header__logo {
    margin-bottom: -2.5rem;
  }
  @media print {
    .header__container {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
    }
    .header__logo.mobile {
      width: 100px;
    }
  }

  .submenu.level-1 > li.logo-item.desktop {
    display: none !important;
  }

  .navigation-primary a {
    font-size: 20px;
    color: #fff;
  }

  .navigation-primary a:hover {
    color: #fff;
  }

  .navigation-primary {
    display: block;
  }

  .navigation-primary .submenu.level-1 > li > a.active-item:after {
    content: none;
  }

  .navigation-primary .submenu.level-1 > li > a.active-item:after {
    display: none;
  }

  .submenu > li > a {
    display: block;
    width: 100%;
  }

  .submenu > li.menu-item-cta {
    display: none !important;
  }

  .submenu > .has-submenu {
    position: relative;
  }

  .submenu.level-1 {
    display: block;
    width: 100%;
  }

  .submenu.level-1 > li {
    display: block;
    padding: 0;
    width: 100%;
    border-top: 3px solid #fff;
  }

  .submenu.level-1 > li > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 27px 20px 32px;
    font-size: 16px;
    letter-spacing: 0px;
    background-color: var(--navy);
    color: #fff;
  }

  .submenu.level-2 {
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    position: static;
    visibility: visible;
    width: 100%;
    z-index: 2;
    padding: 26px 39px;
    background-color: #eaeef2;
  }

  .submenu.level-2 > li {
    padding: 0 !important;
    border-bottom: unset;
  }

  .submenu.level-2 .menu-item {
    padding: 0;
    margin: 0;
  }

  .submenu.level-2 .menu-item .menu-link,
  .submenu.level-3 .menu-item .menu-link,
  .submenu.level-3 > li > a {
    color: #252525 !important;
    /*text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;*/
    text-decoration: none;
    padding: 7px 60px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
  }

  .submenu.level-2 .menu-item .menu-link:hover,
  .submenu.level-3 .menu-item .menu-link:hover,
  .submenu.level-3 > li > a:hover {
    background-color: inherit;
    color: #af946f;
  }

  .submenu.level-3 {
    background-color: inherit;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .submenu-resources-mobile {
    display: none !important;
  }

  .submenu.level-3 > li {
    background-color: inherit;
    padding: 0;
  }

  .submenu.level-3 .menu-item .menu-link {
    padding: 0.8rem 1rem;
  }

  .submenu.level-3 > li > a .menu-item-description {
    display: none;
  }
}

@media (max-width: 1023px) {
  body:not(.landing-ppc) .header.headerv2 [class*="mobile"] {
    display: block !important;
  }

  .header__navigation {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 99;
  }

  .header__navigation-toggle {
    cursor: pointer;
    display: block;
    position: relative;
  }

  #nav-toggle:checked ~ .header__navigation {
    display: block;
  }

  .hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    position: absolute;
    /*top: 50%;
    transform: translateY(-50%);
    right: 0;*/
  }

  .hamburger:hover {
    opacity: 0.7;
  }

  .hamburger-box {
    width: 28px;
    height: 15px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 28px;
    height: 4px;
    border-radius: 0;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    background-color: #252525;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
    background-color: #f00;
  }

  .hamburger-inner::before {
    top: -8px;
  }

  .hamburger-inner::after {
    bottom: -8px;
  }

  .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  }

  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease,
      -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease,
      transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease,
      transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
      -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  #nav-toggle:checked
    + .header__navigation-toggle
    .hamburger--squeeze
    .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  #nav-toggle:checked
    + .header__navigation-toggle
    .hamburger--squeeze
    .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  }

  #nav-toggle:checked
    + .header__navigation-toggle
    .hamburger--squeeze
    .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease,
      -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease,
      transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease,
      transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),
      -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .menu-arrow-icon,
  .menu-arrow-icon:after {
    background-color: #fff;
    border-radius: 10px;
    display: block;
    height: 2px;
    width: 8px;
  }

  .menu-arrow-icon {
    position: relative;
    margin: 0 auto;
    top: 3px;
  }

  .menu-arrow-icon:after {
    content: "";
    position: absolute;
    transform: rotate(-90deg);
    transition: transform 0.4s;
  }

  li.focus .menu-arrow .menu-arrow-icon:after {
    transform: rotate(0deg);
  }

  .submenu .menu-arrow {
    display: none;
    position: relative;
    z-index: 5;
  }

  .submenu.level-1 > .has-submenu > a > .menu-arrow,
  .submenu > .has-submenu > a > .menu-arrow {
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    vertical-align: super;
  }

  .submenu.level-1 > .has-submenu > .menu-arrow-bg,
  .submenu > .has-submenu > .menu-arrow-bg,
  .submenu > .has-submenu .menu-arrow-bg {
    display: block;
    height: 0.8rem;
    margin-left: 1.2rem;
    transition: transform 0.3s;
    width: 0.8rem;
    background: none;
  }
}

@media (min-width: 1024px) {
  .submenu .flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .submenu > .flex > a {
    max-width: calc(100% - 220px);
  }
  .menu-item-images,
  .resource-image-link {
    display: block;
    height: 138px;
    width: 207px;
    margin-bottom: 23px;
  }
  .menu-item-images img,
  .resource-image-link img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .menu-item-images a {
    display: block;
  }
}
@media (max-width: 1023px) {
  .menu-item-images,
  .resource-image-link {
    display: none !important;
  }

  .navigation-primary .submenu a:hover {
    text-decoration: underline;
  }
}


.submenu > li.menu-item-cta {
}
.cta-wrapper {
  position: relative;
}
.cta-placeholder {
  pointer-events: none;
  opacity: 0;
}

.submenu.level-1 > li.menu-item-cta {
  padding: 29px 0 29px 1.5rem;
}

.community_header_section .submenu.level-1 > li.menu-item-cta {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .mobile {
    display: none;
  }
  @media print {
    .submenu > li.menu-item-cta,
    .header__cta.mobile {
      display: none !important;
    }
  }
}
@media screen and (max-width: 500px) {
  .module-header.module-headerv2 {
    padding: 0;
  }

  /*.header__container {
    padding: 1.2rem 2rem !important;
  }*/
}

.submenu.level-3.count-5 .menu-item .menu-link {
  padding-left: 0;
}
.submenu.level-2.dropdown .submenu-left.count-5 {
  gap: 20px;
}
@media (min-width: 1024px) {
  .count-5 .menu-item-images {
    width: 100%;
  }
}
.footer {
  font-size: 1.4rem;
  padding: 0 2rem;
  font-weight: 500;
  border-top: 1px solid var(--coral);
}

.footer-top {
  padding: 7.1rem 0 4.1rem;
  border-bottom: 1px solid var(--coral);
}

.footer-bottom {
  padding: 3.4rem 0 5.7rem;
}

.footer-logo {
  max-width: 27.9rem;
}

.footer-text {
  width: 29.5rem;
  max-width: 100%;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer-top .footer-col:first-child {
    max-width: 29.5rem;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding-top: 3.6rem;
  }

  .footer-text {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .footer-top > .flex {
    flex-wrap: wrap;
  }

  .footer-top .footer-col:first-child {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

.footer h3.form-title {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
  color: var(--base-color);
  margin-bottom: 1.5rem;
}

.footer h5 {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--primary-font-family);
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.footer a:not(.button) {
  color: var(--gray);
  text-decoration: none;
}

.footer a:not(.button):hover {
  text-decoration: underline;
}

.footer-bottom a:not(.button) {
  text-decoration: underline;
}

.footer-bottom a:not(.button):hover {
  text-decoration: none;
}

.footer-menu .hs-menu-wrapper.hs-menu-flow-vertical > ul {
  gap: 1rem;
}

.footer .footer-social a {
  color: var(--coral);
}

.footer .footer-social a:hover {
  color: var(--coral_dark);
}

.footer-social svg path {
  fill: currentColor;
  transition: fill .2s ease;
}

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

  .footer-logo {
    margin: 0 auto;
  }

  .footer-top .buttons,
  .footer-social {
    justify-content: center;
  }

  .footer-menu .hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .footer-menu ul {
    max-width: 100%;
    display: none !important;
  }

  .footer-menu h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer !important;
    margin-bottom: 0;
  }

  .footer-menu h5:after {
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.116994 0.658424C-0.0389986 0.805694 -0.0389986 1.04387 0.116994 1.19078L3.42243 4.30454C3.49529 4.37424 3.58298 4.42974 3.68018 4.46767C3.77737 4.50559 3.88203 4.52515 3.9878 4.52515C4.09357 4.52515 4.19823 4.50559 4.29542 4.46767C4.39262 4.42974 4.48031 4.37424 4.55317 4.30454L7.883 1.16823C7.95742 1.09705 7.99925 1.00279 7.99999 0.904593C8.00073 0.806394 7.96034 0.711618 7.887 0.639515C7.85079 0.603796 7.80689 0.575217 7.75804 0.555546C7.70918 0.535875 7.6564 0.525532 7.60297 0.525157C7.54954 0.524782 7.49659 0.534383 7.44741 0.553366C7.39822 0.572349 7.35385 0.600309 7.31703 0.635515L4.27038 3.50601C4.23395 3.54089 4.19009 3.56866 4.14148 3.58764C4.09286 3.60662 4.04051 3.61641 3.9876 3.61641C3.93469 3.61641 3.88234 3.60662 3.83372 3.58764C3.78511 3.56866 3.74125 3.54089 3.70481 3.50601L0.682165 0.658424C0.645767 0.623555 0.601942 0.595788 0.55336 0.576813C0.504778 0.557838 0.452456 0.548052 0.39958 0.548052C0.346704 0.548052 0.294381 0.557838 0.245799 0.576813C0.197217 0.595788 0.153392 0.623555 0.116994 0.658424Z' fill='%23083550'/%3E%3C/svg%3E%0A");
    width: 8px;
    height: 5px;
    transform: rotate(-90deg);
    transition: all .2s ease;
  }

  .footer-menu.open h5:after {
    transform: rotate(0deg);
  }

  .footer-menu.open .hs-menu-wrapper ul {
    display: flex !important;
  }

  .footer-bottom .content-wrapper {
    gap: 1rem;
  }
}
/* 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;
}

.no-flyouts .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: 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;
}

.no-flyouts .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: unset;
  opacity: 1;
  position: unset;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.no-flyouts .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  white-space: normal;
}

.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%;
}

/* Modules
*/

.hero {
  padding: 12.8rem 2rem 8rem;
  overflow: hidden;
}

.hero.hero__text {
  padding: 12rem 2rem;
  /*min-height: 61.1rem;*/
  display: flex;
  align-items: center;
}

.hero.hero-image__bottom {
  padding: 10rem 2rem 0;
}

.hero.hero-image__side {
  padding-top: 10rem;
  padding-bottom: 0;
}

.hero.hero-image__side .hero__content {
  padding-bottom: 5rem;
}

.hero__text,
.hero__bottom-text {
  font-size: 2.2rem;
}

.hero__text-small .hero__text,
.hero__text-small .hero__bottom-text {
  font-size: 1.6rem;
}

.hero.hero-image__bottom .content-wrapper {
  z-index: 2;
}

.hero__watermark {
  top: 0;
  right: 0;
  bottom: 0;
}

.hero__bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.hero__bg-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: color;
}

.hero:not(.bg-white) h1,
.hero:not(.bg-white) .hero__text {
  color: #fff;
}

.hero__default:not(.hero-image__bottom) h1,
.hero .hero__text:not(:last-child) {
  margin-bottom: 4.6rem;
}

.hero.hero-image__side h1 {
  margin-bottom: 3rem;
}

.hero.hero-image__side .hero__text:not(:last-child) {
  margin-bottom: 1rem;
}

.hero__content {
  max-width: 54rem;
}

.hero__content:has(.cd-words-wrapper) {
  max-width: 62rem;
}

.hero.hero__text .hero__content {
  max-width: 73rem;
  margin: 0 auto;
}

.hero.hero-image__bottom .hero__content {
  max-width: 82rem;
  text-align: center;
  margin: 0 auto;
}

.hero.hero-image__bottom .hero__image {
  width: 100%;
  height: 47.4rem;
  position: Relative;
  z-index: 2;
  border: 1px solid var(--coral);
}

.hero.hero-image__bottom:after {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 22rem;
}

@media (min-width: 768px) {
  .hero.hero-image__side .content-wrapper {
    gap: 5.4rem;
  }

  .hero.hero-image__side .hero__content {
    max-width: auto;
    flex: 0 1 52rem;
    padding-bottom: 10rem;
  }

  .hero.hero-image__side .hero__image {
    flex: 0 1 54.6rem;
  }
}

@media (min-width: 992px) {
  .hero__bg.mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero__image.desktop {
    display: none;
  }
}

.hero__content *:not(h1):last-child {
  margin-bottom: 0 !important;
}

.hero__dots {
  top: -3rem;
  right: -3rem;
  z-index: 1;
  opacity: .25;
  pointer-events: none;
}

.hero__dots-alt {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 1;
}

.hds__tl {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.hds__br {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.hero__dots-alt .hds__tl {
  transform: translate(0, -35%);
}

.hero__dots-alt .hds__br {
  transform: translate(9%, 51%);
}

.hero__image-dots {
  top: 9rem;
  right: 1.5rem;
  z-index: -1;
}

.hero__partner {
  max-width: 15rem;
}

.hero__logo img,
.hero__partner img {
  transition: filter 0.3s ease-in-out;
  filter: contrast(0) brightness(200%);
}

/*.hero__partner:hover img {
  filter: contrast(100%) brightness(100%);
}*/

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


  .hero h1.cd-headline {
    text-align: left;
    font-size: 4rem;
  }

  .hero__default h1,
  .hero .hero__text:not(:last-child) {
    margin-bottom: 2.6rem;
  }

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

  .hero__text,
  .hero__bottom-text {
    font-size: 2rem;
  }

  .hero__partners {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .hero__partner {
    max-width: unset;
    flex: 0 1 calc(33.33333% - 3rem);
  }
}




.cd-headline {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}

.cd-words-wrapper {
  /*display: inline-block;*/
  display: block;
  max-width: 100%;
  position: relative;
  text-align: left;
  font-size: 2.4rem;
  font-family: var(--primary-font-family);
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .cd-headline {
    font-size: 2.9rem;
  }
}


.cd-words-wrapper b {
  /*display: inline-block;*/
  display: block;
  position: absolute;
  /*white-space: nowrap;*/
  left: 0;
  top: 0;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}
.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}


.cd-headline.slide span {
  /*display: inline;*/
  display: block;
}
.cd-headline.slide .cd-words-wrapper {
  /*overflow: hidden;*/
  vertical-align: top;
}
.cd-headline.slide b {
  opacity: 0;
  top: .2em;
}
.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}
.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}
@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}



@media (min-width: 768px) {
  .hero.hero-image__bottom .content-wrapper {
    flex-direction: column;
  }
}

.hero.hero__post {
  padding-top: 3.5rem;
}
.stats__wrapper .header-content {
  max-width: 66rem;
  margin-left: auto;
  margin-right: auto;
}

.stats__wrapper .stats {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  line-height: 1;
  margin-bottom: 0;
}

.stat__desc {
  max-width: 26.6rem;
  margin: 0 auto;
}


/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Rounded */

.rounded {
  border-radius: 2rem;
}

.rounded-sm {
  border-radius: 1rem;
}

.circle {
  border-radius: 50%;
}

/* Positioning */

.pos-rel {
  position: relative;
  z-index: 1;
}

.pos-abs {
  position: absolute;
}

/* Images */

.img-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.img-contain {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}