/**
 * Main stylesheet for the theme.
 *
 * Theme styles follow http://cssguidelin.es/ and are organized according to
 * Inverted Triangle CSS (ITCSS) principles put forth by Harry Roberts. In
 * short, each layer of CSS gets more specific as you move down this page.
 */
/*--------------------------------------------------------------
# Settings - Global variables, config switches.
--------------------------------------------------------------*/
:root {
  /* colors.
   *
   * All colors related variables.
   *
  * */
  --color-primary-500: #000DFF;
  --color-surface-brand-primary: #000DFF;
  --color-black: #000;
  --color-white: #fff;
  --color-grey-white: #FFFFFF;
  --color-grey-100: #F5F5F5;
  --color-grey-200: #E6E6E6;
  --color-grey-400: #9D9D9D;
  --color-grey-600: #5B5B5B;
  --color-grey-900: #141414;
  --color-opacity-light-10: #FFFFFF19;
  --color-opacity-light-20: #FFFFFF19;
  --color-grey-black: #000000;
  --color-brand-blue-500: #000DFF;
  --color-opacity-dark-10: #00000019;
  --color-opacity-dark-5: #0000000C;
  --color-ui-error: #DA1E28;
  --color-ui-success: #219653;
  --color-text-primary: var(--color-grey-black);
  --color-text-secondary: var(--color-grey-600);
  --color-text-light: var(--color-grey-400);
  --color-text-highlight: var(--color-brand-blue-500);
  --color-text-invert: var(--color-grey-white);
  --color-text-invert-secondary: var(--color-grey-100);
  --color-text-error: var(--color-ui-error);
  --color-text-success: var(--color-ui-success);
  --color-text-cover: var(--color-grey-white);
  --color-surface-primary: var(--color-grey-white);
  --color-surface-secondary: var(--color-grey-200);
  --color-surface-tertiary: var(--color-grey-100);
  --color-surface-brand-primary: var(--color-brand-blue-500);
  --color-surface-invert-primary: var(--color-grey-black);
  --color-surface-invert-secondary: var(--color-grey-900);
  --color-surface-opacity-dark: var(--color-opacity-dark-5%);
  --color-surface-opacity-light: var(--color-opacity-light-10%);
  --color-border-primary: var(--color-grey-400);
  --color-border-secondary: var(--color-grey-black);
  --color-border-brand: var(--color-brand-blue-500);
  --color-border-error: var(--color-ui-error);
  --color-border-invert-primary: var(--color-grey-white);
  --color-border-invert-secondary: var(--color-opacity-light-20%);
  --color-link: var(--color-text-primary);
  --color-form-text: var(--color-text-primary);
  --color-form-border: var(--color-border);
  --color-form-background: var(--color-grey-100);
  --color-form-focus: var(--color-border-brand);
  --color-form-error: var(--color-error);
  /* Font sizes. */
  --heading-600: clamp(2.125rem, 1.6644736842rem + 1.8421052632vw, 3.875rem);
  --heading-500: clamp(1.875rem, 1.7105263158rem + 0.6578947368vw, 2.5rem);
  --heading-400: clamp(1.4375rem, 1.2236842105rem + 0.8552631579vw, 2.25rem);
  --heading-300: clamp(1.25rem, 1.1842105263rem + 0.2631578947vw, 1.5rem);
  --heading-200: clamp(1rem, 0.9671052632rem + 0.1315789474vw, 1.125rem);
  --text-600: clamp(1.25rem, 1.0197368421rem + 0.9210526316vw, 2.125rem);
  --text-500: clamp(1rem, 0.9342105263rem + 0.2631578947vw, 1.25rem);
  --text-400: clamp(0.875rem, 0.8421052632rem + 0.1315789474vw, 1rem);
  --text-300: clamp(0.8125rem, 0.7960526316rem + 0.0657894737vw, 0.875rem);
  --text-big: clamp(1.75rem, 1.3881578947rem + 1.4473684211vw, 3.125rem);
  --text-number: clamp(3rem, 2.1447368421rem + 3.4210526316vw, 6.25rem);
  --text-number--big: clamp(3rem, 1.3223684211rem + 6.7105263158vw, 9.375rem);
  --text-quote: clamp(1.875rem, 1.5460526316rem + 1.3157894737vw, 3.125rem);
  --font-family-title: "Lateral", sans-serif;
  --font-family-title--secondary: "Akkurat", sans-serif;
  --font-family-base: "Akkurat", sans-serif;
  --font-family-base--secondary: "Space Mono", sans-serif;
  --line-height-heading: 1.2;
  --line-height-body: 1.5;
  /* Spacing.
   *
   * Generate new values using the following link.
   *
   * @link https://utopia.fyi/space/calculator/?c=320,16,1.2,2560,38.33,1.25,5,2,1920&s=0.75|0.625|0.5|0.375|0.25|0.125,1.5|2|3|4|5|7.5,s-3xl|m-xl&g=s,l,xl,12
  * */
  --space-6xs: clamp(0.125rem, 0.0982rem + 0.1339vw, 0.3125rem);
  --space-5xs: clamp(0.25rem, 0.1964rem + 0.2679vw, 0.625rem);
  --space-4xs: clamp(0.375rem, 0.3036rem + 0.3571vw, 0.875rem);
  --space-3xs: clamp(0.5rem, 0.4018rem + 0.4911vw, 1.1875rem);
  --space-2xs: clamp(0.625rem, 0.5rem + 0.625vw, 1.5rem);
  --space-xs: clamp(0.75rem, 0.5982rem + 0.7589vw, 1.8125rem);
  --space-s: clamp(1rem, 0.8036rem + 0.9821vw, 2.375rem);
  --space-m: clamp(1.5rem, 1.2054rem + 1.4732vw, 3.5625rem);
  --space-l: clamp(2rem, 1.5982rem + 2.0089vw, 4.8125rem);
  --space-xl: clamp(3rem, 2.4018rem + 2.9911vw, 7.1875rem);
  --space-2xl: clamp(4rem, 3.2054rem + 3.9732vw, 9.5625rem);
  --space-3xl: clamp(5rem, 4rem + 5vw, 12rem);
  --space-4xl: clamp(7.5rem, 6.0089rem + 7.4554vw, 17.9375rem);
  /* One-up pairs */
  --space-6xs-5xs: clamp(0.125rem, 0.0536rem + 0.3571vw, 0.625rem);
  --space-5xs-4xs: clamp(0.25rem, 0.1607rem + 0.4464vw, 0.875rem);
  --space-4xs-3xs: clamp(0.375rem, 0.2589rem + 0.5804vw, 1.1875rem);
  --space-3xs-2xs: clamp(0.5rem, 0.3571rem + 0.7143vw, 1.5rem);
  --space-2xs-xs: clamp(0.625rem, 0.4554rem + 0.8482vw, 1.8125rem);
  --space-xs-s: clamp(0.75rem, 0.5179rem + 1.1607vw, 2.375rem);
  --space-s-m: clamp(1rem, 0.6339rem + 1.8304vw, 3.5625rem);
  --space-m-l: clamp(1.5rem, 1.0268rem + 2.3661vw, 4.8125rem);
  --space-l-xl: clamp(2rem, 1.2589rem + 3.7054vw, 7.1875rem);
  --space-xl-2xl: clamp(3rem, 2.0625rem + 4.6875vw, 9.5625rem);
  --space-2xl-3xl: clamp(4rem, 2.8571rem + 5.7143vw, 12rem);
  --space-3xl-4xl: clamp(5rem, 3.1518rem + 9.2411vw, 17.9375rem);
  /* Custom pairs */
  --space-s-3xl: clamp(1rem, -0.5714rem + 7.8571vw, 12rem);
  --space-m-xl: clamp(1.5rem, 0.6875rem + 4.0625vw, 7.1875rem);
  --side-padding: var(--space-m-xl);
  --side-padding--small: var(--space-m-l);
  --space-default: var(--space-4xl);
  --gutter: var(--space-s);
  --text-margin: 1.3em;
  /* Widths.
   *
   * All widths related variables.
   *
  * */
  --max-width-site: 160rem;
  --max-width-container: 145rem;
  --max-width-medium: calc(var(--max-width-container) * 0.59479167);
  --max-width-regular: calc(var(--max-width-container) * 0.44895833);
  --max-width-small: calc(var(--max-width-container) * 0.36458333);
  --max-width-xsmall: calc(var(--max-width-container) * 0.3);
  --max-width-2xsmall: calc(var(--max-width-container) * 0.2208333);
  --width-wide: clamp(min(50rem, 100%), 100%, var(--max-width-container));
  --width-medium: clamp(min(40rem, 100%), 59.479167%, var(--max-width-medium));
  --width-regular: clamp(min(40rem, 100%), 44.895833%, var(--max-width-regular));
  --width-small: clamp(min(20rem, 100%), 36.458333%, var(--max-width-small));
  --width-xsmall: clamp(min(20rem, 100%), 30%, var(--max-width-xsmall));
  --width-2xsmall: clamp(min(20rem, 100%), 22.08333%, var(--max-width-2xsmall));
  /* Miscellanious.
  *
  * All miscellanious variables.
  *
  * */
  --transition-2: 0.2s;
  --transition-3: 0.3s;
  --transition-function: cubic-bezier(0.58, 0.18, 0.44, 0.94);
  --underline-box-shadow: inset 0 -0.25rem 0 var(--color-secondary-700);
  --radius-minimal: 0.25rem;
  --header-height: 3.5rem;
}
@media only screen and (min-width: 70rem) {
  :root {
    --header-height: 6.69em;
  }
}

/*
Example how to add a font-face.
Other than woff2 and woff are not necessary.

@font-face {
    font-display: swap;
    font-family: font-name;
    font-style: normal;
    font-weight: 400;
    src:
        url(../fonts/font-name.woff2) format("woff2"),
        url(../fonts/font-name.woff) format("woff"), // Modern Browsers
}
*/
/*--------------------------------------------------------------
# Generic - Ground-zero styles (resets, box-sizing, etc.).
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html, body {
  height: 100%;
}

html {
  box-sizing: border-box;
  background: var(--color-surface-primary);
}
@media (max-width: 70rem) {
  html.main-menu-open {
    overflow: hidden;
  }
}

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

body {
  margin: 0;
  padding: 0;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  height: inherit;
}
.site-wrapper__main-content {
  flex: 1 0 auto;
}
.site-wrapper__footer {
  flex-shrink: 0;
}

img {
  height: auto;
  max-width: 100%;
}

.full-width {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.absolute-link::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

#whr_embed_hook .whr-date {
  display: none;
}

/*--------------------------------------------------------------
# Elements - Unclassed HTML elements (type selectors).
--------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 16px;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  text-decoration: underline;
}
a:hover, a:active, a:focus {
  color: var(--color-text-primary);
}

b,
strong {
  font-weight: 700;
}

ul,
ol,
table,
p {
  margin: var(--text-margin) 0 0;
}
ul:first-child,
ol:first-child,
table:first-child,
p:first-child {
  margin-top: 0;
}

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

h1,
.h1 {
  font-size: var(--heading-600);
  line-height: 1;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}

h2,
.h2 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-title--secondary);
  font-weight: 700;
  text-transform: none;
}
h2 + p,
.h2 + p {
  margin-top: 1em;
}

h3,
.h3 {
  font-size: var(--heading-400);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-base);
  font-weight: 400;
}

h4,
.h4 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}

blockquote {
  font-size: var(--text-quote);
  line-height: 1.1;
  font-family: var(--font-family-base);
  font-weight: 300;
  font-style: italic;
  margin: var(--space-l) 0;
}
blockquote cite {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  display: block;
  margin-top: var(--space-4xs);
}

ul,
ol {
  padding-left: 1.5em;
}
ul li,
ol li {
  margin-top: var(--space-5xs);
}
ul li:first-child,
ol li:first-child {
  margin-top: 0;
}

.btn,
.hs-button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  background: var(--color-surface-invert-primary, #000);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-position: calc(100% - var(--space-3xs)) center;
  background-size: 1rem 1rem;
  border: 1px solid var(--color-surface-invert-primary, #000);
  color: var(--color-text-invert, #FFF);
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  padding: var(--space-2xs) calc(var(--space-3xs) * 3 + 1rem) var(--space-2xs) var(--space-xs);
  text-box: auto;
  text-decoration: none;
  transition: all 0.2s;
}
.btn:hover,
.hs-button:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: var(--color-surface-brand-primary, #000DFF);
  border-color: var(--color-surface-brand-primary, #000DFF);
  color: var(--color-text-invert, #FFF);
  text-decoration: none;
}
.btn:focus,
.hs-button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  background-color: var(--color-surface-invert-primary, #000);
  border-color: var(--color-border-invert-primary, #FFF);
  box-shadow: 0 0 0 2px #000;
  color: var(--color-text-invert, #FFF);
  outline: none;
}

.btn--no-arrow {
  background-image: none;
  padding: var(--space-2xs) var(--space-s);
  text-align: center;
}

.btn--secondary {
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
  color: var(--color-btn-text);
  border-color: var(--color-btn-text);
}
.btn--secondary:hover, .btn--secondary:focus {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
}

.btn--simple {
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
  background-position: right;
  border: none;
  color: var(--color-text-primary, #000);
  padding: 0 calc(var(--space-5xs) + 1rem) 0 0;
}
.btn--simple:hover, .btn--simple:focus {
  background-color: transparent;
  color: var(--color-text-primary, #000);
}
.btn--simple:focus {
  box-shadow: none;
}

.btn--menu {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3xs) calc(var(--space-3xs) * 3 + 1rem) var(--space-3xs) var(--space-xs);
  position: relative;
  z-index: 9;
}

.reset-button {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: var(--space-5xs) 0;
  border: 0;
  border-bottom: 1px solid var(--color-surface-secondary, #E6E6E6);
  box-shadow: unset;
  transition: var(--transition-3);
  color: var(--color-text-primary);
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-border-primary);
  box-shadow: unset;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=color]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: calc(var(--space-3xs) * 2 + 1.5rem);
  background-repeat: no-repeat;
  background-position: right var(--space-3xs) center;
  /* stylelint-disable-next-line */
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI1LjMzMjcgMTMuMzMzTDE1Ljk5OTMgMjEuMzMzTDYuNjY2MDIgMTMuMzMzIiBzdHJva2U9ImJsYWNrIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-title:not(:empty) {
  margin-bottom: var(--space-l);
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  content: "";
  width: calc(1em + 0.125rem) !important;
  height: calc(1em + 0.125rem);
  margin: 0 0 0.3125rem 0.0625rem;
  padding: 0;
  border: 0;
  border-radius: 0.125rem;
  box-shadow: 0 0 0 0.0625rem var(--color-border-secondary);
  transition: box-shadow var(--transition-3);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  box-shadow: 0 0 0 0.0625rem var(--color-border-secondary);
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  box-shadow: 0 0 0 0.0625rem var(--color-form-focus);
  outline: none;
}

input[type=checkbox]:checked {
  /* stylelint-disable-next-line */
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" viewBox="0 0 14 11" fill="none"><path d="M12.1134 1.0511L4.6346 8.52992L1.88661 5.78192C1.75337 5.64869 1.53735 5.64869 1.40409 5.78192L0.599924 6.58609C0.466692 6.71932 0.466692 6.93535 0.599924 7.06861L4.39333 10.862C4.52656 10.9952 4.74258 10.9952 4.87584 10.862L13.4001 2.33778C13.5333 2.20455 13.5333 1.98852 13.4001 1.85526L12.5959 1.0511C12.4627 0.917864 12.2467 0.917864 12.1134 1.0511Z" fill="%23000" /></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.59em;
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  background: var(--color-form-text);
  border: 0.1875rem solid var(--color-form-background);
}

.hs-fieldtype-checkbox .input,
.hs-fieldtype-booleancheckbox .input {
  margin-top: 0.3rem;
}
.hs-fieldtype-checkbox span:not(.hs-form-required)::after,
.hs-fieldtype-booleancheckbox span:not(.hs-form-required)::after {
  border-radius: 0;
}

.hs-form, .systems-page .form-container {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
.hs-form .hs-form-field, .systems-page .form-container .hs-form-field {
  margin: 0 0 var(--space-s) 0;
}
.hs-form .hs-form-field label, .systems-page .form-container .hs-form-field label {
  margin-bottom: 0;
  display: block;
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
.hs-form .hs-form-field textarea, .systems-page .form-container .hs-form-field textarea {
  vertical-align: top;
}
.hs-form .hs-form-field .input ul.inputs-list, .systems-page .form-container .hs-form-field .input ul.inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 0 0.6rem 0;
}
.hs-form .hs-form-field .input ul.inputs-list li, .systems-page .form-container .hs-form-field .input ul.inputs-list li {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
.hs-form .hs-form-field .input ul.inputs-list li label, .systems-page .form-container .hs-form-field .input ul.inputs-list li label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: var(--space-3xs);
}
.hs-form .hs-form-field .input ul.inputs-list span, .systems-page .form-container .hs-form-field .input ul.inputs-list span {
  font-size: 1em;
}
.hs-form .legal-consent-container, .systems-page .form-container .legal-consent-container {
  margin-bottom: var(--space-m);
}
.hs-form .hs-error-msgs, .systems-page .form-container .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0.25rem 0 0;
}
.hs-form .hs-error-msgs label, .systems-page .form-container .hs-error-msgs label {
  color: var(--color-text-error);
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
.hs-form .legal-consent-container .hs-form-booleancheckbox-display > span, .systems-page .form-container .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0;
}
.hs-form .hs-submit, .systems-page .form-container .hs-submit {
  margin-top: var(--space-s);
}

body .body-wrapper .hs-form fieldset, body .body-wrapper .systems-page .form-container fieldset, .systems-page body .body-wrapper .form-container fieldset {
  width: 100%;
  max-width: 100%;
}
body .body-wrapper .hs-form fieldset .input, body .body-wrapper .systems-page .form-container fieldset .input, .systems-page body .body-wrapper .form-container fieldset .input {
  margin-right: 0;
}
body .body-wrapper .hs-form fieldset .hs-form-field, body .body-wrapper .systems-page .form-container fieldset .hs-form-field, .systems-page body .body-wrapper .form-container fieldset .hs-form-field {
  width: 100%;
}
@media (min-width: 37.501rem) {
  body .body-wrapper .hs-form fieldset.form-columns-2 .hs-form-field, body .body-wrapper .systems-page .form-container fieldset.form-columns-2 .hs-form-field, .systems-page body .body-wrapper .form-container fieldset.form-columns-2 .hs-form-field {
    width: calc(50% - 0.75rem);
    margin-right: 1.5rem;
  }
  body .body-wrapper .hs-form fieldset.form-columns-2 .hs-form-field:last-child, body .body-wrapper .systems-page .form-container fieldset.form-columns-2 .hs-form-field:last-child, .systems-page body .body-wrapper .form-container fieldset.form-columns-2 .hs-form-field:last-child {
    margin-right: 0;
  }
  body .body-wrapper .hs-form fieldset.form-columns-3 .hs-form-field, body .body-wrapper .systems-page .form-container fieldset.form-columns-3 .hs-form-field, .systems-page body .body-wrapper .form-container fieldset.form-columns-3 .hs-form-field {
    width: calc(33.3% - 0.35rem);
    margin-right: 0.5rem;
  }
  body .body-wrapper .hs-form fieldset.form-columns-3 .hs-form-field:last-child, body .body-wrapper .systems-page .form-container fieldset.form-columns-3 .hs-form-field:last-child, .systems-page body .body-wrapper .form-container fieldset.form-columns-3 .hs-form-field:last-child {
    margin-right: 0;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #aaa;
  border-width: 0 0 1px;
  padding: 0.5rem;
}

th {
  border-width: 0 0 2px;
  text-align: left;
  font-weight: 400;
  padding: 0.5rem;
}

.plyr {
  --plyr-color-main: var(--color-text-highlight);
}

.plyr:not(.plyr--playing) {
  background: var(--color-black);
}
.plyr:not(.plyr--playing) video {
  opacity: 0.75;
}
.plyr:not(.plyr--playing) .plyr__controls {
  opacity: 0;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 0.75;
}

.plyr.plyr--video .plyr__control--overlaid {
  height: 3rem;
  width: 3rem;
}
.plyr.plyr--video .plyr__control--overlaid, .plyr.plyr--video .plyr__control--overlaid:focus, .plyr.plyr--video .plyr__control--overlaid:hover {
  opacity: 1;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCAzNCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMzIDE4LjI2NzlDMzQuMzMzMyAxOS4wMzc3IDM0LjMzMzMgMjAuOTYyMiAzMyAyMS43MzJMMyAzOS4wNTI2QzEuNjY2NjYgMzkuODIyNCAwIDM4Ljg2MDEgMCAzNy4zMjA1TDAgMi42Nzk0OUMwIDEuMTM5ODkgMS42NjY2NyAwLjE3NzY0MSAzIDAuOTQ3NDQyTDMzIDE4LjI2NzlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}
.plyr.plyr--video .plyr__control--overlaid svg {
  display: none;
}

/*--------------------------------------------------------------
# Layout - Undecorated design patterns.
--------------------------------------------------------------*/
.content-wrapper,
.container,
.dnd-section > .row-fluid {
  width: var(--width-wide);
  margin-left: auto;
  margin-right: auto;
}

.width-wide {
  width: var(--width-wide);
}

.width-medium {
  width: var(--width-medium);
}

.width-regular {
  width: var(--width-regular);
}

.width-small {
  width: var(--width-small);
}

.width-xsmall {
  width: var(--width-xsmall);
}

.width-2xsmall {
  width: var(--width-2xsmall);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.content-row {
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
}

.dnd-section .dnd-row:not(:first-child) {
  margin-top: var(--gutter);
}
.dnd-section .dnd-row:not(:first-child) .reset-multiple-row-top {
  margin-top: calc(var(--gutter) * -1);
}
.dnd-section .dnd-row:has(.has-grey-background) + .dnd-row:has(.has-grey-background) .has-grey-background {
  margin-top: calc(-1 * var(--space-default));
}
.dnd-section .dnd-row:has(.has-white-background) + .dnd-row:has(.has-white-background) .has-white-background {
  margin-top: calc(-1 * var(--space-default));
}
.dnd-section .dnd-row:has(.has-grey-background) + .dnd-row:has(.has-grey-background) .has-bg-image,
.dnd-section .dnd-row:has(.has-grey-background) + .dnd-row:has(.has-white-background) .has-bg-image, .dnd-section .dnd-row:has(.has-white-background) + .dnd-row:has(.has-grey-background) .has-bg-image,
.dnd-section .dnd-row:has(.has-white-background) + .dnd-row:has(.has-white-background) .has-bg-image {
  margin-top: calc(-1 * var(--gutter));
}
.dnd-section .dnd-row:has(.has-bg-image) + .dnd-row:has(.has-grey-background) .has-grey-background,
.dnd-section .dnd-row:has(.has-bg-image) + .dnd-row:has(.has-grey-background) .has-white-background,
.dnd-section .dnd-row:has(.has-bg-image) + .dnd-row:has(.has-white-background) .has-grey-background,
.dnd-section .dnd-row:has(.has-bg-image) + .dnd-row:has(.has-white-background) .has-white-background {
  margin-top: calc(-1 * var(--gutter));
}
.dnd-section .dnd-row .has-bg-image {
  margin-top: calc(-1 * var(--gutter));
}
@media (max-width: 48rem) {
  .dnd-section .dnd-column:not(:first-child) {
    margin-top: var(--gutter);
  }
}
.dnd-section:first-child:has(.reset-multiple-row-top.has-background) {
  margin-top: 0;
}
.dnd-section:last-child:has(.reset-multiple-row-top.has-background), .blog-index-dnd-area .dnd-section:last-child {
  margin-bottom: 0;
}

div[class*=background-color].dnd-section {
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
}
div[class*=background-color].dnd-section:first-child {
  margin-top: 0;
}
div[class*=background-color].dnd-section:last-child {
  margin-bottom: 0;
}
div[class*=background-color].dnd-section + div[class*=background-color].dnd-section {
  margin-top: calc(var(--space-default) * -1);
}

.site-hero--image-above + .main-dnd-area .dnd-section:first-of-type .dnd-row:first-of-type .has-grey-background {
  margin-top: calc(var(--space-default) * -1);
}

* + .hs-web-interactive-inline {
  margin-top: var(--space-m);
}

p:first-child:empty + .hs-web-interactive-inline {
  margin-top: 0;
}

.hs-web-interactive-inline + .hs-web-interactive-inline,
.hs-web-interactive-inline + p:empty + .hs-web-interactive-inline,
.hs-web-interactive-inline + p:empty + p:empty + .hs-web-interactive-inline {
  margin-top: var(--space-s);
}

.hs-web-interactive-inline + p:empty {
  display: none;
}

div[class*=background-color].dnd-column {
  padding: var(--gutter);
}
@media (min-width: 48.001rem) {
  div[class*=background-color].dnd-column {
    padding: var(--gutter);
  }
}

.side-padding {
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
}

.side-padding--small {
  padding-left: var(--side-padding--small);
  padding-right: var(--side-padding--small);
}

.has-background {
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
}

/* Responsive Grid */
@media (min-width: 48.001rem) {
  .row-fluid-wrapper > .row-fluid {
    display: flex;
    gap: var(--gutter);
  }
}

.row-fluid {
  width: 100%;
  *zoom: 1;
}
@media (min-width: 48.001rem) {
  .row-fluid [class*=span] {
    display: block;
    width: 100%;
    min-height: 1px;
    box-sizing: border-box;
  }
  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: calc(91.6666666667% - var(--gutter) * (12 / 11 - 1) / (12 / 11));
  }
  .row-fluid .span10 {
    width: calc(83.3333333333% - var(--gutter) * (12 / 10 - 1) / (12 / 10));
  }
  .row-fluid .span9 {
    width: calc(75% - var(--gutter) * (12 / 9 - 1) / (12 / 9));
  }
  .row-fluid .span8 {
    width: calc(66.6666666667% - var(--gutter) * (12 / 8 - 1) / (12 / 8));
  }
  .row-fluid .span7 {
    width: calc(58.3333333333% - var(--gutter) * (12 / 7 - 1) / (12 / 7));
  }
  .row-fluid .span6 {
    width: calc(50% - var(--gutter) * (12 / 6 - 1) / (12 / 6));
  }
  .row-fluid .span5 {
    width: calc(41.6666666667% - var(--gutter) * (12 / 5 - 1) / (12 / 5));
  }
  .row-fluid .span4 {
    width: calc(33.3333333333% - var(--gutter) * (12 / 4 - 1) / (12 / 4));
  }
  .row-fluid .span3 {
    width: calc(25% - var(--gutter) * (12 / 3 - 1) / (12 / 3));
  }
  .row-fluid .span2 {
    width: calc(16.6666666667% - var(--gutter) * (12 / 2 - 1) / (12 / 2));
  }
  .row-fluid .span1 {
    width: calc(8.3333333333% - var(--gutter) * (12 / 1 - 1) / (12 / 1));
  }
}

.container-fluid {
  *zoom: 1;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}
.container-fluid:after {
  clear: both;
}

/* Clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* Visibilty Classes */
.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

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

/* Responsive Visibilty Classes */
.visible-phone {
  display: none !important;
}

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

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

@media (max-width: 48rem) {
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
@media (min-width: 48rem) and (max-width: 65rem) {
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}
.error-page {
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
}
.error-page img {
  vertical-align: top;
}
.error-page__paragraph {
  margin: 2em 0 2.1em;
}
.error-page__paragraph:last-child {
  margin-bottom: 0;
}

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

.archive-post-listing {
  margin-bottom: var(--space-2xl);
}

.blog-post {
  margin-bottom: var(--space-m);
}
.blog-post h2 {
  font-size: var(--heading-400);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-base);
  font-weight: 400;
}
.blog-post h3 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}
.blog-post h4 {
  font-size: var(--heading-200);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}
.blog-post .block--content:not(:first-child),
.blog-post .snake {
  margin-top: var(--space-l);
}
.blog-post .snake__row__content,
.blog-post .snake__row__media,
.blog-post .vimeo-iframe-embed {
  margin-top: var(--space-m);
}
.blog-post iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.blog-post figure {
  margin: var(--space-l) 0;
}
.blog-post figure img {
  vertical-align: top;
  width: 100%;
}
.blog-post figure figcaption {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: var(--space-4xs);
}

#hs_cos_wrapper_post_body > h2,
#hs_cos_wrapper_post_body > header h2 {
  font-size: var(--heading-400);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-base);
  font-weight: 400;
}
#hs_cos_wrapper_post_body > h3 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}
#hs_cos_wrapper_post_body > header {
  margin-top: var(--text-margin);
}
#hs_cos_wrapper_post_body > *:not(:has(.is-custom-module)),
#hs_cos_wrapper_post_body .container-fluid {
  width: var(--width-regular);
  margin-left: auto;
  margin-right: auto;
}
#hs_cos_wrapper_post_body > * + div {
  margin-top: var(--text-margin);
}
#hs_cos_wrapper_post_body > * + .hs_cos_wrapper:has(.is-custom-module),
#hs_cos_wrapper_post_body > .hs_cos_wrapper:has(.is-custom-module) + *,
#hs_cos_wrapper_post_body > * + .hs-module:has(.is-custom-module),
#hs_cos_wrapper_post_body > .hs-module:has(.is-custom-module) + *,
#hs_cos_wrapper_post_body > * + blockquote,
#hs_cos_wrapper_post_body > blockquote + * {
  margin-top: var(--space-s);
}

.systems-page {
  margin-top: var(--space-default);
  margin-bottom: var(--space-default);
}
.systems-page .form-container {
  max-width: none;
}
.systems-page.container {
  width: var(--width-medium);
}
.systems-page .subscribe-options {
  margin-bottom: var(--text-margin);
}
.systems-page .item,
.systems-page .subscribe-options {
  margin-top: var(--text-margin);
}
.systems-page .item p,
.systems-page .subscribe-options p {
  margin: 0;
}
.systems-page .backup-unsubscribe #email-prefs-form {
  margin: var(--text-margin) auto;
}
.systems-page .backup-unsubscribe #email-prefs-form .email-edit.hs-input {
  margin: 1rem 0;
}

/*--------------------------------------------------------------
# Modules - specific UI components.
--------------------------------------------------------------*/
.archive-filters {
  display: flex;
  gap: var(--gutter);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-s);
}
.archive-filters__select {
  position: relative;
}
.archive-filters__select-btn {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  align-items: center;
  color: var(--color-text-primary);
  display: flex;
  gap: var(--space-3xs);
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3xs) var(--space-xs);
  color: var(--color-text-primary);
}
.archive-filters__select-btn:hover, .archive-filters__select-btn:focus-within {
  color: var(--color-text-primary);
  background: rgb(255, 255, 255);
}
.archive-filters__select-btn:focus {
  box-shadow: none;
  outline: 0;
}
.archive-filters__select-btn::after {
  content: "";
  width: 1em;
  height: 1em;
  background: no-repeat center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjY2NjYgNi42NjY3NUw3Ljk5OTkyIDEwLjY2NjdMMy4zMzMyNSA2LjY2Njc1IiBzdHJva2U9ImJsYWNrIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
  background-size: contain;
}
.archive-filters__select-btn > * {
  pointer-events: none;
}
.archive-filters__select-btn > .is-hidden {
  display: none;
}
.archive-filters__tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  padding: 0 var(--space-xs) 0 var(--space-3xs);
  border: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.is-open .archive-filters__tag-list {
  padding: var(--space-xs);
  border-top: 0;
  background: var(--color-surface-primary);
}
.archive-filters__tag-list li {
  margin: 0;
}
.archive-filters__tag-list li:not(:first-child) {
  margin-top: var(--space-3xs);
}
.archive-filters__tag-list button {
  width: 100%;
  padding: 0;
  color: var(--color-text-secondary, #5B5B5B);
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
  text-transform: none;
  text-align: left;
  background: rgba(255, 255, 255, 0);
  border: 0;
  transition: none;
}
.archive-filters__tag-list button::before {
  left: 0;
}
.archive-filters__tag-list button[aria-selected=true], .archive-filters__tag-list button:hover, .archive-filters__tag-list button:focus {
  color: var(--color-text-primary, #000);
}
.archive-filters .js-filters-tag-list-holder {
  position: absolute;
  z-index: 30;
  overflow: hidden;
  visibility: hidden;
  display: grid;
  grid-template-rows: 0fr;
  width: 18rem;
  transition: grid-template-rows 0.3s ease-in-out;
}
@media (max-width: 48rem) {
  .archive-filters .js-filters-tag-list-holder {
    width: 100%;
  }
}
.archive-filters .js-filters-tag-list-holder.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.3s ease-in-out;
}

.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text, .span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-header,
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module > .normal-text-width {
  margin: auto;
  width: var(--width-regular);
}
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module > hr {
  width: 100% !important;
  border-color: var(--color-primary-500) !important;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.2s ease-out;
}
.site-header.headroom--pinned {
  background: var(--color-surface-primary, #FFF);
}
.site-header.headroom--top {
  background: rgba(255, 255, 255, 0);
}
.site-header.headroom--not-top {
  transform: translateY(0);
}
.site-header.headroom--not-top.headroom--unpinned, .scroll-features-pinned .site-header {
  transform: translateY(-100%);
}
.is-site-nav-opened .site-header, .site-header.sub-menu-is-opened {
  background: var(--color-surface-primary, #FFF);
}
@media (max-width: 70rem) {
  .site-header {
    padding: 0;
  }
  .is-site-nav-opened .site-header {
    background: var(--color-surface-primary, #FFF);
  }
}
.site-header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: var(--header-height);
  padding: var(--space-s) 0 var(--space-3xs) 0;
}
@media (max-width: 70rem) {
  .site-header__container {
    align-items: flex-start;
    flex-flow: wrap;
    justify-content: flex-start;
    position: relative;
  }
}
.site-header__heading {
  z-index: 1;
}
@media (min-width: 70.001rem) {
  .site-header__heading {
    margin-top: calc(var(--space-s) + var(--space-4xs-3xs));
    position: absolute;
    top: 0;
  }
}
@media (max-width: 70rem) {
  .site-header__heading {
    display: flex;
    justify-content: space-between;
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
    width: 100%;
  }
}
.site-header__logo {
  width: 7.625rem;
}
@media (max-width: 70rem) {
  .site-header__logo {
    width: 6.3125rem;
  }
}
.site-header__logo a {
  color: inherit;
}
.site-header__logo svg {
  width: 100%;
}
html:not(.is-site-nav-opened) .nav-text-color-white .headroom--top:not(.sub-menu-is-opened) .site-header__logo svg {
  color: var(--color-text-invert, #FFF);
}
.site-header__navigation {
  width: 100%;
}
@media (max-width: 70rem) {
  .site-header__navigation {
    overflow: auto;
    padding: 0 var(--side-padding);
  }
  .is-site-nav-opened .site-header__navigation {
    height: 100svh;
    padding-bottom: var(--space-3xl);
  }
}

.nav-toggle {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  display: none;
  font-size: 0;
}
.nav-toggle:hover, .nav-toggle:focus {
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  outline: 0;
}
.nav-toggle svg {
  color: var(--color-text-primary, #000);
}
html:not(.is-site-nav-opened) .nav-text-color-white .headroom--top:not(.sub-menu-is-opened) .nav-toggle svg {
  color: var(--color-text-invert, #FFF);
}
@media (max-width: 70rem) {
  .nav-toggle {
    position: relative;
    display: block;
    width: 2rem;
    height: 2rem;
    transition: none;
  }
  .nav-toggle svg {
    transition: all 0.3s;
  }
  .is-site-nav-opened .nav-toggle svg {
    transform: rotate(-180deg);
  }
}

.footer {
  background: var(--color-surface-invert-primary);
  color: var(--color-text-invert);
  display: flex;
  padding: var(--space-l) 0;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2xl);
}
.footer a:not(.btn) {
  text-decoration: none;
  color: inherit;
}
.footer a:not(.btn):hover, .footer a:not(.btn):focus {
  color: inherit;
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__container {
  max-width: var(--max-width-site);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.footer .footer__navigation > ul {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-xl);
  -moz-column-gap: var(--space-s);
       column-gap: var(--space-s);
}
@media (min-width: 37.501rem) {
  .footer .footer__navigation > ul {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: var(--space-l);
  }
}
.footer .footer__navigation ul.level-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-4xs);
}
.footer .footer-menu__item.level-1 > a {
  margin-bottom: var(--space-3xs);
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}
.footer .footer-menu__item.level-2 {
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
.footer .footer__buttons {
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--space-3xs);
  display: flex;
  flex-direction: column;
}
.footer .footer__buttons a {
  width: 100%;
}
.footer .footer__addresses .footer__address-list {
  -moz-column-gap: var(--space-s);
       column-gap: var(--space-s);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-3xl);
}
@media (min-width: 37.501rem) {
  .footer .footer__addresses .footer__address-list {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: var(--space-l);
  }
}
.footer .footer__addresses .footer__address-list p {
  margin: 0;
}
.footer .footer__addresses h2 {
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: var(--space-m);
}
.footer .footer__addresses .footer__address-item h2,
.footer .footer__addresses .footer__address-item h3,
.footer .footer__addresses .footer__address-item h4 {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  text-transform: uppercase;
}
.footer .footer__bottom-links {
  display: flex;
  justify-content: space-between;
}
.footer .footer__bottom-links ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-l);
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 37.501rem) {
  .footer .footer__bottom-links ul {
    flex-direction: row;
    gap: var(--space-s);
  }
}
.footer .footer__bottom-links a {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer .footer__bottom-links .legal-link a {
  font-family: var(---font-family-base);
  font-size: var(--text-300);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-transform: none;
}

@media (max-width: 48rem) {
  .media-component--desktop {
    display: none;
  }
}
@media (min-width: 48.001rem) {
  .media-component--mobile {
    display: none;
  }
}

.site-nav__toggle, .site-nav__toggle:hover, .site-nav__toggle:focus {
  z-index: 400;
  position: absolute;
  top: var(--space-xs);
  right: var(--space-xs);
  background: transparent;
  border: 0;
  outline: 0;
  color: transparent;
  padding: 0;
  width: 2rem;
  height: 2rem;
  box-shadow: none;
}
.site-nav__toggle:focus-visible {
  border: 1px solid;
}
.site-nav__toggle:focus {
  outline-color: var(--color-white);
  outline-offset: -4px;
}
.site-nav__toggle--secondary {
  display: none;
}
@media (min-width: 70.001rem) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__items {
  /* Keeps selector shape the same as before, but nests mixin usage */
}
.site-nav__items,
.site-nav__items ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 70.001rem) {
  .site-nav__items {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-m);
  }
  .is-site-nav-opened .site-nav__items {
    bottom: 0;
    display: block;
    left: 0;
    overflow-x: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
  }
}
@media (min-width: 85.001rem) {
  .site-nav__items {
    gap: var(--space-xl);
  }
}
.site-nav__items--secondary, .site-nav__items--main {
  display: block;
}
@media (min-width: 70.001rem) {
  .site-nav__items > li {
    margin-bottom: 0;
    margin-top: 0;
  }
  .site-nav__items > li:last-child {
    margin-right: 0;
  }
}
.site-nav__items .middle-spacer {
  flex-grow: 1;
}
.site-nav__items .level-1 > a:not([hidden]) {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.02rem;
  padding: var(--space-3xs) var(--space-5xs) var(--space-5xs);
  display: inline-flex;
  gap: var(--space-5xs);
  background: transparent;
  color: inherit;
  border: 0;
  text-transform: none;
}
html:not(.is-site-nav-opened) .nav-text-color-white .headroom--top:not(.sub-menu-is-opened) .site-nav__items .level-1 > a:not([hidden]) {
  color: var(--color-text-invert, #FFF);
}
html:not(.is-site-nav-opened) .nav-text-color-white .headroom--top:not(.sub-menu-is-opened) .site-nav__items .level-1 > a:not([hidden]) svg {
  color: var(--color-text-invert, #FFF);
}
.site-nav__items .level-1 > a:not([hidden]):hover, .site-nav__items .level-1 > a:not([hidden]):focus {
  color: var(--color-text-highlight);
}
.site-nav__items .level-1 > a:not([hidden]):hover svg, .site-nav__items .level-1 > a:not([hidden]):focus svg {
  opacity: 1;
}
@media (max-width: 70rem) {
  .site-nav__items .level-1 > a:not([hidden]) {
    padding: var(--space-s) 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
  }
  .site-nav__items .level-1 > a:not([hidden]):hover {
    color: inherit;
  }
}
@media (max-width: 70rem) {
  .site-nav__items {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    background: var(--color-surface-primary, #FFF);
    display: none;
  }
  .site-nav__items.is-opened {
    bottom: 0;
    display: block;
    left: 0;
    overflow-x: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
  }
}
.site-nav__items .sub-menu {
  flex: 0 0 100%;
  order: 3;
  height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s 0.2s;
  visibility: hidden;
}
.site-nav__items .sub-menu.is-opened {
  height: auto;
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.site-nav__items .sub-menu__heading {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: var(--space-m);
  padding: var(--space-5xs) 0;
  display: block;
}
.site-nav__items .sub-menu li:first-child .sub-menu__heading {
  margin-top: 0;
}
@media (min-width: 70.001rem) {
  .site-nav__items .sub-menu {
    background-color: var(--color-white);
    padding: var(--space-s) var(--side-padding) var(--space-xl);
    width: 100vw;
    left: 0;
    top: calc(var(--header-height) - var(--space-3xs));
    position: fixed;
  }
  .site-nav__items .sub-menu.has-flyout-image, .site-nav__items .sub-menu.has-hover-images {
    min-height: calc(34.6875rem + var(--space-s) + var(--space-xl));
  }
  .site-nav__items .sub-menu a {
    font-size: var(--heading-400);
    line-height: var(--line-height-heading);
    font-family: var(--font-family-base);
    font-weight: 400;
    color: var(--color-text-secondary);
    padding: var(--space-6xs) 0;
  }
}
@media (min-width: 160.001rem) {
  .site-nav__items .sub-menu {
    top: calc(var(--header-height) - var(--space-5xs));
  }
}
@media (min-width: 70.001rem) {
  .site-nav__items .sub-menu [aria-expanded=true] + .sub-menu {
    left: auto;
    right: -100%;
    top: 0;
  }
}

.site-nav .menu-item-has-children > button {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  color: var(--color-text-primary, #000);
}
@media (min-width: 70.001rem) {
  .site-nav .menu-item-has-children {
    display: flex;
    flex-direction: column;
    gap: var(--space-5xs);
    padding: var(--space-3xs) var(--space-5xs);
  }
  .site-nav .menu-item-has-children.level-1 > a:not([hidden]) {
    padding: 0;
  }
  .site-nav .menu-item-has-children:hover button[data-meom-nav=sub-toggle] svg, .site-nav .menu-item-has-children:focus-within button[data-meom-nav=sub-toggle] svg {
    opacity: 1;
  }
  .site-nav .menu-item-has-children:hover .sub-menu, .site-nav .menu-item-has-children:focus-within .sub-menu {
    height: auto;
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .site-nav button[data-meom-nav=sub-toggle] svg {
    color: inherit;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
}
@media (max-width: 70rem) {
  .site-nav .menu-item-has-children {
    position: relative;
  }
  .site-nav .menu-item-has-children > button {
    min-width: 1px;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    border: 0;
    background: rgba(255, 255, 255, 0);
    height: calc(1rem + var(--space-s));
    position: absolute;
    right: 0;
    top: var(--space-s);
    width: calc(1rem + var(--space-s));
  }
  .site-nav .menu-item-has-children > button[aria-expanded=true] svg {
    transform: rotate(-180deg);
  }
  .is-site-nav-opened .site-nav {
    padding-bottom: var(--space-m);
    padding-top: var(--space-5xs);
  }
  .is-site-nav-opened .site-nav .site-nav__items {
    display: flex;
    flex-direction: column;
    overflow: hidden auto;
    width: 100%;
  }
  .site-nav .btn--menu {
    margin-top: var(--space-s);
  }
}
.site-nav button[data-meom-nav=sub-toggle] svg {
  pointer-events: none;
}
@media (max-width: 70rem) {
  .site-nav button[data-meom-nav=sub-toggle] svg {
    width: 1.25rem;
  }
}

.site-nav__items a:not(.btn),
.hs-item__sub-toggle,
.site-nav__sub-sub-toggle {
  background-color: transparent;
  position: relative;
  text-decoration: none;
}

.sub-menu a {
  display: block;
}
@media (min-width: 70.001rem) {
  .sub-menu a {
    padding-left: var(--space-2xs);
    padding-right: var(--space-2xs);
  }
}

.site-nav .level-1 > a:hover,
.site-nav__items .hs-menu-item a:active,
.site-nav__items .hs-menu-item a:focus,
.site-nav__items .hs-menu-item a[aria-current=page],
.hs-item__sub-toggle:hover,
.site-nav__sub-sub-toggle:hover,
.hs-item__sub-toggle:active,
.site-nav__sub-sub-toggle:active,
.hs-item__sub-toggle:focus,
.site-nav__sub-sub-toggle:focus {
  background-color: transparent;
  color: var(--color-text-highlight);
}

.site-nav__items a:focus,
.site-nav__items button:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.site-nav__items a:focus-visible,
.site-nav__items button:focus-visible {
  outline: 0;
}

.site-nav--click .hs-item__sub-toggle {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 70.001rem) {
  .site-nav--click .hs-item__sub-toggle svg {
    top: 0.1em;
  }
}

@media (max-width: 70rem) {
  .site-nav--hover .hs-item__sub-toggle {
    position: absolute;
    right: 0;
    top: -0.4em;
  }
}

@media (min-width: 70.001rem) {
  .site-nav--hover .hs-item__sub-toggle {
    margin-left: 0.2em;
  }
  .site-nav--hover .hs-item__sub-toggle svg {
    margin-left: 0;
    vertical-align: top;
  }
}
.site-nav__sub-sub-toggle {
  padding: var(--space);
  position: absolute;
  right: 0;
  top: 0;
}

.hs-item__sub-toggle svg,
.hs-item__sub-sub-toggle svg {
  pointer-events: none;
  transition: transform 0.3s;
}

@media (min-width: 70.001rem) {
  .hs-item__sub-toggle svg {
    margin-left: 0.2em;
  }
}

.site-nav button.site-nav__cta-button {
  display: flex;
  padding: var(--space-5xs, 0.5rem) var(--space-4xs, 0.75rem);
  align-items: center;
  gap: var(--space-5xs, 0.5rem);
  background: transparent;
  color: inherit;
  text-transform: none;
}
.site-nav button.site-nav__cta-button {
  font-family: var(--font-family-title--secondary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.2rem */
  letter-spacing: 0.02rem;
}
html:not(.is-site-nav-opened) .nav-text-color-white .headroom--top:not(.sub-menu-is-opened) .site-nav button.site-nav__cta-button {
  border-color: var(--color-text-invert, #FFF);
  color: var(--color-text-invert, #FFF);
}
@media (max-width: 70rem) {
  .site-nav button.site-nav__cta-button {
    border: 0;
    padding-bottom: var(--space-s);
    padding-top: var(--space-s);
  }
}

.site-nav .level-2 {
  margin-top: 0;
}
@media (max-width: 70rem) {
  .site-nav .level-2 a {
    padding: var(--space-xs) 0;
    font-family: var(--font-family-title--secondary);
    font-size: 1.1875rem;
    font-style: normal;
    font-weight: 300;
    display: flex;
    align-items: center;
  }
}
.site-nav .level-2 a:hover, .site-nav .level-2 a:focus {
  color: var(--color-text-primary, #000);
}

.sub-menu__heading {
  color: var(--color-text-secondary, #5B5B5B);
}
@media (max-width: 70rem) {
  .sub-menu__heading {
    padding: var(--space-xs) 0 var(--space-4xs);
    margin-top: 0;
  }
}

.site-nav__hover-image {
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: calc(50vw + 19rem - 3.8125rem);
  max-height: 34.6875rem;
  opacity: 0;
  display: none;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
}
.site-nav__hover-image img {
  vertical-align: top;
}
@media (min-width: 70.001rem) {
  .site-nav__hover-image {
    display: block;
  }
  li.level-2:hover .site-nav__hover-image, li.level-2:focus-within .site-nav__hover-image {
    opacity: 1;
  }
}

.site-nav__flyout-image {
  margin: 0;
  position: absolute;
  top: var(--space-s);
  right: var(--side-padding);
  display: none;
}
@media (min-width: 70.001rem) {
  .site-nav__flyout-image {
    display: block;
    height: 34.6875rem;
  }
  .site-nav__flyout-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.site-hero__image {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  margin: 0;
}
.site-hero__image img,
.site-hero__image video {
  height: 100vh;
  height: 100svh;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.site-hero__image video {
  width: 100%;
}
@media (max-width: 48rem) {
  .site-hero__image--desktop {
    display: none;
  }
}
@media (min-width: 48.001rem) {
  .site-hero__image--mobile {
    display: none;
  }
}
.site-hero__content {
  position: relative;
  z-index: 2;
}
.site-hero__content #hs_cos_wrapper_hero_content {
  display: flex;
  flex-flow: wrap;
  -moz-column-gap: var(--gutter);
       column-gap: var(--gutter);
}
.site-hero__content #hs_cos_wrapper_hero_content > * {
  flex: 0 0 100%;
}
.site-hero__content #hs_cos_wrapper_hero_content > .hs-web-interactive-inline {
  flex: 1 1 auto;
}
.site-hero--image-above .site-hero__wrapper {
  background: var(--color-surface-secondary, #E6E6E6);
}
.site-hero--image-above .site-hero__content {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  text-align: center;
}
.site-hero--image-above .site-hero__content h1 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-title--secondary);
  font-weight: 700;
  text-transform: none;
}
.site-hero--image-above .site-hero__content__text {
  margin-top: var(--text-margin);
}
@media (max-width: 48rem) {
  .site-hero--image-above .site-hero__content h1 + * {
    margin-top: var(--gutter);
  }
}
.site-hero--image-background {
  padding-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-xl);
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  margin-top: 0;
  border-bottom: 0;
  color: var(--color-text-cover, #FFF);
}
.site-hero--image-background .site-hero__content {
  display: flex;
  gap: var(--gutter);
  width: 100%;
}
@media (min-width: 48.001rem) {
  .site-hero--image-background .site-hero__content > :first-child {
    flex: 0 0 50%;
  }
  .site-hero--image-background .site-hero__content__text {
    width: var(--width-small);
  }
}
@media (max-width: 48rem) {
  .site-hero--image-background .site-hero__content {
    flex-direction: column;
  }
}
.site-hero--image-background .site-hero__image,
.site-hero--image-background .site-hero__image img,
.site-hero--image-background .site-hero__image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-hero--image-background .site-hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-hero--image-background .site-hero__image::after {
  background: var(--color-surface-invert-primary, #000);
  opacity: 0.4;
}
.site-hero--image-none {
  background: var(--color-surface-primary, #FFF);
  margin-top: var(--header-height);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-xl);
}
.site-hero--image-none .site-hero__content h1 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-title--secondary);
  font-weight: 700;
  text-transform: none;
}
.site-hero--image-none .site-hero__content .site-hero__content__text {
  margin-top: var(--text-margin);
}
.site-hero--case-study .site-hero__content, .site-hero--image-background.site-hero--content-center .site-hero__content {
  flex-direction: column;
  gap: var(--gutter);
  text-align: center;
  width: var(--width-small);
}
.site-hero--case-study .site-hero__content h1, .site-hero--image-background.site-hero--content-center .site-hero__content h1 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-title--secondary);
  font-weight: 700;
  text-transform: none;
}
.site-hero--case-study .site-hero__content .site-hero__label p, .site-hero--image-background.site-hero--content-center .site-hero__content .site-hero__label p {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
}
.site-hero--image-background.site-hero--content-center .site-hero__content {
  align-items: center;
  margin: 0 auto;
}
.site-hero--content-center {
  align-items: center;
  padding-top: var(--space-xl);
}
.site-hero--blog .site-hero__wrapper {
  background: var(--color-surface-primary, #FFF);
}
.site-hero__date, .site-hero__author, .site-hero__tags {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text-secondary, #5B5B5B);
}
.site-hero__author, .site-hero__tags {
  margin-top: var(--space-6xs);
}
.site-hero__tags a {
  color: inherit;
  text-decoration: none;
}
.site-hero__tags a:hover, .site-hero__tags a:focus {
  color: var(--color-surface-brand-primary);
}

.posts-load {
  margin: var(--space-l) 0 0;
}

.archive-load-more {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.archive-load-more--disabled {
  display: none;
}
.archive-load-more.loading .archive-load-more__spinner {
  opacity: 1;
}
.archive-load-more.loading .archive-load-more__text {
  opacity: 0;
}

.archive-load-more__text,
.archive-load-more__spinner {
  transition: opacity 150ms ease-in;
}

.archive-load-more__spinner {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  display: block;
  width: 5rem;
  height: 0.8125rem;
  opacity: 0;
}
.archive-load-more__spinner span {
  position: absolute;
  top: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.archive-load-more__spinner span:nth-child(1) {
  left: 0.5rem;
  animation: lds-ellipsis1 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(2) {
  left: 0.5rem;
  animation: lds-ellipsis2 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(3) {
  left: 2rem;
  animation: lds-ellipsis2 0.6s infinite;
}
.archive-load-more__spinner span:nth-child(4) {
  left: 3.5rem;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.posts-list {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 48.001rem) {
  .posts-list {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
}
@media (min-width: 65.001rem) {
  .posts-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.post-item {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
  align-self: start;
  background-color: var(--color-surface-secondary);
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  justify-content: end;
  height: 100%;
  min-height: 130vw;
  overflow: hidden;
  padding: var(--space-s) var(--space-m) var(--space-l);
  position: relative;
  transition: var(--transition-3) all ease-out;
  width: inherit;
}
@media (min-width: 48.001rem) {
  .post-item {
    min-height: 64vw;
  }
}
@media (min-width: 65.001rem) {
  .post-item {
    min-height: 32vw;
  }
}
.post-item:hover, .post-item:focus-within {
  background-color: var(--color-surface-brand-primary);
  color: var(--color-text-invert, #FFF);
}
.post-item:hover .post-item__image, .post-item:focus-within .post-item__image {
  opacity: 0;
}
.post-item:nth-child(14n+1) {
  color: var(--color-text-cover, #FFF);
}
.post-item:nth-child(14n+1) .post-item__image {
  display: block;
}
.post-item:nth-child(14n+1).post-item--no-image {
  color: var(--color-text-primary);
}
.post-item:nth-child(14n+1).post-item--no-image:hover, .post-item:nth-child(14n+1).post-item--no-image:focus-within {
  color: var(--color-text-invert, #FFF);
}
.post-item:nth-child(14n+1).post-item--no-image .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+1) {
    grid-column: 1/3;
  }
}
.post-item:nth-child(14n+2) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+2) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+3) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+3) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+4) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+4) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+5) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+5) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+6) {
  color: var(--color-text-cover, #FFF);
}
.post-item:nth-child(14n+6) .post-item__image {
  display: block;
}
.post-item:nth-child(14n+6).post-item--no-image {
  color: var(--color-text-primary);
}
.post-item:nth-child(14n+6).post-item--no-image:hover, .post-item:nth-child(14n+6).post-item--no-image:focus-within {
  color: var(--color-text-invert, #FFF);
}
.post-item:nth-child(14n+6).post-item--no-image .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+6) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+7) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+7) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+8) {
  color: var(--color-text-cover, #FFF);
}
.post-item:nth-child(14n+8) .post-item__image {
  display: block;
}
.post-item:nth-child(14n+8).post-item--no-image {
  color: var(--color-text-primary);
}
.post-item:nth-child(14n+8).post-item--no-image:hover, .post-item:nth-child(14n+8).post-item--no-image:focus-within {
  color: var(--color-text-invert, #FFF);
}
.post-item:nth-child(14n+8).post-item--no-image .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+8) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+9) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+9) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+10) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+10) {
    grid-column: 3/5;
  }
}
.post-item:nth-child(14n+11) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+11) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+12) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+12) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+13) .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+13) {
    grid-column: auto;
  }
}
.post-item:nth-child(14n+14) {
  color: var(--color-text-cover, #FFF);
}
.post-item:nth-child(14n+14) .post-item__image {
  display: block;
}
.post-item:nth-child(14n+14).post-item--no-image {
  color: var(--color-text-primary);
}
.post-item:nth-child(14n+14).post-item--no-image:hover, .post-item:nth-child(14n+14).post-item--no-image:focus-within {
  color: var(--color-text-invert, #FFF);
}
.post-item:nth-child(14n+14).post-item--no-image .post-item__image {
  display: none;
}
@media (min-width: 65.001rem) {
  .post-item:nth-child(14n+14) {
    grid-column: auto;
  }
}
.post-item__content {
  z-index: 1;
}
.post-item h3 {
  font-size: var(--heading-200);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
  z-index: 1;
}
.post-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: none;
}
.post-item__meta {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: auto;
  margin-top: 0;
  position: relative;
}
.post-item__meta .post-item__meta-case-study:not(:last-of-type) {
  margin-right: var(--space-3xs);
}
.post-item__image {
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: var(--transition-3) opacity ease-out;
  width: 100%;
}
.post-item--no-image .post-item__image {
  display: none;
}
.post-item__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  width: 100%;
}
.post-item__image::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#empty-base-item {
  display: none;
}

.social-share {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: wrap;
}
.social-share__item {
  margin: 0 1.3rem 0 0;
}
.social-share__item:last-child {
  margin-right: 0;
}
.social-share__item--label {
  flex: 0 0 100%;
  margin: 0 0 1rem;
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family-title);
  font-weight: 900;
  text-transform: uppercase;
}
.social-share a {
  color: var(--color-primary-500);
}
.social-share a:hover, .social-share a:focus {
  text-decoration: none;
}

.content-tabs {
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
}
.content-tabs__title h2 {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base--secondary);
  font-weight: 400;
  text-transform: uppercase;
}
.content-tabs__title + * {
  margin-top: var(--space-3xs);
}
.content-tabs__wrapper {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .content-tabs__wrapper {
    flex-direction: column;
    gap: var(--space-3xl);
  }
  .content-tabs__wrapper > * {
    flex: 0 0 100%;
  }
}
.content-tabs__items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.content-tabs__item {
  align-content: center;
  padding: 0;
  transition: all 0.3s ease-out;
}
.content-tabs .content-tabs__item-header {
  min-width: 1px;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  border: 0;
  background: rgba(255, 255, 255, 0);
  font-size: var(--text-big);
  line-height: var(--line-height-heading);
  font-family: var(--font-family-base);
  font-weight: 400;
  text-transform: uppercase;
  align-items: center;
  color: var(--color-text-light, #9D9D9D);
  cursor: pointer;
  display: inline-flex;
  gap: var(--gutter);
  justify-content: space-between;
  padding: 0;
  text-align: left;
  width: 100%;
}
.content-tabs .content-tabs__item-header.is-active, .content-tabs .content-tabs__item-header:hover, .content-tabs .content-tabs__item-header:focus {
  color: var(--color-text-primary, #000);
}
.content-tabs .content-tabs__item-header:focus {
  box-shadow: none;
  outline: none;
}
.content-tabs .content-tabs__item-header .content-tabs__button-icon {
  display: none;
}
@media (min-width: 48.001rem) {
  .content-tabs__contents {
    flex: 0 0 57.5%;
  }
}
.content-tabs__item-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  visibility: hidden;
}
.content-tabs__item-content.show-content {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}
.content-tabs__item-content-inner {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 37.501rem) {
  .content-tabs__item-content-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gutter);
  }
}
@media (min-width: 65.001rem) {
  .content-tabs__item-content-inner {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max(10rem, 22%)), 1fr));
  }
  .content-tabs__item-content-inner--length-2 {
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    width: 66.9%;
  }
}
.content-tabs__item-content-inner > :first-child {
  margin-top: 0;
}
.content-tabs__item-content-inner__item {
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family-base);
}
.content-tabs__item-content-inner__item strong {
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/*--------------------------------------------------------------
# Utilities - Helpers and overrides.
--------------------------------------------------------------*/
:focus {
  outline: thin dotted;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: var(--color-link);
  clip: auto !important;
  color: white;
  display: block;
  font-size: 0.8em;
  font-weight: bold;
  height: auto;
  padding: 0.75rem;
  left: 0.5rem;
  top: 0.5rem;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.has-white-background,
.white-background {
  background-color: var(--color-surface-primary);
}

.has-grey-background,
.has-gray-background,
.grey-background {
  background-color: var(--color-surface-secondary);
}

.has-white-texts {
  color: var(--color-text-cover, #FFF);
}
.has-white-texts .btn--secondary {
  --color-btn-text: var(--color-text-invert, #FFF);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
}
.has-white-texts .btn--secondary:hover, .has-white-texts .btn--secondary:focus {
  color: var(--color-text-primary);
  background-color: var(--color-surface-primary, #FFF);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQ3MiA3LjUyODY1QzE0LjU5NyA3LjY1MzY3IDE0LjY2NzMgNy44MjMxOSAxNC42NjczIDhDMTQuNjY3MyA4LjE3NjgxIDE0LjU5NyA4LjM0NjMzIDE0LjQ3MiA4LjQ3MTM1TDkuMzMzOTggMTMuNjA5NEw4LjM5MTI4IDEyLjY2NjdMMTIuMzkxMyA4LjY2NjY3SDEuMzMzOThWNy4zMzMzM0gxMi4zOTEzTDguMzkxMjggMy4zMzMzM0w5LjMzMzk4IDIuMzkwNjJMMTQuNDcyIDcuNTI4NjVaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K);
  border-color: var(--color-text-primary);
}
.has-white-texts .btn--secondary:focus {
  border-color: var(--color-text-primary);
  box-shadow: 0 0 0 2px #fff;
}

/**
 * Containers
 */
#CookieBanner {
  position: fixed;
  z-index: 2147483645;
  min-height: 100vh;
  min-width: 100vw;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  pointer-events: none;
  display: none;
}

#CookieBanner.is-visible-cookie-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#CookieBanner,
#CookieBanner * {
  box-sizing: border-box;
  text-underline-offset: 0.125em;
  outline-offset: 3px;
}

#CookieBannerOverlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: auto;
  z-index: 10;
}

.is-visible-cookie-banner #CookieBannerOverlay {
  animation: cookieBannerFadeIn 0.25s ease-in-out;
  animation-fill-mode: forwards;
}

.is-closing-cookie-banner #CookieBannerOverlay {
  animation: cookieBannerFadeOut 0.25s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #CookieBanner * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
#CookieBannerNotice {
  color: #0f0f0f;
  max-width: 1080px;
  padding: 40px 28px;
  overflow: auto;
  max-height: 100vh;
  max-height: calc(100vh - 24px);
  width: 100%;
  width: calc(100% - 24px);
  max-width: 1080px;
  background: #fff;
  color: #0f0f0f;
  margin: 0 auto;
  z-index: 500;
  pointer-events: auto;
}

@media (min-width: 450px) {
  #CookieBannerNotice {
    padding: 24px;
    max-height: calc(100vh - 48px);
    width: calc(100% - 48px);
  }
}
.is-visible-cookie-banner #CookieBannerNotice {
  animation: cookieBannerSlideIn 0.25s ease-in-out;
  animation-fill-mode: forwards;
}

.is-closing-cookie-banner #CookieBannerNotice {
  animation: cookieBannerSlideOut 0.25s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@media (min-width: 800px) {
  #CookieBannerNotice {
    padding: 48px;
    max-width: 49rem;
  }
}
@media (min-width: 1000px) {
  #CookieBannerNotice {
    padding: 64px;
  }
}
/**
 * Utils
 */
@keyframes cookieBannerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cookieBannerFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cookieBannerSlideIn {
  0% {
    opacity: 0;
    transform: translateY(96px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookieBannerSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(96px);
  }
}
#CookieBanner button > * {
  pointer-events: none;
}

#CookieBanner ul,
#CookieBanner li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}

#CookieBanner .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/**
 * Content
 */
#CookieBanner .cookiebanner__main__inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__main__content {
    margin-right: 48px;
  }
}
#CookieBanner .cookiebanner__main__title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__main__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
#CookieBanner .cookiebanner__main__description {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__main__description {
    font-size: 16px;
    line-height: 1.75;
  }
}
/**
 * Buttons
 */
#CookieBanner .cookiebanner__buttons {
  flex-shrink: 0;
  margin-top: 32px;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__buttons {
    margin-top: 40px;
  }
}
#CookieBanner .cookiebanner__buttons ul {
  display: flex;
}

@media (max-width: 800px) {
  #CookieBanner .cookiebanner__buttons ul {
    display: block;
  }
  #CookieBanner .cookiebanner__buttons__accept,
  #CookieBanner .cookiebanner__buttons__deny,
  #CookieBanner .cookiebanner__buttons__details {
    width: 100%;
  }
}
#CookieBanner .cookiebanner__buttons li {
  margin-bottom: 12px;
  margin-right: 8px;
  width: 100%;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__buttons li {
    width: auto;
  }
}
#CookieBanner .cookiebanner__buttons li:last-of-type {
  width: auto;
  margin-bottom: 0;
}

#CookieBanner .cookiebanner__buttons__details,
#CookieBanner .cookiebanner__preference__toggle {
  background: none;
  border: none;
  color: var(--color-text-primary, #000);
  margin-top: 8px;
  padding: 8px 16px;
  text-decoration: underline;
}
#CookieBanner .cookiebanner__buttons__details:hover, #CookieBanner .cookiebanner__buttons__details:focus,
#CookieBanner .cookiebanner__preference__toggle:hover,
#CookieBanner .cookiebanner__preference__toggle:focus {
  box-shadow: none;
  color: var(--color-text-highlight);
}

#CookieBanner .cookiebanner__buttons__details:hover,
#CookieBanner .cookiebanner__buttons__details:focus,
#CookieBanner .cookiebanner__buttons__details:active {
  text-decoration: underline;
}

/**
 * Details
 */
#CookieBanner .cookiebanner__details {
  margin-top: 24px;
  display: none;
}

#CookieBanner.is-details-open .cookiebanner__details {
  display: block;
}

#CookieBanner .cookiebanner__details__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/**
 * Preferences
 */
#CookieBanner .cookiebanner__details__preferences {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__details__preferences {
    margin-top: 24px;
  }
}
#CookieBanner .cookiebanner__details__preferences__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

@media (min-width: 540px) {
  #CookieBanner .cookiebanner__preference__heading {
    display: flex;
    align-items: center;
  }
}
#CookieBanner .cookiebanner__preference {
  background: #f4f4f4;
  padding: 16px;
  width: 100%;
  margin-bottom: 12px;
}

@media (min-width: 540px) {
  #CookieBanner .cookiebanner__preference {
    margin-bottom: 16px;
  }
}
@media (min-width: 800px) {
  #CookieBanner .cookiebanner__preference {
    padding: 32px;
  }
}
#CookieBanner .cookiebanner__preference::last-of-type {
  margin-bottom: 0;
}

/* Hide the input */
#CookieBanner .cookiebanner__preference input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

#CookieBanner .cookiebanner__preference__label {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-direction: column;
}

@media (min-width: 540px) {
  #CookieBanner .cookiebanner__preference__label {
    flex-direction: row;
  }
}
#CookieBanner .cookiebanner__preference input:focus + .cookiebanner__preference__label,
#CookieBanner .cookiebanner__preference__label:hover {
  text-decoration: underline;
  cursor: pointer;
}

#CookieBanner .cookiebanner__preference__ui {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 80px;
  height: 44px;
  background: #868e96;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

#CookieBanner .cookiebanner__preference__text {
  display: block;
  margin-top: 12px;
}

@media (min-width: 540px) {
  #CookieBanner .cookiebanner__preference__text {
    margin-left: 16px;
    margin-top: 0;
  }
}
#CookieBanner .cookiebanner__preference__title {
  display: block;
  font-weight: bold;
  margin: 0;
  font-size: 16px;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__preference__title {
    font-size: 18px;
  }
}
#CookieBanner .cookiebanner__preference__description {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

#CookieBanner .cookiebanner__preference__toggle {
  flex-shrink: 0;
  margin-left: 32px;
}

@media (max-width: 539px) {
  #CookieBanner .cookiebanner__preference__toggle {
    flex-shrink: 0;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
  }
}
#CookieBanner .cookiebanner__preference__toggle:hover,
#CookieBanner .cookiebanner__preference__toggle:focus,
#CookieBanner .cookiebanner__preference__toggle:active {
  text-decoration: underline;
}

#CookieBanner .cookiebanner__preference__more {
  display: none;
  margin-top: 24px;
}

#CookieBanner .cookiebanner__preference__more__description {
  margin: 0;
  font-size: 16px;
}

#CookieBanner .cookiebanner__preference__more__list {
  margin-top: 16px;
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: linear-gradient(to right, #f4f4f4 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), #f4f4f4 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background-repeat: no-repeat;
  background-color: #f4f4f4;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-position: 0 0, 100%, 0 0, 100%;
  background-attachment: local, local, scroll, scroll;
}

#CookieBanner .cookiebanner__preference__more__list table {
  width: 100%;
}

#CookieBanner .cookiebanner__preference__more__list tbody td {
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

#CookieBanner .cookiebanner__preference__more__list tbody .CybotCookiebotDialogDetailBodyContentCookieTypeTableEmpty {
  border-top: 0;
}

#CookieBanner .cookiebanner__preference__more__list a {
  text-decoration: underline;
  color: inherit;
}

#CookieBanner .cookiebanner__preference__more__list th,
#CookieBanner .cookiebanner__preference__more__list td {
  vertical-align: baseline;
  min-width: 176px;
  text-align: left;
  padding: 6px;
  background: transparent;
  font-size: 16px;
  word-break: break-word;
}

@media (min-width: 800px) {
  #CookieBanner .cookiebanner__preference__more__list th,
  #CookieBanner .cookiebanner__preference__more__list td {
    padding: 8px;
  }
}
#CookieBanner .cookiebanner__preference__more.is-open {
  display: block;
}

#CookieBanner .cookiebanner__preference__ui__handle {
  display: flex;
  margin-left: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

#CookieBanner .cookiebanner__preference input:checked + label .cookiebanner__preference__ui {
  background: #16a085;
}

#CookieBanner .cookiebanner__preference input:checked + label .cookiebanner__preference__ui__handle {
  margin-left: 50%;
  background: #fff;
}

#CookieBanner .cookiebanner__details__preferences__buttons {
  text-align: center;
  margin-top: 8px;
}

#CookieBanner .cookiebanner__accept-selection {
  background: transparent;
  color: var(--color-text-primary);
  display: block;
  text-align: center;
  width: 100%;
}

#CookieBanner .cookiebanner__accept-selection:hover,
#CookieBanner .cookiebanner__accept-selection:focus,
#CookieBanner .cookiebanner__accept-selection:active {
  /* legacy browser compatibility */
  color: #fff;
  background: #0f0f0f;
  /* legacy browser compatibility end */
  border-color: #0f0f0f;
}

/**
 * Updated
 */
#CookieBanner .cookiebanner__details__updated {
  margin-top: 24px;
  text-align: center;
}

#CookieBanner .cookiebanner__details__updated p {
  font-size: 15px;
}

.hs-inline-edit script[type="mce-no/type"] {
  display: block;
  background: red;
  color: #fff;
  font-size: 1rem;
  font-family: "Lucida Console";
  padding: 1rem;
}
.hs-inline-edit script[type="mce-no/type"]:before {
  content: "Hubspot render koodi, editoi muokataksesi lomaketta";
  display: block;
  margin: 0 0 1rem;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}