/**
 * 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-grey-white: #FFFFFF;
  --color-grey-100: #F5F5F5;
  --color-brand-grey-500: #F5F5F5;
  --color-grey-600: #666666;
  --color-brand-grey-700: #C5B0AD;
  --color-grey-900: #141414;
  --color-grey-black: #000000;
  --color-opacity-light-10: #FFFFFF19;
  --color-opacity-dark-10: #00000019;
  --color-opacity-dark-5: #0000000C;
  --color-brand-salmon-300: #FF6B6B;
  --color-brand-salmon-500: #AA1C1A;
  --color-brand-salmon-700: #971717;
  --color-brand-red-300: #FF6B6B;
  --color-brand-red-500: #AA1C1A;
  --color-brand-red-700: #971717;
  --color-ui-success: #219653;
  --color-text-primary: var(--color-grey-black);
  --color-text-secondary: var(--color-grey-600);
  --color-text-brand: var(--color-brand-salmon-700);
  --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-brand-grey-500);
  --color-surface-brand-primary: var(--color-brand-salmon-700);
  --color-surface-brand-secondary: var(--color-brand-grey-700);
  --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-600);
  --color-border-secondary: var(--color-grey-black);
  --color-border-brand: var(--color-brand-salmon-700);
  --color-border-error: var(--color-ui-error);
  --color-border-invert-primary: var(--color-opacity-light-10%);
  --color-border-invert-secondary: var(--color-grey-white);
  --color-black: #000;
  --color-white: #fff;
  --color-success: #219653;
  --color-error: #e73232;
  --color-link: var(--color-text-primary);
  --color-border: var(--color-border-primary);
  --color-background: var(--color-surface-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-secondary-500);
  --color-form-error: var(--color-error);
  /* Font sizes. */
  --heading-600: clamp(2.125rem, 1.2368421053rem + 3.5526315789vw, 5.5rem);
  --heading-500: clamp(1.75rem, 1.1907894737rem + 2.2368421053vw, 3.875rem);
  --heading-400: clamp(1.4375rem, 1.0921052632rem + 1.3815789474vw, 2.75rem);
  --heading-300: clamp(1.1875rem, 0.9901315789rem + 0.7894736842vw, 1.9375rem);
  --heading-200: clamp(1rem, 0.9013157895rem + 0.3947368421vw, 1.375rem);
  --text-600: clamp(1.1875rem, 0.9901315789rem + 0.7894736842vw, 1.9375rem);
  --text-500: clamp(1rem, 0.9013157895rem + 0.3947368421vw, 1.375rem);
  --text-400: clamp(0.875rem, 0.7927631579rem + 0.3289473684vw, 1.1875rem);
  --text-300: clamp(0.75rem, 0.6842105263rem + 0.2631578947vw, 1rem);
  --text-btn: clamp(0.875rem, 0.8421052632rem + 0.1315789474vw, 1rem);
  --text-number: clamp(5rem, 4.7368421053rem + 1.0526315789vw, 6rem);
  --text-nav: clamp(1rem, 1.1578947368rem + -0.1315789474vw, 1.125rem);
  --font-family: "Instrument Sans", 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|l-4xl&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);
  --space-l-4xl: clamp(2rem, -0.2768rem + 11.3839vw, 17.9375rem);
  --side-padding: var(--space-m-xl);
  --space-default: var(--space-3xl-4xl);
  --gutter: var(--space-s);
  --text-margin: 1.3em;
  /* Widths.
   *
   * All widths related variables.
   *
  * */
  --max-width-site: 120rem;
  --max-width-container: 100rem;
  --max-width-medium: calc(var(--max-width-container) * 0.9);
  --max-width-regular: calc(var(--max-width-container) * 0.775);
  --max-width-small: calc(var(--max-width-container) * 0.4375);
  --width-overflow-xl: clamp(min(50rem, 100%), 100%, 117.5rem);
  --width-overflow: clamp(min(50rem, 100%), 100%, 108rem);
  --width-wide: clamp(min(50rem, 100%), 100%, var(--max-width-container));
  --width-medium: clamp(min(40rem, 100%), 90%, var(--max-width-medium));
  --width-regular: clamp(min(40rem, 100%), 77.5%, var(--max-width-regular));
  --width-small: clamp(min(40rem, 100%), 43.75%, var(--max-width-small));
  /* Miscellanious.
  *
  * All miscellanious variables.
  *
  * */
  --transition-2: 0.2s;
  --underline-box-shadow: inset 0 -0.25rem 0 var(--color-secondary-700);
  --radius-minimal: 0.25rem;
  --radius-image: 1rem;
}

/*
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-background);
}
@media (max-width: 74.5rem) {
  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%;
}

[hidden] {
  display: none;
}

.red-dot {
  color: var(--color-brand-red-300, #FF6B6B);
  height: 0.75rem;
  width: 0.75rem;
}
@media (min-width: 48.001rem) {
  .red-dot {
    height: 1.125rem;
    width: 1.125rem;
  }
}
.red-dot circle {
  fill: var(--color-brand-red-300, #FF6B6B);
}
.has-red-background .red-dot {
  color: var(--color-surface-primary, #FFF);
}
.has-red-background .red-dot circle {
  fill: var(--color-surface-primary, #FFF);
}

.preheader {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  align-items: center;
  display: flex;
  gap: var(--space-5xs);
}

.scroll-stop {
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-primary);
}

a {
  color: var(--color-link);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
a:hover, a:active, a:focus-visible {
  color: var(--color-text-brand);
}
a:focus-visible {
  outline: 1px dashed;
  outline-offset: 1px;
  text-decoration: none;
}

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);
  font-weight: 600;
}

h2,
.h2 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family);
  font-weight: 600;
}
h2 + p,
.h2 + p {
  margin-top: var(--space-s);
}

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

h4,
.h4 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 600;
}

h5,
.h5,
h6,
.h6 {
  font-size: var(--heading-200);
  line-height: 1.4;
  font-family: var(--font-family);
  font-weight: 600;
}

blockquote {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 600;
}

.btn,
.hs-button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  font-size: var(--text-btn);
  line-height: 1;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  padding: var(--space-2xs);
  text-decoration: none;
  text-align: center;
  color: var(--color-text-invert, #FFF);
  border-radius: 62.5rem;
  background: var(--color-surface-brand-primary, #971717);
  border: 0.0625rem solid var(--color-surface-brand-primary);
  transition: all 0.2s;
}
@media (max-width: 48rem) {
  .btn,
  .hs-button,
  button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    padding: var(--space-xs) var(--space-s);
  }
}
.has-white-texts .btn,
.has-white-texts .hs-button,
.has-white-texts button,
.has-white-texts input[type=button],
.has-white-texts input[type=reset],
.has-white-texts input[type=submit] {
  background: var(--color-grey-white, #FFF);
  border-color: var(--color-grey-white, #FFF);
  color: var(--color-text-brand, #971717);
}
.btn:hover, .btn:focus-visible,
.hs-button:hover,
.hs-button:focus-visible,
button:hover,
button:focus-visible,
input[type=button]:hover,
input[type=button]:focus-visible,
input[type=reset]:hover,
input[type=reset]:focus-visible,
input[type=submit]:hover,
input[type=submit]:focus-visible {
  background: var(--color-surface-invert-primary, #000);
  border-color: var(--color-surface-invert-primary, #000);
  color: var(--color-text-invert, #FFF);
  text-decoration: none;
}
.btn:focus-visible,
.hs-button:focus-visible,
button:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
  border-color: var(--color-border-invert-secondary, #FFF);
  box-shadow: 0 0 0 2px #000;
  outline: none;
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-border-secondary, #000);
  color: var(--color-text-primary, #000);
}
.has-white-texts .btn--secondary {
  background: transparent;
  border-color: var(--color-grey-white, #FFF);
  color: var(--color-grey-white, #FFF);
}

.btn--tertiary {
  background: transparent;
  border-color: var(--color-brand-salmon-500, #AA1C1A);
  color: var(--color-brand-salmon-500, #AA1C1A);
}
.has-white-texts .btn--tertiary {
  background: transparent;
  border-color: var(--color-grey-white, #FFF);
  color: var(--color-grey-white, #FFF);
}

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

.tag {
  font-size: var(--text-btn);
  line-height: 1;
  font-weight: 600;
  border-radius: 0.25rem;
  border: 1px solid var(--color-border-primary, #666);
  padding: var(--space-4xs) var(--space-3xs);
  text-decoration: none;
}

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-3xs) var(--space-xs);
  border-radius: var(--radius-minimal, 0.25rem);
  border: 1px solid var(--color-border-primary, #666);
  background: var(--color-surface-primary);
  box-shadow: unset;
  transition: var(--transition-2);
  color: var(--color-text-primary);
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
}
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-brand, #971717);
  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,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_6896_19865" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect y="24" width="24" height="24" transform="rotate(-90 0 24)" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_6896_19865)"><path d="M12.0008 13.8923L16.247 9.64626C16.3405 9.55259 16.4553 9.50259 16.5913 9.49626C16.7271 9.48976 16.8482 9.53976 16.9545 9.64626C17.061 9.75259 17.1143 9.87051 17.1143 10C17.1143 10.1295 17.061 10.2474 16.9545 10.3538L12.5663 14.7423C12.479 14.8294 12.3898 14.8907 12.2988 14.926C12.2078 14.9612 12.1085 14.9788 12.0008 14.9788C11.8931 14.9788 11.7938 14.9612 11.7028 14.926C11.6118 14.8907 11.5226 14.8294 11.4353 14.7423L7.04705 10.3538C6.95338 10.2603 6.90338 10.1455 6.89704 10.0095C6.89054 9.87368 6.94054 9.75259 7.04704 9.64626C7.15338 9.53976 7.2713 9.48651 7.4008 9.48651C7.5303 9.48651 7.64821 9.53976 7.75455 9.64626L12.0008 13.8923Z" fill="%2323232A"/></g></svg>');
}

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 0.0625rem;
  padding: 0;
  background: var(--color-form-background);
  border: 0;
  border-radius: 0.125rem;
  box-shadow: 0 0 0 0.0625rem var(--color-form-border);
  transition: box-shadow var(--transition-2);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  box-shadow: 0 0 0 0.0625rem var(--color-form-border);
}
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 {
  background: var(--color-form-background) no-repeat center;
  /* 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-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;
}

form.hs-form fieldset.form-columns-1 .hs-input, .systems-page form.form-container fieldset.form-columns-1 .hs-input {
  width: 100%;
}
form.hs-form .hs-form-field, .systems-page form.form-container .hs-form-field {
  margin: 0 0 var(--space-xs) 0;
}
form.hs-form .hs-form-field label, .systems-page form.form-container .hs-form-field label {
  margin-bottom: var(--space-4xs);
  display: block;
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
}
form.hs-form .hs-form-field textarea, .systems-page form.form-container .hs-form-field textarea {
  vertical-align: top;
}
form.hs-form .hs-form-field .input ul.inputs-list, .systems-page form.form-container .hs-form-field .input ul.inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
form.hs-form .hs-form-field .input ul.inputs-list li, .systems-page form.form-container .hs-form-field .input ul.inputs-list li {
  margin: 0;
}
form.hs-form .hs-form-field .input ul.inputs-list li::before, .systems-page form.form-container .hs-form-field .input ul.inputs-list li::before {
  display: none;
}
form.hs-form .hs-form-field .input ul.inputs-list, .systems-page form.form-container .hs-form-field .input ul.inputs-list {
  margin: 0 0 0.6rem 0;
}
form.hs-form .hs-form-field .input ul.inputs-list li, .systems-page form.form-container .hs-form-field .input ul.inputs-list li {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
form.hs-form .hs-form-field .input ul.inputs-list li label, .systems-page form.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);
}
form.hs-form .hs-form-field .input ul.inputs-list span, .systems-page form.form-container .hs-form-field .input ul.inputs-list span {
  font-size: 1em;
}
form.hs-form .legal-consent-container, .systems-page form.form-container .legal-consent-container {
  margin-bottom: var(--space-m);
}
form.hs-form .hs-error-msgs, .systems-page form.form-container .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
}
form.hs-form .hs-error-msgs li, .systems-page form.form-container .hs-error-msgs li {
  margin: 0;
}
form.hs-form .hs-error-msgs li::before, .systems-page form.form-container .hs-error-msgs li::before {
  display: none;
}
form.hs-form .hs-error-msgs, .systems-page form.form-container .hs-error-msgs {
  margin: 0.25rem 0 0;
}
form.hs-form .hs-error-msgs label, .systems-page form.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);
  font-weight: 400;
}
form.hs-form .legal-consent-container .hs-form-booleancheckbox-display > span, .systems-page form.form-container .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0;
}

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

ol,
ul {
  list-style: none;
  padding-left: calc(0.75rem + 2 * var(--space-3xs));
}
ol li,
ul li {
  margin: var(--space-3xs) 0 0;
}
ol li:first-child,
ul li:first-child {
  margin-top: 0;
}

ul li::before {
  content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNiIgY3k9IjYuOTU3MDMiIHI9IjYiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
  left: 0;
  margin-left: calc(-1 * (var(--space-3xs) + 0.75rem));
  margin-right: var(--space-3xs);
}

ol {
  counter-reset: counter;
}
ol li {
  counter-increment: counter;
}
ol li::before {
  font-size: var(--text-500);
  line-height: var(--line-height-body);
  font-weight: 700;
  content: counter(counter) ". ";
  margin-left: calc(-1 * (var(--space-3xs) + 0.75rem));
  margin-right: var(--space-3xs);
}

.hs-private ul,
.hs-tools-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-private ul li,
.hs-tools-menu ul li {
  margin: 0;
}
.hs-private ul li::before,
.hs-tools-menu ul li::before {
  display: none;
}

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-brand);
}

.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-overflow-xl {
  width: var(--width-overflow-xl);
}

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

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

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

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

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

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

.content-row,
.dnd-section {
  margin-top: var(--space-xl-2xl);
  margin-bottom: var(--space-xl-2xl);
}

.dnd-section .dnd-row:not(:first-child) {
  margin-top: var(--gutter);
}
.dnd-section .dnd-row:has(.reset-multiple-row-top) + .dnd-row:has(.reset-multiple-row-top) .reset-multiple-row-top {
  margin-top: calc(var(--gutter) * -1);
}
.dnd-section .dnd-row:has(.has-white-background.vertical-padding) + .dnd-row:has(.has-white-background.vertical-padding) .has-white-background {
  margin-top: calc(-1 * var(--space-default));
}
.dnd-section .dnd-row:has(.has-white-background.vertical-padding) + .dnd-row:has(.has-white-background.vertical-padding-small) .has-white-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-white-background.vertical-padding-small) + .dnd-row:has(.has-white-background.vertical-padding-small) .has-white-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-white-background.vertical-padding-small) + .dnd-row:has(.has-white-background.vertical-padding) .has-white-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-light_grey-background.vertical-padding) + .dnd-row:has(.has-light_grey-background.vertical-padding) .has-light_grey-background {
  margin-top: calc(-1 * var(--space-default));
}
.dnd-section .dnd-row:has(.has-light_grey-background.vertical-padding) + .dnd-row:has(.has-light_grey-background.vertical-padding-small) .has-light_grey-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-light_grey-background.vertical-padding-small) + .dnd-row:has(.has-light_grey-background.vertical-padding-small) .has-light_grey-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-light_grey-background.vertical-padding-small) + .dnd-row:has(.has-light_grey-background.vertical-padding) .has-light_grey-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-red-background.vertical-padding) + .dnd-row:has(.has-red-background.vertical-padding) .has-red-background {
  margin-top: calc(-1 * var(--space-default));
}
.dnd-section .dnd-row:has(.has-red-background.vertical-padding) + .dnd-row:has(.has-red-background.vertical-padding-small) .has-red-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-red-background.vertical-padding-small) + .dnd-row:has(.has-red-background.vertical-padding-small) .has-red-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section .dnd-row:has(.has-red-background.vertical-padding-small) + .dnd-row:has(.has-red-background.vertical-padding) .has-red-background {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
@media (max-width: 48rem) {
  .dnd-section .dnd-column:not(:first-child) {
    margin-top: var(--gutter);
  }
}
.dnd-section:first-child .dnd-row:first-child:has(.vertical-padding.has-white-background), .dnd-section:first-child .dnd-row:first-child:has(.vertical-padding-small.has-white-background) {
  margin-top: calc(-1 * (var(--space-xl-2xl)));
}
.dnd-section:first-child .dnd-row:first-child:has(.vertical-padding.has-light_grey-background), .dnd-section:first-child .dnd-row:first-child:has(.vertical-padding-small.has-light_grey-background) {
  margin-top: calc(-1 * (var(--space-xl-2xl) + var(--space-xl)));
}
.dnd-section:first-child .dnd-row:first-child .big-media.has-light_grey-background {
  padding-top: var(--space-xl);
}
.dnd-section:first-child .dnd-row:first-child:has(.logo-list.has-light_grey-background) {
  margin-top: calc(-1 * var(--space-xl-2xl));
}
.dnd-section:last-child .dnd-row:last-child:has(.reset-multiple-row-top), .blog-index-dnd-area .dnd-section:last-child {
  margin-bottom: calc(-1 * var(--space-xl-2xl));
}

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

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

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

.vertical-padding-small {
  padding-top: var(--space-xl-2xl);
  padding-bottom: var(--space-xl-2xl);
}

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

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

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

/* 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-filters {
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-filters li {
  margin: 0;
}
.archive-filters li::before {
  display: none;
}
.archive-filters {
  margin-bottom: var(--gutter);
  display: flex;
  flex-flow: wrap;
}
.archive-filters li {
  margin: 0.5rem 0.5rem 0 0;
}

.blog-post__metas {
  margin-top: var(--gutter);
}
.blog-post__metas a {
  text-decoration: none;
}
.blog-post__metas a:hover, .blog-post__metas a:focus {
  text-decoration: underline;
}

#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);
  font-weight: 600;
}
#hs_cos_wrapper_post_body > h3 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 600;
}
#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-small);
  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-4xl);
}

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

.small-title-and-content-section {
  margin-top: calc(-1 * var(--space-xl-2xl));
  margin-bottom: 0;
  padding-top: var(--space-xl-2xl);
  padding-bottom: 0;
}
.small-title-and-content-section h2 {
  font-size: var(--heading-200);
  line-height: 1.4;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--color-text-secondary);
}
.small-title-and-content-section h3 {
  font-size: var(--heading-300);
  line-height: 1.3;
  font-family: var(--font-family);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Modules - specific UI components.
--------------------------------------------------------------*/
.archive-post-listing {
  margin-bottom: var(--space-2xl);
}

.archive-filters {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-l);
}
.archive-filters__select {
  position: relative;
  min-width: 100%;
}
@media (min-width: 48.001rem) {
  .archive-filters__select {
    min-width: 20rem;
  }
}
.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-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 600;
  background: var(--color-surface-invert-primary);
  border-radius: 0.5rem;
  color: var(--color-text-invert);
  display: flex;
  gap: var(--space-4xs);
  justify-content: space-between;
  padding: var(--space-3xs, 1rem) var(--space-xs, 1.5rem);
  text-transform: none;
  border: 0.0625rem solid var(--color-surface-invert-primary);
}
.archive-filters__select-btn:hover, .archive-filters__select-btn:focus-visible {
  color: var(--color-text-primary);
  background: var(--color-surface-primary);
}
.archive-filters__select-btn:hover::after, .archive-filters__select-btn:focus-visible::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjQxNTMgOC4yNUwxMC45OTg4IDE0LjY2NjdMNC41ODIwMyA4LjI1IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
}
.archive-filters__select-btn::after {
  content: "";
  width: 1.375em;
  height: 1.375em;
  background: no-repeat center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjQxNzMgOC4yNUwxMS4wMDA3IDE0LjY2NjdMNC41ODM5OCA4LjI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
}
.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;
}
.archive-filters__tag-list li {
  margin: 0;
}
.archive-filters__tag-list li::before {
  display: none;
}
.archive-filters__tag-list {
  display: block;
  padding: 0 var(--space-xs, 1.5rem);
  background: var(--color-surface-primary);
  border: 0.0625rem solid var(--color-surface-invert-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.is-open .archive-filters__tag-list {
  padding: var(--space-3xs, 1rem) var(--space-xs, 1.5rem);
  border: 0.0625rem solid var(--color-surface-invert-primary);
  background: var(--color-surface-primary);
}
.archive-filters__tag-list button {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  border-radius: 0;
  width: 100%;
  padding: var(--space-5xs) 0;
  color: inherit;
  text-transform: none;
  text-align: left;
  background: rgba(255, 255, 255, 0);
  border: 0;
}
.archive-filters__tag-list button:hover, .archive-filters__tag-list button:focus-visible {
  color: var(--color-text-brand);
}
.archive-filters .js-filters-tag-list-holder {
  position: absolute;
  z-index: 30;
  overflow: hidden;
  visibility: hidden;
  display: grid;
  grid-template-rows: 0fr; /* Initially hidden */
  margin-top: var(--space-s);
  width: 100%;
  transition: grid-template-rows 0.3s ease-in-out;
}
.archive-filters .js-filters-tag-list-holder.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
}

@media (min-width: 65.001rem) {
  .archive-filters--blog {
    display: block;
    width: calc(41.6666666667% - var(--gutter) * 0.6666666667);
  }
}

.posts-load {
  margin-top: var(--space-l);
}
.posts-load .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.archive-load-more {
  position: relative;
  width: 100%;
}
.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 {
  display: block;
  width: 5rem;
  height: 0.8125rem;
  opacity: 0;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.archive-load-more__spinner span {
  position: absolute;
  top: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: #fff;
  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;
}

.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 > .normal-text-width, .span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-form,
.span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-rich_text,
.span12.dnd-module > .hs_cos_wrapper_type_module > .normal-text-width,
.span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-form {
  margin: auto;
  width: var(--width-small);
}
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-header,
.span12.dnd-module > .hs_cos_wrapper_type_module.widget-type-header {
  margin: auto;
  width: var(--width-medium);
}
.span12.dnd-column > div > div > .span12.dnd-module > .hs_cos_wrapper_type_module > hr,
.span12.dnd-module > .hs_cos_wrapper_type_module > hr {
  width: 100% !important;
  border-color: var(--color-brand-salmon-500) !important;
}

.site-header {
  position: fixed;
  z-index: 300;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
  will-change: transform;
  transition: all 250ms cubic-bezier(0.4, 0, 1, 1);
}
.site-header.headroom--pinned {
  background: var(--color-surface-primary, #FFF);
}
.site-header.headroom--top {
  background: rgba(255, 255, 255, 0);
}
.has-frontpage-hero .site-header.headroom--top .site-header__logo svg path {
  fill: var(--color-white);
}
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .site-header__logo svg path {
  fill: var(--color-black);
}
.has-frontpage-hero .site-header.headroom--top .language-select {
  color: var(--color-white);
}
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .language-select {
  color: var(--color-black);
}
.has-frontpage-hero .site-header.headroom--top .site-nav__toggle-inner span {
  background-color: var(--color-white);
}
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .site-nav__toggle-inner span {
  background-color: var(--color-black);
}
.has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > a,
.has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > button {
  color: var(--color-white);
}
.has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > a svg path,
.has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > button svg path {
  fill: var(--color-white);
}
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > a,
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > button {
  color: var(--color-black);
}
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > a svg path,
.is-site-nav-opened .has-frontpage-hero .site-header.headroom--top .hs-menu-depth-1 > button svg path {
  fill: var(--color-brand-red-700);
}
.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: 85rem) {
  .site-header {
    padding-left: var(--space-s);
    padding-right: var(--space-s);
  }
}
@media (max-width: 74.5rem) {
  .site-header {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }
  .is-site-nav-opened .site-header {
    background: var(--color-surface-primary);
    height: 100%;
    overflow: hidden;
    inset: 0;
    overflow-y: auto;
  }
}
.site-header a:not(.btn),
.site-header .mimic-link {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 74.5rem) {
  .site-header__container {
    align-items: center;
    flex-flow: wrap;
  }
}
@media (min-width: 74.501rem) {
  .site-header .site-nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .site-header .site-nav > *:not(.site-header__extra) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .site-header .site-nav .site-header__extra {
    align-items: center;
    display: flex;
    gap: var(--space-s);
  }
}
@media (max-width: 85rem) {
  .site-header .site-nav .site-header__extra {
    gap: var(--space-xs);
  }
}
@media (max-width: 74.5rem) {
  .site-header .site-nav {
    display: none;
    position: relative;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 18rem;
    width: 100%;
  }
  .site-header .site-nav.is-opened {
    display: block;
    flex: 0 0 100%;
  }
  .site-header .site-nav .site-header__extra .btn {
    width: 100%;
  }
}

.site-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: flex;
  font-size: 0;
}
@media (min-width: 74.501rem) {
  .site-nav__toggle {
    display: none;
  }
}
.site-nav__toggle:hover, .site-nav__toggle:focus {
  background: rgba(0, 0, 0, 0);
  outline: 0;
}
.site-nav__toggle-inner span {
  display: block;
  height: 3px;
  border-radius: 1px;
  background: var(--color-black);
  margin: 4px;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 30px;
}
.site-nav__toggle[aria-expanded=true] .site-nav__toggle-inner span:first-child {
  transform: translateY(7px) rotate(0deg);
}
.site-nav__toggle[aria-expanded=true] .site-nav__toggle-inner span:nth-child(2) {
  opacity: 0;
}
.site-nav__toggle[aria-expanded=true] .site-nav__toggle-inner span:last-child {
  transform: translateY(-7px) rotate(90deg);
}
.site-nav__toggle[aria-expanded=true] .site-nav__toggle-inner {
  transform: rotate(45deg);
  transition: all 0.25s ease 0.05s;
}

.site-header__logo {
  width: 4.0625rem;
  height: 2.625rem;
}
.site-header__logo svg {
  width: 100%;
  height: 100%;
}
.site-header__logo svg path {
  transition: fill 250ms cubic-bezier(0.4, 0, 1, 1);
}

.site-footer {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  background-color: var(--color-surface-secondary);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-s);
}
.site-footer__content {
  display: flex;
  gap: var(--space-m);
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .site-footer__content {
    flex-direction: column;
  }
}
.site-footer__logo {
  display: block;
  max-width: 6.5rem;
}
@media (min-width: 48.001rem) {
  .site-footer__logo {
    max-width: 8rem;
  }
}
.site-footer__logo svg {
  width: 100%;
  height: auto;
}
.site-footer__info {
  max-width: 25.5rem;
}
.site-footer__info p {
  color: var(--color-text-secondary);
}
.site-footer__info > * + * {
  margin-top: var(--space-s);
  display: block;
}
.site-footer__navigation {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 48.001rem) {
  .site-footer__navigation {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer__navigation--col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__navigation--col ul li {
  margin: 0;
}
.site-footer__navigation--col ul li::before {
  display: none;
}
.site-footer__navigation--col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.site-footer__navigation--col--2 ul {
  margin-top: var(--space-5xs);
  margin-left: var(--space-5xs);
  gap: var(--space-5xs);
}
.site-footer__navigation a {
  text-decoration: none;
  color: var(--color-text-brand);
}
.site-footer__copyright {
  display: flex;
  gap: var(--gutter);
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-s);
  margin-top: var(--space-l);
}
@media (min-width: 48.001rem) {
  .site-footer__copyright > *:last-child {
    justify-self: end;
  }
}
@media (max-width: 48rem) {
  .site-footer__copyright {
    flex-direction: column;
  }
}
.site-footer__copyright__links {
  display: flex;
  align-items: flex-start;
}
@media (min-width: 48.001rem) {
  .site-footer__copyright__links {
    justify-content: center;
  }
}
.site-footer__copyright__links {
  gap: var(--space-s);
}
.site-footer__copyright__links > * {
  display: flex;
}
.site-footer__copyright__links a:hover,
.site-footer__copyright__links a:focus {
  text-decoration: underline;
}
.site-footer__copyright p,
.site-footer__copyright a {
  margin: 0;
  font-weight: 400;
  text-decoration: none;
  color: var(--color-text-secondary);
}

.hs-item-has-children__sub-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: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 1.5rem;
}
.hs-item-has-children__sub-toggle > * {
  pointer-events: none;
}
.hs-item-has-children__sub-toggle .language-icon {
  margin-right: 0.5rem;
}
.hs-item-has-children__sub-toggle .toggle-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.hs-item-has-children__sub-toggle > .toggle-arrow-sub {
  display: none;
}

.main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu li {
  margin: 0;
}
.main-menu li::before {
  display: none;
}
.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu ul li {
  margin: 0;
}
.main-menu ul li::before {
  display: none;
}
.main-menu .hs-menu-item {
  margin-top: 0;
}
.main-menu a {
  display: inline-block;
}
.main-menu a,
.main-menu .hs-item-has-children__sub-toggle {
  position: relative;
  vertical-align: top;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.main-menu a:hover,
.main-menu .hs-item-has-children__sub-toggle:hover {
  transition: none;
}
.main-menu a:focus,
.main-menu .hs-item-has-children__sub-toggle:focus {
  outline: 0;
}
.main-menu a:focus-visible,
.main-menu .hs-item-has-children__sub-toggle:focus-visible {
  outline-offset: 0;
  outline: 0.25em solid var(--color-btn-focus-outline);
}
.main-menu a[hidden] {
  display: none;
}
.main-menu .sub-menu {
  flex: 0 0 100%;
  order: 3;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  background-color: var(--color-surface-primary);
}
.main-menu .sub-menu.is-opened {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.main-menu .hs-item-has-children__sub-sub-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);
  position: absolute;
}
.main-menu .hs-item-has-children__sub-sub-toggle svg {
  pointer-events: none;
}
.main-menu .hs-item-has-children__sub-sub-toggle .toggle-arrow {
  display: none;
}
.main-menu .hs-item-has-children__sub-sub-toggle:focus {
  outline: none;
}
.main-menu .menu-link__desc {
  font-weight: 400;
  margin-top: 0;
}
.main-menu .hs-menu-children-wrapper .hs-menu-item.no-sub-menu svg {
  opacity: 0;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.main-menu .hs-menu-children-wrapper .hs-menu-item.no-sub-menu:hover svg {
  opacity: 1;
}
@media (min-width: 74.501rem) {
  .main-menu {
    width: 100%;
    display: flex;
    gap: var(--space-m);
  }
  .main-menu .hs-item-has-children {
    position: relative;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .sub-menu {
    left: -999em;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1.has-sub-sub-menu {
    position: relative;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1.has-sub-sub-menu > .sub-menu.is-opened {
    left: calc(-14.75rem - 100%);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1:hover, .main-menu .hs-menu-item.hs-menu-depth-1:focus, .main-menu .hs-menu-item.hs-menu-depth-1:has(.hs-item-has-children__sub-toggle[aria-expanded=true]) {
    background-color: transparent;
    border-radius: 0.5rem;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle,
  .main-menu .hs-menu-item.hs-menu-depth-1 > a {
    padding: 0.5rem 0;
    white-space: nowrap;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle:hover, .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle:focus-visible,
  .main-menu .hs-menu-item.hs-menu-depth-1 > a:hover,
  .main-menu .hs-menu-item.hs-menu-depth-1 > a:focus-visible {
    background: linear-gradient(to bottom, transparent calc(100% - 0.25rem), var(--color-surface-brand-primary) calc(100% - 0.25rem));
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle svg {
    margin-left: var(--space-3xs);
    transform: rotate(90deg);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle[aria-expanded=true] svg {
    transform: rotate(270deg);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .main-menu__wrapper {
    max-width: unset;
    width: auto;
    position: absolute;
    z-index: 10;
    top: calc(100% + 1.25rem);
    left: -6rem;
    min-width: 18rem;
    transform: translateY(0.75rem);
    white-space: nowrap;
    width: auto;
    box-shadow: 0 10px 10px -5px rgba(31, 41, 55, 0.04), 0 20px 25px -5px rgba(31, 41, 55, 0.1);
    border-radius: var(--radius-minimal);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .main-menu__wrapper .hs-menu-children-wrapper {
    display: grid;
    grid-template-columns: auto auto;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .main-menu__wrapper .hs-menu-item.hs-menu-item--mobile {
    display: none;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 {
    display: flex;
    justify-content: space-between;
    border-radius: 0.5rem;
    grid-column: 1/2;
    margin-left: var(--space-s);
    margin-right: var(--space-s);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:first-of-type {
    margin-top: var(--space-s);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:not(:has(+ .hs-menu-depth-2)) {
    margin-bottom: var(--space-s) !important;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:hover, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:focus-within, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:has(.hs-item-has-children__sub-sub-toggle[aria-expanded=true]) {
    background-color: var(--color-surface-brand-secondary);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:hover .hs-item-has-children__sub-sub-toggle, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:focus-within .hs-item-has-children__sub-sub-toggle, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2:has(.hs-item-has-children__sub-sub-toggle[aria-expanded=true]) .hs-item-has-children__sub-sub-toggle {
    opacity: 1;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 .hs-item-has-children__sub-sub-toggle:focus {
    opacity: 1;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 > .sub-menu {
    display: none;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 .hs-menu-children-wrapper {
    padding-left: 1rem;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 > a.menu-link {
    padding: var(--space-s);
    min-width: 18.5rem;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 .hs-item-has-children__sub-sub-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:hover, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:focus {
    background: transparent;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:hover a,
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:hover a p, .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:focus a,
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3:focus a p {
    background: transparent;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3 a:hover,
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-depth-3 a:focus {
    background: transparent;
    color: var(--color-text-brand);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus {
    background-color: var(--color-surface-brand-secondary);
    grid-column: 2/3;
    grid-row-end: 999;
    grid-row-start: 1;
    margin-top: 0;
    position: relative;
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: visibility 0s linear, opacity 0.3s ease-out;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus.has-open-nav {
    opacity: 1;
    padding: var(--space-m);
    visibility: visible;
    width: 100%;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus.has-open-nav .sub-menu {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .sub-menu {
    display: flex;
    gap: var(--space-s);
    background-color: transparent;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .hs-menu-item a {
    padding: 0.75rem;
    min-width: 14rem;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column + .menu-column {
    position: relative;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column + .menu-column:after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--space-s) / 2 * -1);
    height: 100%;
    width: 0.0625rem;
    background-color: var(--color-border-primary);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column__heading {
    font-size: var(--text-400);
    line-height: var(--line-height-body);
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text-brand);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column__heading + * {
    margin-top: var(--space-xs);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus .menu-column ul .menu-link {
    padding: 0;
  }
  .main-menu .sub-menu {
    position: relative;
  }
  .main-menu .sub-menu .hs-menu-item.hs-menu-item-previous, .main-menu .sub-menu .hs-menu-item.hs-menu-item-parent {
    display: none;
  }
}
@media (max-width: 85rem) {
  .main-menu {
    gap: var(--space-s);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 {
    margin-left: var(--space-xs);
    margin-right: var(--space-3xs);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1.has-sub-sub-menu > .sub-menu.is-opened {
    left: calc(-10rem - 100%);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .sub-sub-menus.has-open-nav {
    padding: var(--space-s);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 .hs-menu-item.hs-menu-depth-2 > a.menu-link {
    padding-left: var(--space-xs);
  }
}
@media (max-width: 74.5rem) {
  .main-menu {
    margin-top: var(--space-s) !important;
  }
  .main-menu .hs-item-has-children {
    position: static;
  }
  .main-menu a svg,
  .main-menu .hs-item-has-children__sub-toggle svg,
  .main-menu .hs-item-has-children__sub-sub-toggle svg {
    margin-left: var(--space-s);
    transform: rotate(90deg);
  }
  .main-menu a[aria-expanded=true] svg,
  .main-menu .hs-item-has-children__sub-toggle[aria-expanded=true] svg,
  .main-menu .hs-item-has-children__sub-sub-toggle[aria-expanded=true] svg {
    transform: rotate(270deg);
  }
  .main-menu a:hover, .main-menu a:focus,
  .main-menu .hs-item-has-children__sub-toggle:hover,
  .main-menu .hs-item-has-children__sub-toggle:focus,
  .main-menu .hs-item-has-children__sub-sub-toggle:hover,
  .main-menu .hs-item-has-children__sub-sub-toggle:focus {
    background-color: transparent;
  }
  .main-menu .hs-item-has-children__sub-sub-toggle svg {
    margin-top: 1rem;
  }
  .main-menu .menu-link__name {
    font-weight: 700;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 {
    padding: 0;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .sub-menu {
    overflow: visible;
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .sub-menu.is-opened {
    padding-top: var(--space-xs);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1::before {
    content: "";
    background-color: var(--color-border-primary);
    display: block;
    height: 1px;
    position: relative;
    top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1:has(.hs-item-has-children__sub-toggle[aria-expanded=true]) {
    background-color: var(--color-surface-brand-secondary);
    box-shadow: 0 0 0 100vmax var(--color-surface-brand-secondary);
    clip-path: inset(0 -100vmax);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1:has(.hs-item-has-children__sub-toggle[aria-expanded=true]) .sub-menu {
    background-color: var(--color-surface-brand-secondary);
  }
  .main-menu .hs-menu-item.hs-menu-depth-1 > .hs-item-has-children__sub-toggle,
  .main-menu .hs-menu-item.hs-menu-depth-1 > .menu-link {
    padding: var(--space-s) 0;
  }
  .main-menu .hs-menu-item.hs-menu-depth-3.hs-menu-item--mobile::after {
    display: none;
  }
  .main-menu .hs-menu-depth-2 {
    padding: 0;
  }
  .main-menu .hs-menu-depth-2::before {
    content: "";
    background-color: var(--color-border-primary);
    display: block;
    height: 1px;
    position: relative;
    top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .main-menu .hs-menu-depth-2 a {
    width: 100%;
    padding: var(--space-s);
  }
  .main-menu .hs-menu-depth-2 .hs-item-has-children__sub-toggle {
    position: absolute;
    right: 0;
    top: 1rem;
  }
  .main-menu .hs-menu-depth-2 .hs-item-has-children__sub-sub-toggle {
    height: 3rem;
    right: 0;
    text-align: end;
    width: 3rem;
  }
  .main-menu .hs-menu-depth-2 .sub-menu {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.2s ease;
  }
  .main-menu .hs-menu-depth-2 .sub-menu.is-opened {
    visibility: visible;
    opacity: 1;
    z-index: auto;
  }
  .main-menu .hs-menu-depth-2 .sub-menu .hs-menu-item--mobile {
    display: none;
  }
  .main-menu .hs-menu-depth-3 .menu-column__heading {
    font-size: var(--text-600);
    line-height: 1.4;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text-brand);
    padding: var(--space-xs);
  }
  .main-menu .hs-menu-depth-3 a {
    width: 100%;
    padding: var(--space-xs) var(--space-m);
  }
  .main-menu .hs-item-has-children__sub-toggle {
    margin-left: auto;
    padding: var(--space-s) 0;
  }
  .main-menu .site-header__primary-nav .hs-menu-depth-1.hs-item-has-children > a,
  .main-menu .site-header__primary-nav .hs-menu-depth-1.hs-item-has-children > .hs-item-has-children__sub-toggle {
    width: 100%;
  }
  .main-menu .site-header__primary-nav .hs-menu-depth-1 .hs-menu-children-wrapper {
    margin-top: 0.75rem;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: unset !important;
  }
  .main-menu .sub-menu__toggle-previous {
    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);
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
  }
  .main-menu .sub-menu__toggle-previous .toggle-arrow {
    display: none;
  }
  .main-menu .sub-menu__toggle-previous .toggle-arrow-sub {
    margin-right: 0.5rem;
    transform: rotate(180deg);
  }
  .main-menu .hs-menu-item-parent {
    padding: 1rem 0 0.5rem;
  }
  .main-menu .language-menu .hs-menu-children-wrapper {
    position: absolute;
    bottom: calc(100% + 1rem);
    left: 0;
    transform: translateY(0.75rem);
  }
  .main-menu .language-menu .hs-menu-children-wrapper.is-opened {
    transform: translateY(0);
  }
}

a.language-select {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  align-items: center;
  display: flex;
  gap: var(--space-3xs);
}
a.language-select:hover, a.language-select:focus {
  color: var(--color-text-brand);
  cursor: pointer;
}
@media (max-width: 85rem) {
  a.language-select {
    gap: var(--space-5xs);
  }
}
@media (max-width: 74.5rem) {
  a.language-select {
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    justify-content: flex-start;
    margin-bottom: var(--space-m);
    margin-top: var(--space-m);
    padding: var(--space-s);
  }
}

.hs-menu-item.hs-menu-depth-1 a,
.hs-menu-item.hs-menu-depth-1 button {
  font-size: var(--text-nav);
  line-height: var(--line-height-heading);
  font-weight: 500;
}

.site-hero {
  background: var(--color-surface-secondary, #F5F5F5);
  padding-top: var(--space-default);
  padding-bottom: var(--space-xl);
}
@media (max-width: 48rem) {
  .site-hero {
    padding-top: calc(var(--space-default) + var(--space-l));
  }
}
.site-hero__content {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
}
.site-hero__content-wrapper {
  max-width: 72.6875rem;
  width: 100%;
}
.site-hero__content-text {
  display: block;
  margin-top: var(--space-s);
  max-width: 49.875rem;
  width: 100%;
}
.site-hero__content h1 {
  font-size: var(--heading-500);
  line-height: var(--line-height-heading);
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--color-text-brand, #971717);
}
.site-hero__content #hs_cos_wrapper_hero_content,
.site-hero__content #hs_cos_wrapper_hero_ctas {
  display: flex;
  flex-flow: wrap;
  gap: var(--space-3xs);
}
.site-hero__content #hs_cos_wrapper_hero_ctas {
  margin-top: var(--space-s);
}
.site-hero__content p:empty {
  display: none;
}
.site-hero__content * + .hs-web-interactive-inline {
  margin-top: 0;
}
.site-hero__content .hs-web-interactive-inline {
  display: inline-flex;
}
.site-hero__title *:not(h1) {
  max-width: 49.875rem;
  width: 100%;
}
.site-hero__title + * {
  margin-top: var(--space-s);
}
.site-hero__breadcrumb + * {
  display: block;
  margin-top: var(--space-s);
}
.site-hero__metas {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5xs);
  margin-top: var(--space-s);
}
.site-hero__metas * {
  margin: 0;
}
.site-hero__metas-author {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 700;
  color: #808080;
}
.site-hero__metas-tags {
  display: contents;
}
.site-hero__metas-tags a {
  border-radius: 0.25rem;
  border: 1px solid var(--color-border-primary, #666);
  padding: var(--space-4xs) var(--space-3xs);
  text-decoration: none;
}
.site-hero__metas-date {
  color: #808080;
}
.site-hero__cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xs);
  margin-top: var(--space-s);
}
.site-hero__image {
  margin: var(--space-xl) auto 0;
}
.site-hero__image img {
  aspect-ratio: 2.5/1;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.site-hero--blog .site-hero__content-wrapper {
  max-width: 54.5625rem;
}
.site-hero--blog h1 + * {
  display: block;
  margin-top: var(--space-s);
}
.site-hero--case {
  padding-bottom: var(--space-4xs);
}
.site-hero--case .site-hero__content-wrapper > * + * {
  margin-top: var(--space-s);
}
.site-hero--case .site-hero__categories {
  display: flex;
  gap: var(--space-4xs);
  flex-wrap: wrap;
}
.site-hero--case .site-hero__category {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary);
  padding: var(--space-5xs) var(--space-3xs);
  border: 1px solid var(--color-border-primary);
  border-radius: var(--radius-minimal);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.site-hero--case .site-hero__image {
  margin: var(--space-xl) 0 0 0;
}
.site-hero--case .site-hero__image img {
  width: 100%;
  aspect-ratio: 115.25/52.625;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-image);
}
.site-hero--archive .site-hero__title + * {
  margin-top: var(--space-s);
}
.site-hero--archive .site-hero__content-text {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary, #666);
}

.site-hero--person .site-hero__content {
  align-items: center;
  display: flex;
  gap: var(--space-xl);
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .site-hero--person .site-hero__content {
    flex-direction: column;
  }
}
.site-hero--person .site-hero__content h1 {
  margin-top: var(--space-s);
}
.site-hero--person .site-hero__content-wrapper {
  max-width: 54.5625rem;
}
.site-hero--person__categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xs);
}
.site-hero--person__categories .tag {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  border-color: var(--color-border-primary, #666);
  color: var(--color-border-primary, #666);
  display: inline-flex;
}
.site-hero--person__person {
  display: flex;
  gap: var(--space-6xs);
  margin-top: var(--space-s);
}
@media (max-width: 48rem) {
  .site-hero--person__person {
    flex-direction: column;
  }
}
.site-hero--person__person-name {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 600;
}
.site-hero--person__person-position {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  margin: 0;
}
.site-hero--person__information {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-s);
}
.site-hero--person__information-item {
  align-items: center;
  display: flex;
  gap: var(--space-5xs);
  margin: 0;
}
.site-hero--person__information-item,
.site-hero--person__information-item a {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary, #666);
  text-decoration: none;
}
.site-hero--person__information-item a:hover,
.site-hero--person__information-item a:focus {
  color: var(--color-text-brand);
}
.site-hero--person__image {
  margin: 0;
  width: 100%;
}
.site-hero--person__image img {
  aspect-ratio: 38/40.5;
  border-radius: 1rem;
  max-width: 38rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  width: 100%;
}

.site-hero--frontpage {
  padding-top: 0;
  padding-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 99.9%, 0% 99.9%);
  background: linear-gradient(180deg, rgb(0, 0, 0) 75%, rgb(255, 255, 255) 100%);
  color: var(--color-white);
}
.site-hero--frontpage .site-hero__content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100vh;
  width: 100vw;
  padding-top: var(--space-default);
  padding-bottom: var(--space-default);
}
.site-hero--frontpage .site-hero__content-wrapper {
  position: relative;
  z-index: 100;
  text-align: center;
}
@media (max-width: 48rem) {
  .site-hero--frontpage .site-hero__content-wrapper {
    padding-left: var(--side-padding);
    padding-right: var(--side-padding);
  }
}
.site-hero--frontpage .site-hero__content h1 {
  font-size: var(--heading-600);
  line-height: 1;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--color-white);
}
.site-hero--frontpage .site-hero__content-text {
  max-width: unset;
  justify-content: center;
}
.site-hero--frontpage .site-hero__video-wrapper {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  will-change: opacity;
}
.site-hero--frontpage .site-hero__video--layer {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 9.5%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.site-hero--frontpage .site-hero__video,
.site-hero--frontpage .site-hero__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-hero--frontpage .animated-heading {
  background-color: transparent;
  padding-top: var(--space-xl);
}
.site-hero--frontpage .animated-heading * {
  color: var(--color-white);
}
.site-hero--frontpage .big-media {
  background: transparent;
  padding-top: 0;
}
.site-hero--frontpage .big-media video {
  aspect-ratio: unset;
}

.posts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xs);
}
@media (min-width: 48.001rem) {
  .posts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 65.001rem) {
  .posts-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.posts-list--no-images .post-item__image {
  display: none;
}

.post-item {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  background: var(--color-surface-secondary, #F5F5F5);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-xs);
  position: relative;
}
.post-item__no-images, .post-item--no-images .post-item {
  gap: var(--space-2xs);
  padding: var(--space-s);
}
.post-item > * {
  margin: 0;
}
.post-item h3 {
  font-size: var(--heading-200);
  line-height: 1.4;
  font-family: var(--font-family);
  font-weight: 600;
  margin: 0;
}
.post-item h3 a {
  text-decoration: none;
}
.post-item__image {
  margin: 0;
}
.post-item__image img {
  aspect-ratio: 0.872549;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
  width: 100%;
}
.post-item__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5xs);
  margin-top: auto;
}
.post-item__meta-author {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 700;
  color: #808080;
}
.post-item__meta-date {
  color: #808080;
}
.has-light_grey-background .post-item--person {
  background: var(--color-surface-primary, #FFF);
}
.post-item--person .post-item__title {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary, #666);
  margin-top: var(--space-5xs);
}
.post-item--person .post-item__info {
  margin-top: var(--space-xs);
}
.post-item--person .post-item__info,
.post-item--person .post-item__info a {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary, #666);
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.post-item--person .post-item__info--quote {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-primary, #000);
  font-style: italic;
}
.post-item--person a:hover, .post-item--person a:focus {
  color: var(--color-text-brand);
}
.post-item--case .post-item__meta {
  font-size: var(--text-300);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text-secondary, #666);
  margin-top: var(--space-5xs);
}
.post-item#empty-base-item {
  display: none;
}

.related-blog-posts__top h2 {
  font-size: var(--heading-400);
  line-height: var(--line-height-heading);
  font-family: var(--font-family);
  font-weight: 600;
}
.related-blog-posts__top + * {
  margin-top: var(--space-l);
}

.social-share {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-share li {
  margin: 0;
}
.social-share li::before {
  display: none;
}
.social-share {
  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);
  font-weight: 600;
}
.social-share a {
  color: var(--color-brand-salmon-500);
}
.social-share a:hover, .social-share a:focus {
  text-decoration: none;
}

.hs-breadcrumb-menu-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.hs-breadcrumb-menu-wrapper {
  align-items: center;
  display: flex;
  gap: var(--space-4xs);
}

.hs-breadcrumb-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-breadcrumb-menu li {
  margin: 0;
}
.hs-breadcrumb-menu li::before {
  display: none;
}
.hs-breadcrumb-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5xs);
}
.hs-breadcrumb-menu::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iNiIgY3k9IjYuNSIgcj0iNiIgZmlsbD0iI0FBMUMxQSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
}
.hs-breadcrumb-menu-item {
  color: var(--color-text-secondary, #666);
  font-size: 0.875rem;
  line-height: 1;
  padding: 0;
}
.hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider:before {
  content: "/";
  color: var(--color-text-secondary, #666);
  margin-left: var(--space-5xs);
  padding: 0;
}
.hs-breadcrumb-menu-item a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
}
.hs-breadcrumb-menu-item a:hover, .hs-breadcrumb-menu-item a:focus {
  color: var(--color-text-primary, #000);
  text-decoration: underline;
}
.hs-breadcrumb-menu-item.last-crumb {
  color: var(--color-text-primary, #000);
  font-weight: 600;
}

.cta__wrapper {
  font-size: var(--text-400);
  line-height: var(--line-height-body);
  font-family: var(--font-family);
  font-weight: 400;
  background: var(--color-text-brand, #971717);
  border-radius: 2rem;
  color: var(--color-text-invert-secondary, #F5F5F5);
  padding: var(--space-2xl) var(--space-l-4xl);
  text-align: center;
}
.cta__ctas {
  display: flex;
  gap: var(--space-3xs);
  justify-content: center;
  margin-top: var(--space-l);
}

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

/*--------------------------------------------------------------
# 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-texts {
  color: var(--color-text-invert-secondary, #F5F5F5);
}

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

.has-light_grey-background {
  background-color: var(--color-surface-secondary, #F5F5F5);
}

.has-red-background {
  background-color: var(--color-brand-salmon-500, #AA1C1A);
  color: var(--color-text-invert-secondary, #F5F5F5);
}

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