/* 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: #000000;
  --yellow: #FCBD29;
  --pink: #EEA0B7;
  --turquoise: #6DC3CA;
  --violet: #D1ACDC;
  --blue: #5FC3EB;
  --white: #FFFFFF;
  --primary: #0F4348;
  --secondary: #F9F2EC;
  --coral: #F4AB92;
  --nougat: #ebd7c3;
  --berry: #efbec4;
  --moss: #14555A;
  --nougat-light: #F9F2EC;
  --coral-dark: #EC6A3D;
  --gray: #BDBDBD;
}

.bg-linear-nougat {
  background: linear-gradient(180deg, rgba(235, 215, 195, 0.32) 0%, rgba(235, 215, 195, 0) 100%),
    linear-gradient(0deg, #FFFFFF, #FFFFFF);
}

.hidden {
  display: none !important;
}

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

/* Grid */
.aa-grid {
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.aa-grid.aa-grid--one {
  grid-template-columns: minmax(0, 1fr);
}

.aa-grid.aa-grid--cols-1-4 {

  grid-template-columns: 1fr;

}

@media (min-width: 767px) {
  .aa-grid {
    grid-gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-grid.aa-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aa-grid.aa-grid--two.aa-grid--cols-1-2 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);

  }

  .aa-grid.aa-grid--cols-1-4 {

    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
  }

  .aa-grid.aa-grid--two.aa-grid--cols-2-1 {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

}

@media (min-width: 992px) {
  .aa-grid.aa-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aa-grid.aa-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .aa-grid.aa-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .aa-grid.aa-grid--six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

}


.aa-grid.aa-grid--two-mobile {
  @media (max-width: 992px) {
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  }
}

.aa-grid.aa-grid--auto {
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  width: fit-content;

}

.aa-grid.aa-grid--auto-fill {

  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));

}

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

.aa-grid.aa-grid--100 {
  width: 100%;
}

.aa-grid.aa-grid--small {
  grid-gap: 1.1rem;

}
.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;
  font-weight: 500;
}

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: 1.8rem;
  margin: 0 0 1.6rem;
  font-weight: 500;
}

p:last-child {

margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

.arrow-box-link a {
  background: var(--secondary);
  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:last-child,.h1:last-child,
h2:last-child,.h2:last-child,
h3:last-child,.h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin-bottom: 0;
}

h1:first-child,.h1:first-child,
h2:first-child,.h2:first-child,
h3:first-child,.h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child {
  margin-top: 0;
}

/* Preheader */
.preheader {
  font-family: Roboto Mono,monospace;
  font-size: 78%;
  font-weight: 700;
  opacity: 1;
  font-size: 1.6rem;
  color: var(--primary);
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
  font-size: 1.6rem;
}

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: 1.1rem;
  word-break: normal;
}

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

.font-weight--semibold {
  font-weight: 600;
}

.font-weight--bold {
  font-weight: 700;
}

.font-size--small, .font-size--small p {
  font-size: 1.6rem;
  line-height: 1.4em;
}

.font-size--medium, .font-size--medium p {
  font-size: 1.8rem;
  line-height: 1.4em;
}

.font-size--large, .font-size--large p {
  font-size: 2rem;
  line-height: 1.4em;
}

@media (min-width: 600px) {
  .font-size--large, .font-size--large p {
  font-size: 2.2rem;
  line-height: 1.4em;
}
}
button.reset {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  background-color: transparent;
}

button,
.button {
  cursor: pointer;
  position: relative;
  text-align: left;
  transition: all 0.15s linear;
  white-space: normal;
  color: var(--primary);
  display:inline-flex;
  align-items: center;
  justify-content: space-between;

}

button.CookiebotWidget-show-consent-details::after {
  content: none !important;
}

button:not(.custom):not(.private-button):not(.CookiebotWidget-close):not(.CookiebotWidget-logo):not(.splide__arrow)::after, .button:not(.custom):not(.private-button):not(.CookiebotWidget-logo):not(.splide__arrow)::after {
  content: "";
  display: inline-block;
  position: relative;
  right: 0;
  transition: right 0.15s linear;
  margin-left: 10px;
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
  background-image: url(https://26183644.fs1.hubspotusercontent-eu1.net/hubfs/26183644/01_tiedepuisto/assets/icons/arrow-right-primary.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

button.no-arrow::after,.button.no-arrow::after {
  content: none !important;
}

button:not(.custom):not(.private-button):not(.CookiebotWidget-close):not(.CookiebotWidget-logo):not(.splide__arrow):hover,.button:not(.custom):not(.private-button):not(.splide__arrow):hover,
button:not(.custom):not(.private-button):not(.CookiebotWidget-close):not(.CookiebotWidget-logo):not(.splide__arrow):focus-visible,.button:not(.custom):not(.private-button):not(.splide__arrow):focus-visible {
text-decoration: none !important;
opacity: 1;
}

button:not(.custom):not(.private-button):not(.CookiebotWidget-close):not(.CookiebotWidget-logo):not(.splide__arrow):hover::after,.button:not(.custom):not(.private-button):not(.splide__arrow):hover::after,
button:not(.custom):not(.private-button):not(.CookiebotWidget-close):not(.CookiebotWidget-logo):not(.splide__arrow):focus-visible::after,.button:not(.custom):not(.private-button):not(.splide__arrow):focus-visible::after {
right: -0.5rem;
}

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

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

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

.button.button--1:not(.custom):not(.private-button):not(.splide__arrow) {
background-color: var(--coral);
color: var(--primary);
}

.button.button--1:not(.custom):not(.private-button):not(.splide__arrow):hover,
.button.button--1:not(.custom):not(.private-button):not(.splide__arrow):focus-within {
  background-color: var(--coral);
}

.button.button--2:not(.custom):not(.private-button):not(.splide__arrow) {
background-color: var(--nougat);
color: var(--primary);
}

.button.button--2:not(.custom):not(.private-button):not(.splide__arrow):hover,
.button.button--2:not(.custom):not(.private-button):not(.splide__arrow):focus-within {
  background-color: var(--nougat);
  color: var(--primary);
}

.button.button--3:not(.custom):not(.private-button):not(.splide__arrow) {
background-color: var(--berry);
color: var(--primary);
}

.button.button--3:not(.custom):not(.private-button):not(.splide__arrow):hover,
.button.button--3:not(.custom):not(.private-button):not(.splide__arrow):focus-within {
  background-color: var(--berry);
  color: var(--primary);
}


.button.button--4:not(.custom):not(.private-button):not(.splide__arrow) {
background-color: transparent;
color: var(--primary);
}


.button.button--4:not(.custom):not(.private-button):not(.splide__arrow):hover,
.button.button--4:not(.custom):not(.private-button):not(.splide__arrow):focus-within {
  background-color: transparent;
  color: var(--primary);
}

.button.button--4:not(.custom):not(.private-button):not(.splide__arrow):first-child {
  padding-left: 0;
}

.button.button--5:not(.custom):not(.private-button):not(.splide__arrow),
.button.button--5:not(.custom):not(.private-button):not(.splide__arrow):hover,
.button.button--5:not(.custom):not(.private-button):not(.splide__arrow):focus-within  {
  background-color: var(--gray);
  color: var(--primary);
}


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

.button-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}

.button-wrapper:not(.button-wrapper--grid) a,
.button-wrapper:not(.button-wrapper--grid) button {
  margin: 1rem 3rem 1rem 0;
}

.button-wrapper:not(.button-wrapper--grid) a:last-child,
.button-wrapper:not(.button-wrapper--grid) button:last-child {
  margin-right: 0;
}

.button-wrapper.button-wrapper--block {
display: block;
}

.button-wrapper.button-wrapper--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
  gap: 2rem 3rem;

}

.button-wrapper a:only-child,
.button-wrapper button:only-child {
  margin: 0 !important;
}

.show-more-contents {
 margin: 1.6rem 0 0 0; 
}

.show-more-contents:last-child {
 margin-bottom: 0; 
}

.show-more-contents button.custom {
 font-weight: 700;
}

.show-more-contents .plus {
 display: inline-block;
    margin-right: 0.6rem;
    font-size: 3rem; 
}

.show-more-contents button .text:hover {
 display: inline-block;
 text-decoration: underline; 
}


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

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

/* Help text */

form legend {
  font-size: 1.4rem;
}

/* 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: 1.4rem;
  font-weight: 600;
  padding: 2rem 2.4rem;
  width: 100% !important;
  border-radius: 1.3rem;
}

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],
.aa-form form.hs-form fieldset.form-columns-1 input[type=file].hs-input {
  background-color: transparent;
  border: initial;
  padding: initial;
  border-radius: 0;
  margin-bottom: 20px;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 1.6rem;
  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: 1.6rem;
  line-height: 1.667rem;
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

.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: 1.6rem;
  }
}

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

  .menu--primary .menu__link {
    display: block;
    font-size: 1.4rem;
  }
  .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 1.6rem; */
}

/* Top level link underlines */
@media screen and (min-width: 1024px) {
  .menu--primary .menu__item--depth-1 > a,
  .menu--primary .menu__item--depth-1 > button,
  .menu--primary .menu__item--depth-1 > .menu__link {
    padding: 1.7rem 2.3rem;
    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,
.aa-campaign-page-nav .hs-menu-item.hs-menu-depth-1 > .menu__link {
  position: relative;
  padding: 1.7rem 1.6rem;
  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: 1.6rem;
}

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

.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: 1.6rem; /* 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(--secondary);
  border-radius: 56px;
  color: var(--black);
  font-size: 1.6rem;
  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--desktop {
  height: 100%;
}

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

.menu--secondary .menu__link {
  font-size: 1.6rem;
  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: 1.6rem;
  }
}

@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: 1.6rem;
  margin-right: 1.6rem;
  text-transform: none;
}

.menu--secondary.menu--desktop .menu__item--depth-1 {
  align-items: center;
  display: flex;
}

@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(--secondary);
  }
}

.menu--secondary .menu__item--depth-1 > .menu__link {
  font-size: 1.1rem;
  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: 1.6rem;
}

.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(--secondary);
  }
}

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

.header__top.menu--desktop {
min-height: 4.4rem;

}

.header__bottom.menu--desktop {
  min-height: 8.6rem;
}

/* 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: 13rem;
  }
  .campaign-page .header__container {
    min-height: 9rem;
  }
  .campaign-page main {
    padding-top: 9rem;
  }
}

/* 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;
    max-width: 1300px;
  }
}

.header__row-1 {
  padding-top: 1rem;
}

.header__column {
  align-items: center;
  display: flex;
  justify-content: center;
  width: auto;
  flex:auto;
}

@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: 1.1rem;
}

.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;
  max-width: 1300px;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 12.3rem;
  overflow: hidden;
}

.header__logo a {
  line-height: 0;
}

.header a:hover img, .header a:hover svg {
  opacity: 0.8;
}

@media (min-width: 600px) {
  .header__logo {
    max-width: 15.3rem;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .header__logo {
    margin-left: 0;
    width: auto;
  }
}

.header__logo img {
  max-width: 100%;
  width: 15.3rem;
  height: auto;
}

.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 a svg use {
  fill: var(--white);
}

.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: 1.6rem;
}

.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: Raleway;
  font-size: 1.1rem;
  line-height: 1.8;
  text-decoration: none;
  color: var(--primary);
  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: 6.4rem;
    bottom: 0;
    min-height: 100vw;
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
    padding-bottom: 81px;
    z-index: 9999;
    padding-top: 2rem;
    width: 100%;
  }

  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: 6.4rem; /* 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,
.footer p,
.footer a {
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    color: inherit;
}

.footer a:hover, .footer a:focus-visible, .footer__body li.hs-menu-item a:hover {
    font-family: inherit;
    text-decoration: underline;
    color: inherit;
}

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

.footer__inner {
    width: 100%;
}

.footer__logo {
    margin-bottom: 55px;
}

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

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

.footer #hs_cos_wrapper_simple_menu_1 .hs-menu-item.hs-menu-depth-1 > a,
.footer #hs_cos_wrapper_simple_menu_2 .hs-menu-item.hs-menu-depth-1 > a {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3125em;
}

.footer #hs_cos_wrapper_simple_menu_1 .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
.footer #hs_cos_wrapper_simple_menu_2 .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
position: static;
left: 0;
opacity: 1;
margin-top: 0;
}

.footer #hs_cos_wrapper_simple_menu_1 .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a,
.footer #hs_cos_wrapper_simple_menu_2 .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.625em;
    margin-bottom: 0.5rem;
}

.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 {
        width: 30%;
    }
}

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

    .footer__address, .footer__simple-menus {
        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;
}

.aa-relative {
 position: relative; 
}

.show-more-transition {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.show-more-transition.show {
  max-height: 1000px; /* something large enough */
  opacity: 1;
}

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

.aa-bullet-point-card__body {
    margin: 0 calc(100% / 12 + var(--gap));
    padding-top: 9.7rem;
    padding-right: calc(100% / 12 + var(--gap));
    padding-bottom: 9.7rem;
    padding-left: calc(100% / 12 + var(--gap));
}

.aa-bullet-point-card--image-enabled .aa-bullet-point-card__body {

    padding-top: 16.6rem;
}

.aa-bullet-point-card__top-image img {
    margin-right: 0;
    margin-left: auto;
    display: block;
    width: calc(100% / 12 * 7);
    margin-bottom: -125px;
    height: auto;
    object-fit: cover;
}

.aa-bullet-point-card .title {
    padding-bottom: 3rem;
}

.aa-bullet-point-card__heading {
    padding-bottom: 3rem;
}

.aa-bullet-point-card__body .preheader {
    margin-bottom: 1rem;
}

.aa-bullet-point-card__heading .preheader {
    opacity: 1;
}

.aa-bullet-point-card__bullet-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem 3rem;
}

.aa-bullet-point-card__bullet-point {
    position: relative;
    padding-left: 4.1rem;
    min-height: 3.2rem;
}

.aa-bullet-point-card__bullet-point > span {
padding-top: 0.2rem;
display: inline-block;
}

.aa-bullet-point-card__bullet-point a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.aa-bullet-point-card__bullet-point a:hover {
    opacity: 0.8;
    font-weight: 600;
}

.aa-bullet-point-card__bullet-point .bullet-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.aa-bullet-point-card__button {
    margin-top: 80px;
}

.aa-bullet-point-card__footer-text {
    margin-top: 20px;
    padding-left: 26px;
    font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
    .aa-bullet-point-card__bullet-points {
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .aa-bullet-point-card__body {
        margin-left: auto;
        margin-right: auto;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media screen and (max-width: 425px) {

    .aa-bullet-point-card__bullet-point {
        padding-left: 25px;
    }

    .aa-bullet-point-card__bullet-point .bullet-icon {
        width: 20px;
    }

    .aa-bullet-point-card__bullet-text {
        font-size: 1.6rem;
    }
}

/* *********** Text & Image ******************** */

.aa-text-and-image {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.aa-text-and-image.image-left {
    flex-direction: row-reverse;
}

.aa-text-and-image > div {
    width: 47%;
}

.aa-text-and-image .title {
    padding: 0.5rem 0 2rem;
}


.aa-text-and-image__text-column {
    padding-top: 25px;
    padding-bottom: 0;
    padding-right: calc(var(--gap)/2 + 8.333%);
    
}


@media screen and (min-width: 1025px) {
.aa-text-and-image__text-column.aa-text-and-image__text-column--padding-small {
    padding-right: calc(var(--gap)/2 + 2.333%);
    }

    .aa-text-and-image__image-column {
        padding-left: calc( var(--gap) / 2);
    }

    .aa-text-and-image__text-column {
        padding-top: 0;
    }
    .aa-text-and-image.image-left .aa-text-and-image__text-column {
    padding-left: calc(var(--gap)/2 + 8.333%);
    padding-right: 0;
}
}

.aa-text-and-image__text-column .button {
    margin-top: 30px;
}

.aa-text-and-image__image-column {
    position: relative;
    
}

.aa-text-and-image__image-column img {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
}


.aa-text-and-image__image-column.aa-text-and-image__image-column--size-auto img {
    position: relative;
    height: auto;
}


.aa-text-and-image.image-left .aa-text-and-image__image-column {
    padding-right: calc( var(--gap) / 2);
    padding-left: 0;
}


@media screen and (min-width: 1025px) {
.aa-text-and-image.image-left .aa-text-and-image__text-column.aa-text-and-image__text-column--padding-small {
    padding-left: calc(var(--gap)/2 + 2.333%);
    }
    }
    

@media screen and (max-width: 1024px) {
    .aa-text-and-image,
    .aa-text-and-image.image-left {
        flex-direction: column-reverse;
    }

    .aa-text-and-image > div {
        width: 100%;
    }

    .aa-text-and-image__text-column,
    .aa-text-and-image.image-left .aa-text-and-image__text-column {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .aa-text-and-image__image-column img {
        position: relative;
    }


}

.aa-text-and-image__text-column.aa-text-and-image__text-column--padding-none, .aa-text-and-image.image-left .aa-text-and-image__image-column.aa-text-and-image__text-column--padding-none {
padding-left: 0 !important;
padding-right: 0 !important;
}

/* *********** Text & Image END ******************** */
/* 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: 1.5rem;
}

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

.vertical-card__body-text {
  margin-top: 1.4rem;
}

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

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

.vertical-card__place {
  font-size: 1.6rem;
  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: var(--secondary);
  font-family: "Raleway", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  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: 1.6rem;
  text-decoration: underline;
}

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

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

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

.aa-vertical-card-grid__tags .aa-filter-buttons .button.active {
  background-color: var(--secondary);
  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: 1.6rem;
  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;
}

body:not(.layout--white) .header__mobile-trigger svg rect {
  fill: var(--white);
}

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

.visually-hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
  white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}