/* Theme base styles */

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

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

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

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

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}
:root {
  /* COLORS */
  --black: #000;
  --white: #FFF;
  --theme-primary: #961734;
  --theme-primary-variant: #BD2439;
  --theme-secondary: #C3D4EA;
  --theme-secondary-variant: #E1E9F5;
  --theme-tertiary: #5F82AA;
  --theme-dark: #2B2A32;
  --text-color-dark: var(--theme-dark);
  --text-color-light: var(--white);
  --background-color-dark: var(--theme-dark);
  --background-color-light: var(--white);
  --accent-light-blue-70: #D5E1F0;
  --accent-light-blue-60: #DBE5F2;
  --accent-light-blue-40: #E7EEF7;
  --accent-light-blue-30: #EDF2F9;
  --accent-light-blue-20: #F3F6FB;
  --accent-light-blue-10: #F9FBFD;
  --accent-grey1-100: #7B8CA3;
  --accent-grey1-80: #98A6B8;
  --accent-grey1-60: #B7C0CD;
  --accent-grey1-40: #CFD5DE;
  --accent-grey1-20: #E7EAEE;
  --accent-grey1-10: #F3F5F7;
  --alert-error: #E04A2A;
  --alert-error-bg: #FCEDEA;
  --alert-error-border: #F5C5BB;
  --alert-success: #33A953;
  --alert-success-bg: #EBF7EE;
  --alert-success-border: #BEE5C8;
  --alert-notification: #016EE6;
  --alert-notification-bg: #E5EFFA;
  --alert-notification-border: #ABCDF1;
  /* SPACING - 8-point-grid-system */
  --spacing-00: 0;
  --spacing-01: 1px;
  --spacing-02: 2px;
  --spacing-03: 4px;
  --spacing-04: 8px;
  --spacing-05: 16px;
  --spacing-06: 24px;
  --spacing-07: 32px;
  --spacing-08: 40px;
  --spacing-09: 48px;
  --spacing-10: 56px;
  --spacing-11: 64px;
  --spacing-12: 72px;
  --spacing-13: 80px;
  --spacing-14: 88px;
  --spacing-15: 96px;
  --spacing-16: 104px;
  --spacing-17: 112px;
  --spacing-18: 120px;
  --spacing-19: 160px;
  /* GUTTER / COLUMN-GAP */
  --gutter-xs: var(--spacing-06);
  --gutter-s: var(--spacing-06);
  --gutter-m: var(--spacing-07);
  --gutter-l: var(--spacing-09);
  /* DIMENSIONS */
  --fullwidth: 100%;
  --max-content-width: calc(var(--breakpoint-xl) - (var(--spacing-06) * 2));
  --body-min-height: 100.0196%;
  /* BREAKPOINTS */
  --breakpoint-xs: 360px;
  --breakpoint-s: 480px;
  --breakpoint-m: 786px;
  --breakpoint-l: 1024px;
  --breakpoint-xl: 1280px;
  /* TYPOGRAPHY */
  --base-font-size: 16px;
  /*--base-font-size: 2vmin;*/
  --base-line-height: 1.5;
  --small-line-height: 1.25;
  --narrow-line-height: 1.15;
  --plain-line-height: 1;
  --base-font-family: "PT Sans", sans-serif;
  --heading-font-family: "PT Sans", sans-serif;
  --max-text-length: calc((76 * var(--base-font-size)) / 2);

  /* MARGINS */
  --margin-zero-auto: var(--spacing-00) auto;
  /* SCROLLBAR */
  --scrollbar-width: var(--spacing-03);
  --scrollbar-track-bg: transparent;
  --scrollbar-thumb-bg: var(--accent-grey1-40);
  --scrollbar-thumb-hover-bg: var(--accent-grey1-60);
}

@media (min-width: 768px) {
  :root {
    --base-font-size: 18px;
  }
}

/* Layout */


@font-face {
  font-family: "PT Sans";
  src: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/fonts/PTSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/fonts/PTSans-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/fonts/PTSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  line-height: var(--plain-line-height);
}

h1, .h1 {
  margin: 0 0 2rem;
  font-size: 
  3.0rem;
}

@media (min-width: 768px) {
  h1, .h1 {
    line-height: var(--narrow-line-height);
    font-size: 
  3.5rem;
  }
}

@media (min-width: 1024px) {
  h1, .h1 {
    line-height: var(--plain-line-height);
    font-size: 
  4.5rem;
  }
}

h2, .h2 {
  margin: 0 0 1.5rem;
  font-size: 
  2.0rem;
}

[class*="rich_text"] p + h2,
[class*="rich_text"] a + h2 {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  h2, .h2 {
    font-size: 
  3.0rem;
    max-width: var(--max-text-length);
  }
  [data-hs-cos-type="header"] > h2 {
    max-width: unset;
  }
}

@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 
  3.5rem;
  }
}

h3, .h3 {
  line-height: var(--narrow-line-height);
  margin: 0 0 1rem;
  font-size: 
  1.5rem;
}

[class*="rich_text"] p + h3,
[class*="rich_text"] a + h3,
[class*="rich_text"] p + h4,
[class*="rich_text"] a + h4,
[class*="rich_text"] p + h5,
[class*="rich_text"] a + h5,
[class*="rich_text"] p + h6,
[class*="rich_text"] a + h6 {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 
  1.75rem;
    max-width: var(--max-text-length);
  }
}

h4, .h4 {
  line-height: var(--narrow-line-height);
  margin: 0 0 1rem;
  font-size: 
  1.125rem;
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 
  1.25rem;
    max-width: var(--max-text-length);
  }
}

@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 
  1.5rem;
  }
}

h5, .h5, h6, .h6 {
  line-height: var(--narrow-line-height);
  margin: 0 0 1rem;
  font-size: 
  1.0rem;
}

@media (min-width: 768px) {
  h5, .h5, h6, .h6 {
    font-size: 
  1.125rem;
    max-width: var(--max-text-length);
  }
}

@media (min-width: 1024px) {
  h5, .h5, h6, .h6 {
    font-size: 
  1.25rem;
  }
}

p,
[class*="rich_text"] p,
.text--normal {
  margin: 0 0 0.5rem;
  max-width: var(--max-text-length);
}

b, strong, .text--bold {
  font-weight: 700;
}

.text--large {
  font-size: calc(var(--base-font-size) * 1.125);
}

.text--small {
  font-size: calc(var(--base-font-size) * 0.875);
}

.text--white {
  color: var(--text-color-light)!important;
}

.text--black {
  color: var(--text-color-dark)!important;
}

.text--featured {
  color: var(--theme-secondary);
}

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

.text--right {
  text-align: right;
}

.cta__headline {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  line-height: var(--plain-line-height);
  margin: unset;
  font-size: 
  2.5rem;
}

@media (min-width: 768px) {
  .cta__headline {
    font-size: 
  3.0rem;
  }
}

@media (min-width: 1024px) {
  .cta__headline {
    font-size: 
  3.5rem;
  }
}

/* Anchors */
a {
  cursor: pointer;
}

[class*="rich_text"] a,
.default-link {
  color: var(--text-color-dark);
  text-underline-offset: 2px;
}

[class*="rich_text"] a:hover,
[class*="rich_text"] a:focus,
[class*="rich_text"] a:visited,
[class*="rich_text"] a:active,
.default-link:hover,
.default-link:focus,
.default-link:active {
  color: var(--theme-primary);
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquote */
blockquote {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  font-size: 
  1.125rem;
  
  
  

  
    -webkit-hyphens: auto;
  
    -moz-hyphens: auto;
  
    -ms-hyphens: auto;
  

  hyphens: auto;

;
  line-height: var(--base-line-height);
  margin: 2.5rem 0;
  max-width: var(--max-text-length);
  padding: 2.5rem 0 0;
  position: relative;
}

blockquote::before {
  position: absolute;
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-quote_secondary_40x40.svg");
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 
  2.5rem;
  left: 0;
  top: 0;
  width: 
  2.5rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid var(--accent-grey1-100);
}

/* Image alt text */
img {
  word-break: normal;
  font-size: 
  0.5625rem;
}

[class*="rich_text"] img {
  display: block;
  max-width: var(--max-text-length);
  margin-right: auto;
}
html, body {
  min-height: var(--body-min-height);
  scroll-behavior: smooth;
  width: 100vW;
}

body {
  background-color: var(--accent-light-blue-10);
  color: var(--text-color-dark);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: var(--base-line-height);
  margin: var(--margin-zero-auto);
  position: relative;
  /* for Firefox */
  scrollbar-width: var(--scrollbar-width);
  scrollbar-color: var(--scrollbar-thumb-bg) var(--scrollbar-track-bg);
}

body.panel-open {
  overflow: hidden;
  position: static;
}

.body-wrapper {
  width: 100vw;
}

.body-container-wrapper {
  padding-top: var(--spacing-16);
  width: var(--fullwidth);
}

.body-container-wrapper.blog-post {
  padding-top: var(--spacing-18);
}

.hs-tools-menu.hs-collapsed {
  right: -50px !important;
}

.container-fluid {
  width: var(--fullwidth);
}

.container {
  margin-left: var(--spacing-06);
  margin-right: var(--spacing-06);
}

@media (min-width: 1280px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--max-content-width);
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-0.5 * var(--spacing-06));
  margin-right: calc(-0.5 * var(--spacing-06));
}

@media (min-width: 768px) {
  .row {
    margin-left: calc(-0.5 * var(--spacing-07));
    margin-right: calc(-0.5 * var(--spacing-07));
  }
}

@media (min-width: 1024px) {
  .row {
    margin-left: calc(-0.5 * var(--spacing-09));
    margin-right: calc(-0.5 * var(--spacing-09));
  }
}

@media (min-width: 1280px) {
  .row {
    margin-left: calc(-1 * var(--spacing-06));
    margin-right: calc(-1 * var(--spacing-06));
  }
}

[class*="col-"] {
  flex: 0 0 auto;
  padding: calc(var(--gutter-xs) / 2);
  width: var(--fullwidth);
}

.col-xs-1 { width: 25%; }
.col-xs-2 { width: 50%; }
.col-xs-3 { width: 75%; }
.col-xs-4 {  width: var(--fullwidth); }

@media (min-width: 768px) {
  [class*="col-"] { padding: calc(var(--gutter-m) / 2); }
  .col-s-1 { width: 12.5% }
  .col-s-2 { width: 25% }
  .col-s-3 { width: 37.5% }
  .col-s-4 { width: 50% }
  .col-s-5 { width: 62.5% }
  .col-s-6 { width: 75% }
  .col-s-7 { width: 87.5% }
  .col-s-8 { width: var(--fullwidth); }
}

@media (min-width: 1024px) {
  [class*="col-"] { padding: calc(var(--gutter-l) / 2); }
  .col-m-1, .col-l-1, .col-1 { width: 8.33%; }
  .col-m-2, .col-l-2, .col-2 { width: 16.66%; }
  .col-m-3, .col-l-3, .col-3 { width: 25%; }
  .col-m-4, .col-l-4, .col-4 { width: 33.33%; }
  .col-m-5, .col-l-5, .col-5 { width: 41.66%; }
  .col-m-6, .col-l-6, .col-6 { width: 50%; }
  .col-m-7, .col-l-7, .col-7 { width: 58.33%; }
  .col-m-8, .col-l-8, .col-8 { width: 66.66%; }
  .col-m-9, .col-l-9, .col-9 { width: 75%; }
  .col-m-10, .col-l-10, .col-10 { width: 83.33%; }
  .col-m-11, .col-l-11, .col-11 { width: 91.66%; }
  .col-m-12, .col-l-12, .col-12 { width: var(--fullwidth); }
}

@media (min-width: 1280px) {
  [class*="col-"] { padding: calc(var(--gutter-l) / 2); }
}

/*************************************************/
/*   Responsive grid for HS standard sections   */
/************************************************/
.dnd-section {
  padding: var(--spacing-11) 0 !important;
}

@media (min-width: 768px) {
  .dnd-section {
    padding: var(--spacing-13) 0 !important;
  }
}

@media (min-width: 1024px) {
  .dnd-section {
    padding: var(--spacing-15) 0 !important;
  }
}

.dnd-section > .row-fluid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-06);
  margin: var(--margin-zero-auto);
  max-width: var(--max-content-width);
}

@media (min-width: 1024px) {
  .dnd-section > .row-fluid {
    column-gap: 0;
    row-gap: var(--spacing-07);
  }
}

.dnd-section > .row-fluid > .dnd-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-06);
}

[class*='span'] > .dnd-row > .row-fluid > .dnd-module {
  padding: 0 var(--spacing-06);
}

@media (min-width: 1280px) {
  [class*='span'] > .dnd-row > .row-fluid > .dnd-module {
    padding: unset;
  }
}

@media (min-width: 1024px) {
  .span3.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span6:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span8.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module {
    padding-right: calc(var(--spacing-07) / 2);
  }
  .span3.dnd-column:nth-child(2) > .dnd-row > .row-fluid > .dnd-module,
  .span3.dnd-column:nth-child(3) > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:nth-child(2) > .dnd-row > .row-fluid > .dnd-module:not(.span4.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module) {
    padding-right: calc(var(--spacing-07) / 2);
    padding-left: calc(var(--spacing-07) / 2);
  }
  .span3.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span6:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span8.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module {
    padding-left: calc(var(--spacing-07) / 2);
  }
}

@media (min-width: 1280px) {
  .span3.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span6:first-child > .dnd-row > .row-fluid > .dnd-module,
  .span8.dnd-column:first-child > .dnd-row > .row-fluid > .dnd-module {
    padding-right: calc(var(--spacing-09) / 2);
  }
  .span3.dnd-column:nth-child(2) > .dnd-row > .row-fluid > .dnd-module,
  .span3.dnd-column:nth-child(3) > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:nth-child(2) > .dnd-row > .row-fluid > .dnd-module:not(.span4.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module) {
    padding-right: calc(var(--spacing-09) / 2);
    padding-left: calc(var(--spacing-09) / 2);
  }
  .span3.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span4.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span6:last-child > .dnd-row > .row-fluid > .dnd-module,
  .span8.dnd-column:last-child > .dnd-row > .row-fluid > .dnd-module {
    padding-left: calc(var(--spacing-09) / 2);
  }
}

.row-fluid > .span12,
.row-fluid > .span11,
.row-fluid > .span10,
.row-fluid > .span9,
.row-fluid > .span8,
.row-fluid > .span7,
.row-fluid > .span6,
.row-fluid > .span5,
.row-fluid > .span4,
.row-fluid > .span3,
.row-fluid > .span2,
.row-fluid > .span1 {
  width: var(--fullwidth);
}

@media (min-width: 1024px) {
  .row-fluid > .span3 {
    width: calc(var(--fullwidth) / 4);
  }
  .row-fluid > .span4 {
    width: calc(var(--fullwidth) / 3);
  }
  .row-fluid > .span6 {
    width: calc(var(--fullwidth) / 2);
  }
  .row-fluid > .span8 {
    width: calc((var(--fullwidth) / 3) * 2);
  }
}

/*************************/
/*   Visibility classes   */
/*************************/
.hidden { display: none !important; }

.invisible {
  visibility: hidden;
  height: 0;
  width: 0;
}

.translucent {
  opacity: 0;
}

/**************************************/
/*   Responsive visibility classes    */
/**************************************/
.d-block,
.d-xs-block {
  display: block;
}

.d-none,
.d-xs-none {
  display: none;
}

@media (min-width: 480px) {
  .d-s-block { display: block; }
  .d-s-none { display: none; }
}

@media (min-width: 1024px) {
  .d-m-block { display: block; }
  .d-m-none { display: none; }
}

@media (min-width: 1280px) {
  .d-l-block { display: block; }
  .d-l-none { display: none; }
}


*:focus-visible {
  outline: 4px solid black;    /* Äußere schwarze Linie */
  outline-offset: 0px;        /* Weißer Abstand (2px) */
  border: 2px solid white!important;    /* Innere weiße Linie */
}

.btn > a:focus-visible,
.icon-btn > a:focus-visible {
  border-style: solid!important;
  border-radius: 99rem!important;
}

.header__logo-container a:focus-visible {
  display: inline-block;
}

input[type=text].hs-input.lt__input:focus-visible,
input[type=number].hs-input.lt__input:focus-visible,
input[type=email].hs-input.lt__input:focus-visible,
input[type=email].hs-input:focus-visible,
input[type=tel].hs-input.lt__input:focus-visible,
select.hs-input.lt__input:focus-visible,
input[type=submit].hs-button:focus-visible {
  outline: 4px solid black;    /* Äußere schwarze Linie */
  outline-offset: 0px;        /* Weißer Abstand (2px) */
  border: 2px solid white!important;    /* Innere weiße Linie */
}


.header {
  background-color: var(--accent-light-blue-10);
  left: 0;
  padding-bottom: 
  1.25rem;
  padding-top: 
  1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1100;
  
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;

}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
}

@media (min-width: 768px) {}

/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

.header__content {}

.header__content-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.header__logo-container {}

.logo {}

.logo--small {
  height: 
  3.5rem;
  width: 
  3.5rem;
}

@media (min-width: 600px) {
  .logo--small {
    display: none;
  }
}

.logo--large {
  display: none;
}

@media (min-width: 600px) {
  .logo--large {
    display: flex;
    height: 
  3.5rem;
    width: 
  12.5rem;
  }
}

.header__nav-container {
  display: none;
}

@media (min-width: 1180px) {
  .header__nav-container {
    display: block;
  }
}

.header__button-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 
  0.75rem;
  justify-content: flex-end;
}

@media (min-width: 600px) {
  .header__button-container {
    gap: 
  1.25rem;
  }
}

.header__cta-container {}

.header__cta-container .btn--sm {
  font-size: 
  0.75rem;
}

.header__cta-container .btn--sm > a,
.header__cta-container .btn--sm > span {
  line-height: 2.5rem;
  padding: 0 
  0.9375rem;
}

@media (min-width: 480px) {
  .header__cta-container .btn--sm > a,
  .header__cta-container .btn--sm > span {
    padding: 0 
  1.0rem;
  }
}

.header__toggle-container {
  margin-right: -4px;
}

.header__toggle {}

/*.header__toggle > .icon-btn__icon {}*/

.header__toggle.menu {}

@media (min-width: 1180px) {
  .header__toggle.menu {
    display: none;
  }
}

.header__toggle.search {
  display: none;
}

@media (min-width: 1180px) {
  .header__toggle.search {
    display: flex;
  }
}

.header__search-drawer {
  
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;

}

.header__search-drawer.closed {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.header__search-drawer.open {
  opacity: 1;
  overflow: unset;
}

.header__search-drawer > .container > .row > .col-12 {
  padding-bottom: 0.25rem;
  padding-top: 1.25rem;
}

.header__menu-panel {
  background-color: var(--background-color-light);
  height: 100vh;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}

.header__menu-panel.closed {
  opacity: 0;
  right: -200%;
  visibility: hidden;
}

.header__menu-panel.open {
  opacity: 1;
  visibility: visible;
  width: var(--fullwidth);
}

@media (min-width: 600px) {
  .header__menu-panel.open {
    border-radius: 16px 0 0 16px;
    box-shadow: -8px 8px 12px rgba(0, 0, 0, 0.08);
    max-width: 480px;
    width: 480px;
  }
}

.header__menu-panel-container {
  height: 100vh;
  position: relative;
  width: var(--fullwidth);
}

.header__menu-panel-row {
  padding-left: var(--spacing-06);
  padding-right: var(--spacing-06);
}

.header__menu-panel-row--top {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: calc(var(--spacing-10) / 2);
  padding-top: calc(var(--spacing-10) / 2);
}

.header__menu-panel-row--search {
  padding-bottom: var(--spacing-06);
  padding-top: var(--spacing-06);
}

.header__menu-panel-search-container {}

.header__menu-panel-row--nav {
  height: calc(100vh - 120px);
  overflow-x: hidden;
  overflow-y: auto;
}

.reading-progress__wrapper {
  display: none;
  height: 4px;
  position: fixed;
  top: 96px;
  width: var(--fullwidth);
  z-index: 1099;
}

.reading-progress {
  background-color: var(--theme-secondary-variant);
  height: 4px;
  margin: var(--margin-zero-auto);
  max-width: var(--max-content-width);
  overflow: hidden;
  width: var(--fullwidth);
}

.reading-progress-fill {
  background-color: var(--theme-tertiary);
  height: 4px;
  width: 0;
  
  -webkit-transition: width 0.25s ease-in-out;
  -moz-transition: width 0.25s ease-in-out;
  -o-transition: width 0.25s ease-in-out;
  -ms-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;

}


/* close button */

.header__search-drawer-search-wrapper {
  display: flex;
  justify-content: center; /* zentriert den gesamten Inhalt */
  align-items: center;
  gap: 1rem; /* Abstand zwischen Suchfeld und Button */
}

/* Entferne zentrierende Margins vom Suchcontainer */
.header__search-drawer-search-container {
  margin: 0;
  max-width: 600px;
  width: 100%;
}

.search-field__close {
  border: none;
  border-radius: 50%;
  background-color: var(--theme-primary);
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}

.search-field__close:hover {
  background-color: var(--theme-primary-variant);
}

.search-field__close::before,
.search-field__close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--text-color-light);
}

.search-field__close::before {
  transform: rotate(45deg);
}

.search-field__close::after {
  transform: rotate(-45deg);
}
.footer__background {
  background-color: var(--accent-light-blue-10);
}

.footer .col-12 {
  padding-bottom: var(--spacing-06);
  padding-top: var(--spacing-06);
}

.footer__plinth {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-08);
}

@media (min-width: 768px) {
  .footer__plinth {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }
}
.hero-section.dnd-section {
  border-radius: var(--spacing-06);
  margin: var(--margin-zero-auto);
  max-width: calc(var(--fullwidth) - (2 * var(--spacing-06)));
  padding: var(--spacing-05) var(--spacing-05) var(--spacing-05) !important;
}

.hero-section .section-heading--h1 > h1 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-section .subheading--h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-section.dnd-section {
    padding: var(--spacing-08) var(--spacing-08) var(--spacing-08) !important;
  }
  .hero-section .section-heading--h1 > h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .hero-section.dnd-section {
    padding: var(--spacing-09) var(--spacing-09) var(--spacing-09) !important;
  }
}

@media (min-width: 1280px) {
  .hero-section.dnd-section {
    max-width: var(--max-content-width);
  }
}

.hero-section.dnd-section > .row-fluid > .dnd-column {
  gap: var(--spacing-04);
}

@media (min-width: 768px) {
  .hero-section.dnd-section > .row-fluid > .dnd-column {
    gap: var(--spacing-04);
  }
  .hero-section .subheading--h1 {
    font-size: 48px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .hero-section.dnd-section > .row-fluid > .dnd-column {
    gap: var(--spacing-04);
    width: 75%;
  }
  .hero-section .subheading--h1 {
    font-size: 56px;
    margin-bottom: 24px;
  }
}

.hero-section.dnd-section [class*='span'] > .dnd-row > .row-fluid > .dnd-module {
  padding: unset;
}

.hero-section--button > .row-fluid .dnd-column,
.hero-section--form > .row-fluid .dnd-column {
  backdrop-filter: blur(15px);
  background-color: hsla(0, 0%, 100%, .6);
  color: black!important;
  border-radius: 1rem;
  box-shadow: 0 1px 10px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-04);
  padding: var(--spacing-06);
}

@media (min-width: 1024px) {
  .hero-section--button > .row-fluid .dnd-column,
  .hero-section--form > .row-fluid .dnd-column {
    padding: var(--spacing-08);
  }
}


.focus-post__section.dnd-section > .row-fluid > .dnd-column {
  gap: var(--spacing-11);
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column {
    gap: var(--spacing-14);
  }
}

@media (min-width: 1024px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column {
    gap: var(--spacing-16);
  }
}

.focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-07);
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid {
    flex-direction: row;
    flex-wrap: nowrap;
    margin: var(--margin-zero-auto);
    width: calc(var(--fullwidth) - (2 * var(--spacing-06)));
  }
}

@media (min-width: 1024px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid {
    gap: var(--spacing-09);
  }
}

@media (min-width: 1280px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid {
    margin: 0;
    width: var(--fullwidth);
  }
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span8.dnd-column {
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-07) / 3));
  }
}

@media (min-width: 1024px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span8.dnd-column {
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-09) / 3));
  }
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span8.dnd-column .row-fluid > .span12.dnd-module {
    padding: 0;
  }
}

.focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span4.dnd-column {
  align-items: flex-start;
  background-color: var(--background-color-light);
  border: 1px solid var(--accent-light-blue-20);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-08);
  margin: var(--margin-zero-auto);
  padding: 2rem 1.5rem;
  width: calc(var(--fullwidth) - (2 * var(--spacing-06)));
  border-radius: 
  1.5rem;
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span4.dnd-column {
    width: calc((var(--fullwidth) / 3) - ((var(--spacing-07) / 3) * 2));
  }
}

@media (min-width: 1024px) {
  .focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span4.dnd-column {
    padding: 2rem;
    width: calc((var(--fullwidth) / 3) - ((var(--spacing-09) / 3) * 2));
  }
}

.focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span4.dnd-column > .dnd-row {
  width: var(--fullwidth);
}

.focus-post__section.dnd-section > .row-fluid > .dnd-column > .dnd-row:last-of-type > .row-fluid > .span4.dnd-column .row-fluid > .span12.dnd-module {
  padding: 0;
}

/* Elements */


/***********************************/
/*   nav-primary general styles   */
/*********************************/
.nav-primary .default-list.submenu {
  margin: 4px 0 0 0;
}

.nav-primary .submenu > li {
  font-size: 
  1.0rem;
  line-height: var(--plain-line-height);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;

}

.nav-primary .submenu > li > a,
.nav-primary .submenu > li > span {
  display: block;
  white-space: nowrap;
}

.nav-primary .submenu > li > a {
  color: inherit;
  text-decoration: none;
}

.nav-primary > .submenu > li > .submenu > li {
  border-bottom: 1px solid var(--theme-secondary);
  text-transform: initial;
}

/**************************************/
/*   nav-primary--header overrides   */
/************************************/
.nav-primary--header > .submenu {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.nav-primary--header > .submenu > li > a,
.nav-primary--header > .submenu > li > span {
  padding: 1.25rem 0;
}

.nav-primary--header > .submenu > li:hover > a,
.nav-primary--header > .submenu > li:focus > a,
.nav-primary--header > .submenu > li:active > a,
.nav-primary--header > .submenu > li:hover > span,
.nav-primary--header > .submenu > li:focus > span,
.nav-primary--header > .submenu > li:active > span,
.nav-primary--header > .submenu > li > .menu-link.active-item {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--theme-primary);
}

.nav-primary--header > .submenu > .has-submenu {
  position: relative;
}

.nav-primary--header > .submenu > li > .submenu {
  background-color: var(--background-color-light);
  border-radius: 0 8px 8px 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-primary--header > .submenu > .has-submenu > .submenu {
  display: none;
  min-width: calc(var(--spacing-18) * 2);
  position: absolute;
}

.nav-primary--header > .submenu > li > .submenu > li > a,
.nav-primary--header > .submenu > li > .submenu > li > span {
  padding: 1rem;
}

.nav-primary--header > .submenu > li > .submenu > li:hover > a,
.nav-primary--header > .submenu > li > .submenu > li:focus > a,
.nav-primary--header > .submenu > li > .submenu > li:active > a,
.nav-primary--header > .submenu > li > .submenu > li:hover > span,
.nav-primary--header > .submenu > li > .submenu > li:focus > span,
.nav-primary--header > .submenu > li > .submenu > li:active > span {
  color: var(--theme-primary);
}

@media (min-width: 1180px) {
  .nav-primary--header > .submenu > .has-submenu:hover > .submenu,
  .nav-primary--header > .submenu > .has-submenu:focus > .submenu,
  .nav-primary--header > .submenu > .has-submenu:active > .submenu {
    display: block;
  }
}

/*************************************/
/*   nav-primary--panel overrides   */
/***********************************/
.nav-primary--panel > .submenu > .has-submenu > .submenu {
  display: none;
}

.nav-primary--panel > .submenu > .has-submenu:hover > .submenu,
.nav-primary--panel > .submenu > .has-submenu:focus > .submenu,
.nav-primary--panel > .submenu > .has-submenu:active > .submenu {
  display: block;
}

.nav-primary--panel > .submenu > li > a,
.nav-primary--panel > .submenu > li > span {
  border-bottom: 1px solid var(--theme-secondary);
  padding: 1.5rem 2rem 1.5rem 0;
  position: relative;
}

.nav-primary--panel > .submenu > .has-submenu > a::after,
.nav-primary--panel > .submenu > .has-submenu > span::after {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-chevron-down_primary_24x24.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.5rem;
  position: absolute;
  right: 0;
  top:  calc(50% - 0.75rem);
  width: 1.5rem;
}

.nav-primary--panel .submenu > li:hover > a,
.nav-primary--panel .submenu > li:focus > a,
.nav-primary--panel .submenu > li:active > a,
.nav-primary--panel .submenu > li:hover > span,
.nav-primary--panel .submenu > li:focus > span,
.nav-primary--panel .submenu > li:active > span {
  color: var(--theme-primary);
}

.nav-primary--panel > .submenu > .has-submenu:hover > a::after,
.nav-primary--panel > .submenu > .has-submenu:focus > a::after,
.nav-primary--panel > .submenu > .has-submenu:active > a::after,
.nav-primary--panel > .submenu > .has-submenu:hover > span::after,
.nav-primary--panel > .submenu > .has-submenu:focus > span::after,
.nav-primary--panel > .submenu > .has-submenu:active > span::after {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-chevron-up_primary_24x24.svg");
}

.nav-primary--panel > .submenu > .has-submenu > .submenu > li > a,
.nav-primary--panel > .submenu > .has-submenu > .submenu > li > span {
  padding: 1rem 2rem 1rem 1rem;
}


.btn {
  align-items: center;
  border-radius: 99rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-family: var(--base-font-family);
  font-style: normal;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: var(--plain-line-height);
  max-width: fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-size: 
  0.875rem;
}


.btn--primary {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: var(--text-color-light);
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background-color: var(--theme-primary-variant);
  border-color: var(--theme-primary-variant);
}

.btn--secondary {
  background-color: var(--theme-secondary);
  border-color: var(--theme-secondary);
  color: var(--text-color-dark);
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  background-color: var(--theme-secondary-variant);
  border-color: var(--theme-secondary-variant);
}

.btn--alternate-dark {
  background-color: transparent;
  border-color: var(--theme-primary);
  color: var(--text-color-light);
}

.btn--alternate-dark:hover,
.btn--alternate-dark:focus,
.btn--alternate-dark:active {
  background-color: 

  
    
  

  rgba(150, 23, 52,0.16);;
}

.btn--alternate-light {
  background-color: var(--background-color-light);
  border-color: var(--theme-primary);
  color: var(--text-color-dark);
}

.btn--alternate-light:hover,
.btn--alternate-light:focus,
.btn--alternate-light:active {
  background-color: 

  
    
  

  rgba(150, 23, 52,0.08);;
}

.btn--lg {
  height: 
  5.0rem;
}

.btn--md {
  height: 
  3.5rem;
}

.btn--sm {
  font-size: 
  0.75rem;
  height: 
  2.5rem;
}

.btn--fullwidth {
  width: var(--fullwidth);
}

.btn--fit-content {
  width: fit-content;
}

.btn--centered {
  margin: var(--margin-zero-auto);
}

.btn > a,
.btn > span {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  width: var(--fullwidth);
}

.btn > a {
  color: unset !important;
  text-decoration: none !important;
}

.btn--lg > a,
.btn--lg > span {
  height: 
  5.0rem;
}

.btn--md > a,
.btn--md > span {
  height: 
  3.5rem;
}

.btn--sm > a,
.btn--sm > span {
  padding: 0 1rem;
  height: 
  2.5rem;
}

.btn__label {
  line-height: 1.2;
  text-align: center;
}

.btn__icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 2rem;
  width: 2rem;
}

.btn--sm .btn__icon {
  height: 1.5rem;
  width: 1.5rem;
}

.btn > a > .btn__icon,
.btn > span > .btn__icon {
  display: none;
}

.btn.has-icon > a,
.btn.has-icon > span {
  gap: 1rem;
  padding: 0 1rem 0 2rem;
}

.btn--sm.has-icon > a,
.btn--sm.has-icon > span {
  padding: 0 0.5rem 0 1.5rem;
}

.btn.has-icon > a > .btn__icon,
.btn.has-icon > span > .btn__icon {
  display: block;
}

.btn--primary.has-icon > a > .btn__icon,
.btn--primary.has-icon > span > .btn__icon,
.btn--alternate-dark.has-icon > a > .btn__icon,
.btn--alternate-dark.has-icon > span > .btn__icon,
.btn--alternate-dark.has-icon:hover > a > .btn__icon,
.btn--alternate-dark.has-icon:hover > span > .btn__icon,
.btn--alternate-dark.has-icon:focus > a > .btn__icon,
.btn--alternate-dark.has-icon:focus > span > .btn__icon,
.btn--alternate-dark.has-icon:active > a > .btn__icon,
.btn--alternate-dark.has-icon:active > span > .btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-round-white_arrow-forward_primary_32x32.svg");
}

.btn--primary.has-icon:hover > a > .btn__icon,
.btn--primary.has-icon:hover > span > .btn__icon,
.btn--primary.has-icon:focus > a > .btn__icon,
.btn--primary.has-icon:focus > span > .btn__icon,
.btn--primary.has-icon:active > a > .btn__icon,
.btn--primary.has-icon:active > span > .btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-round-white_arrow-forward_primary-variant_32x32.svg");
}

.btn--secondary.has-icon > a > .btn__icon,
.btn--secondary.has-icon > span > .btn__icon,
.btn--secondary.has-icon:hover > a > .btn__icon,
.btn--secondary.has-icon:hover > span > .btn__icon,
.btn--secondary.has-icon:focus > a > .btn__icon,
.btn--secondary.has-icon:focus > span > .btn__icon,
.btn--secondary.has-icon:active > a > .btn__icon,
.btn--secondary.has-icon:active > span > .btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-round-white_arrow-forward_tertiary_32x32.svg");
}

.btn--alternate-light.has-icon > a > .btn__icon,
.btn--alternate-light.has-icon > span > .btn__icon,
.btn--alternate-light.has-icon:hover > a > .btn__icon,
.btn--alternate-light.has-icon:hover > span > .btn__icon,
.btn--alternate-light.has-icon:focus > a > .btn__icon,
.btn--alternate-light.has-icon:focus > span > .btn__icon,
.btn--alternate-light.has-icon:active > a > .btn__icon,
.btn--alternate-light.has-icon:active > span > .btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-round-primary_arrow-forward_white_32x32.svg");
}

.btn.fab {
  bottom: -100rem;
  height: 0;
  margin-left: auto;
  opacity: 0;
  position: fixed;
  right: -100rem;
  visibility: hidden;
  z-index: 1200;
  
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

.btn.fab.is-visible {
  bottom: 2rem;
  height: 5rem;
  opacity: 1;
  right: 1rem;
  visibility: visible;
}

.btn.fab.is-visible.reached-bottom {
  top: 2rem;
}

.link-btn {
  align-items: center;
  border-radius: 0.25rem;
  color: var(--theme-tertiary);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: var(--base-font-family);
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  gap: 0.5rem;
  height: auto;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: var(--plain-line-height);
  max-width: max-content;
  min-height: 1rem;
  padding: 0 1px;
  text-decoration: none !important;
  text-transform: uppercase;
}

button.link-btn {
  background-color: unset;
}

button.link-btn,
div.link-btn {
  cursor: pointer;
}

.link-btn:hover,
.link-btn:focus,
.link-btn:active {
  color: var(--theme-primary);
}

.link-btn__label {
  line-height: var(--plain-line-height);
}

.link-btn__icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1rem;
  width: 1rem;
}

.link-btn__icon--left {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-arrow-back_tertiary_16x16.svg");
}

.link-btn__icon--right {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-arrow-forward_tertiary_16x16.svg");
}

.link-btn:hover > .link-btn__icon--left,
.link-btn:focus > .link-btn__icon--left,
.link-btn:active > .link-btn__icon--left {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-arrow-back_primary_16x16.svg");
}

.link-btn:hover > .link-btn__icon--right,
.link-btn:focus > .link-btn__icon--right,
.link-btn:active > .link-btn__icon--right {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-arrow-forward_primary-01_16x16.svg");
}

.icon-btn {
  align-items: center;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: inherit;
  display: flex;
  justify-content: center;
}

.icon-btn--80 {
  height: 5rem;
  min-height: 5rem;
  min-width: 5rem;
  width: 5rem;
}

.icon-btn--48 {
  height: 3rem;
  min-height: 3rem;
  min-width: 3rem;
  width: 3rem;
}

.icon-btn--40 {
  height: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  width: 2.5rem;
}

.icon-btn--32 {
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  width: 2rem;
}

.icon-btn--round {
  border-radius: 50%;
}

.icon-btn--primary {
  background-color: var(--theme-secondary);
}

.icon-btn--secondary {
  background-color: var(--theme-primary);
}

.icon-btn--white {
  background-color: var(--background-color-light);
}

.icon-btn--transparent {
  background-color: transparent;
}

.icon-btn__icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-btn.menu > .icon-btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-menu_theme-dark_32x32.svg");
}

.icon-btn.search > .icon-btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-search_theme-dark_32x32.svg");
}

.icon-btn.close > .icon-btn__icon {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-close_theme-dark_32x32.svg");
}

.icon-btn--40 > .icon-btn__icon {
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  width: 2rem;
}

.icon-btn--32 > .icon-btn__icon {
  height: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  width: 1.5rem;
}

.access-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.access-btn--40 {
  gap: 0.75rem;
  height: 2.5rem;
}

.access-btn--32 {
  gap: 0.5rem;
  height: 2rem;
}

.access-btn__link {
  color: var(--text-color-dark);
  text-decoration: none !important;
}

.access-btn__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 0.04rem;
  line-height: var(--narrow-line-height);
  white-space: nowrap;
}

.access-btn__label--bold {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  font-size: var(--base-font-size);
}

.access-btn__label--bold-lg {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
}

.access-btn__label--small {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
}


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

button,
[type="button"] {
  border: unset;
  border-image: unset;
  font-style: unset;
  font-variant-ligatures: unset;
  font-variant-caps: unset;
  font-variant-numeric: unset;
  font-variant-east-asian: unset;
  font-weight: unset;
  font-stretch: unset;
  line-height: unset;
  overflow: unset;
  padding: unset;
  text-align: unset;
  text-indent: unset;
  text-shadow: unset;
  text-rendering: unset;
  word-spacing: unset;
  writing-mode: unset !important;
}

/* Inputs */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
input[type=search],
select,
textarea {
  border: 1px solid var(--accent-grey1-80);
  border-radius: 0.25rem;
  display: inline-block;
  color: var(--text-color-dark);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--small-line-height);
  padding: 0.625rem 1rem;
  width: var(--fullwidth);
}

input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=password]:focus-visible,
input[type=tel]:focus-visible,
input[type=number]:focus-visible,
input[type=file]:focus-visible,
input[type=search]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: unset;
  border: 2px solid var(--accent-grey1-80);
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=search] {
  height: 
  3.0rem;
}

select {
  height: 
  3.0rem;
}

input[type=search] {
  position: relative;
}

::-webkit-input-placeholder {
  color: var(--accent-grey1-100);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

::-moz-placeholder {
  color: var(--accent-grey1-100);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

:-ms-input-placeholder {
  color: var(--accent-grey1-100);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

:-moz-placeholder {
  color: var(--accent-grey1-100);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

::placeholder {
  color: var(--accent-grey1-100);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-close_theme-dark_24x24.svg");
  background-position: center center;
  background-repeat: no-repeat;
  height: 1.5rem;
  margin: unset;
  margin-inline-start: unset;
  position: absolute;
  right: 0.5rem;
  -webkit-appearance: none;
  width: 1.5rem;
}

.hs-form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hs-form > fieldset {
  display: flex;
  width: var(--fullwidth);
}

.hs-form > fieldset.form-columns-1 {
  flex-direction: row;
}

.hs-form > fieldset.form-columns-2 {
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hs-form > fieldset.form-columns-2 {
    flex-direction: row;
  }
}

.hs-form-field {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: unset;
  width: var(--fullwidth);
}

/* Labels */
form label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.005rem;
}

form label[for="globalunsub"] {
  font-size: var(--base-font-size);
}

.hs-form-field > label {
  line-height: var(--base-line-height);
  margin-bottom: unset;
}

.hs-form-field > .input {
  margin-right: unset !important;
  width: var(--fullwidth);
}

.hs-form fieldset.form-columns-2 .hs-form-field {
  float: unset !important;
  width: var(--fullwidth) !important;
}

.hs-form fieldset.form-columns-1 .hs-form-field > .input > .hs-input,
.hs-form fieldset.form-columns-2 .hs-form-field > .input > .hs-input {
  width: var(--fullwidth) !important;
}

@media (min-width: 480px) {}

/* Help text */
form legend {
  font-size: 0.75rem;
}

form fieldset {
  max-width: var(--fullwidth) !important;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
}

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

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

/* Inputs - date picker */
.hs-dateinput {
  position: relative;
}

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

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

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: unset;
}

form input[type=file]::-webkit-file-upload-button {
  align-items: center;
  /*background-color: var(--brand-primary-10);*/
  border: 1px solid var(--accent-grey1-80);
  border-radius: 0.5rem;
  color: var(--accent-grey1-80);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  letter-spacing: 0.12rem;
  line-height: var(--narrow-line-height);
  margin-bottom: 0.5rem;
  padding: 0 2.5rem;
  text-transform: uppercase;
}

form input[type=file]::-webkit-file-upload-button:hover,
form input[type=file]::-webkit-file-upload-button:focus,
form input[type=file]::-webkit-file-upload-button:active {
  /*background-color: var(--brand-primary-30);*/
}

/* Headings and text */
/*form .hs-richtext,*/
/*form .hs-richtext p {*/
/*  font-size: 0.875rem;*/
/*  !*line-height: var(--common-line-height);*!*/
/*}*/

/*form .hs-richtext:last-of-type p {*/
/*  margin-bottom: 0;*/
/*}*/

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

/* GDPR */
.legal-consent-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-consent-container .field.hs-form-field,
.legal-consent-container .hs-dependent-field .hs_LEGAL_CONSENT.hs-form-field {
  margin-bottom: unset !important;
}

.legal-consent-container .hs-form-booleancheckbox-display {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
  padding-left: 0.75rem;
}

.legal-consent-container .hs-richtext {
  font-size: 0.75rem;
  line-height: var(--narrow-line-height);
}

input[type="checkbox"],
form input[type="checkbox"],
.legal-consent-container .hs-form-booleancheckbox-display input[type="checkbox"] {
  appearance: unset;
  background: var(--white);
  border: 1px solid var(--accent-grey1-80);
  border-radius: 2px;
  float: unset;
  height: 1rem;
  margin-right: unset;
  margin-top: 4px;
  min-height: 1rem;
  min-width: 1rem;
  position: relative;
  width: 1rem !important;
  -webkit-appearance: unset;
}

input[type="checkbox"]:checked,
form input[type="checkbox"]:checked,
.legal-consent-container .hs-form-booleancheckbox-display input[type="checkbox"]:checked {
  background-color: var(--theme-tertiary);
  border-color: var(--theme-tertiary);
}

input[type="checkbox"]:checked::after,
form input[type="checkbox"]:checked::after,
.legal-consent-container .hs-form-booleancheckbox-display input[type="checkbox"]:checked::after {
  color: var(--text-color-light);
  content: "\2714";
  font-size: 0.875rem;
  left: 1px;
  position: absolute;
  top: -1px;
}

.legal-consent-container .hs-form-booleancheckbox-display input[type="checkbox"]:focus-visible {
  outline: unset;
  border: 2px solid var(--accent-grey1-80);
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  display: inline-block;
  font-size: 0.875rem;
  margin-left: unset !important;
  line-height: var(--base-line-height);
}

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

.legal-consent-container .hs-form-booleancheckbox-display > span p > a {
  color: inherit !important;
  text-underline-offset: 2px;
}

/*.legal-consent-container .hs-form-booleancheckbox-display > span .hs-form-required {*/
/*  color: var(--text-color-light);*/
/*}*/

/* Validation */
.hs-form-required {
  color: var(--text-color-dark);
}

.hs-input.invalid.error {
  /*border: 2px solid var(--alert-error);*/
  border: 2px solid var(--theme-primary);
}

form .no-list.hs-error-msgs.inputs-list,
.hs-form .no-list.hs-error-msgs.inputs-list {
  margin-top: var(--spacing-04);
  width: var(--fullwidth);
}

.hs-form .no-list.hs-error-msgs.inputs-list > li {
  margin: unset;
}

form .no-list.hs-error-msgs.inputs-list > li > label,
form .no-list.hs-error-msgs.inputs-list > li > p {
  color: var(--theme-primary);
  font-size: 0.75rem;
  line-height: var(--narrow-line-height);
  padding: 0 1rem;
}

.hs-form .no-list.hs-error-msgs.inputs-list > li > label > a {
  color: var(--text-color-dark);
  text-underline-offset: 2px;
}

.hs-form .no-list.hs-error-msgs.inputs-list > li > label > a:hover,
.hs-form .no-list.hs-error-msgs.inputs-list > li > label > a:focus,
.hs-form .no-list.hs-error-msgs.inputs-list > li > label > a:visited,
.hs-form .no-list.hs-error-msgs.inputs-list > li > label > a:active {
  color: var(--theme-primary);
  text-decoration: none;
}

.hs-form .hs-error-msg,
.hs-form .hs_error_rollup .hs-error-msgs li label,
.submitted-message {
  color: var(--alert-error);
  background-color: var(--alert-error-bg);
  border: 1px solid var(--alert-error-border);
  border-radius: 0.25rem;
  font-size: 0.875rem !important;
  padding: 0.5rem;
}

.submitted-message {
  color: var(--alert-success);
  background-color: var(--alert-success-bg);
  border-color: var(--alert-success-border);
}

.hs-form .hs_error_rollup,
.hs_submit.hs-submit {
  width: var(--fullwidth);
}

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

.hs-form .hs-button,
.hs-form input[type=submit] {
  align-items: center;
  appearance: unset;
  background-color: var(--theme-primary);
  border: none;
  border-radius: 99rem;
  color: var(--text-color-light);
  display: flex;
  flex-direction: row;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  height: 3rem;
  justify-content: center;
  letter-spacing: 0.12rem;
  line-height: var(--plain-line-height);
  padding: 0 2.5rem;
  text-transform: uppercase;
  white-space: unset !important;
  width: var(--fullwidth);
  -webkit-appearance: unset;
}

.hs-form .hs-button:hover,
.hs-form input[type=submit]:hover,
.hs-form .hs-button:focus,
.hs-form input[type=submit]:focus {
  background-color: var(--theme-primary-variant);
}

.hs-form .hs-button:disabled,
.hs-form .hs-button.disabled,
.hs-form input[type=submit]:disabled,
.hs-form input[type=submit].disabled {
  background-color: var(--accent-grey1-60);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hs-form .hs-button,
  .hs-form input[type=submit] {
    width: auto;
  }
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}

.hs-form.hs-form_theme-canvas .hs-form__legal-consent .hs-form__richtext a,
.hs-form.hs-form_theme-canvas .hs-form__legal-consent .hs-form__richtext a:link,
.hs-form.hs-form_theme-canvas .hs-form__legal-consent .hs-form__richtext a:active {
  color: var(--text-color-light) !important;
}
/* width */
::-webkit-scrollbar {
  width: var(--scrollbar-width); /* for vertical scrollbars */
  height: var(--scrollbar-width); /* for horizontal scrollbars */
  border-radius: var(--scrollbar-width);
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--scrollbar-track-bg);
  border-radius: var(--scrollbar-width);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-bg);
  border-radius: var(--scrollbar-width);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover-bg);
}


ul,
ol {
  margin: 0 0 1rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul,
ol,
ul ul,
ol ul,
ul ol,
ol ol {
  padding-inline-start: 22px;
}

[class*="rich_text"] ul,
[class*="rich_text"] ol {
  margin-bottom: 1rem;
  max-width: var(--max-text-length);
  word-break: normal;
}

[class*="rich_text"] p + ul,
[class*="rich_text"] p + ol {
  margin-top: 1rem;
}

[class*="rich_text"] ul > li,
[class*="rich_text"] ol > li {
  margin-bottom: 0.5rem;
}

/*ul > li,*/
/*ol > li,*/
/*ul ul > li,*/
/*ol ul > li,*/
/*ul ol > li,*/
/*ol ol > li {*/
/*  margin-bottom: 0.5rem;*/
/*}*/

/*ul > li:last-child,*/
/*ol > li:last-child,*/
/*ul ul > li:last-child,*/
/*ol ul > li:last-child,*/
/*ul ol > li:last-child,*/
/*ol ol > li:last-child {*/
/*  margin-bottom: unset;*/
/*}*/

h2 ~ ul,
h2 ~ ol,
h3 ~ ul,
h3 ~ ol,
h4 ~ ul,
h4 ~ ol,
h5 ~ ul,
h5 ~ ol,
h6 ~ ul,
h6 ~ ol,
p ~ ul,
p ~ ol {
  margin-top: -0.5rem;
}

div ~ ul,
div ~ ol {
  margin-top: 0.5rem;
}

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

.default-list > li {
  font-family: var(--base-font-family);
  font-style: normal;
  font-weight: 700;
}

.flex-row-list {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

/*.flex-row-list > li {*/
/*  margin-bottom: unset;*/
/*}*/

.icon-list > li {
  padding-left: 2.25rem !important;
  position: relative;
}

.icon-list > li::before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.5rem;
  left: 0;
  position: absolute;
  top: 1.125rem;
  width: 1.5rem;
}

/*.dot-list > li::before {*/
/*  background-image: url("");*/
/*}*/

.check-list > li,
.x-mark-list > li {
  border-bottom: 1px solid var(--theme-secondary);
  font-size: var(--base-font-size);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.005rem;
  line-height: var(--base-line-height);
  padding: 1rem;
}

.check-list > li::before {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-check-rund_tertiary_24x24.svg");
}

/*.x-mark-list > li::before {*/
/*  background-image: url("");*/
/*}*/


table {
  border: unset !important;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  max-width: var(--max-text-length);
  overflow-wrap: unset;
  width: var(--fullwidth);
  
  
  

  
    -webkit-hyphens: auto;
  
    -moz-hyphens: auto;
  
    -ms-hyphens: auto;
  

  hyphens: auto;

;
}

td,
th {
  border: unset !important;
  height: unset !important;
  vertical-align: top;
}

td:nth-child(1),
td:nth-child(2) {
  width: 50% !important;
}

table thead,
table tfoot,
td:nth-child(n+3) {
  display: none;
}

table thead th {
  vertical-align: bottom;
}

table > tbody > tr {
  border-bottom: 1px solid var(--accent-grey1-40);
}

table > tbody > tr > td {
  padding: 1rem 0.5rem !important;
}

table > tbody > tr:first-of-type > td {
  color: var(--theme-tertiary);
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  line-height: var(--base-line-height);
  letter-spacing: 0.005em;
  font-size: 
  1.125rem;
}
.video-outer {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin: 2rem 0;
}

.video-outer > .hs-responsive-embed-wrapper.hs-responsive-embed {
	display: unset !important;
	height: unset !important;
	margin: unset !important;
	max-height: unset !important;
	max-width: unset !important;
	min-width:  unset !important;
	overflow: unset !important;
	padding: unset !important;
	position: unset !important;
	width: unset !important;
}

.video-outer > .hs-responsive-embed-wrapper.hs-responsive-embed > .hs-responsive-embed-inner-wrapper {
	margin: unset !important;
	max-width: unset !important;
	overflow: unset !important;
	padding-bottom: unset !important;
	position: unset !important;
}

.video-outer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Components */
/*/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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


.section-heading,
.section-header {}

.overline {}

.overline--h1 {}

.overline--h2 {}

.overline--h3 {}

.section-heading--h1 > h1,
.section-header > h1 {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: var(--small-line-height);
  text-align: center;
  margin-bottom: 
  1.5rem;
  font-size: 
  1.125rem;
  
}

@media (min-width: 768px) {
  .section-heading--h1 > h1,
  .section-header > h1 {
    font-size: 
  1.25rem;
  }
}

.section-heading--h2 h2,
.section-header h2 {}

.section-heading--h3 h3,
.section-header h3 {}

.subheading,
.section-header .secondary-header {}

.subheading--h1,
.section-header h1 .secondary-header {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 700;
  line-height: var(--plain-line-height);
  margin: unset;
  max-width: unset;
  font-size: 2.3rem;
  
  
  

  
    -webkit-hyphens: auto;
  
    -moz-hyphens: auto;
  
    -ms-hyphens: auto;
  

  hyphens: auto;


}

@media (min-width: 768px) {
  .subheading--h1,
  .section-header h1 .secondary-header {
    font-size: 
  3.5rem;
  }
}

@media (min-width: 1024px) {
  .subheading--h1,
  .section-header h1 .secondary-header {
    font-size: 
  4.5rem;
  }
}

.subheading--h2,
.section-header h2 .secondary-header {
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: var(--small-line-height);
  margin: unset;
  font-size: 
  1.25rem;
}

@media (min-width: 1024px) {
  .subheading--h2,
  .section-header h2 .secondary-header {
    font-size: 
  1.5rem;
  }
}

.subheading--h3,
.section-header h3 .secondary-header {}
.bpl__wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-06);
}

.bpl__wrapper.bpl__wrapper--featured {
  align-items: unset;
  display: block;
  flex-direction: unset;
  gap: unset;
}

@media (min-width: 768px) {
  .bpl__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: var(--spacing-07);
    grid-row-gap: var(--spacing-11);
  }
}

@media (min-width: 1024px) {
  .bpl__wrapper {
    grid-column-gap: var(--spacing-09);
    grid-row-gap: var(--spacing-13);
  }
}

@media (min-width: 1280px) {
  .bpl__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bpl__post,
.bpl__post.bpl__post--featured {
  width: var(--fullwidth);
}

.bpl__post.bpl__post--featured {
  background-color: var(--background-color-light);
  border: 1px solid var(--accent-light-blue-20);
  border-radius: 1.5rem;
}

.bpl__post.hide-mobile {
  display: none;
}

@media (min-width: 1280px) {
  .bpl__post.hide-mobile {
    display: initial;
  }
  .bpl__post.hide-desktop {
    display: none;
  }
}

.bpl__post-link {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.bpl__featured-image-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  display: flex;
  overflow: hidden;
  width: var(--fullwidth);
}

.bpl__post--featured .bpl__featured-image-wrapper {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
}

.bpl__featured-image {
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  height: auto;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  width: var(--fullwidth);
}

.bpl__post--featured .bpl__featured-image {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
}

.bpl__post-link:hover .bpl__featured-image,
.bpl__post-link:focus .bpl__featured-image,
.bpl__post-link:active .bpl__featured-image {
  transform: scale(1.1);
}

.bpl__post-content {
  padding: 1.5rem 0.5rem;
  width: var(--fullwidth);
}

.bpl__post--featured .bpl__post-content {
  padding: 1.5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .bpl__post-content {
    padding: 2rem 0.5rem 1.5rem;
  }
  .bpl__post--featured .bpl__post-content {
    padding: 2rem 2rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .bpl__post-content {
    padding: 3rem 0.5rem 1.5rem;
  }
  .bpl__post--featured .bpl__post-content {
    padding: 3rem 3rem 2.5rem;
  }
}

.bpl__headline {
  color: var(--text-color-dark);
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
}

.bpl__post-link:hover .bpl__headline,
.bpl__post-link:focus .bpl__headline,
.bpl__post-link:active .bpl__headline {
  text-decoration: underline;
}

.bpl__summary,
.bpl__summary p {
  margin-bottom: unset;
}

.bpl__post-meta-wrapper {
  padding: 0 0.5rem 1.5rem;
  width: var(--fullwidth);
}

.bpl__post--featured .bpl__post-meta-wrapper {
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .bpl__post-meta-wrapper {
    padding: 0 0.5rem 2rem;
  }
  .bpl__post--featured .bpl__post-meta-wrapper {
    padding: 0 2rem 2rem;
  }
}

@media (min-width: 1024px) {
  .bpl__post-meta-wrapper {
    padding: 0 0.5rem 3rem;
  }
  .bpl__post--featured .bpl__post-meta-wrapper {
    padding: 0 3rem 3rem;
  }
}

.bpl__post-meta {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2px;
  margin-bottom: 1.5rem;
}

.bpl__post--featured .bpl__post-meta {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .bpl__post--featured .bpl__post-meta {
    margin-bottom: 2.5rem;
  }
}

.bpl__post-author-link {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  text-decoration: none !important;
}

.bpl__post-author-avatar {
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
}

.bpl__post-author-name,
.bpl__post-publish-date,
.bpl__post-timestamp {
  color: var(--text-color-dark);
  font-size: 0.75rem;
  line-height: var(--narrow-line-height);
}

.bpl__post-author-link:hover .bpl__post-author-name,
.bpl__post-author-link:focus .bpl__post-author-name,
.bpl__post-author-link:active .bpl__post-author-name {
  color: var(--theme-primary);
}

.bpl__post-publish-date {
  padding-left: 2px;
}

.bpl__post-publish-date::before {
  content: "|";
}

.bpl__post-timestamp {}
.wuf__tags-wrapper {
  align-items: flex-start;
  column-gap: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.wuf__tag {
  align-items: center;
  background-color: var(--background-color-light);
  border: 1px solid var(--accent-light-blue-40);
  border-radius: 6.25rem;
  color: var(--theme-primary);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: var(--base-font-family);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: var(--plain-line-height);
  padding: 0.5rem 1rem;
  text-decoration: none !important;
  text-transform: uppercase;
}

.wuf__tag:hover,
.wuf__tag:focus,
.wuf__tag:active {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: var(--text-color-light);
}


.author-detail__wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 
  1.5rem;
}

@media (min-width: 768px) {
  .author-detail__wrapper {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
      gap: 
  2.0rem;
  }
}

@media (min-width: 1024px) {
  .author-detail__wrapper {
    gap: 
  3.0rem;
  }
}

.author-detail__ava-container {
  margin: var(--margin-zero-auto);
  height: 
  16.0rem;
  width: 
  16.0rem;
}

@media (min-width: 768px) {
  .author-detail__ava-container {
    margin: unset;
  }
}

.author-detail__ava {
  border-radius: 50%;
  height: auto;
  width: 
  16.0rem;
}

.author-detail__content-container {}

.author-detail__content-container h1 {
  text-align: center;
}

@media (min-width: 768px) {
  .author-detail__content-container h1 {
    text-align: initial;
  }
}

.author-detail__bio-container {
  margin-bottom: 
  3.0rem;
  max-width: var(--max-text-length);
  text-align: center;
}

@media (min-width: 768px) {
  .author-detail__bio-container {
    margin-bottom: 
  1.5rem;
    text-align: initial;
  }
}

.author-detail__contact-container {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: var(--margin-zero-auto);
  max-width: calc((5 * 3rem) + (4 * 1.5rem));
  width: var(--fullwidth);
}

@media (min-width: 768px) {
  .author-detail__contact-container {
    gap: 
  1.5rem;
    margin: unset;
    max-width: unset;
    justify-content: unset;
    width: unset;
  }
}

.author-detail__icon-link {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  color: transparent !important;
  height: 
  3.0rem;
  width: 
  3.0rem;
}

.author-detail__icon-link.website {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-website_default_48x48.svg");
}

.author-detail__icon-link.website:hover,
.author-detail__icon-link.website:focus,
.author-detail__icon-link.website:active {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-website_hover_48x48.svg");
}

.author-detail__icon-link.facebook {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-facebook_default_48x48.svg");
}

.author-detail__icon-link.facebook:hover,
.author-detail__icon-link.facebook:focus,
.author-detail__icon-link.facebook:active {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-facebook_hover_48x48.svg");
}

.author-detail__icon-link.twitter {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-twitter_default_48x48.svg");
}

.author-detail__icon-link.twitter:hover,
.author-detail__icon-link.twitter:focus,
.author-detail__icon-link.twitter:active {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-twitter_hover_48x48.svg");
}

.author-detail__icon-link.linkedin {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-linkedin_default_48x48.svg");
}

.author-detail__icon-link.linkedin:hover,
.author-detail__icon-link.linkedin:focus,
.author-detail__icon-link.linkedin:active {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-linkedin_hover_48x48.svg");
}

.author-detail__icon-link.email {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-mail_default_48x48.svg");
}

.author-detail__icon-link.email:hover,
.author-detail__icon-link.email:focus,
.author-detail__icon-link.email:active {
  background-image: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-author-mail_hover_48x48.svg");
}


.wuf-quote__wrapper {
  margin: 2.5rem 0;
}

.wuf-quote__figure {
  margin: unset;
}

.wuf-quote__figure > blockquote {
  margin: 0 0 0.5rem;
}

.wuf-quote__figure > figcaption {
  color: var(--text-color-dark);
  display: flex;
  font-family: var(--base-font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  gap: 8px;
  letter-spacing: 0.004rem;
  line-height: var(--narrow-line-height);
}

.wuf-quote__figure > figcaption::before {
  color: var(--theme-secondary);
  content: "\2015";
}

.wuf-quote__testimonial-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-06);
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .wuf-quote__testimonial-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: var(--max-text-length);
  }
}

.wuf-quote__testimonial-wrapper blockquote {
  max-width: unset;
  padding: unset;
}

.wuf-quote__testimonial-wrapper blockquote::before {
  display: none;
}

.wuf-quote__image-container {
  aspect-ratio: 1/1;
  display: flex;
  width: var(--spacing-13);
}

.wuf-quote__testimonial-wrapper .wuf-quote__wrapper {
  margin: unset;
}

@media (min-width: 768px) {
  .wuf-quote__image-container {
    width: var(--spacing-18);
  }
  .wuf-quote__testimonial-wrapper .wuf-quote__wrapper {
    width: calc(var(--fullwidth) - var(--spacing-18) - var(--spacing-06));
  }
}

.wuf-quote__image-container img {
  border-radius: 50%;
  height: auto;
  width: var(--fullwidth);
}


.wuf-highlight__wrapper {
  border-radius: var(--spacing-06);
  background-color: var(--accent-light-blue-30);
  margin: var(--spacing-08) 0;
  max-width: var(--max-text-length);
  padding: var(--spacing-07);
}

.wuf-highlight__wrapper.bg-grey {
  background-color: var(--accent-grey1-20);
}

.wuf-highlight__wrapper.bg-dark {
  background-color: var(--background-color-dark);
  color: var(--theme-secondary);
}

.wuf-highlight__wrapper.bg-gradient {
  background: linear-gradient(152deg, var(--theme-primary-variant) 3.02%, #7C19D8 97.1%);
  color: var(--text-color-light);
}

.wuf-highlight__wrapper.bg-primary {
  background-color: var(--theme-primary);
  color: var(--text-color-light);
}

.wuf-highlight__wrapper::before {
  content: url("https://7519001.fs1.hubspotusercontent-na1.net/hubfs/7519001/wuf-theme/icons/ic-lightbulb_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.tools::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-tools_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.question::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-question_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.house-key::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-house-key_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.euro::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-euro_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.hint::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-error-mark_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.calc::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-calculator_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.dream::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-dream-house_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.house::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-haus-attention_theme-dark_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-lightbulb_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.tools::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-tools_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.question::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-question_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.house-key::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-house-key_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.euro::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-euro_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.hint::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-error-mark_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.calc::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-calculator_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.dream::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-dream-house_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-dark.house::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-haus-attention_secondary_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient::before,
.wuf-highlight__wrapper.bg-primary::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-lightbulb_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.tools::before,
.wuf-highlight__wrapper.bg-primary.tools::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-tools_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.question::before,
.wuf-highlight__wrapper.bg-primary.question::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-question_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.house-key::before,
.wuf-highlight__wrapper.bg-primary.house-key::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-house-key_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.euro::before,
.wuf-highlight__wrapper.bg-primary.euro::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-euro_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.hint::before,
.wuf-highlight__wrapper.bg-primary.hint::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-error-mark_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.calc::before,
.wuf-highlight__wrapper.bg-primary.calc::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-calculator_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.dream::before,
.wuf-highlight__wrapper.bg-primary.dream::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-dream-house_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.bg-gradient.house::before,
.wuf-highlight__wrapper.bg-primary.house::before {
  content: url("https://wohnen-und-finanzieren.de/hubfs/wuf-theme/icons/highlight/ic-haus-attention_theme-light_64x64.svg");
}

.wuf-highlight__wrapper.no-icon::before {
  content: unset;
  display: none;
}

.wuf-highlight__wrapper > h3 {
  margin-top: var(--spacing-05);
}

.wuf-highlight__wrapper.no-icon > h3 {
  margin-top: 0;
}
div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner {
  padding: 1.2em !important;
}

div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner
  p {
  font-family: var(--base-font-family) !important;
  max-width: none !important;
  line-height: 18px !important;
}

div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner
  a {
  font-family: var(--base-font-family) !important;
  max-width: none !important;
  color: var(--theme-primary) !important;
}

div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner
  button#hs-eu-confirmation-button,
div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner
  button#hs-eu-cookie-settings-button,
div#hs-banner-parent
  div#hs-eu-cookie-confirmation
  div#hs-eu-cookie-confirmation-inner
  button#hs-eu-decline-button {
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-family: var(--base-font-family) !important;
}

/* Objects - there will be special-sections overrides */


.hero-section .section-heading--h1,
.hero-section .subheading--h1 {
  color: var(--text-color-light);
}

@media (min-width: 768px) {
  .hero-section .section-heading--h1 > h1 {
    text-align: left;
  }
}

.hero-section .subheading--h1 {
  text-align: center;
  
  
  

  
    -webkit-hyphens: none;
  
    -moz-hyphens: none;
  
    -ms-hyphens: none;
  

  hyphens: none;


}

@media (min-width: 768px) {
  .hero-section .subheading--h1 {
    text-align: initial;
  }
}
.focus-post__section.dnd-section .span12.dnd-column > .dnd-row:first-of-type .span12.dnd-module h2 {
  margin-bottom: 0;
}

.focus-post__section.dnd-section .section-heading--h2 > h2 {
  margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
  .focus-post__section.dnd-section .span12.dnd-column > .dnd-row:first-of-type .span12.dnd-module h2 {
    margin-right: auto;
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-07) / 3));
  }
}

@media (min-width: 1024px) {
  .focus-post__section.dnd-section .span12.dnd-column > .dnd-row:first-of-type .span12.dnd-module h2 {
    margin-right: auto;
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-09) / 3));
  }
}

.body-container--blog-index .focus-post__section .span12.dnd-column > .dnd-row:first-of-type {
  display: none;
}
@media (min-width: 768px) {
  .partner-logos__section.dnd-section .span12.dnd-column > .dnd-row:first-of-type .span12.dnd-module .section-heading {
    margin-right: auto;
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-07) / 3));
  }
}

@media (min-width: 1024px) {
  .partner-logos__section.dnd-section .span12.dnd-column > .dnd-row:first-of-type .span12.dnd-module .section-heading {
    margin-right: auto;
    width: calc(((var(--fullwidth) / 3) * 2) - (var(--spacing-09) / 3));
  }
}

/* Utilities */
/* For content that needs to be visually hidden but stay visible for screenreaders */

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

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