@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-ExtraLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-ExtraBoldItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('https://8376846.fs1.hubspotusercontent-na1.net/hubfs/8376846/Fonts/Metropolis/Metropolis-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* Theme base styles */

:root {
  --container-width: 1300px;
  --container-width-narrow: 860px;
  --vertical-spacing: 12rem;
  --gap: 2rem;
  --gap-sm: calc(var(--gap) / 2);
  --gap-md: calc(var(--gap) * 2);
  --gap-lg: calc(var(--gap) * 4);
  
  --base-color: #000000;
  --light-grey: #F7F5F6;
  --grey: #E9E9EF;
  --dark-grey: #616161;
  --primary-color: #F05D3B;
  --primary-color-alt: #CE5033;
  --secondary-color: #08104D;
  --secondary-color-alt: #060921;
  
  --primary-font-family: 'Metropolis', sans-serif;
}


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

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

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  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;
    overflow-x: hidden;
  }
  
  /**
   * Render the `main` element consistently in IE.
   */
  
  main {
    display: block;
  }
  
  /**
   * 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
     ========================================================================== */
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
   * 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
     ========================================================================== */
  
  /**
   * Remove the gray background on active links in IE 10.
   */
  
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, 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: 85%;
  }
  
  /**
   * 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;
  }
  
  /* Embedded content
     ========================================================================== */
  
  /**
   * Remove the border on images inside links in IE 10.
   */
  
  img {
    border-style: none;
  }
  
  /* 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 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  
  button,
  input { /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 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;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
   * 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, IE 10+, and Firefox.
   */
  
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  
  summary {
    display: list-item;
  }
  
  /* Misc
     ========================================================================== */
  
  /**
   * Add the correct display in IE 10+.
   */
  
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  
  [hidden] {
    display: none;
  }
.dark-theme {
  background: var(--base-color);
  color: var(--primary-color);
}

.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5 {
  color: var(--primary-color);
}

.dark-theme *::selection {
  background: var(--primary-color-alt);
  color: var(--base-color);
}

.dark-theme *::-moz-selection {
  background: var(--primary-color-alt);
  color: var(--base-color);
}

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

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

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

section,
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: calc(var(--vertical-spacing) / 2) 2rem;
}

.dnd-section > .row-fluid {
  max-width: var(--container-width);
  margin: 0 auto;
}

.dnd-section .row-module {
  margin: 0 calc(var(--gap) * -1);
}

.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) {
  .dnd-section .row-fluid {
    -webkit-column-gap: var(--gap);
       -moz-column-gap: var(--gap);
            column-gap: var(--gap);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .dnd-section [class*='span'] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

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

@media (min-width: 992px) {
  section,
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: var(--vertical-spacing) 2rem;
  }
}

/* Visibilty classes */

.hide {
  display: none !important;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

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

/* Responsive visibilty 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 HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: var(--primary-font-family);
  font-size: 1.6rem;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  color: var(--primary-color);
  font-weight: bold;
}

/* Headings */


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 2rem;
  font-family: var(--secondary-font-family);
  line-height: 1.2;
  color: var(--secondary-color);
}

h1,
.h1 {
  font-size: 3.6rem;
}
h2,
.h2 {
  font-size: 2.8rem;
}
h3,
.h3 {
  font-size: 2.4rem;
}
h4,
.h4 {
  font-size: 2.2rem;
}
h5,
.h5 {
  font-size: 2rem;
}
h6,
.h6 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 5rem;
  }
  h2,
  .h2 {
    font-size: 4rem;
  }
  h3,
  .h3 {
    font-size: 3.2rem;
  }
}

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

/* 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:not(.tiktok-embed) {
  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,
input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  background: var(--primary-color);
  color: #fff;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  border: 0;
  line-height: 1.5;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
button:focus,
.button:focus,
input[type="submit"]:focus {
  color: #fff#;
  background-color: var(--primary-color-alt);
}

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

.button.button--secondary {
  background: var(--secondary-color);
}

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

/* 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: 2rem;
  margin-bottom: 0.35rem;
  font-weight: 400;
  line-height: 1.3;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background: #fff;
  border: 0;
  display: inline-block;
  font-size: 2rem;
  padding: 1.5rem;
  width: 100%;
  border-radius: 4px;
}

form textarea {
  resize: vertical;
}

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

.form-columns-1 input:not([type="submit"]),
.form-columns-1 select,
.form-columns-1 textarea {
  width: 100% !important;
}

.form-columns-2 input[type="text"] {
    width: 100%;
}

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

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

.hs-error-msg {
  color: red;
  margin-top: 0.35rem;
  font-size: 14px;
}

/* Submit button */

form .actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

li.hs-form-booleancheckbox label {
    display: flex;
    align-items: start;
}

li.hs-form-booleancheckbox input {
  margin-top: 0.5rem;
  max-width: 24px;
}
/* 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
*/

div[data-global-resource-path="@projects/Panacea2025/theme/templates/partials/header.hubl.html"] {
    position: sticky;
    top: 0;
    z-index: 999999999;
}

body {
  overflow-x: hidden;
}

.header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid var(--light-gray);
}

.header__container {
  padding: 2rem;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Logo */

.header__logo a {
  display: block;
  font-size: 0;
}
.header__logo img {
  /* TBD */
  height: auto;
  width: 150px !important;
}

/* Nav */
.header__navigation {
  width: 100%;
}

.header__navigation nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-flow: row-reverse;
  justify-content: space-between;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.menu {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Navigation skipper */

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

@media (max-width: 1100px) {
  .header__navigation nav {
    flex-flow: row;
    justify-content: end;
    gap: 2rem;
  }
}
.footer {
  background: #E9E9EF;
  color: var(--base-color);
}

.footer .dnd-section {
  padding: calc(var(--vertical-spacing) / 2);
}

.footer .social-links__icon:hover,
.footer .social-links__icon:focus {
    filter: brightness(1.5);
}

footer ul[role="menu"]:not(.hs-menu-children-wrapper) {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    list-style: none;
}

@media (min-width: 1200px) {
    footer ul[role="menu"]:not(.hs-menu-children-wrapper) {
	flex-wrap: nowrap;
    }
}

footer ul[role="menu"] a[href="javascript:;"] {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 1rem;
    display: block;
    text-decoration: unset;
    pointer-events: none;
}

footer .hs-menu-wrapper.flyouts ul[role="menu"].hs-menu-children-wrapper {
    display: flex !important;
    flex-flow: column;
    gap: 1rem;
    position: unset !important;
    opacity: 1 !important;
}

footer ul[role="menu"].hs-menu-children-wrapper a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 300;
}

@media (min-width: 1200px) {
    footer .hs-menu-wrapper.flyouts ul[role="menu"].hs-menu-children-wrapper a {
	white-space: unset;
    }
}

footer ul[role="menu"].hs-menu-children-wrapper a:hover,
footer ul[role="menu"].hs-menu-children-wrapper a:focus {
    color: var(--primary-color);
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

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

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

/* Fade In Styles */

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

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

.fade-in--left {
  transform: translateX(-100px); 
}

.fade-in--right {
  transform: translateX(100px); 
}

.fade-in--bottom {
  transform: translateY(100px);
}

.fade-in--left .button {
  transform: translateX(-100px); 
}

.fade-in--right .button {
  transform: translateX(100px); 
}

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

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

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

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

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

.fade-in.fade-in--left.fade-in--fading-in .button {
  animation-name: fadeInLeft;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fade-in.fade-in--right.fade-in--fading-in .button {
  animation-name: fadeInRight;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.fade-in.fade-in--bottom.fade-in--fading-in .button,
.fade-in.fade-in--bottom.fade-in--fading-in input[type="submit"] {
  animation-name: fadeInBottom;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
/* For content that needs to be visually hidden but stay visible for screenreaders */

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

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