/* Theme base styles */

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

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

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

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

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

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-padding-top: 160px; /* height of sticky header */
}

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

/* CSS variables */

:root {
  --gap: 2.127659574%;
  --black: #2A2A2E;
  --yellow: #FCBD29;
  --pink: #EEA0B7;
  --turquoise: #6DC3CA;
  --violet: #D1ACDC;
  --blue: #5FC3EB;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

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

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

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

.arrow-box-link a {
  background: var(--yellow);
  background-image: url(https://26183644.fs1.hubspotusercontent-eu1.net/hubfs/26183644/theme-assets/icon-arrow-right.svg);
  background-position: center right 25px;
  background-repeat: no-repeat;
  color: var(--black);
  display: block;
  font-family: Raleway,serif;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 1em 55px 1em 19px;
  text-decoration: none;
}

.arrow-box-link a:hover {
  font-family: Raleway,serif;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
}

/* Headings */

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

/* Preheader */
.preheader {
  font-family: Roboto Mono,monospace;
  font-size: 78%;
  font-weight: 700;
  opacity: 0.7;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  font-size: 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 #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #d0d0d0;
  border-color: #d0d0d0;
  color: #e6e6e6;
}

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

.button--yellow:hover {
  color: #fff;
}

/* 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;
  margin-bottom: 0.1rem;
  font-family: Raleway, sans-serif;
  font-weight: 600;
}

form label,
form label p {
  font-size: 0.8rem;
}

form label.hs-form-radio-display {
  font-weight: normal;
}

/* 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 {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

.hs-error-msg,
.legal-consent-container .hs-error-msgs label {
  color: #CC0F19  !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;
}
/* Menu */

.menu--desktop {
  display: flex;
}

/* Fix blank space between elements */
.menu--desktop > ul {
  display: flex;
}

.menu--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .menu--desktop *,
  .menu--desktop {
    display: none;
  }

  .menu--mobile {
    display: block;
  }
}

/* Menu items */
.menu--primary .menu__item {
  position: static;
}

.menu--primary .menu__link {
  font-size: 1rem;
  line-height: 1.667rem;
  text-decoration: none;
  position: relative;
}

.menu--primary .menu__item--depth-1 > .menu__link:hover,
.menu--primary .menu__item--depth-1 > .menu__link:focus,
.menu--primary .menu__item--depth-1 > .menu__link:active {
  text-decoration: none;
}

.menu--primary .menu__link--active-link,
.menu--primary .menu__link--active-branch {
  font-weight: bold;
}

@media (min-width: 1024px) and (max-width: 1150px) {
  .menu--primary .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1024px) {
  .menu--primary .menu__item {
    display: block;
    width: 100%;
  }

  .menu--primary .menu__link {
    display: block;
    font-size: 1.083rem;
  }
  .menu--primary .menu__item.menu__item--first {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

/* Menu items - top level */
.menu--primary .menu__item--depth-1 {
  display: inline-block;
  /* padding: 1.7rem 0.875rem; */
}

/* Top level link underlines */
@media screen and (min-width: 1024px) {
  .menu--primary .menu__item--depth-1 > a,
  .menu--primary .menu__item--depth-1 > button {
    padding: 1.7rem 0.875rem;
    display: flex;
  }
}

.aa-campaign-page-nav .hs-menu-item.hs-menu-depth-1 {
  display: inline-flex;
}

.aa-campaign-page-nav .hs-menu-item.hs-menu-depth-1 > a,
.aa-campaign-page-nav .hs-menu-item.hs-menu-depth-1 > button {
  position: relative;
  padding: 1.7rem 0.875rem;
  text-decoration: none;
}

.menu--primary .menu__item--depth-1.menu__item--open > a:after,
.menu--primary .menu__item--depth-1 > .menu__link--active-link > a:after,
.menu--primary
  .menu__item--depth-1.menu__item--open
  > .menu__link--toggle:after,
.menu--primary
  .menu__item--depth-1
  > .menu__link--active-link
  > .menu__link--toggle:after,
.aa-campaign-page-nav .menu__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
}

.menu--primary .menu__item--depth-1:first-child.menu__item--open > a:after,
.menu--primary
  .menu__item--depth-1:first-child
  > .menu__link--active-link
  > a:after,
.menu--primary
  .menu__item--depth-1:first-child.menu__item--open
  > .menu__link--toggle:after,
.menu--primary
  .menu__item--depth-1:first-child
  > .menu__link--active-link
  > .menu__link--toggle:after,
.aa-campaign-page-nav .menu__item:hover > a:after {
  background-color: var(--pink);
}

.menu--primary .menu__item--depth-1:nth-child(2).menu__item--open > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(2)
  > .menu__link--active-link
  > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(2).menu__item--open
  > .menu__link--toggle:after,
.menu--primary
  .menu__item--depth-1:nth-child(2)
  > .menu__link--active-link
  > .menu__link--toggle:after {
  background-color: var(--turquoise);
}

.menu--primary .menu__item--depth-1:nth-child(3).menu__item--open > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(3)
  > .menu__link--active-link
  > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(3).menu__item--open
  > .menu__link--toggle:after,
.menu--primary
  .menu__item--depth-1:nth-child(3)
  > .menu__link--active-link
  > .menu__link--toggle:after {
  background-color: var(--blue);
}

.menu--primary .menu__item--depth-1:nth-child(4).menu__item--open > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(4)
  > .menu__link--active-link
  > a:after,
.menu--primary
  .menu__item--depth-1:nth-child(4).menu__item--open
  > .menu__link--toggle:after,
.menu--primary
  .menu__item--depth-1:nth-child(4)
  > .menu__link--active-link
  > .menu__link--toggle:after {
  background-color: var(--violet);
}

@media (max-width: 1024px) {
  .menu--primary .menu__item--depth-1 {
    position: relative;
    padding: 0;
  }

  .menu--primary .menu__item--depth-1 > .menu__link {
    display: inline-flex;
    margin: 0.667rem 2.222rem;
  }

  .menu--primary .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }

  .menu--primary .menu__item--depth-1.menu__item--open > a:after,
  .menu--primary .menu__item--depth-1 > .menu__link--active-link > a:after {
    bottom: -0.667rem;
  }
}

/* Menu items - Submenu */
.menu--primary .menu__submenu.menu__submenu--level-2 {
  background-color: var(--black);
  display: none;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  text-align: left;
  text-transform: none;
  top: 100%;
  width: 100%;
  max-width: 1150px;
  padding: 3.125rem 0;
  color: #fff;
  z-index: 99;
}

.mega-menu-wrapper {
  display: none;
  position: fixed;
  height: auto;
  width: 100vw;
  left: 0;
  right: 0;
  background-color: var(--black);
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 80vh;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
}

.menu--primary .menu__submenu--level-2 h2,
.menu--primary .menu__submenu--level-2 h3,
.menu--primary .menu__submenu--level-2 h4 {
  color: #fff;
  line-height: 1;
  margin-bottom: 0.875rem;
}

/* Submenu visibility */
.menu--primary .menu__item--open .mega-menu-wrapper > .menu__submenu {
  display: grid;
  grid-column-gap: 20px;
}

.menu--primary .menu__item--open .mega-menu-wrapper {
  display: flex;
}

.menu--primary .menu__item--open .menu__submenu--level-2:after,
.menu--primary .menu__item--open .menu__submenu--level-2:before {
  display: block;
}

.menu--primary .menu__submenu--level-2 {
  transform: translateX(-50%);
}

.menu--primary .menu__submenu--level-2 {
  display: none;
  grid-template-columns: repeat(4, 1fr);
}

/* Full grid width submenu heading */
.menu--primary .menu__submenu--level-2 > li:first-child {
  grid-column-start: 1;
  grid-column-end: 4;
}

/* Link with icon */
.menu__item--first {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 2.111rem;
  margin-left: 1.05rem;
}

/* Submenu heading styles */
.menu--primary .menu__submenu--level-2 > li:first-child > a {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Link columns */
.menu--primary .menu__submenu--level-2 > li:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 1;
}

.menu--primary .menu__submenu--level-2 > li:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 2;
}

.menu--primary .menu__submenu--level-2 > li:nth-child(4) {
  grid-column-start: 3;
  grid-column-end: 3;
}

.menu--primary .menu__submenu--level-2 > li:nth-child(5) {
  grid-column-start: 4;
  grid-column-end: 4;
}

/* Link column headings */
.menu--primary .menu__submenu--level-2 .menu__item--depth-2.menu__item--has-submenu > a,
.menu--primary .menu__submenu--level-2 .menu__item--depth-2.menu__item--has-submenu > button {
  text-transform: uppercase;
  font-weight: 600;
  /*margin-bottom: 0.875rem;*/
}

.menu--primary .menu__submenu .menu__item {
  padding: 0;
  width: 100%;
  z-index: 99;
}

.menu--primary .menu__submenu .menu__link {
  display: block;
  padding: 0.5rem 1.05rem;
  transition: background-color 0.3s;
  width: 100%;
  line-height: 1.5;
}

/* Links in submenu */
.menu--primary .menu__submenu--level-3 {
  position: static;
  display: block;
  left: 100%;
  top: 0;
  margin-bottom: 2rem;
}

.menu--primary .menu__submenu--level-3 a {
  text-decoration: underline;
}

.menu--primary .menu__submenu--level-3 a,
.menu--primary .contact-info p {
  font-size: 0.889rem; /* 16px */
  line-height: 1.5;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */
.menu--primary
  .menu__item--depth-1:nth-last-child(-n + 2)
  .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Contact info section in megamenu */

.menu--primary .contact-info a {
  color: #fff;
  text-decoration: underline;
}

.menu--primary .contact-info a.button {
  background-color: var(--yellow);
  border-radius: 56px;
  color: var(--black);
  font-size: 0.889rem;
  line-height: 1em;
  padding: 17px 28px;
  text-transform: none;
  display: inline-flex;
  margin-bottom: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}

/* Accounts for child toggle */

.menu--primary .menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

@media (max-width: 1024px) {
  .menu--primary .menu__submenu--level-2 {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    transform: unset;
    width: 100%;
    display: none;
    flex-direction: column;
  }

  .menu--primary .menu__item--open > .menu__submenu.menu__submenu--level-2 {
    display: flex;
  }

  .menu--primary .menu__item--depth-2.menu__item--open .menu__submenu--level-3 {
    display: flex;
    flex-direction: column;
  }

  .menu--primary .menu__item--open .menu__submenu--level-2:after,
  .menu--primary .menu__item--open .menu__submenu--level-2:before {
    display: none;
  }

  .menu--primary .menu__submenu--level-2 .menu__item {
    padding: 0;
    position: relative;
  }

  .menu--primary .menu__submenu--level-2 .menu__link {
    display: block;
    padding: 0.7rem 2.222rem;
    transition: none;
    width: 100%;
  }

  .menu--primary .menu__submenu--level-2 .menu__link--toggle {
    margin-left: 1rem;
  }

  .menu--primary .menu__submenu--level-2 .menu__item .menu__link:hover,
  .menu--primary .menu__submenu--level-2 .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu--primary .menu__submenu--level-2 > .menu__link {
    width: 70%;
  }

  .menu--primary .contact-info.menu__item {
    padding: 0.7rem 2.222rem;
  }

  /* Mobile - Primary subnavigation */
  .menu--primary .menu__submenu--level-2 {
    padding-top: 1.667rem;
    padding-bottom: 1.667rem;
  }

  .menu--primary .menu__submenu--level-3 {
    display: none;
  }

  .menu--primary .menu__submenu--level-2 .menu__item > .menu__child-toggle {
    top: 10px;
    left: 1.389rem;
  }

  .menu--primary
    .menu__submenu--level-2
    .menu__item--depth-2.menu__item--has-submenu
    > a {
    padding-left: 3.333rem;
    margin-bottom: 0;
  }

  .menu__item--first {
    margin-left: 2.222rem;
    margin-bottom: 1.111rem;
  }

  .menu--primary .menu__submenu--level-2 .menu__item--first .menu__link {
    padding-left: 1.111rem;
  }
}

/* Menu icons */

@media (min-width: 1024px) {
  .menu--primary .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu--primary .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
  }

  .menu--primary .menu__item--depth-1 > .menu__child-toggle {
    display: none;
  }

  .menu--primary .menu__child-toggle-icon {
    display: none;
  }
}

/* Menu items */

.menu--secondary .menu__item {
  position: relative;
}

.menu--secondary .menu__link {
  font-size: 0.917rem;
  line-height: 1.667rem;
  text-decoration: none;
}

.menu--secondary .menu__link:hover,
.menu--secondary .menu__link:focus,
.menu--secondary .menu__link:active {
  text-decoration: none;
}

@media (min-width: 1024px) and (max-width: 1150px) {
  .menu--secondary .menu__link {
    font-size: 0.833rem;
  }
}

@media (max-width: 1024px) {
  .menu--secondary .menu__item {
    display: block;
    width: 100%;
  }

  .menu--secondary .menu__link {
    display: inline-flex;
    font-size: 1.083rem;
  }
}

/* Menu items - top level */
.menu--secondary .menu__item--depth-1 {
  display: inline-block;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  margin-left: 0.875rem;
  margin-right: 0.875rem;
  text-transform: none;
}

@media screen and (min-width: 1024px) {
  .menu--secondary .menu__item--depth-1:last-child {
    margin-right: 0px;
  }

  .menu--secondary .menu__item--depth-1.menu__item--open:after,
  .menu__item--depth-1 > .menu__link--active-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background-color: var(--yellow);
  }
}

.menu--secondary .menu__item--depth-1 > .menu__link {
  font-size: 0.7rem;
  line-height: 1.5;
  text-decoration: none;
  font-family: Roboto Mono, monospace;
}

@media (max-width: 1024px) {
  .menu--secondary .menu__item--depth-1 {
    margin-left: 0px;
    display: block;
    padding: 0;
    min-height: 35px;
  }

  .menu--secondary .menu__item--depth-1 > .menu__link--active-link:after {
    content: none;
  }
}

/* Menu items - submenus */
@media screen and (min-width: 1024px) {
  .menu.menu--secondary .menu__submenu {
    box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.02),
      0px 18px 88px -4px rgba(24, 39, 75, 0.03);
    display: none;
    left: 100%;
    position: absolute;
    text-align: left;
    text-transform: none;
    top: 100%;
    width: 235px;
    padding: 0;
    z-index: 99;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    background-color: var(--black);
  }
}

.menu--secondary .menu__item--open > .menu__submenu {
  display: block;
}

.menu--secondary .menu__submenu--level-2 {
  transform: translateX(-100%);
}

.menu--secondary .menu__submenu .menu__item {
  border: 0;
  padding: 0;
  width: 100%;
}

.menu--secondary .menu__submenu .menu__link {
  display: block;
  padding: 0.4rem 1.6rem;
  transition: background-color 0.3s;
  width: 100%;
  font-size: 0.8rem;
}

.menu--secondary .menu__submenu--level-3 {
  left: 100%;
  top: 0;
}

/* Flyouts for the last two top level menu items go left to keep page responsive */
.menu--secondary
  .menu__item--depth-1:nth-last-child(-n + 2)
  .menu__submenu--level-3 {
  left: auto;
  right: 100%;
  top: 0;
}

/* Accounts for child toggle */
.menu--secondary .menu__submenu .menu__item--has-submenu > .menu__link {
  padding-right: 3rem;
}

@media (max-width: 1024px) {
  .menu--secondary .menu__submenu {
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    transform: unset;
    width: 100%;
    display: none;
  }

  .menu--secondary .menu__submenu .menu__item {
    border-bottom: none;
    padding: 0;
    color: var(--white);
  }

  .menu--secondary .menu__submenu .menu__link {
    display: block;
    padding: 0.7rem 2.222rem;
    transition: none;
    width: 100%;
  }

  .menu--secondary .menu__submenu .menu__item .menu__link:hover,
  .menu--secondary .menu__submenu .menu__item .menu__link:focus {
    background-color: inherit;
    transition: none;
  }

  .menu--secondary .menu__item--has-submenu > .menu__link {
    width: auto;
    position: relative;
  }

  .menu--secondary .menu__item--has-submenu.menu__item--open > .menu__link {
    padding-bottom: 0.556rem;
  }

  .menu--secondary .menu__submenu--level-3 .menu__item .menu__link {
    padding: 0.7rem 3rem;
  }

  .menu--secondary .menu__item--depth-1.menu__item--open > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background-color: var(--yellow);
  }
}

/* Menu icons */

@media (min-width: 1024px) {
  .menu--secondary .menu__submenu .menu__child-toggle {
    margin-left: auto;
    padding: 0 1.05rem;
  }

  .menu--secondary .menu__child-toggle {
    position: absolute;
    right: 5px;
    top: 30px;
    z-index: 2;
    display: none;
  }

  .menu--secondary .menu__item--depth-1 > .menu__child-toggle {
    position: static;
    right: 0;
    top: 0;
    vertical-align: middle;
  }
}

@media (max-width: 1024px) {
  .menu--secondary .menu__item--depth-1 > .menu__link {
    margin: 0.556rem 2.222rem;
  }
  .menu--secondary .menu__item--depth-2 > .menu__link {
    padding: 0.4rem 2.222rem;
  }
  .menu--secondary
    .menu__item--depth-1.menu__item--open
    .menu__submenu--level-2 {
    padding-bottom: 0.556rem;
  }
}

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

.body-wrapper {
  overflow-x: hidden;
}

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

.header {
  box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.02),
    0px 18px 88px -4px rgba(24, 39, 75, 0.03);
}

/* Fixed header in desktop */
@media screen and (min-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.02),
      0px 18px 88px -4px rgba(24, 39, 75, 0.03);
    z-index: 9999;
  }
  main {
    padding-top: 146px;
  }
  .campaign-page .header__container {
    min-height: 90px;
  }
  .campaign-page main {
    padding-top: 90px;
  }
}

/* Header container */
.header__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .header__top .header__container {
    justify-content: flex-end;
  }
}

.header__row-1 {
  padding-top: 1rem;
}

.header__column {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 1024px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
  font-family: Roboto Mono, monospace !important;
  font-size: 0.7rem;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 20px;
  overflow: visible;
  top: 10px;
  width: auto;
}

/* Header - Top section */
.header__top {
  border-bottom: 1px solid rgba(42, 42, 46, 0.15);
  font-family: Roboto Mono, monospace;
}

@media screen and (max-width: 1024px) {
  .header__top {
    padding-top: 1.389rem;
    padding-bottom: 1.667rem;
    margin-top: 1.389rem;
    border-top: 1px solid rgba(42, 42, 46, 0.15);
    border-bottom: 0;
  }
}

/* Header - Bottom section */
.header__bottom .header__container {
  position: relative;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header__logo {
    margin-left: 0;
    width: auto;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* Search bar */

.header__search {
  width: 40px;
  height: auto;
  display: flex;
  justify-content: flex-end;
}

.header__search a {
  display: flex;
  align-items: center;
}

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #fff;
  border: 2px solid #d1d6dc;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #d1d6dc;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494a52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 1024px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 1024px) {
  .header__main-content .header__search {
    display: none;
  }
  .header__mobile .header__search {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
}

/* Language switcher */

.header__language-switcher {
  display: flex;
  align-items: center;
  padding-bottom: 0.7rem;
  padding-top: 0.7rem;
  margin-left: 1.75rem;
}

.header__language-switcher a,
.header__language-switcher a:hover,
.header__language-switcher a:focus,
.header__language-switcher a:active {
  cursor: pointer;
  padding-right: 0;
  font-family: Roboto Mono, monospace;
  font-size: 0.7rem;
  line-height: 1.5;
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .header__language-switcher {
    padding-left: 0rem;
    padding-right: 0;
    padding-top: 0.2rem;
    margin-left: 2.222rem;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile navigation */
@media screen and (max-width: 1024px) {
  .header__main-content {
    display: none;
  }

  .header__main-content.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 81px;
    bottom: 0;
    min-height: 100vw;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    padding-bottom: 81px;
    z-index: 9999;
  }

  body.nav-open {
    overflow-y: hidden;
  }

  .header__main-content .header__bottom {
    order: 1;
  }

  .header__main-content .header__top {
    order: 2;
  }

  .header__column {
    justify-content: flex-start;
  }

  .header__main-content .menu__submenu .menu__link,
  .header__main-content .menu__submenu .menu__link:focus,
  .header__main-content .menu__submenu .menu__link:hover {
    background-color: inherit;
    color: inherit;
    text-decoration: none;
  }

  .header__main-content .content-wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
}

/* Mobile toggles */

@media (max-width: 1024px) {
  .header__navigation {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #f8fafc;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}

.header__mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header__mobile {
    display: flex;
    height: 81px; /* Fixed height for mobile nav positioning */
  }
  .header__mobile .header__container {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 1rem 0.278rem 1rem 1rem;
  }
  .menu__child-toggle {
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    cursor: pointer;
    height: 35px;
    width: 35px;
    position: absolute;
    left: 5px;
    top: 0;
  }
  .menu__child-toggle:after {
    display: none;
  }
  .menu__child-toggle-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.3125 3.76562V5.46094H0.515625V3.76562H8.3125ZM5.32812 0.578125V8.85938H3.50781V0.578125H5.32812Z' fill='#2a2a2e'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    height: 100%;
    transition: transform 0.4s;
    width: 100%;
  }
  .menu__child-toggle-icon--white {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.3125 3.76562V5.46094H0.515625V3.76562H8.3125ZM5.32812 0.578125V8.85938H3.50781V0.578125H5.32812Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    height: 100%;
    transition: transform 0.4s;
    width: 100%;
  }
  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon,
  .menu__item--open > .menu__child-toggle .menu__child-toggle-icon--white {
    transform: rotate(45deg);
    transition: transform 0.4s;
  }
  /* Primary menu toggle position */
  .menu--primary .menu__item--depth-1 > .menu__child-toggle {
    margin-top: 9px;
  }
  /* Secondary menu toggle position */
  .menu--secondary .menu__item--depth-1 > .menu__child-toggle {
    margin-top: 1px;
  }
  /* Hamburger icon */
  .header__mobile-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .header__mobile-trigger .open-menu {
    display: flex;
  }

  .header__mobile-trigger .close-menu {
    display: none;
  }

  .header__mobile-trigger.nav-open .open-menu {
    display: none;
  }

  .header__mobile-trigger.nav-open .close-menu {
    display: flex;
  }
}
/* Footer styles */

.footer {
    background: linear-gradient(180deg, rgba(42, 42, 46, 0.1) 0%, rgba(42, 42, 46, 0) 100%) !important;
    font-family: 'Raleway', sans-serif;
}

.footer,
.footer p,
.footer a {
    font-size: 0.8rem;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    color: inherit;
}

.footer a:hover {
    font-family: inherit;
    text-decoration: underline;
    color: inherit;
}

.footer strong,
.footer #hs_cos_wrapper_simple_menu_1 a {
    font-size: 1rem;
}

.footer__inner {
    width: 100%;
}

.footer__logo {
    margin-bottom: 55px;
}

.footer__partner {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 50%;
    gap: 30px;
    margin-top: 20px;
}

.footer__partner img {
    width: 100%;
    height: auto;
    max-width: 160px;
}

.footer__body {
    display: flex;
    padding-bottom: 71px;
    border-bottom: 1px solid;
}

.footer__partner p {
    margin: 0;
}

.footer__address,
.footer__simple-menus,
.footer__some {
    width: calc(100% / 12 * 3);
    margin-right: var(--gap);
}

.footer #hs_cos_wrapper_simple_menu_1 a {
    font-weight: 700;
}

.footer__body li.hs-menu-item a {
    margin-bottom: 1em;
    font-family: inherit;
    color: inherit;
    display: block;
    text-decoration: none;
}

.footer__footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-family: Roboto Mono, monospace;
    margin-top: 18px;
}

.footer__footer a {
    font-family: inherit;
    text-decoration: none;
    color: inherit;
}

.footer__footer a:hover {
    font-family: inherit;
}

.footer__footer li.hs-menu-item {
    margin-left: 37px;
}

@media screen and (max-width: 1024px) {
    .footer__address, 
    .footer__simple-menus,
    .footer__some {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .footer__body {
        display: block;
        padding-bottom: 50px;
    }

    .footer__partner {
        flex-direction: column;
        align-items: baseline;
        max-width: 100%;
        gap: 10px;
        margin-top: 30px;
    }

    .footer__address, 
    .footer__simple-menus,
    .footer__some {
        width: 100%;
        margin-right: 0;
    }

    .footer__footer {
        display: block;
        text-align: center;
    }

    .footer__footer .aa-rich-text {
        text-align: center !important;
    }

    .footer .social-links {
        text-align: center;
        margin-top: 3em;
    }

    .footer .social-links__icon {
        margin-right: 20px;
        width: auto;
    }

    .footer__footer .hs-menu-wrapper ul {
        margin-top: 2em;
    }

    .footer__footer li.hs-menu-item {
        margin-left: 0;
    }
}
/* 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_logo {
  display: flex;
}

.hs_cos_wrapper_type_logo a {
  display: inline-flex;
}

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Styles for Vertical card macro */

.vertical-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vertical-card a {
  text-decoration: none;
}

.vertical-card__image {
  position: relative;
  aspect-ratio: 1.328;
}

.vertical-card__image a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.vertical-card__preheader {
  margin-top: 26px;
  margin-bottom: -6px;
}

.tag-bullet {
  font-size: 12px;
}

.vertical-card__heading {
  margin-top: 30px;
}

.vertical-card__heading .h5 {
  margin-bottom: 0;
}

.vertical-card__body-text {
  margin-top: 14px;
}

.vertical-card__time {
  font-size: 0.889rem;
  display: flex;
  align-items: center;
}

.vertical-card__time {
  font-size: 0.889rem;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.vertical-card__place {
  font-size: 0.889rem;
  display: flex;
  align-items: center;
}

.vertical-card__icon svg {
  display: flex;
  justify-content: flex-center;
  margin-right: 0.556rem;
  margin-top: -2px;
  width: 20px;
}

.vertical-card__image__register {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(252, 189, 41, 0.9);
  font-family: "Raleway", serif;
  font-size: 0.778rem;
  font-weight: 700;
  color: var(--black);
  padding: 0.556rem 1.111rem;
  z-index: 1;
}

/* Common card grid style */
@media screen and (min-width: 768px) {
  .aa-vertical-card-grid__heading {
    max-width: 60%;
  }
}

.aa-vertical-card-grid__heading .heading-button {
  margin-top: 0.833rem;
}

.aa-vertical-card-grid__tags {
  margin-top: 2.222rem;
}

.aa-vertical-card-grid__tags .show-all {
  font-size: 1rem;
  text-decoration: underline;
}

.aa-vertical-card-grid__tags .aa-blog-filter {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  padding: 0.7rem;
}

.aa-vertical-card-grid__tags .aa-filter-buttons {
  margin-top: 0.875rem;
}

.aa-vertical-card-grid__tags .aa-filter-buttons .button {
  margin-bottom: 0.875rem;
}

.aa-vertical-card-grid__tags .aa-filter-buttons .button.active {
  background-color: var(--yellow);
  color: var(--black);
}

.aa-vertical-card-grid__tags p {
  margin-bottom: 0.3rem;
}

.aa-vertical-card-grid__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.667rem;
  row-gap: 3.333rem;
  margin-top: 2.813rem;
}

@media screen and (max-width: 920px) {
  .aa-vertical-card-grid__body {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 550px) {
  .aa-vertical-card-grid__body {
    grid-template-columns: 1fr;
  }
}
.aa-pagination {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding-left: 0;
  margin-top: 6.667rem;
}

.aa-pagination a {
  display: flex;
  border: 1px solid #e9ecef;
  margin-right: 0.556rem;
  font-size: 0.778rem;
  color: var(--black);
  text-decoration: none;
  padding: 0 0.667rem;
}

.aa-pagination a:hover,
.aa-pagination a:active,
.aa-pagination a:focus,
.aa-pagination a.is-active {
  color: #fff;
  background-color: var(--black);
}

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

/* Ready-made styles for overlay and background elements */
.overlay-wrapper {
  position: relative;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay > img,
.overlay > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Offset anchor links */
/* :target {
  display: block;
  position: relative;
  top: -160px;
  visibility: hidden;
} */