@charset "UTF-8";
/**
  * Erdmann & Freunde - Nutshell
  * Starterkit
  * erdmann-freunde.de/nutshell/
  *
  * Lizenziert unter MIT OPEN SOURCE
  *
  */
/* stylelint-disable-next-line number-max-precision */
html {
  --color-default: #ff5636;
  --color-gray-dark: #222;
  --color-gray: #555;
  --color-gray-light: #ccc;
  --color-brand: var(--color-default);
  --color-highlight: var(--color-brand);
  --color-page-background: #fff;
  --color-text: var(--color-gray-dark);
  --color-text-inverted: var(--color-page-background);
  --color-error: rgba(255, 0, 0, 1);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --base-font-size-xs: 0.875rem;
  --base-font-size: 1rem;
  --base-font-size-xl: 1.125rem;
  --base-line-height: 1.625;
  --base-font-weight: 400;
  --base-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
  --base-spacing-unit: 1rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 4);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 4px;
  --base-border-width: 1px;
  --base-border-color: var(--color-gray-light);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 1.875rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
  --layout-spacing-sides: var(--base-spacing-unit);
  --layout-wrapper-background: transparent;
  --layout-header-background: var(--color-page-background);
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit);
  --article-spacing-bottom: var(--base-spacing-unit);
  --headings-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
    'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
  --headings-font-weight: 700;
  --headings-color: 'currentColor';
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: var(--headings-font-weight);
  --h1-color: var(--headings-color);
  --h1-font-size: 2rem;
  --h1-font-size-sm: 2rem;
  --h1-font-size-md: 2.25rem;
  --h1-font-size-lg: 2.25rem;
  --h1-font-size-xl: 2.25rem;
  --h1-line-height: 1.55;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 0.5rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.625rem;
  --h2-font-size-sm: 1.625rem;
  --h2-font-size-md: 1.75rem;
  --h2-font-size-lg: 1.75rem;
  --h2-font-size-xl: 1.75rem;
  --h2-line-height: 1.5;
  --h2-spacing-top: 0;
  --h2-spacing-bottom: 0.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--headings-color);
  --h3-font-size: 1.375rem;
  --h3-font-size-sm: 1.375rem;
  --h3-font-size-md: 1.5rem;
  --h3-font-size-lg: 1.5rem;
  --h3-font-size-xl: 1.5rem;
  --h3-line-height: 1.25;
  --h3-spacing-top: 0;
  --h3-spacing-bottom: 0.5rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--headings-color);
  --h4-font-size: 1.125rem;
  --h4-font-size-sm: 1.125rem;
  --h4-font-size-md: 1.25rem;
  --h4-font-size-lg: 1.25rem;
  --h4-font-size-xl: 1.25rem;
  --h4-line-height: 1;
  --h4-spacing-top: 0;
  --h4-spacing-bottom: 0.5rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--headings-color);
  --h5-font-size: 1rem;
  --h5-font-size-sm: 1rem;
  --h5-font-size-md: 1rem;
  --h5-font-size-lg: 1rem;
  --h5-font-size-xl: 1rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0;
  --h5-spacing-bottom: 0.5rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 0.875rem;
  --h6-font-size-lg: 0.875rem;
  --h6-font-size-xl: 0.875rem;
  --h6-line-height: 1;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.5rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: underline;
  --paragraph-link-decoration-hover: none;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: var(--color-highlight);
  --links-color-hover: var(--color-highlight);
  --links-color-visited: var(--links-color);
  --links-outline-focus: 2px dotted
    var(--links-outline-color, var(--color-highlight));
  --links-outline-active: none;
  --button-color: var(--color-text-inverted);
  --button-background: var(--color-highlight);
  --button-color-hover: var(--button-color);
  --button-background-hover: var(--color-highlight);
  --button-spacing: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  --button-border-radius: var(--base-border-radius);
  --button-border-width: var(--base-border-width);
  --button-font-family: var(--base-font-family);
  --button-font-weight: 400;
  --button-font-size: var(--base-font-size);
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2rem;
  --slider-arrow-font-family: 'Arial';
  --slider-menu-point-size: 2rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: var(--base-border-radius);
  --forms-input-border-color: rgba(0, 0, 0, 0.25);
  --forms-input-background: var(--color-page-background);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit);
  --accordion-content-spacing: var(--base-spacing-unit-sm);
  --accordion-content-background: var(--color-gray-light);
  --accordion-toggler-font-size: 1.5rem;
  --accordion-toggler-background: var(--color-highlight);
  --accordion-toggler-color: var(--color-text-inverted);
  --accordion-toggler-color-hover: var(--color-brand-primary);
  --accordion-toggler-spacing: var(--base-spacing-unit-xs);
  --accordion-toggler-border: 2px solid transparent;
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: #ccc;
  --table-background-light: #eee;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
}

:root {
  --color-blue: #007db1;
  --color-green: #53b89f;
  --color-default: var(--color-green);
  --color-gray-dark: #222;
  --color-gray: #555;
  --color-gray-2: #777;
  --color-gray-light: #ccc;
  --color-gray-lighter: #f0f0f0;
  --color-gray-lighter-alpha: rgba(239, 239, 239, 0.8);
  --color-brand: var(--color-default);
  --color-brand-secondary: var(--color-blue);
  --color-highlight: var(--color-brand);
  --color-page-background: #fff;
  --color-text: var(--color-gray);
  --color-text-inverted: var(--color-page-background);
  --color-error: rgba(255, 0, 0, 1);
  --color-error-light: rgba(255, 0, 0, 0.5);
  --base-font-size-xs: 1.125rem;
  --base-font-size: 1.125rem;
  --base-font-size-xl: 1.25rem;
  --base-line-height: 1.625;
  --base-font-weight: 300;
  --base-font-family: 'Source Sans Pro', 'Helvetica Neue', arial, sans-serif;
  --base-spacing-unit: 1rem;
  --base-spacing-unit-xs: calc(var(--base-spacing-unit) / 4);
  --base-spacing-unit-sm: calc(var(--base-spacing-unit) / 2);
  --base-spacing-unit-lg: calc(var(--base-spacing-unit) * 2);
  --base-spacing-unit-xl: calc(var(--base-spacing-unit) * 4);
  --base-border-radius: 4px;
  --base-border-width: 1px;
  --base-border-color: var(--color-gray-light);
  --base-border: var(--base-border-width) solid var(--base-border-color);
  --grid-columns: 12;
  --grid-gutter: 1rem;
  --grid-gutter-half: calc(var(--grid-gutter) / 2);
}
@media screen and (min-width: 48em) {
  :root {
    --grid-gutter: 1.875rem;
  }
}
:root {
  --layout-wrapper-background: transparent;
  --layout-header-background: transparent;
  --layout-header-color: var(--color-text);
  --layout-footer-background: transparent;
  --layout-footer-color: var(--color-text);
  --layout-footer-border: 1px solid var(--color-brand);
  --layout-topbar-background: var(--color-gray-lighter);
  --left-spacing-top: var(--base-spacing-unit);
  --left-spacing-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 48em) {
  :root {
    --left-spacing-top: 2.5rem;
    --left-spacing-bottom: 2.5rem;
  }
}
:root {
  --article-spacing-sides: var(--grid-gutter-half);
  --article-spacing-top: var(--base-spacing-unit);
  --article-spacing-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 48em) {
  :root {
    --article-spacing-top: 1.25rem;
    --article-spacing-bottom: 1.25rem;
  }
}
:root {
  --article-tint-background: var(--color-gray-lighter);
  --article-highlight-background: var(--color-brand-secondary);
  --article-highlight-color: var(--color-text-inverted);
  --headings-font-family: var(--base-font-family);
  --headings-font-weight: 400;
  --headings-color: var(--color-brand);
  --h1-font-family: var(--headings-font-family);
  --h1-font-weight: var(--headings-font-weight);
  --h1-color: var(--headings-color);
  --h1-font-size: 1.666rem;
  --h1-font-size-sm: 1.25rem;
  --h1-font-size-md: 1.25rem;
  --h1-font-size-lg: 1.5rem;
  --h1-font-size-xl: 1.5rem;
  --h1-line-height: 1.2;
  --h1-spacing-top: 0;
  --h1-spacing-bottom: 1rem;
  --h2-font-family: var(--headings-font-family);
  --h2-font-weight: var(--headings-font-weight);
  --h2-color: var(--headings-color);
  --h2-font-size: 1.3889rem;
  --h2-font-size-sm: 1.125rem;
  --h2-font-size-md: 1.25rem;
  --h2-font-size-lg: 1.25rem;
  --h2-font-size-xl: 1.25rem;
  --h2-line-height: 1.3;
  --h2-spacing-top: 1rem;
  --h2-spacing-bottom: 1.5rem;
  --h3-font-family: var(--headings-font-family);
  --h3-font-weight: var(--headings-font-weight);
  --h3-color: var(--color-text);
  --h3-font-size: 1.1111rem;
  --h3-font-size-sm: 1.1111rem;
  --h3-font-size-md: 1.1111em;
  --h3-font-size-lg: 1.1111em;
  --h3-font-size-xl: 1.1111em;
  --h3-line-height: 1.25;
  --h3-spacing-top: 0;
  --h3-spacing-bottom: 0.5rem;
  --h4-font-family: var(--headings-font-family);
  --h4-font-weight: var(--headings-font-weight);
  --h4-color: var(--color-text);
  --h4-font-size: 1.125rem;
  --h4-font-size-sm: 1.125rem;
  --h4-font-size-md: 1.25rem;
  --h4-font-size-lg: 1.25rem;
  --h4-font-size-xl: 1.25rem;
  --h4-line-height: 1;
  --h4-spacing-top: 0;
  --h4-spacing-bottom: 0.5rem;
  --h5-font-family: var(--headings-font-family);
  --h5-font-weight: var(--headings-font-weight);
  --h5-color: var(--color-text);
  --h5-font-size: 1rem;
  --h5-font-size-sm: 1rem;
  --h5-font-size-md: 1rem;
  --h5-font-size-lg: 1rem;
  --h5-font-size-xl: 1rem;
  --h5-line-height: 1;
  --h5-spacing-top: 0;
  --h5-spacing-bottom: 1rem;
  --h6-font-family: var(--headings-font-family);
  --h6-font-weight: var(--headings-font-weight);
  --h6-color: var(--headings-color);
  --h6-font-size: 0.875rem;
  --h6-font-size-sm: 0.875rem;
  --h6-font-size-md: 0.875rem;
  --h6-font-size-lg: 0.875rem;
  --h6-font-size-xl: 0.875rem;
  --h6-line-height: 1;
  --h6-spacing-top: 0;
  --h6-spacing-bottom: 0.5rem;
  --paragraph-link-color: var(--links-color);
  --paragraph-link-decoration: none;
  --paragraph-link-decoration-hover: underline;
  --code-color: var(--color-highlight);
  --selection-background: var(--color-brand);
  --pre-color-background: var(--color-gray);
  --pre-color: var(--color-text-inverted);
  --selection-color: var(--color-text-inverted);
  --hr-border: var(--base-border);
  --gallery-gutter: var(--grid-gutter);
  --gallery-gutter-half: calc(var(--gallery-gutter) / 2);
  --links-color: var(--color-highlight);
  --links-color-hover: var(--color-highlight);
  --button-color: var(--color-text-inverted);
  --button-background: var(--color-brand-secondary);
  --button-color-hover: var(--button-color);
  --button-background-hover: var(--color-highlight);
  --button-spacing: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  --button-border-radius: var(--base-border-radius);
  --button-border-width: var(--base-border-width);
  --button-font-family: var(--base-font-family);
  --button-font-weight: 400;
  --button-line-height: var(--base-line-height);
  --nav-item-padding: var(--base-spacing-unit);
  --nav-main-color: var(--color-text);
  --nav-main-font-size: 1.25rem;
  --nav-main-font-weight: 300;
  --nav-mobile-background: var(--color-page-background);
  --nav-mobile-font-size: 1rem;
  --nav-border: 1px solid var(--color-brand);
  --nav-icon-width: 1.25rem;
  --nav-icon-stroke: 1px;
  --swiper-theme-color: transparent;
  --swiper-pagination-color: var(--color-brand-secondary);
  --swiper-pagination-size: 1rem;
  --slider-arrow-color: inherit;
  --slider-arrow-size: 2.5rem;
  --slider-arrow-font-family: 'Arial';
  --slider-menu-point-size: 0.7rem;
  --slider-menu-point-color: inherit;
  --slider-menu-point-color-active: var(--color-brand);
  --swiper-navigation-color: var(--color-brand);
  --swiper-navigation-size: var(--slider-arrow-size);
  --swiper-pagination-size: var(--slider-menu-point-size);
  --swiper-pagination-color: var(--color-brand);
  --news-grid-columns-sm: 2;
  --news-grid-columns-md: 2;
  --news-grid-columns-lg: 3;
  --news-grid-columns-xl: 3;
  --news-border: var(--base-border);
  --events-grid-columns-sm: 1;
  --events-grid-columns-md: 2;
  --events-grid-columns-lg: 3;
  --events-grid-columns-xl: 3;
  --forms-input-border-width: var(--base-border-width);
  --forms-input-border-radius: var(--base-border-radius);
  --forms-input-border-color: rgba(0, 0, 0, 0.25);
  --forms-input-line-height: normal;
  --forms-mandatory-color: var(--color-brand);
  --accordion-spacing: var(--base-spacing-unit);
  --accordion-content-spacing: 0 0 var(--base-spacing-unit-sm) 0;
  --accordion-content-background: transparent;
  --accordion-toggler-font-size: 1rem;
  --accordion-toggler-background: transparent;
  --accordion-toggler-color: var(--color-brand);
  --accordion-toggler-color-hover: var(--color-brand);
  --accordion-toggler-spacing: 0.25rem 0;
  --accordion-toggler-border: 1px solid var(--color-brand);
  --download-link-color: inherit;
  --download-link-decoration: none;
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: #ccc;
  --table-background-light: #eee;
  --newsletter-list-border: var(--base-border);
  --newsletter-reader-width: 600px;
  --newsletter-reader-border: var(--base-border);
  --faq-border: var(--base-border);
  --search-relevance-color: var(--color-gray);
  --search-url-color: var(--color-gray);
  --hero-content-color: var(--color-text-inverted);
  --text-highlight-background: linear-gradient(#e5f4f1, #f8fcfb);
  --text-highlight-shadow: 0 0 7px 2px rgba(85 85 85, 0.4);
  --card-background: #f5f5f5;
  --card-border: 1px solid #e7e7e7;
  --consent-bg: var(--color-gray-lighter);
}

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

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

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

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 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 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

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

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

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

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

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

/* Forms
   ========================================================================== */
/**
 * Change font properties to `inherit` in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  font: inherit;
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

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

/**
 * Remove the margin in Safari.
 * 1. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea { /* 1 */
  margin: 0;
}

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

/**
 * Change the cursor in all browsers (opinionated).
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

/**
 * Restore the default cursor to disabled elements unset by the previous rule.
 */
[disabled] {
  cursor: default;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  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;
}

/**
 * Correct the odd appearance of search inputs in Chrome and Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
}

/**
 * Remove the inner padding and cancel buttons in Chrome on OS X and
 * Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--base-spacing-unit-sm);
}

ul,
ol,
dl,
blockquote,
p,
address,
hr,
fieldset,
figure,
pre {
  margin-bottom: var(--base-spacing-unit);
}

ul,
ol,
dd {
  margin-left: var(--base-spacing-unit);
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

a:focus-visible,
[tabindex="0"]:focus-visible {
  outline: var(--links-outline-focus);
}
a:active,
[tabindex="0"]:active {
  outline: var(--links-outline-active);
}

a {
  color: var(--links-color);
}
a:visited {
  color: var(--links-color-visited);
}

:not(p) a {
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

script {
  display: none !important;
}

html {
  font-family: var(--base-font-family, sans-serif);
  font-size: var(--base-font-size-xs);
  line-height: var(--base-line-height);
  font-weight: var(--base-font-weight);
  background-color: var(--color-page-background);
  color: var(--color-text);
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 34.375em) {
  html {
    font-size: var(--base-font-size-sm, var(--base-font-size));
  }
}
@media screen and (min-width: 48em) {
  html {
    font-size: var(--base-font-size);
  }
}
@media screen and (min-width: 58.75em) {
  html {
    font-size: var(--base-font-size-lg, var(--base-font-size));
  }
}
@media screen and (min-width: 68.75em) {
  html {
    font-size: var(--base-font-size-xl);
  }
}

html {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* source-sans-pro-300 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(""), url("../fonts/source-sans-pro-v21-latin-300.woff2") format("woff2"), url("../fonts/source-sans-pro-v21-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-regular - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("../fonts/source-sans-pro-v21-latin-regular.woff2") format("woff2"), url("../fonts/source-sans-pro-v21-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-600 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local(""), url("../fonts/source-sans-pro-v21-latin-600.woff2") format("woff2"), url("../fonts/source-sans-pro-v21-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* source-sans-pro-700 - latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/source-sans-pro-v21-latin-700.woff2") format("woff2"), url("../fonts/source-sans-pro-v21-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
.card--highlight .card__description, .text--highlight .heading--1, .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
  font-family: var(--h1-font-family);
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--h1-line-height);
  color: var(--h1-color);
  margin-top: var(--h1-spacing-top);
  margin-bottom: var(--h1-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .card--highlight .card__description, .text--highlight .heading--1, .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .card--highlight .card__description, .text--highlight .heading--1, .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .card--highlight .card__description, .text--highlight .heading--1, .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .card--highlight .card__description, .text--highlight .heading--1, .heading--1 h1, .heading--1 h2, .heading--1 h3, .heading--1 h4, .heading--1 h5, .heading--1 h6, .heading--1.content-headline, .heading--1.ce_headline, h1 {
    --h1-font-size: var(--h1-font-size-xl);
  }
}

.card--overlay h2.card__headline, .ce_hero blockquote p, .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
  font-family: var(--h2-font-family);
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--h2-line-height);
  color: var(--h2-color);
  margin-top: var(--h2-spacing-top);
  margin-bottom: var(--h2-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .card--overlay h2.card__headline, .ce_hero blockquote p, .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .card--overlay h2.card__headline, .ce_hero blockquote p, .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .card--overlay h2.card__headline, .ce_hero blockquote p, .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .card--overlay h2.card__headline, .ce_hero blockquote p, .heading--2 h1, .heading--2 h2, .heading--2 h3, .heading--2 h4, .heading--2 h5, .heading--2 h6, .heading--2.content-headline, .heading--2.ce_headline, h2 {
    --h2-font-size: var(--h2-font-size-xl);
  }
}

.hofff-consent-privacy-settings .card legend,
.hofff-consent-privacy-settings .card ::marker, .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
  font-family: var(--h3-font-family);
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--h3-line-height);
  color: var(--h3-color);
  margin-top: var(--h3-spacing-top);
  margin-bottom: var(--h3-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .hofff-consent-privacy-settings .card legend,
  .hofff-consent-privacy-settings .card ::marker, .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .hofff-consent-privacy-settings .card legend,
  .hofff-consent-privacy-settings .card ::marker, .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .hofff-consent-privacy-settings .card legend,
  .hofff-consent-privacy-settings .card ::marker, .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .hofff-consent-privacy-settings .card legend,
  .hofff-consent-privacy-settings .card ::marker, .heading--3 h1, .heading--3 h2, .heading--3 h3, .heading--3 h4, .heading--3 h5, .heading--3 h6, .heading--3.content-headline, .heading--3.ce_headline, h3 {
    --h3-font-size: var(--h3-font-size-xl);
  }
}

.hofff-consent-content .hofff-consent-tag-title, .hofff-consent-root-headline, .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
  font-family: var(--h4-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--h4-line-height);
  color: var(--h4-color);
  margin-top: var(--h4-spacing-top);
  margin-bottom: var(--h4-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .hofff-consent-content .hofff-consent-tag-title, .hofff-consent-root-headline, .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .hofff-consent-content .hofff-consent-tag-title, .hofff-consent-root-headline, .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .hofff-consent-content .hofff-consent-tag-title, .hofff-consent-root-headline, .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .hofff-consent-content .hofff-consent-tag-title, .hofff-consent-root-headline, .heading--4 h1, .heading--4 h2, .heading--4 h3, .heading--4 h4, .heading--4 h5, .heading--4 h6, .heading--4.content-headline, .heading--4.ce_headline, h4 {
    --h4-font-size: var(--h4-font-size-xl);
  }
}

.text--highlight h3, .nav--highlight h2,
.nav--highlight h3,
.nav--element h2,
.nav--element h3, .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
  font-family: var(--h5-font-family);
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--h5-line-height);
  color: var(--h5-color);
  margin-top: var(--h5-spacing-top);
  margin-bottom: var(--h5-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .text--highlight h3, .nav--highlight h2,
  .nav--highlight h3,
  .nav--element h2,
  .nav--element h3, .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .text--highlight h3, .nav--highlight h2,
  .nav--highlight h3,
  .nav--element h2,
  .nav--element h3, .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .text--highlight h3, .nav--highlight h2,
  .nav--highlight h3,
  .nav--element h2,
  .nav--element h3, .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .text--highlight h3, .nav--highlight h2,
  .nav--highlight h3,
  .nav--element h2,
  .nav--element h3, .heading--5 h1, .heading--5 h2, .heading--5 h3, .heading--5 h4, .heading--5 h5, .heading--5 h6, .heading--5.content-headline, .heading--5.ce_headline, h5 {
    --h5-font-size: var(--h5-font-size-xl);
  }
}

.heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
  font-family: var(--h6-font-family);
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--h6-line-height);
  color: var(--h6-color);
  margin-top: var(--h6-spacing-top);
  margin-bottom: var(--h6-spacing-bottom);
}
@media screen and (min-width: 34.375em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-sm);
  }
}
@media screen and (min-width: 48em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-md);
  }
}
@media screen and (min-width: 58.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-lg);
  }
}
@media screen and (min-width: 68.75em) {
  .heading--6 h1, .heading--6 h2, .heading--6 h3, .heading--6 h4, .heading--6 h5, .heading--6 h6, .heading--6.content-headline, .heading--6.ce_headline, h6 {
    --h6-font-size: var(--h6-font-size-xl);
  }
}

p,
ul,
ol {
  margin-top: 0;
}
p a,
ul a,
ol a {
  -webkit-text-decoration: var(--paragraph-link-decoration);
  text-decoration: var(--paragraph-link-decoration);
}
p a:hover,
ul a:hover,
ol a:hover {
  --paragraph-link-decoration: var(--paragraph-link-decoration-hover);
}
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

code {
  color: var(--code-color);
}

pre {
  padding: 1rem;
  background: var(--pre-color-background);
  color: var(--pre-color);
  overflow-x: scroll;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: var(--hr-border);
}

.li--block {
  margin-bottom: 1rem;
}

.ce_text,
.content-text {
  margin-bottom: var(--base-spacing-unit);
}

::-moz-selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

::selection {
  background: var(--selection-background);
  color: var(--selection-color);
  opacity: 1;
}

strong {
  font-weight: 600;
}

ul {
  list-style-type: square;
  margin-left: 0;
  padding-left: 1rem;
}

.content-text:first-child .ce_hero blockquote p, .ce_hero blockquote .content-text:first-child p, .content-text:first-child h2, .content-text:first-child .heading--2.ce_headline, .content-text:first-child .heading--2.content-headline, .content-text:first-child .heading--2 h1, .heading--2 .content-text:first-child h1, .content-text:first-child .heading--2 h3, .heading--2 .content-text:first-child h3, .content-text:first-child .heading--2 h4, .heading--2 .content-text:first-child h4, .content-text:first-child .heading--2 h5, .heading--2 .content-text:first-child h5, .content-text:first-child .heading--2 h6, .heading--2 .content-text:first-child h6 {
  --h2-spacing-top: 0;
}

.row {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}

.row--gap-y {
  row-gap: var(--grid-gutter);
}

.article-xl-12 > .inside > *, .article-xl-11 > .inside > *, .article-xl-10 > .inside > *, .article-xl-9 > .inside > *, .article-xl-8 > .inside > *, .article-xl-7 > .inside > *, .article-xl-6 > .inside > *, .article-xl-5 > .inside > *, .article-xl-4 > .inside > *, .article-xl-3 > .inside > *, .article-xl-2 > .inside > *, .article-xl-1 > .inside > *, .article-lg-12 > .inside > *, .article-lg-11 > .inside > *, .article-lg-10 > .inside > *, .article-lg-9 > .inside > *, .article-lg-8 > .inside > *, .article-lg-7 > .inside > *, .article-lg-6 > .inside > *, .article-lg-5 > .inside > *, .article-lg-4 > .inside > *, .article-lg-3 > .inside > *, .article-lg-2 > .inside > *, .article-lg-1 > .inside > *, .article-md-12 > .inside > *, .article-md-11 > .inside > *, .article-md-10 > .inside > *, .article-md-9 > .inside > *, .article-md-8 > .inside > *, .article-md-7 > .inside > *, .article-md-6 > .inside > *, .article-md-5 > .inside > *, .article-md-4 > .inside > *, .article-md-3 > .inside > *, .article-md-2 > .inside > *, .article-md-1 > .inside > *, .article-sm-12 > .inside > *, .article-sm-11 > .inside > *, .article-sm-10 > .inside > *, .article-sm-9 > .inside > *, .article-sm-8 > .inside > *, .article-sm-7 > .inside > *, .article-sm-6 > .inside > *, .article-sm-5 > .inside > *, .article-sm-4 > .inside > *, .article-sm-3 > .inside > *, .article-sm-2 > .inside > *, .article-sm-1 > .inside > *, .article-xs-12 > .inside > *, .article-xs-11 > .inside > *, .article-xs-10 > .inside > *, .article-xs-9 > .inside > *, .article-xs-8 > .inside > *, .article-xs-7 > .inside > *, .article-xs-6 > .inside > *, .article-xs-5 > .inside > *, .article-xs-4 > .inside > *, .article-xs-3 > .inside > *, .article-xs-2 > .inside > *, .article-xs-1 > .inside > *, .ce_gallery > ul li, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  display: grid;
  grid-column: 1/-1;
  max-width: 100%;
}
@supports not (display: grid) {
  .article-xl-12 > .inside > *, .article-xl-11 > .inside > *, .article-xl-10 > .inside > *, .article-xl-9 > .inside > *, .article-xl-8 > .inside > *, .article-xl-7 > .inside > *, .article-xl-6 > .inside > *, .article-xl-5 > .inside > *, .article-xl-4 > .inside > *, .article-xl-3 > .inside > *, .article-xl-2 > .inside > *, .article-xl-1 > .inside > *, .article-lg-12 > .inside > *, .article-lg-11 > .inside > *, .article-lg-10 > .inside > *, .article-lg-9 > .inside > *, .article-lg-8 > .inside > *, .article-lg-7 > .inside > *, .article-lg-6 > .inside > *, .article-lg-5 > .inside > *, .article-lg-4 > .inside > *, .article-lg-3 > .inside > *, .article-lg-2 > .inside > *, .article-lg-1 > .inside > *, .article-md-12 > .inside > *, .article-md-11 > .inside > *, .article-md-10 > .inside > *, .article-md-9 > .inside > *, .article-md-8 > .inside > *, .article-md-7 > .inside > *, .article-md-6 > .inside > *, .article-md-5 > .inside > *, .article-md-4 > .inside > *, .article-md-3 > .inside > *, .article-md-2 > .inside > *, .article-md-1 > .inside > *, .article-sm-12 > .inside > *, .article-sm-11 > .inside > *, .article-sm-10 > .inside > *, .article-sm-9 > .inside > *, .article-sm-8 > .inside > *, .article-sm-7 > .inside > *, .article-sm-6 > .inside > *, .article-sm-5 > .inside > *, .article-sm-4 > .inside > *, .article-sm-3 > .inside > *, .article-sm-2 > .inside > *, .article-sm-1 > .inside > *, .article-xs-12 > .inside > *, .article-xs-11 > .inside > *, .article-xs-10 > .inside > *, .article-xs-9 > .inside > *, .article-xs-8 > .inside > *, .article-xs-7 > .inside > *, .article-xs-6 > .inside > *, .article-xs-5 > .inside > *, .article-xs-4 > .inside > *, .article-xs-3 > .inside > *, .article-xs-2 > .inside > *, .article-xs-1 > .inside > *, .ce_gallery > ul li, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}

.col {
  grid-column: 1/-1;
}

.col-1 {
  grid-column: span 1/span 1;
}
@supports not (display: grid) {
  .col-1 {
    width: 8.3333333333%;
  }
}

.row-start-1 {
  grid-row-start: 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-2 {
  grid-column: span 2/span 2;
}
@supports not (display: grid) {
  .col-2 {
    width: 16.6666666667%;
  }
}

.row-start-2 {
  grid-row-start: 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-3 {
  grid-column: span 3/span 3;
}
@supports not (display: grid) {
  .col-3 {
    width: 25%;
  }
}

.row-start-3 {
  grid-row-start: 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-4 {
  grid-column: span 4/span 4;
}
@supports not (display: grid) {
  .col-4 {
    width: 33.3333333333%;
  }
}

.row-start-4 {
  grid-row-start: 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-5 {
  grid-column: span 5/span 5;
}
@supports not (display: grid) {
  .col-5 {
    width: 41.6666666667%;
  }
}

.row-start-5 {
  grid-row-start: 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-6 {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .col-6 {
    width: 50%;
  }
}

.row-start-6 {
  grid-row-start: 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-7 {
  grid-column: span 7/span 7;
}
@supports not (display: grid) {
  .col-7 {
    width: 58.3333333333%;
  }
}

.row-start-7 {
  grid-row-start: 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-8 {
  grid-column: span 8/span 8;
}
@supports not (display: grid) {
  .col-8 {
    width: 66.6666666667%;
  }
}

.row-start-8 {
  grid-row-start: 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-9 {
  grid-column: span 9/span 9;
}
@supports not (display: grid) {
  .col-9 {
    width: 75%;
  }
}

.row-start-9 {
  grid-row-start: 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-10 {
  grid-column: span 10/span 10;
}
@supports not (display: grid) {
  .col-10 {
    width: 83.3333333333%;
  }
}

.row-start-10 {
  grid-row-start: 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-11 {
  grid-column: span 11/span 11;
}
@supports not (display: grid) {
  .col-11 {
    width: 91.6666666667%;
  }
}

.row-start-11 {
  grid-row-start: 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-12 {
  grid-column: span 12/span 12;
}
@supports not (display: grid) {
  .col-12 {
    width: 100%;
  }
}

.row-start-12 {
  grid-row-start: 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

@media screen and (min-width: 0) {
  .col-xs-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-xs-1 {
      width: 8.3333333333%;
    }
  }
  .col-xs-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-xs-2 {
      width: 16.6666666667%;
    }
  }
  .col-xs-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-xs-3 {
      width: 25%;
    }
  }
  .col-xs-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-xs-4 {
      width: 33.3333333333%;
    }
  }
  .col-xs-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-xs-5 {
      width: 41.6666666667%;
    }
  }
  .col-xs-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-xs-6 {
      width: 50%;
    }
  }
  .col-xs-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-xs-7 {
      width: 58.3333333333%;
    }
  }
  .col-xs-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-xs-8 {
      width: 66.6666666667%;
    }
  }
  .col-xs-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-xs-9 {
      width: 75%;
    }
  }
  .col-xs-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-xs-10 {
      width: 83.3333333333%;
    }
  }
  .col-xs-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-xs-11 {
      width: 91.6666666667%;
    }
  }
  .col-xs-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-xs-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 0) {
  .row-span-xs-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xs-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xs-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xs-4 {
    grid-row: span 4/span 4;
  }
  .row-span-xs-5 {
    grid-row: span 5/span 5;
  }
  .row-span-xs-6 {
    grid-row: span 6/span 6;
  }
  .row-span-xs-7 {
    grid-row: span 7/span 7;
  }
  .row-span-xs-8 {
    grid-row: span 8/span 8;
  }
  .row-span-xs-9 {
    grid-row: span 9/span 9;
  }
  .row-span-xs-10 {
    grid-row: span 10/span 10;
  }
  .row-span-xs-11 {
    grid-row: span 11/span 11;
  }
  .row-span-xs-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 0) {
  .col-start-xs-1 {
    grid-column-start: 1;
  }
  .row-start-xs-1 {
    grid-row-start: 1;
  }
  .col-start-xs-2 {
    grid-column-start: 2;
  }
  .row-start-xs-2 {
    grid-row-start: 2;
  }
  .col-start-xs-3 {
    grid-column-start: 3;
  }
  .row-start-xs-3 {
    grid-row-start: 3;
  }
  .col-start-xs-4 {
    grid-column-start: 4;
  }
  .row-start-xs-4 {
    grid-row-start: 4;
  }
  .col-start-xs-5 {
    grid-column-start: 5;
  }
  .row-start-xs-5 {
    grid-row-start: 5;
  }
  .col-start-xs-6 {
    grid-column-start: 6;
  }
  .row-start-xs-6 {
    grid-row-start: 6;
  }
  .col-start-xs-7 {
    grid-column-start: 7;
  }
  .row-start-xs-7 {
    grid-row-start: 7;
  }
  .col-start-xs-8 {
    grid-column-start: 8;
  }
  .row-start-xs-8 {
    grid-row-start: 8;
  }
  .col-start-xs-9 {
    grid-column-start: 9;
  }
  .row-start-xs-9 {
    grid-row-start: 9;
  }
  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .row-start-xs-10 {
    grid-row-start: 10;
  }
  .col-start-xs-11 {
    grid-column-start: 11;
  }
  .row-start-xs-11 {
    grid-row-start: 11;
  }
  .col-start-xs-12 {
    grid-column-start: 12;
  }
  .row-start-xs-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 0) {
  .pull-right-xs {
    grid-column-end: -1;
  }
  .pull-left-xs {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-sm-1 {
      width: 8.3333333333%;
    }
  }
  .col-sm-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-sm-2 {
      width: 16.6666666667%;
    }
  }
  .col-sm-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-sm-3 {
      width: 25%;
    }
  }
  .col-sm-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-sm-4 {
      width: 33.3333333333%;
    }
  }
  .col-sm-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-sm-5 {
      width: 41.6666666667%;
    }
  }
  .col-sm-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-sm-6 {
      width: 50%;
    }
  }
  .col-sm-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-sm-7 {
      width: 58.3333333333%;
    }
  }
  .col-sm-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-sm-8 {
      width: 66.6666666667%;
    }
  }
  .col-sm-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-sm-9 {
      width: 75%;
    }
  }
  .col-sm-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-sm-10 {
      width: 83.3333333333%;
    }
  }
  .col-sm-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-sm-11 {
      width: 91.6666666667%;
    }
  }
  .col-sm-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-sm-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 34.375em) {
  .row-span-sm-1 {
    grid-row: span 1/span 1;
  }
  .row-span-sm-2 {
    grid-row: span 2/span 2;
  }
  .row-span-sm-3 {
    grid-row: span 3/span 3;
  }
  .row-span-sm-4 {
    grid-row: span 4/span 4;
  }
  .row-span-sm-5 {
    grid-row: span 5/span 5;
  }
  .row-span-sm-6 {
    grid-row: span 6/span 6;
  }
  .row-span-sm-7 {
    grid-row: span 7/span 7;
  }
  .row-span-sm-8 {
    grid-row: span 8/span 8;
  }
  .row-span-sm-9 {
    grid-row: span 9/span 9;
  }
  .row-span-sm-10 {
    grid-row: span 10/span 10;
  }
  .row-span-sm-11 {
    grid-row: span 11/span 11;
  }
  .row-span-sm-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 34.375em) {
  .col-start-sm-1 {
    grid-column-start: 1;
  }
  .row-start-sm-1 {
    grid-row-start: 1;
  }
  .col-start-sm-2 {
    grid-column-start: 2;
  }
  .row-start-sm-2 {
    grid-row-start: 2;
  }
  .col-start-sm-3 {
    grid-column-start: 3;
  }
  .row-start-sm-3 {
    grid-row-start: 3;
  }
  .col-start-sm-4 {
    grid-column-start: 4;
  }
  .row-start-sm-4 {
    grid-row-start: 4;
  }
  .col-start-sm-5 {
    grid-column-start: 5;
  }
  .row-start-sm-5 {
    grid-row-start: 5;
  }
  .col-start-sm-6 {
    grid-column-start: 6;
  }
  .row-start-sm-6 {
    grid-row-start: 6;
  }
  .col-start-sm-7 {
    grid-column-start: 7;
  }
  .row-start-sm-7 {
    grid-row-start: 7;
  }
  .col-start-sm-8 {
    grid-column-start: 8;
  }
  .row-start-sm-8 {
    grid-row-start: 8;
  }
  .col-start-sm-9 {
    grid-column-start: 9;
  }
  .row-start-sm-9 {
    grid-row-start: 9;
  }
  .col-start-sm-10 {
    grid-column-start: 10;
  }
  .row-start-sm-10 {
    grid-row-start: 10;
  }
  .col-start-sm-11 {
    grid-column-start: 11;
  }
  .row-start-sm-11 {
    grid-row-start: 11;
  }
  .col-start-sm-12 {
    grid-column-start: 12;
  }
  .row-start-sm-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    grid-column-end: -1;
  }
  .pull-left-sm {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 48em) {
  .col-md-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-md-1 {
      width: 8.3333333333%;
    }
  }
  .col-md-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-md-2 {
      width: 16.6666666667%;
    }
  }
  .col-md-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-md-3 {
      width: 25%;
    }
  }
  .col-md-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-md-4 {
      width: 33.3333333333%;
    }
  }
  .col-md-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-md-5 {
      width: 41.6666666667%;
    }
  }
  .col-md-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-md-6 {
      width: 50%;
    }
  }
  .col-md-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-md-7 {
      width: 58.3333333333%;
    }
  }
  .col-md-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-md-8 {
      width: 66.6666666667%;
    }
  }
  .col-md-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-md-9 {
      width: 75%;
    }
  }
  .col-md-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-md-10 {
      width: 83.3333333333%;
    }
  }
  .col-md-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-md-11 {
      width: 91.6666666667%;
    }
  }
  .col-md-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-md-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 48em) {
  .row-span-md-1 {
    grid-row: span 1/span 1;
  }
  .row-span-md-2 {
    grid-row: span 2/span 2;
  }
  .row-span-md-3 {
    grid-row: span 3/span 3;
  }
  .row-span-md-4 {
    grid-row: span 4/span 4;
  }
  .row-span-md-5 {
    grid-row: span 5/span 5;
  }
  .row-span-md-6 {
    grid-row: span 6/span 6;
  }
  .row-span-md-7 {
    grid-row: span 7/span 7;
  }
  .row-span-md-8 {
    grid-row: span 8/span 8;
  }
  .row-span-md-9 {
    grid-row: span 9/span 9;
  }
  .row-span-md-10 {
    grid-row: span 10/span 10;
  }
  .row-span-md-11 {
    grid-row: span 11/span 11;
  }
  .row-span-md-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 48em) {
  .col-start-md-1 {
    grid-column-start: 1;
  }
  .row-start-md-1 {
    grid-row-start: 1;
  }
  .col-start-md-2 {
    grid-column-start: 2;
  }
  .row-start-md-2 {
    grid-row-start: 2;
  }
  .col-start-md-3 {
    grid-column-start: 3;
  }
  .row-start-md-3 {
    grid-row-start: 3;
  }
  .col-start-md-4 {
    grid-column-start: 4;
  }
  .row-start-md-4 {
    grid-row-start: 4;
  }
  .col-start-md-5 {
    grid-column-start: 5;
  }
  .row-start-md-5 {
    grid-row-start: 5;
  }
  .col-start-md-6 {
    grid-column-start: 6;
  }
  .row-start-md-6 {
    grid-row-start: 6;
  }
  .col-start-md-7 {
    grid-column-start: 7;
  }
  .row-start-md-7 {
    grid-row-start: 7;
  }
  .col-start-md-8 {
    grid-column-start: 8;
  }
  .row-start-md-8 {
    grid-row-start: 8;
  }
  .col-start-md-9 {
    grid-column-start: 9;
  }
  .row-start-md-9 {
    grid-row-start: 9;
  }
  .col-start-md-10 {
    grid-column-start: 10;
  }
  .row-start-md-10 {
    grid-row-start: 10;
  }
  .col-start-md-11 {
    grid-column-start: 11;
  }
  .row-start-md-11 {
    grid-row-start: 11;
  }
  .col-start-md-12 {
    grid-column-start: 12;
  }
  .row-start-md-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 48em) {
  .pull-right-md {
    grid-column-end: -1;
  }
  .pull-left-md {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-lg-1 {
      width: 8.3333333333%;
    }
  }
  .col-lg-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-lg-2 {
      width: 16.6666666667%;
    }
  }
  .col-lg-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-lg-3 {
      width: 25%;
    }
  }
  .col-lg-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-lg-4 {
      width: 33.3333333333%;
    }
  }
  .col-lg-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-lg-5 {
      width: 41.6666666667%;
    }
  }
  .col-lg-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-lg-6 {
      width: 50%;
    }
  }
  .col-lg-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-lg-7 {
      width: 58.3333333333%;
    }
  }
  .col-lg-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-lg-8 {
      width: 66.6666666667%;
    }
  }
  .col-lg-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-lg-9 {
      width: 75%;
    }
  }
  .col-lg-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-lg-10 {
      width: 83.3333333333%;
    }
  }
  .col-lg-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-lg-11 {
      width: 91.6666666667%;
    }
  }
  .col-lg-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-lg-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 58.75em) {
  .row-span-lg-1 {
    grid-row: span 1/span 1;
  }
  .row-span-lg-2 {
    grid-row: span 2/span 2;
  }
  .row-span-lg-3 {
    grid-row: span 3/span 3;
  }
  .row-span-lg-4 {
    grid-row: span 4/span 4;
  }
  .row-span-lg-5 {
    grid-row: span 5/span 5;
  }
  .row-span-lg-6 {
    grid-row: span 6/span 6;
  }
  .row-span-lg-7 {
    grid-row: span 7/span 7;
  }
  .row-span-lg-8 {
    grid-row: span 8/span 8;
  }
  .row-span-lg-9 {
    grid-row: span 9/span 9;
  }
  .row-span-lg-10 {
    grid-row: span 10/span 10;
  }
  .row-span-lg-11 {
    grid-row: span 11/span 11;
  }
  .row-span-lg-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 58.75em) {
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  .row-start-lg-1 {
    grid-row-start: 1;
  }
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  .row-start-lg-2 {
    grid-row-start: 2;
  }
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  .row-start-lg-3 {
    grid-row-start: 3;
  }
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  .row-start-lg-4 {
    grid-row-start: 4;
  }
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  .row-start-lg-5 {
    grid-row-start: 5;
  }
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  .row-start-lg-6 {
    grid-row-start: 6;
  }
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  .row-start-lg-7 {
    grid-row-start: 7;
  }
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  .row-start-lg-8 {
    grid-row-start: 8;
  }
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  .row-start-lg-9 {
    grid-row-start: 9;
  }
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  .row-start-lg-10 {
    grid-row-start: 10;
  }
  .col-start-lg-11 {
    grid-column-start: 11;
  }
  .row-start-lg-11 {
    grid-row-start: 11;
  }
  .col-start-lg-12 {
    grid-column-start: 12;
  }
  .row-start-lg-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    grid-column-end: -1;
  }
  .pull-left-lg {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    grid-column: span 1/span 1;
  }
  @supports not (display: grid) {
    .col-xl-1 {
      width: 8.3333333333%;
    }
  }
  .col-xl-2 {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .col-xl-2 {
      width: 16.6666666667%;
    }
  }
  .col-xl-3 {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .col-xl-3 {
      width: 25%;
    }
  }
  .col-xl-4 {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .col-xl-4 {
      width: 33.3333333333%;
    }
  }
  .col-xl-5 {
    grid-column: span 5/span 5;
  }
  @supports not (display: grid) {
    .col-xl-5 {
      width: 41.6666666667%;
    }
  }
  .col-xl-6 {
    grid-column: span 6/span 6;
  }
  @supports not (display: grid) {
    .col-xl-6 {
      width: 50%;
    }
  }
  .col-xl-7 {
    grid-column: span 7/span 7;
  }
  @supports not (display: grid) {
    .col-xl-7 {
      width: 58.3333333333%;
    }
  }
  .col-xl-8 {
    grid-column: span 8/span 8;
  }
  @supports not (display: grid) {
    .col-xl-8 {
      width: 66.6666666667%;
    }
  }
  .col-xl-9 {
    grid-column: span 9/span 9;
  }
  @supports not (display: grid) {
    .col-xl-9 {
      width: 75%;
    }
  }
  .col-xl-10 {
    grid-column: span 10/span 10;
  }
  @supports not (display: grid) {
    .col-xl-10 {
      width: 83.3333333333%;
    }
  }
  .col-xl-11 {
    grid-column: span 11/span 11;
  }
  @supports not (display: grid) {
    .col-xl-11 {
      width: 91.6666666667%;
    }
  }
  .col-xl-12 {
    grid-column: span 12/span 12;
  }
  @supports not (display: grid) {
    .col-xl-12 {
      width: 100%;
    }
  }
}
@media screen and (min-width: 68.75em) {
  .row-span-xl-1 {
    grid-row: span 1/span 1;
  }
  .row-span-xl-2 {
    grid-row: span 2/span 2;
  }
  .row-span-xl-3 {
    grid-row: span 3/span 3;
  }
  .row-span-xl-4 {
    grid-row: span 4/span 4;
  }
  .row-span-xl-5 {
    grid-row: span 5/span 5;
  }
  .row-span-xl-6 {
    grid-row: span 6/span 6;
  }
  .row-span-xl-7 {
    grid-row: span 7/span 7;
  }
  .row-span-xl-8 {
    grid-row: span 8/span 8;
  }
  .row-span-xl-9 {
    grid-row: span 9/span 9;
  }
  .row-span-xl-10 {
    grid-row: span 10/span 10;
  }
  .row-span-xl-11 {
    grid-row: span 11/span 11;
  }
  .row-span-xl-12 {
    grid-row: span 12/span 12;
  }
}
@media screen and (min-width: 68.75em) {
  .col-start-xl-1 {
    grid-column-start: 1;
  }
  .row-start-xl-1 {
    grid-row-start: 1;
  }
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  .row-start-xl-2 {
    grid-row-start: 2;
  }
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  .row-start-xl-3 {
    grid-row-start: 3;
  }
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  .row-start-xl-4 {
    grid-row-start: 4;
  }
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  .row-start-xl-5 {
    grid-row-start: 5;
  }
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  .row-start-xl-6 {
    grid-row-start: 6;
  }
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  .row-start-xl-7 {
    grid-row-start: 7;
  }
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  .row-start-xl-8 {
    grid-row-start: 8;
  }
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  .row-start-xl-9 {
    grid-row-start: 9;
  }
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  .row-start-xl-10 {
    grid-row-start: 10;
  }
  .col-start-xl-11 {
    grid-column-start: 11;
  }
  .row-start-xl-11 {
    grid-row-start: 11;
  }
  .col-start-xl-12 {
    grid-column-start: 12;
  }
  .row-start-xl-12 {
    grid-row-start: 12;
  }
}
@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    grid-column-end: -1;
  }
  .pull-left-xl {
    grid-row-start: 1;
    grid-column-end: inherit;
  }
}
.justify-start {
  justify-self: start;
  text-align: left;
}

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

.justify-end {
  justify-self: end;
  text-align: right;
}

@media screen and (min-width: 0) {
  .justify-xs-start {
    justify-self: start;
    text-align: left;
  }
  .justify-xs-center {
    justify-self: center;
    text-align: center;
  }
  .justify-xs-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 34.375em) {
  .justify-sm-start {
    justify-self: start;
    text-align: left;
  }
  .justify-sm-center {
    justify-self: center;
    text-align: center;
  }
  .justify-sm-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 48em) {
  .justify-md-start {
    justify-self: start;
    text-align: left;
  }
  .justify-md-center {
    justify-self: center;
    text-align: center;
  }
  .justify-md-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 58.75em) {
  .justify-lg-start {
    justify-self: start;
    text-align: left;
  }
  .justify-lg-center {
    justify-self: center;
    text-align: center;
  }
  .justify-lg-end {
    justify-self: end;
    text-align: right;
  }
}
@media screen and (min-width: 68.75em) {
  .justify-xl-start {
    justify-self: start;
    text-align: left;
  }
  .justify-xl-center {
    justify-self: center;
    text-align: center;
  }
  .justify-xl-end {
    justify-self: end;
    text-align: right;
  }
}
.align-start {
  -ms-flex-item-align: start;
  align-self: start;
}

.align-center {
  -ms-flex-item-align: center;
  align-self: center;
}

.align-end {
  -ms-flex-item-align: end;
  align-self: end;
}

@media screen and (min-width: 0) {
  .align-xs-start {
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-xs-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-xs-end {
    -ms-flex-item-align: end;
    align-self: end;
  }
}
@media screen and (min-width: 34.375em) {
  .align-sm-start {
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-sm-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-sm-end {
    -ms-flex-item-align: end;
    align-self: end;
  }
}
@media screen and (min-width: 48em) {
  .align-md-start {
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-md-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-md-end {
    -ms-flex-item-align: end;
    align-self: end;
  }
}
@media screen and (min-width: 58.75em) {
  .align-lg-start {
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-lg-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-lg-end {
    -ms-flex-item-align: end;
    align-self: end;
  }
}
@media screen and (min-width: 68.75em) {
  .align-xl-start {
    -ms-flex-item-align: start;
    align-self: start;
  }
  .align-xl-center {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .align-xl-end {
    -ms-flex-item-align: end;
    align-self: end;
  }
}
.row {
  row-gap: var(--grid-gutter);
}
.row .row {
  --grid-gutter: 1rem;
}

.row--nav {
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  row-gap: 0;
}

[id=wrapper] {
  min-height: 100vh;
  display: grid;
  grid-template-rows: -webkit-min-content auto -webkit-min-content;
  grid-template-rows: min-content auto min-content;
  grid-template-columns: 100%;
  margin-left: auto;
  margin-right: auto;
  background: var(--layout-wrapper-background);
}

[id=header] {
  background: var(--layout-header-background);
  color: var(--layout-header-color);
}
[id=header] > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
}

[id=footer] {
  background: var(--layout-footer-background);
  color: var(--layout-footer-color);
}
[id=footer] > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
}

[id=topbar] {
  position: sticky;
  top: 0;
  z-index: 1005;
  background-color: var(--layout-topbar-background);
}
@media screen and (min-width: 48em) {
  [id=topbar] {
    position: absolute;
    left: 0;
    right: 0;
    background-color: transparent;
    pointer-events: none;
  }
}
[id=topbar] > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
  display: grid;
  grid-template-columns: auto auto;
  padding-top: 0.33rem;
  padding-bottom: 0.33rem;
}
@media screen and (min-width: 48em) {
  [id=topbar] > .inside {
    grid-template-columns: auto;
  }
}

[id=header] {
  z-index: 1004;
}
[id=header] > .inside {
  display: grid;
}
@media screen and (min-width: 48em) {
  [id=header] > .inside {
    grid-template-columns: 1fr auto;
    position: relative;
  }
}
[id=header] > .inside .mod_article {
  z-index: -1;
}
@media screen and (min-width: 48em) {
  [id=header] > .inside .mod_article {
    grid-column: 1/3;
  }
}
[id=header] > .inside .mod_article > .inside {
  padding: 0;
}
[id=header]::before {
  position: fixed;
  inset: 0;
  background-color: transparent;
  z-index: 1001;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 47.99875em) {
  .html--fixed [id=header]::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@media screen and (min-width: 48em) {
  [id=main] > .inside nav:not(:first-child) {
    margin-top: 1.25rem;
  }
}

[id=footer] > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  [id=footer] > .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
[id=footer] > .inside::before {
  content: "";
  display: block;
  grid-column: 1/-1;
  border-top: var(--layout-footer-border);
  padding-top: 1.5rem;
}

.footer__address,
.footer__openinghours,
.footer__copyright {
  font-size: 0.8rem;
  font-style: normal;
}
.footer__address .headline,
.footer__openinghours .headline,
.footer__copyright .headline {
  font-weight: 400;
}
.footer__address p,
.footer__openinghours p,
.footer__copyright p {
  margin-bottom: 0.6rem;
}

.footer__openinghours {
  -ms-flex-item-align: start;
  align-self: start;
  display: table;
}
.footer__openinghours [itemprop=openingHours] {
  display: table-row;
}
.footer__openinghours .day,
.footer__openinghours .time {
  display: table-cell;
}
.footer__openinghours .day {
  width: 1px;
  padding-right: 0.5rem;
}
.footer__openinghours br {
  display: none;
}

.footer__copyright {
  grid-column: 1/-1;
  border-top: var(--layout-footer-border);
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
  font-weight: 400;
  font-size: 0.7rem;
}

.two-column [id=container] {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .two-column [id=container] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
.two-column [id=main] {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .two-column [id=main] {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.two-column [id=main] {
  grid-column: span 8/span 8;
}
@supports not (display: grid) {
  .two-column [id=main] {
    width: 66.6666666667%;
  }
}
.two-column [id=main] {
  grid-column-start: 5;
}
.two-column [id=left] {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .two-column [id=left] {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.two-column [id=left] {
  grid-column: span 4/span 4;
}
@supports not (display: grid) {
  .two-column [id=left] {
    width: 33.3333333333%;
  }
}
.two-column [id=left] {
  grid-row: 1;
}
.two-column [id=left] > .inside {
  padding-top: var(--left-spacing-top);
  padding-bottom: var(--left-spacing-bottom);
}
.two-column .mod_article > .inside {
  padding-left: 0;
  padding-right: 0;
}

.mod_article {
  position: relative;
}
.mod_article > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
  padding-top: var(--article-spacing-top);
  padding-bottom: var(--article-spacing-bottom);
}

.article--full > .inside {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.mod_article {
  background-color: var(--color-page-background);
}
.mod_article .article__image {
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mod_article .article__image .image_container {
  height: 100%;
}
.mod_article .article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.mod_article .article__image.left_center img {
  -o-object-position: left center;
  object-position: left center;
}
.mod_article .article__image.right_center img {
  -o-object-position: right center;
  object-position: right center;
}
.mod_article .article__image.right_bottom img {
  -o-object-position: right bottom;
  object-position: right bottom;
}
.mod_article .article__image + .inside {
  position: relative;
  z-index: 1;
}

.article--tint {
  background-color: var(--article-tint-background);
}

.article--highlight {
  --h1-color: var(--color-text-inverted);
  --h2-color: var(--color-text-inverted);
  --h3-color: var(--color-text-inverted);
  background-color: var(--article-highlight-background);
  color: var(--article-highlight-color);
}

.article--white-to-gray {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--color-page-background)), color-stop(25%, var(--color-page-background)), color-stop(25%, var(--article-tint-background)), to(var(--article-tint-background)));
  background: linear-gradient(var(--color-page-background) 0, var(--color-page-background) 25%, var(--article-tint-background) 25%, var(--article-tint-background) 100%);
}

.container--highlight {
  --grid-columns: 10;
  position: relative;
  background: var(--color-page-background);
  border: 3px solid var(--color-brand);
  padding: 1rem;
}
@media screen and (min-width: 48em) {
  .container--highlight {
    padding: 2rem 1rem 1rem;
  }
}
.container--highlight > div {
  max-width: 52rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image--left img {
  text-align: left;
  margin-left: 0;
}

.image--right img {
  text-align: right;
  margin-right: 0;
}

.image--center img {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ce_gallery {
  margin-bottom: var(--base-spacing-unit);
}
.ce_gallery > ul {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .ce_gallery > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
.ce_gallery > ul {
  grid-row-gap: var(--gallery-gutter);
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.ce_gallery .cols_2 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_2 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_2 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_2 li {
    width: 50%;
  }
}
.ce_gallery .cols_3 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_3 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_3 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_3 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_3 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_3 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_3 li {
    grid-column: span 4/span 4;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_3 li {
      width: 33.3333333333%;
    }
  }
}
.ce_gallery .cols_4 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_4 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_4 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_4 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_4 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_4 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_4 li {
    grid-column: span 3/span 3;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_4 li {
      width: 25%;
    }
  }
}
.ce_gallery .cols_5 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_5 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_5 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_5 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_5 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_5 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_5 li {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_5 li {
      width: 16.6666666667%;
    }
  }
}
.ce_gallery .cols_6 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .ce_gallery .cols_6 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.ce_gallery .cols_6 li {
  grid-column: span 6/span 6;
}
@supports not (display: grid) {
  .ce_gallery .cols_6 li {
    width: 50%;
  }
}
@media screen and (min-width: 48em) {
  .ce_gallery .cols_6 li {
    grid-column: 1/-1;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_6 li {
      padding-left: var(--grid-gutter-half);
      padding-right: var(--grid-gutter-half);
    }
  }
  .ce_gallery .cols_6 li {
    grid-column: span 2/span 2;
  }
  @supports not (display: grid) {
    .ce_gallery .cols_6 li {
      width: 16.6666666667%;
    }
  }
}
.ce_gallery img {
  display: block;
}

.content-gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.content-gallery a {
  text-decoration: none;
}
.content-gallery {
  margin-bottom: var(--base-spacing-unit);
}
.content-gallery ul {
  grid-row-gap: var(--gallery-gutter);
}
.content-gallery--cols-2 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
.content-gallery--cols-3 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-3 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-3 ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-4 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-4 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-4 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-4 ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-5 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-5 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-5 ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-5 ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery--cols-6 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: var(--grid-gutter);
  grid-auto-columns: 1fr;
}
@supports not (display: grid) {
  .content-gallery--cols-6 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(-1 * var(--grid-gutter) / 2);
    margin-right: calc(-1 * var(--grid-gutter) / 2);
  }
}
@media screen and (min-width: 48em) {
  .content-gallery--cols-6 ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: var(--grid-gutter);
    grid-auto-columns: 1fr;
  }
  @supports not (display: grid) {
    .content-gallery--cols-6 ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: calc(-1 * var(--grid-gutter) / 2);
      margin-right: calc(-1 * var(--grid-gutter) / 2);
    }
  }
}
.content-gallery img {
  display: block;
}

.ce_player .video_container,
.ce_youtube .video_container {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.content-player figure:has(video),
.content-player figure:has(iframe),
.content-youtube figure:has(video),
.content-youtube figure:has(iframe) {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}

.ce_player video,
.content-player video {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}

.ce_youtube iframe,
.ce_youtube a,
.content-youtube iframe,
.content-youtube a {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
}
.ce_youtube button,
.content-youtube button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
}
.ce_youtube button img,
.content-youtube button img {
  grid-column: 1/-1;
  grid-row: 1;
}
.ce_youtube button p,
.content-youtube button p {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding: var(--base-spacing-unit);
  background: var(--base-overlay-background);
  color: var(--color-text-inverted);
}

.content-image {
  margin-bottom: var(--base-spacing-unit);
}
.content-image figcaption {
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--color-gray-2);
}
.article--highlight .content-image figcaption {
  color: var(--color-text-inverted);
}

.media.media--left figure, .media.media--right figure {
  max-width: 50%;
  margin-top: var(--base-spacing-unit-sm);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 48em) {
  .media.media--left figure, .media.media--right figure {
    max-width: 100%;
  }
}
.media.media--left figure {
  float: left;
  margin-right: var(--base-spacing-unit);
}
.media.media--right figure {
  float: right;
  margin-left: var(--base-spacing-unit);
}

.image--highlight {
  -webkit-box-shadow: var(--text-highlight-shadow);
  box-shadow: var(--text-highlight-shadow);
}

.image--round img {
  border-radius: 50%;
}
.image--round {
  text-align: center;
}

.image--bleed {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media screen and (min-width: 58.75em) {
  .image--bleed {
    margin-left: 0;
    margin-right: 0;
  }
}

.gallery--overflow {
  --grid-gutter: 0.3333rem;
  overflow: hidden;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: -6rem;
}
@media screen and (min-width: 48em) {
  .gallery--overflow {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.gallery--overflow .cols_3 {
  margin-left: -2rem;
  margin-right: -2rem;
}
@media screen and (min-width: 48em) {
  .gallery--overflow .cols_3 {
    margin-left: 0;
    margin-right: 0;
  }
}
.gallery--overflow .cols_3 li {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  .gallery--overflow .cols_3 li {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
.gallery--overflow .cols_3 li {
  grid-column: span 4/span 4;
}
@supports not (display: grid) {
  .gallery--overflow .cols_3 li {
    width: 33.3333333333%;
  }
}

.mod_article:has(.gallery--overflow) {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .mod_article:has(.gallery--overflow) {
    margin-top: 0;
  }
}

.video--4-5 figure:has(video) {
  padding-bottom: 125%;
}

.hofff-consent-content .hofff-consent-privacy-settings-button button, .hofff-consent-privacy-settings-button a,
.hofff-consent-privacy-settings-button button,
.hofff-consent-button-revoke,
.hofff-consent-button-close, .hofff-consent-button-accept, input.submit,
button.submit, div.btn > a,
div.btn > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn,
span.btn,
button.btn {
  border-radius: var(--button-border-radius);
  padding: var(--button-spacing);
  display: inline-block;
  border: var(--button-border-width) var(--button-border-style, solid) var(--button-border-color, transparent);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  text-align: center;
  background: transparent;
  color: var(--button-color);
  background-image: none;
  white-space: nowrap;
  text-decoration: none;
}

input.submit,
button.submit, div.btn--primary > a, .hofff-consent-content div.hofff-consent-button-accept-tags > a,
div.btn--primary > button,
.hofff-consent-content div.hofff-consent-button-accept-tags > button,
.ce_toplink > a,
.ce_toplink > button,
.toplink > a,
.toplink > button,
.content-toplink > a,
.content-toplink > button, a.btn--primary, .hofff-consent-content a.hofff-consent-button-accept-tags,
span.btn--primary,
.hofff-consent-content span.hofff-consent-button-accept-tags,
button.btn--primary,
.hofff-consent-content button.hofff-consent-button-accept-tags {
  background: var(--button-background);
  color: var(--button-color);
}
input.submit:hover,
button.submit:hover, div.btn--primary > a:hover, .hofff-consent-content div.hofff-consent-button-accept-tags > a:hover,
div.btn--primary > button:hover,
.hofff-consent-content div.hofff-consent-button-accept-tags > button:hover,
.ce_toplink > a:hover,
.ce_toplink > button:hover,
.toplink > a:hover,
.toplink > button:hover,
.content-toplink > a:hover,
.content-toplink > button:hover, a.btn--primary:hover, .hofff-consent-content a.hofff-consent-button-accept-tags:hover,
span.btn--primary:hover,
.hofff-consent-content span.hofff-consent-button-accept-tags:hover,
button.btn--primary:hover,
.hofff-consent-content button.hofff-consent-button-accept-tags:hover {
  --button-background: var(--button-background-hover);
  --button-color: var(--button-color-hover);
}

a.btn,
span.btn,
button.btn {
  margin-bottom: var(--base-spacing-unit);
}

div.btn:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child),
.content-toplink:not(:last-child) {
  margin-bottom: var(--base-spacing-unit);
}

div.btn--left {
  text-align: left;
}

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

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

.btn--floated {
  float: left;
  margin-right: var(--base-spacing-unit-xs);
}

.ce_toplink a,
.toplink a,
.content-toplink a {
  text-decoration: none;
}

.back {
  border-top: var(--base-border);
  margin-top: var(--base-spacing-unit);
  padding-top: var(--base-spacing-unit-sm);
}
.back a {
  text-decoration: none;
}

a {
  font-weight: 400;
}

.hofff-consent-privacy-settings-button a.btn,
.hofff-consent-privacy-settings-button button.btn,
.hofff-consent-button-revoke.btn,
.hofff-consent-button-close.btn, .hofff-consent-privacy-settings-button a,
.hofff-consent-privacy-settings-button button,
.hofff-consent-button-revoke,
.hofff-consent-button-close, .hofff-consent-button-accept.btn {
  --button-color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-icon .link__title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.btn-icon::before {
  content: "";
  vertical-align: middle;
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.btn-icon--mail::before {
  background-image: url("/files/icons/mail-icon.svg");
}
.hide-mail .btn-icon--mail {
  display: none;
}

.btn-icon--phone::before {
  background-image: url("/files/icons/telefon-icon.svg");
}
.hide-phone .btn-icon--phone {
  display: none;
}

a.link--arrow::before,
div.link--arrow a::before {
  content: "";
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url("/files/icons/pfeil-icon-rechts.svg");
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav a {
  text-decoration: none;
}

.nav--horizontal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 48em) {
  .nav--horizontal ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.nav--horizontal a,
.nav--horizontal strong.active,
.nav--horizontal strong.trail,
.nav--horizontal strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--vertical a,
.nav--vertical strong.active,
.nav--vertical strong.trail,
.nav--vertical strong.forward {
  display: block;
  padding: calc(var(--nav-item-padding) / 2) var(--nav-item-padding);
}

.nav--border {
  border: var(--base-border);
}
.nav--border a,
.nav--border strong.active,
.nav--border strong.trail,
.nav--border strong.forward {
  padding: var(--nav-item-padding) var(--nav-item-padding);
  border-bottom: 1px solid var(--base-border-color);
}
.nav--border a.last,
.nav--border strong.active.last,
.nav--border strong.trail.last,
.nav--border strong.forward.last {
  border-bottom: 0;
}

.nav--breadcrumb {
  border: var(--base-border);
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb li {
    padding-right: var(--base-spacing-unit);
  }
}
.nav--breadcrumb a:after {
  font-size: 0.75rem;
  display: inline-block;
  content: "►";
  vertical-align: middle;
  padding-left: var(--base-spacing-unit);
}

.nav--select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: var(--base-border);
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}
.nav--select .submit {
  vertical-align: middle;
  padding: var(--base-spacing-unit-xs) var(--base-spacing-unit-sm);
}

.nav--pager ul {
  text-align: center;
}
.nav--pager li {
  display: inline-block;
}
.nav--pager .empty {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.nav--pager a {
  padding: var(--base-spacing-unit-sm);
}

.pagination ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination a {
  text-decoration: none;
}
.pagination {
  display: grid;
  grid-column: 1/-1;
  margin-top: var(--base-spacing-unit);
  text-align: center;
  line-height: 1;
}
@supports not (display: grid) {
  .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 34.375em) {
  .pagination {
    grid-template-columns: 1fr 1fr;
  }
}
.pagination p {
  padding: var(--base-spacing-unit-xs);
  padding-left: 0;
  margin: var(--base-spacing-unit-xs);
  margin-left: 0;
  border-top: var(--base-border-width) solid transparent;
}
.pagination li {
  display: inline;
}
.pagination a,
.pagination strong {
  display: inline-block;
  padding: var(--base-spacing-unit-xs);
  margin: var(--base-spacing-unit-xs);
}
.pagination strong {
  border: var(--base-border);
}
.pagination a.next {
  margin-right: 0;
  padding-right: 0;
}
@media screen and (min-width: 34.375em) {
  .pagination p {
    justify-self: start;
  }
  .pagination p + ul {
    justify-self: end;
  }
}

.nav--main ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--main a {
  text-decoration: none;
}
.nav--main {
  grid-column: 1/3;
  border-top: var(--nav-border);
  border-bottom: var(--nav-border);
}
.nav--main a,
.nav--main strong.active {
  display: block;
  font-size: var(--nav-main-font-size);
  font-weight: var(--nav-main-font-weight);
  color: var(--nav-main-color);
}
@media screen and (min-width: 48em) {
  .nav--main .level_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav--main .level_1 > li {
    padding: 0 0.5rem;
    margin: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid transparent;
  }
  .nav--main .level_1 > li.active, .nav--main .level_1 > li.trail {
    border-color: var(--color-brand);
  }
  .nav--main a,
  .nav--main strong.active {
    padding: 0.15rem 0 calc(0.15rem - 2px);
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav--main .toggle-menu {
    -ms-flex-item-align: center;
    align-self: center;
    background: #ededed;
    border-radius: 50%;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    color: var(--color-text);
  }
  .nav--main .toggle-menu .button__label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .nav--main .toggle-menu::after {
    content: "";
    vertical-align: middle;
    width: 1rem;
    height: 1rem;
    -webkit-mask-image: url("/files/icons/caret-down.svg");
    mask-image: url("/files/icons/caret-down.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: currentcolor;
    display: block;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .nav--main .level_2,
  .nav--main .level_3 {
    max-height: 0;
    overflow: hidden;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
  .nav--main .level_2 li,
  .nav--main .level_3 li {
    margin: 0;
  }
  .nav--main .level_2 li.submenu,
  .nav--main .level_3 li.submenu {
    padding-right: 0.5rem;
  }
  .nav--main .level_2 a,
  .nav--main .level_2 strong.active,
  .nav--main .level_3 a,
  .nav--main .level_3 strong.active {
    font-size: 1rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .nav--main .level_2 strong.active,
  .nav--main .level_3 strong.active {
    color: var(--color-brand);
  }
  .nav--main .level_2 {
    position: absolute;
    z-index: 1006;
    top: 100%;
    background: var(--color-page-background);
    background: #f0f0f0;
    margin-left: -0.75rem;
  }
  .nav--main .level_2 > li {
    display: grid;
    grid-template-columns: 1fr -webkit-min-content;
    grid-template-columns: 1fr min-content;
  }
  .nav--main .level_2 > li > a,
  .nav--main .level_2 > li > strong.active {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav--main .level_2 > li > .toggle-menu {
    grid-column: 2;
  }
  .nav--main .level_2 > li:first-child {
    padding-top: 0.5rem;
  }
  .nav--main .level_2 > li:last-child {
    padding-bottom: 0.5rem;
  }
  .nav--main .level_2 .toggle-menu {
    background-color: #d1d1d1;
  }
  .nav--main .level_3 {
    grid-column: 1/-1;
    max-width: 16rem;
    list-style-type: disc;
  }
  .nav--main .level_3 li {
    padding: 0 1rem;
  }
  .nav--main .level_3 li a::before,
  .nav--main .level_3 li strong.active::before {
    content: "";
    vertical-align: middle;
    width: 1rem;
    height: 1.625em;
    -webkit-mask-image: url("/files/icons/caret-right.svg");
    mask-image: url("/files/icons/caret-right.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: currentcolor;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .nav--main .level_3 li:first-child {
    padding-top: 0.25rem;
  }
  .nav--main .level_3 li:last-child {
    padding-bottom: 0.25rem;
  }
  .nav--main .submenu--active > .level_2 {
    max-height: 1000px;
  }
  .nav--main .submenu--active > .level_3 {
    max-height: 1000px;
  }
  .nav--main .submenu--active > .toggle-menu::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.nav-toggler {
  display: block;
  z-index: 1005;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: end;
  pointer-events: auto;
  color: var(--color-text);
}
@media screen and (min-width: 48em) {
  .nav-toggler {
    display: none;
  }
}
.nav-toggler__button {
  background: none;
  border: none;
  outline: none;
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  cursor: pointer;
  color: currentcolor;
  padding: calc(var(--base-spacing-unit-xs) / 2) var(--base-spacing-unit-xs);
  line-height: 1.5;
}
.nav-toggler .menu-icon {
  position: relative;
  width: var(--nav-icon-width);
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
}
.nav-toggler .menu-icon__inner {
  width: 100%;
  background-color: currentcolor;
  position: absolute;
  text-align: right;
  right: 0;
  top: 40%;
  margin-top: calc(var(--nav-icon-stroke) / -2);
  height: var(--nav-icon-stroke);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}
.nav-toggler .menu-icon__inner::after, .nav-toggler .menu-icon__inner::before {
  width: 100%;
  right: 0;
  background-color: currentcolor;
  position: absolute;
  display: block;
  content: "";
  height: var(--nav-icon-stroke);
  -webkit-transition: opacity 0.15s, -webkit-transform 0.15s ease;
  transition: opacity 0.15s, -webkit-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.15s;
  transition: transform 0.15s ease, opacity 0.15s, -webkit-transform 0.15s ease;
}
.nav-toggler .menu-icon__inner::before {
  top: -6px;
}
.nav-toggler .menu-icon__inner::after {
  bottom: -6px;
}
.html--fixed .nav-toggler .menu-icon__inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 120%;
}
.html--fixed .nav-toggler .menu-icon__inner::before {
  opacity: 0%;
}
.html--fixed .nav-toggler .menu-icon__inner::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  bottom: 0;
  width: 100%;
  background-color: inherit;
}
.nav-toggler .menu-label {
  display: inline-block;
  margin-left: var(--base-spacing-unit-xs);
  line-height: 1.5;
}

.nav--language ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--language a {
  text-decoration: none;
}
.nav--language {
  pointer-events: all;
  justify-self: start;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (min-width: 48em) {
  .nav--language {
    display: block;
    margin-top: 1.25rem;
    justify-self: end;
  }
}
.nav--language .level_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav--language li {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 48em) {
  .nav--language li {
    font-size: 0.75rem;
  }
}
.nav--language li:not(:first-child) {
  border-left: 1px solid var(--color-text);
  margin-left: 0.25rem;
  padding-left: 0.25rem;
}
.nav--language a,
.nav--language strong {
  color: inherit;
}
.nav--language a {
  font-weight: 300;
}

@media screen and (max-width: 47.99875em) {
  .nav--mobile {
    grid-row: 1;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    padding: 0 1rem;
    background-color: var(--nav-mobile-background);
    visibility: visible;
    position: fixed;
    width: 100%;
    right: 0;
    top: auto;
    z-index: 1003;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    pointer-events: auto;
  }
  .nav--mobile--active {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .nav--mobile li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .nav--mobile a,
  .nav--mobile strong.active {
    padding: 0.5rem 0;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    font-size: var(--nav-mobile-font-size);
  }
  .nav--mobile strong.active {
    color: var(--color-brand);
  }
  .nav--mobile .toggle-menu {
    background: transparent;
    border: none;
    padding: 0 1rem;
    color: var(--color-text);
  }
  .nav--mobile .toggle-menu .button__label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .nav--mobile .toggle-menu::after {
    content: "+";
  }
  .nav--mobile .level_2,
  .nav--mobile .level_3 {
    width: 100%;
    background: #f0f0f0;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
  .nav--mobile .level_3 {
    padding-left: 0;
    padding-right: 0.5rem;
  }
  .nav--mobile .level_3 li > a,
  .nav--mobile .level_3 li > strong.active {
    margin-left: 1.25rem;
  }
  .nav--mobile .level_3 li > a::before,
  .nav--mobile .level_3 li > strong.active::before {
    content: "►";
    position: relative;
    top: 5px;
    display: inline-block;
    vertical-align: top;
    font-size: 0.75em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    text-indent: -1.25rem;
  }
  .nav--mobile .level_3 li:not(:last-child) {
    border-bottom: none;
  }
  .nav--mobile .level_3 a,
  .nav--mobile .level_3 strong {
    padding: 0.25rem 0;
  }
  .nav--mobile .level_3 a:last-child,
  .nav--mobile .level_3 strong:last-child {
    padding-bottom: 0.5rem;
  }
  .nav--mobile .submenu--active > .level_2 {
    max-height: 1000px;
  }
  .nav--mobile .submenu--active > .level_3 {
    max-height: 1000px;
  }
  .nav--mobile .submenu--active > .toggle-menu::after {
    content: "–";
  }
  .nav--mobile li:not(:last-child) {
    border-bottom: var(--base-border);
  }
}

.nav--sub ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--sub a {
  text-decoration: none;
}
.nav--sub {
  position: relative;
  justify-self: end;
}
@media screen and (max-width: 47.99875em) {
  .nav--sub {
    display: none;
  }
}
@media screen and (min-width: 48em) {
  .nav--sub {
    justify-self: start;
  }
}
.nav--sub div {
  cursor: pointer;
  border: var(--base-border);
  padding: 0.25rem 0.5rem;
}
.nav--sub div::after {
  content: "▾";
  margin-left: 0.125rem;
  -webkit-transform-origin: center 55%;
  transform-origin: center 55%;
}
@media screen and (min-width: 48em) {
  .nav--sub div {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.nav--sub div.button--active::after {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav--sub a,
.nav--sub strong.active {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.525;
  color: inherit;
  padding-top: 0.3334rem;
  padding-bottom: 0.3334rem;
}
.nav--sub .level_1 {
  border: var(--base-border);
  border-width: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  background-color: var(--color-page-background);
  padding: 0 var(--base-spacing-unit) 0 0;
  text-align: left;
}
@media screen and (min-width: 48em) {
  .nav--sub .level_1 {
    position: relative;
    max-height: none;
  }
}
.nav--sub .level_1 > li > a,
.nav--sub .level_1 > li > strong.active {
  padding-left: 1rem;
}
.nav--sub .level_1 > li > a::before,
.nav--sub .level_1 > li > strong.active::before {
  content: "►";
  display: inline-block;
  font-size: 0.75em;
  vertical-align: baseline;
  width: 1rem;
  margin-left: -1rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.nav--sub .level_1 > li > strong.active.submenu::before,
.nav--sub .level_1 > li > a.trail.submenu::before {
  content: "▼";
}
.nav--sub .level_1 > li:last-child {
  margin-bottom: 0.25rem;
}
.nav--sub a:hover {
  color: var(--color-brand);
}
.nav--sub strong.active,
.nav--sub a.trail {
  color: var(--color-brand);
}
.nav--sub .level_2 {
  margin-left: 1.5rem;
}
.nav--sub--active .level_1 {
  margin-top: -1px;
  max-height: none;
  border-width: 1px;
}

.nav--footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--footer a {
  text-decoration: none;
}
.nav--footer {
  font-size: 0.8rem;
  font-weight: normal;
}
.nav--footer a {
  color: inherit;
  display: block;
  padding: 0.2rem 0;
}

.nav--highlight ul,
.nav--element ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav--highlight a,
.nav--element a {
  text-decoration: none;
}
.nav--highlight,
.nav--element {
  -ms-flex-item-align: start;
  align-self: start;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--text-highlight-background);
  -webkit-box-shadow: var(--text-highlight-shadow);
  box-shadow: var(--text-highlight-shadow);
}
.nav--highlight h2.color--text,
.nav--highlight h3.color--text,
.nav--element h2.color--text,
.nav--element h3.color--text {
  color: inherit;
}
.nav--highlight a,
.nav--highlight strong.active,
.nav--element a,
.nav--element strong.active {
  font-weight: 300;
  color: inherit;
}
.nav--highlight a .subline,
.nav--highlight strong.active .subline,
.nav--element a .subline,
.nav--element strong.active .subline {
  display: block;
  font-size: 0.8rem;
  line-height: 1.2;
}
.nav--highlight strong.active,
.nav--element strong.active {
  color: var(--color-brand);
}
.nav--highlight strong.active .subline,
.nav--element strong.active .subline {
  color: var(--color-text);
}
.nav--highlight li,
.nav--element li {
  margin-bottom: 0.5rem;
}
.nav--highlight li > a,
.nav--highlight li > strong.active,
.nav--element li > a,
.nav--element li > strong.active {
  padding-left: 1.125rem;
  display: block;
}
.nav--highlight li > a::before,
.nav--highlight li > strong.active::before,
.nav--element li > a::before,
.nav--element li > strong.active::before {
  content: "►";
  display: inline-block;
  font-size: 0.75em;
  vertical-align: baseline;
  margin-right: 0.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-left: -1rem;
}
.nav--highlight li:last-child,
.nav--element li:last-child {
  margin-bottom: 0.25rem;
}

.nav--breadcrumb-minimal {
  padding-left: var(--layout-spacing-sides);
  padding-right: var(--layout-spacing-sides);
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.nav--breadcrumb-minimal > .inside {
  background: var(--color-gray-lighter-alpha);
  position: absolute;
  margin: 0 1rem;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1002;
  padding: 0.4rem 1rem;
  padding-bottom: 0.4rem;
  display: none;
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb-minimal > .inside {
    display: block;
  }
}
.nav--breadcrumb-minimal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 48em) {
  .nav--breadcrumb-minimal ul {
    padding-left: calc(var(--grid-gutter));
  }
}
@media screen and (min-width: 68.75em) {
  .nav--breadcrumb-minimal ul {
    padding-left: 8.3333%;
  }
}
.nav--breadcrumb-minimal li a {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.25rem;
}
.nav--breadcrumb-minimal li a::after {
  content: "/";
  margin-left: 0.25rem;
}
.nav--breadcrumb-minimal li.first a {
  margin-left: 0;
}
.nav--breadcrumb-minimal li.first a::before {
  content: "";
  vertical-align: middle;
  width: 1rem;
  height: 1.625rem;
  -webkit-mask-image: url("/files/icons/home.svg");
  mask-image: url("/files/icons/home.svg");
  background: var(--color-brand);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  display: inline-block;
}
.nav--breadcrumb-minimal li.first .nav__title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.nav--breadcrumb-minimal li.active {
  font-weight: 600;
  color: var(--color-brand);
  cursor: default;
}

.content-swiper,
.content-swiper-pro {
  position: relative;
}
.content-swiper.has-pagination .swiper-container,
.content-swiper-pro.has-pagination .swiper-container {
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 48em) {
  .content-swiper.has-pagination .swiper-container,
  .content-swiper-pro.has-pagination .swiper-container {
    padding-bottom: 0;
  }
}
.content-swiper.has-pagination .swiper-container-horizontal > .swiper-pagination-bullets,
.content-swiper-pro.has-pagination .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.content-swiper .swiper-slide,
.content-swiper-pro .swiper-slide {
  height: auto;
}

@media screen and (min-width: 48em) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  background: var(--color-text);
  height: var(--swiper-pagination-size);
  width: var(--swiper-pagination-size);
  border: none;
  opacity: 100%;
}
.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color);
}

.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  padding: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 1rem;
  height: 6rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0%;
}

.swiper-button-prev::after {
  background-image: url("/files/icons/slider-back.svg");
}

.swiper-button-next::after {
  background-image: url("/files/icons/slider-forward.svg");
}

.slider--cards {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media screen and (min-width: 48em) {
  .slider--cards {
    margin-left: 0;
    margin-right: 0;
  }
}
.slider--cards .swiper {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 48em) {
  .slider--cards .swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.slider--cards .swiper-slide {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
@media screen and (min-width: 48em) {
  .slider--cards .swiper-slide {
    max-width: 60%;
  }
}
@media screen and (min-width: 58.75em) {
  .slider--cards .swiper-slide {
    max-width: 40%;
  }
}
.slider--cards .swiper-button-next,
.slider--cards .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 48em) {
  .slider--cards .swiper-button-next,
  .slider--cards .swiper-button-prev {
    display: block;
  }
}

.slider--hints {
  --swiper-navigation-size: 6rem;
}
.slider--hints .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 1rem;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .slider--hints .swiper-slide {
    max-width: 30%;
  }
}
@media screen and (min-width: 58.75em) {
  .slider--hints .swiper-slide {
    max-width: calc(33.3333% - 30px);
  }
}
@media screen and (min-width: 68.75em) {
  .slider--hints .swiper-slide {
    max-width: calc(20% - var(--grid-gutter));
  }
}
.slider--hints .swiper-button-prev {
  left: 0;
}
.slider--hints .swiper-button-next {
  right: 0;
}

.slider--recommendations {
  margin-bottom: var(--base-spacing-unit);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 58.75em) {
  .slider--recommendations {
    padding: 0 calc(8.3333% + var(--grid-gutter));
  }
}
.slider--recommendations .swiper-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}
@media screen and (min-width: 58.75em) {
  .slider--recommendations .swiper-container {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 58.75em) {
  .slider--recommendations .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.slider--recommendations .layout_default {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.events-list {
  margin-bottom: var(--base-spacing-unit);
}
.events-list > h1, .events-list > h2, .events-list > h3, .events-list > h4, .events-list > h5, .events-list > h6 {
  margin-bottom: 0;
}
.events-list .image_container {
  margin-top: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
.events-list .float_left {
  margin-right: var(--base-spacing-unit);
}
.events-list .float_right {
  margin-left: var(--base-spacing-unit);
}
.events-list .event > h1, .events-list .event > h2, .events-list .event > h3, .events-list .event > h4, .events-list .event > h5, .events-list .event > h6 {
  margin-top: var(--base-spacing-unit);
}
.events-list .layout_upcoming time,
.events-list .layout_upcoming a {
  padding-top: var(--base-spacing-unit);
  display: inline-block;
}
.events-list .header {
  margin-top: var(--base-spacing-unit);
}

.events-grid {
  display: grid;
  grid-gap: var(--grid-gutter);
  margin-bottom: var(--base-spacing-unit);
}
@media screen and (min-width: 34.375em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-sm), 1fr);
  }
}
@media screen and (min-width: 48em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-md), 1fr);
  }
}
@media screen and (min-width: 58.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-lg), 1fr);
  }
}
@media screen and (min-width: 68.75em) {
  .events-grid {
    grid-template-columns: repeat(var(--events-grid-columns-xl), 1fr);
  }
}

.events-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.events-menu a {
  text-decoration: none;
}
.events-menu .year {
  margin-bottom: var(--base-spacing-unit-sm);
}
.events-menu .year > a,
.events-menu .year > .active {
  color: inherit;
  font-weight: var(--headings-font-weight);
  font-family: var(--headings-font-family);
}
.events-menu .level_2 li {
  margin-bottom: var(--base-spacing-unit-xs);
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: var(--base-spacing-unit-xs);
}

input.text,
input.captcha,
textarea.textarea,
select.select {
  display: block;
  width: 100%;
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit-sm);
  border-radius: var(--forms-input-border-radius);
  border: var(--forms-input-border-width) solid var(--forms-input-border-color);
  background-clip: padding-box;
  background-image: none;
  background-color: var(--forms-input-background);
  line-height: var(--forms-input-line-height);
}

textarea.textarea {
  height: auto;
}

.widget-text,
.widget-textarea,
.widget-password {
  margin-bottom: var(--base-spacing-unit);
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=file] {
  display: block;
  line-height: 1;
}

input.radio,
input.checkbox {
  margin-left: 1px;
  margin-right: var(--base-spacing-unit-xs);
  line-height: var(--base-line-height);
  vertical-align: middle;
}
input.radio + label,
input.checkbox + label {
  margin-right: var(--base-spacing-unit-xs);
  margin-bottom: 0;
  font-weight: normal;
}

.widget-radio,
.widget-checkbox,
.widget-select,
.widget-upload {
  margin-bottom: var(--base-spacing-unit);
}
.widget-radio legend,
.widget-checkbox legend,
.widget-select legend,
.widget-upload legend {
  font-weight: 700;
}

.radio_container > span,
.checkbox_container > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

span.mandatory {
  color: var(--forms-mandatory-color);
}

p.error {
  margin-bottom: 0;
}

.widget-checkbox span {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.widget-checkbox input.checkbox {
  position: relative;
  top: 0.5rem;
}
.widget-checkbox input.checkbox + label {
  font-weight: 300;
}

.ce_accordion {
  margin-bottom: var(--accordion-spacing);
}
.ce_accordion:not(.handorgel) .toggler {
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion:not(.handorgel) .toggler:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion:not(.handorgel) .toggler:focus {
  outline: 0;
}
.ce_accordion.handorgel .toggler button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.ce_accordion.handorgel .toggler button:hover {
  color: var(--accordion-toggler-color-hover);
}
.ce_accordion.handorgel .toggler button:focus {
  outline: 0;
}
.ce_accordion .accordion {
  background: var(--accordion-content-background);
  overflow: hidden;
}
.ce_accordion .accordion > div {
  padding: var(--accordion-content-spacing);
}

.content-accordion .handorgel__header {
  line-height: var(--base-line-height);
  margin-bottom: var(--accordion-spacing);
}
.content-accordion .handorgel__header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--accordion-toggler-font-size);
  cursor: pointer;
  background: var(--accordion-toggler-background);
  color: var(--accordion-toggler-color);
  padding: var(--accordion-toggler-spacing);
  border: var(--accordion-toggler-border);
}
.content-accordion .handorgel__header__button:hover {
  color: var(--accordion-toggler-color-hover);
}
.content-accordion .handorgel__header__button:focus {
  outline: 0;
}
.content-accordion .handorgel__content {
  background: var(--accordion-content-background);
  overflow: hidden;
}
.content-accordion .handorgel__content > div {
  padding: var(--accordion-content-spacing);
}

.ce_accordion:not(.handorgel) {
  margin-bottom: 0;
  border-top: var(--accordion-toggler-border);
}
.ce_accordion:not(.handorgel) .toggler {
  border: none;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.ce_accordion:not(.handorgel) .toggler .ui-accordion-header-icon {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-left: auto;
}
.ce_accordion:not(.handorgel) .toggler .ui-accordion-header-icon::after {
  content: "◀";
  display: inline-block;
  font-size: 0.75em;
  vertical-align: baseline;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ce_accordion:not(.handorgel) .toggler.ui-state-active .ui-accordion-header-icon::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.ce_accordion:not(.handorgel):last-of-type {
  border-bottom: var(--accordion-toggler-border);
}

.ce_download,
.ce_downloads,
.content-download,
.content-downloads {
  margin-bottom: 1rem;
}
.ce_download .mime_icon,
.ce_downloads .mime_icon,
.content-download .mime_icon,
.content-downloads .mime_icon {
  display: inline-block;
  vertical-align: middle;
}
.ce_download a,
.ce_downloads a,
.content-download a,
.content-downloads a {
  display: inline-block;
  color: var(--download-link-color);
  -webkit-text-decoration: var(--download-link-decoration);
  text-decoration: var(--download-link-decoration);
}

.ce_downloads ul,
.content-downloads ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.ce_downloads a,
.content-downloads a {
  text-decoration: none;
}

table {
  margin-bottom: var(--base-spacing-unit);
  width: 100%;
  padding: 0;
  border-spacing: 0;
  border-left: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-top: var(--table-border-width) var(--table-border-style) var(--table-border-color);
}
table th,
table td {
  border-right: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-bottom: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  padding: 10px;
}

thead {
  text-align: left;
  background: var(--table-background-light);
}

tfoot {
  font-style: italic;
}

.table--striped .even {
  background: var(--table-background-light);
}

.table--overflow {
  overflow-x: scroll;
  -ms-overflow-x: auto;
}

.faq-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.faq-list a {
  text-decoration: none;
}
.faq-list > ul {
  margin-top: 2rem;
}
.faq-list li {
  margin-bottom: var(--base-spacing-unit-sm);
}
.faq-list li a {
  display: inline-block;
}
.faq-list > h1, .faq-list > h2, .faq-list > h3, .faq-list > h4, .faq-list > h5, .faq-list > h6 {
  margin-bottom: 0;
}
.faq-list > h1:after, .faq-list > h2:after, .faq-list > h3:after, .faq-list > h4:after, .faq-list > h5:after, .faq-list > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-list article > h1, .faq-list article > h2, .faq-list article > h3, .faq-list article > h4, .faq-list article > h5, .faq-list article > h6 {
  margin-bottom: 0;
}
.faq-list article > h1:after, .faq-list article > h2:after, .faq-list article > h3:after, .faq-list article > h4:after, .faq-list article > h5:after, .faq-list article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}

.faq-page > h1, .faq-page > h2, .faq-page > h3, .faq-page > h4, .faq-page > h5, .faq-page > h6 {
  margin-bottom: 0;
}
.faq-page > h1:after, .faq-page > h2:after, .faq-page > h3:after, .faq-page > h4:after, .faq-page > h5:after, .faq-page > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page article > h1, .faq-page article > h2, .faq-page article > h3, .faq-page article > h4, .faq-page article > h5, .faq-page article > h6 {
  margin-bottom: 0;
}
.faq-page article > h1:after, .faq-page article > h2:after, .faq-page article > h3:after, .faq-page article > h4:after, .faq-page article > h5:after, .faq-page article > h6:after {
  border-top: var(--faq-border);
  content: "";
  display: block;
}
.faq-page .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}
.faq-page section {
  padding: var(--base-spacing-unit) 0;
  border-bottom: var(--faq-border);
}
.faq-page section.last {
  margin-bottom: var(--base-spacing-unit);
}

.faq-reader .info {
  font-size: 0.875rem;
  margin-top: var(--base-spacing-unit);
  opacity: 0.5;
}

.faq-list li a {
  color: inherit;
}
.faq-list li a::before {
  content: "►";
  display: inline-block;
  font-size: 0.75em;
  vertical-align: baseline;
  margin-right: 0.25rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-accordion:not(.handorgel) h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-accordion:not(.handorgel) h3 {
  --h3-spacing-bottom: 0;
  --h3-line-height: 1.625;
}
.faq-accordion:not(.handorgel) .toggler {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 48em) {
  .faq-accordion:not(.handorgel) .toggler {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.faq-accordion:not(.handorgel) .toggler .ui-accordion-header-icon {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-left: 0;
}
.faq-accordion:not(.handorgel) .toggler .ui-accordion-header-icon::after {
  content: "";
  vertical-align: middle;
  width: 1.3334rem;
  height: 1.3334rem;
  margin-right: 0.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url("/files/icons/pfeil-icon-rechts.svg");
}
@media screen and (min-width: 48em) {
  .faq-accordion:not(.handorgel) .toggler .ui-accordion-header-icon::after {
    width: 2rem;
    height: 2rem;
  }
}
.faq-accordion:not(.handorgel) .toggler.ui-state-active .ui-accordion-header-icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faq-accordion:not(.handorgel) .toplink {
  display: none;
}

.faq-page h2::after {
  margin-top: 0.25rem;
}
.faq-page .toplink {
  margin-top: var(--base-spacing-unit);
}
.faq-page .toplink a {
  --button-spacing: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.search .formbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.search .widget-text {
  margin-bottom: var(--base-spacing-unit-sm);
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.search .widget-text label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.search .widget-submit {
  margin-bottom: var(--base-spacing-unit-sm);
  margin-left: var(--base-spacing-unit-xs);
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.search .widget-submit .submit {
  margin-left: 0;
}
.search .relevance {
  color: var(--search-relevance-color);
}
.search .context {
  margin-bottom: var(--base-spacing-unit-xs);
}
.search .highlight {
  font-weight: bold;
}
.search .url {
  color: var(--search-url-color);
}

.logo {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  justify-self: center;
}
@media screen and (min-width: 48em) {
  .logo {
    justify-self: start;
  }
}
.logo a {
  display: block;
}
.logo img {
  margin-left: 0;
  width: 250px;
}
@media screen and (min-width: 48em) {
  .logo img {
    width: 470px;
  }
}

.mod_article.hero > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 48em) {
  .mod_article.hero > .inside {
    padding-left: var(--layout-spacing-sides);
    padding-right: var(--layout-spacing-sides);
  }
}

.ce_hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ce_hero .hero__content {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  vertical-align: middle;
  background-color: rgba(0, 125, 177, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--hero-content-color);
  font-weight: 300;
}
@media screen and (min-width: 48em) {
  .ce_hero .hero__content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 1.5rem;
  }
}
.ce_hero .hero__background {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.ce_hero blockquote footer {
  line-height: 1.2;
}

.hero--boxed {
  --hero-content-color: var(--color-text);
  position: relative;
}
@media screen and (min-width: 48em) {
  .hero--boxed {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}
.hero--boxed .hero__content {
  grid-column: 1/span 5;
  grid-row: 1;
  position: static;
  z-index: 1003;
  align-self: start;
  font-size: 1rem;
  padding: 0 1rem;
  padding-top: 1.5rem;
  background: var(--color-page-background);
}
@media screen and (min-width: 48em) {
  .hero--boxed .hero__content {
    background: var(--color-gray-lighter-alpha);
    margin-top: 4rem;
    margin-bottom: calc(6 * var(--base-spacing-unit));
    padding-left: calc(var(--grid-gutter) + var(--base-spacing-unit));
    padding-right: var(--grid-gutter);
  }
}
@media screen and (min-width: 58.75em) {
  .hero--boxed .hero__content {
    grid-column: 1/span 4;
  }
}
@media screen and (min-width: 68.75em) {
  .hero--boxed .hero__content {
    padding-top: 1.5rem;
    padding-left: calc(8.3333% + var(--grid-gutter) + var(--base-spacing-unit));
    padding-right: var(--grid-gutter);
    max-width: 28rem;
  }
}
.hero--boxed .hero__content .hero__description {
  margin-bottom: 1.5rem;
}
.hero--boxed .hero__content blockquote {
  margin: 0;
}
.hero--boxed .hero__content .hero__links {
  display: none;
}
@media screen and (min-width: 34.375em) {
  .hero--boxed .hero__content .hero__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--grid-gutter-half);
    position: absolute;
  }
}
.hero--boxed .hero__content:has(.hero__links) {
  padding-bottom: 4rem;
}
@media screen and (min-width: 34.375em) {
  .hero--boxed .hero__content:has(.hero__links) {
    padding-bottom: 2rem;
  }
}
.hero--boxed .hero__background {
  grid-column: 1/-1;
  grid-row: 1;
  z-index: 1001;
}
.hero--boxed .hero__background img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 48em) {
  .hero--boxed .hero__background img {
    position: absolute;
  }
}

.ce_heading_combined .heading__supline,
.ce_heading_combined .heading__separator {
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  color: var(--color-gray-2);
  margin-bottom: 0.25rem;
}
.ce_heading_combined .heading__title {
  display: block;
}

.content-text .text__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  z-index: 1005;
  bottom: 5rem;
  right: 0;
  gap: var(--grid-gutter-half);
}
@media screen and (min-width: 34.375em) {
  .content-text .text__links {
    right: auto;
    bottom: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
  }
}
@media screen and (min-width: 34.375em) {
  .content-text:has(.text__links) {
    padding-bottom: 1rem;
  }
}

.text--check,
.list--checkmark {
  font-weight: 400;
}
.text--check ul,
.list--checkmark ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.text--check li,
.list--checkmark li {
  margin-bottom: 0.25rem;
  padding-left: 1.75rem;
}
.text--check li::before,
.list--checkmark li::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.25rem;
  vertical-align: text-bottom;
  margin-left: -1.75rem;
  -webkit-mask: url("/files/icons/checkmark.svg") 50% 50%/contain no-repeat;
  mask: url("/files/icons/checkmark.svg") 50% 50%/contain no-repeat;
  background-repeat: no-repeat;
  background-color: var(--color-brand);
}
.text--check li:last-child,
.list--checkmark li:last-child {
  margin-bottom: 0;
}

.text--highlight {
  padding: 1rem;
  background: var(--text-highlight-background);
  -webkit-box-shadow: var(--text-highlight-shadow);
  box-shadow: var(--text-highlight-shadow);
}
.text--highlight .heading--1 {
  margin-bottom: 0;
}
.text--highlight .heading--1.color--text {
  color: inherit;
}
.row--nav .text--highlight {
  margin-top: 2rem;
}

.text--highlight-2 {
  font-size: 1.2rem;
}

.text--portrait figure {
  margin-bottom: 0.25rem;
}
.text--portrait img {
  margin-left: 0;
}

.content-list {
  margin-bottom: var(--base-spacing-unit);
}

.text--boxed {
  position: relative;
  background: var(--color-page-background);
  border: 2px solid var(--color-brand);
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}
.text--boxed figure {
  margin-top: -2.5rem;
  margin-bottom: 0.5rem;
}
.text--boxed a {
  font-weight: 600;
}
.text--boxed a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ce_card,
.card {
  background: var(--card-background);
  border: var(--card-border);
  padding: 0.5rem;
  font-size: 0.8889rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 48em) {
  .ce_card,
  .card {
    font-size: 0.8rem;
  }
}
.ce_card .card__image img,
.card .card__image img {
  max-width: none;
  width: 100%;
}
.ce_card .card__content,
.card .card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.ce_card .card__headline,
.ce_card h2,
.card .card__headline,
.card h2 {
  font-size: 1rem;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
  border-bottom: 1px solid var(--color-brand);
}
.ce_card .card__link,
.card .card__link {
  padding-top: 1rem;
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 400;
}
.ce_card .card__link a::before,
.card .card__link a::before {
  content: "►";
  display: inline-block;
  font-size: 0.75em;
  vertical-align: baseline;
  margin-right: 0.25rem;
}
.ce_card .card__link a:hover,
.card .card__link a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 48em) {
  .card--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.card--horizontal .card__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media screen and (min-width: 48em) {
  .card--horizontal .card__image {
    margin-right: 1rem;
  }
}
.card--horizontal .card__image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 48em) {
  .card--horizontal .card__content {
    max-width: 50%;
  }
}
.card--horizontal .card__link {
  padding-top: 1rem;
  margin-top: auto;
  margin-bottom: 0;
}

.card--highlight {
  background-color: var(--color-brand-secondary);
  color: var(--color-text-inverted);
  padding: 0.75rem;
}
@media screen and (min-width: 58.75em) {
  .card--highlight {
    padding: 1.5rem 1rem;
  }
}
.card--highlight .card__description {
  --h1-color: var(--color-text-inverted);
  --h1-font-weight: 300;
  text-align: center;
  margin-bottom: 1.5rem;
}
.card--highlight .card__link {
  padding-top: 0;
  text-align: center;
}
.card--highlight .card__link a {
  padding: var(--base-spacing-unit-sm) var(--base-spacing-unit);
  color: inherit;
  border: 2px solid currentcolor;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.card--highlight .card__link a::before {
  display: none;
}
.card--highlight .card__link a:hover {
  text-decoration: none;
  background-color: var(--color-brand);
}

.card--overlay {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  font-size: 1rem;
  padding: 0;
  border: none;
  text-align: center;
  width: 100%;
}
.card--overlay h2.card__headline {
  margin-top: 0;
  margin-bottom: 1rem;
}
.card--overlay .card__image {
  width: 100%;
}
.card--overlay .card__content {
  background: var(--color-gray-lighter-alpha);
  width: calc(100% - 2rem);
  margin-left: -100%;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding: 1rem;
}
.card--overlay .card__headline {
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  border-bottom: none;
}
.card--overlay .card__link a {
  display: block;
  font-size: 0;
}
@media screen and (min-width: 48em) {
  .card--overlay .card__link a {
    font-size: 1rem;
  }
}
.card--overlay .card__link a:hover {
  text-decoration: none;
}
.card--overlay .card__link a::before {
  content: "";
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url("/files/icons/pfeil-icon-rechts.svg");
}
.card--overlay .card__link a::after {
  content: "";
  position: absolute;
  inset: 0;
}

[id=hofff-consent-banner] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1006;
  max-height: 100%;
  overflow-y: auto;
  background: var(--consent-bg);
  backdrop-filter: blur(10px);
}
[id=hofff-consent-banner] > .inside {
  max-width: 66.625em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: var(--base-spacing-unit-lg) var(--base-spacing-unit) 0;
}
[id=hofff-consent-banner] .col {
  grid-column: 1/-1;
}
@supports not (display: grid) {
  [id=hofff-consent-banner] .col {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
  }
}
[id=hofff-consent-banner] .col {
  grid-column: span 12/span 12;
}
@supports not (display: grid) {
  [id=hofff-consent-banner] .col {
    width: 100%;
  }
}
[id=hofff-consent-banner] .col {
  font-size: 0.875rem;
}

.hofff-consent-root-text {
  margin-bottom: var(--base-spacing-unit);
}

.hofff-consent-buttons,
.hofff-consent-privacy-settings-button {
  --button-font-size: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: var(--base-spacing-unit-xs);
  -moz-column-gap: var(--base-spacing-unit-xs);
  column-gap: var(--base-spacing-unit-xs);
}

.hofff-consent-privacy-settings-button a,
.hofff-consent-privacy-settings-button button,
.hofff-consent-button-revoke,
.hofff-consent-button-close {
  outline: none;
}
.hofff-consent-banner-additional-content {
  margin-top: var(--base-spacing-unit);
  margin-bottom: var(--base-spacing-unit);
}
.hofff-consent-banner-additional-content .nav--footer .level_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hofff-consent-banner-additional-content .nav--footer a,
.hofff-consent-banner-additional-content .nav--footer strong {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hofff-consent-privacy-settings .card .hofff-consent-tag-collection {
  list-style-type: none;
  margin-left: 0;
  padding: 1rem;
}
.hofff-consent-privacy-settings .card .list-group-item::marker {
  vertical-align: middle;
}
.hofff-consent-privacy-settings .widget-checkbox .checkbox {
  top: 0.45em;
}
.hofff-consent-privacy-settings .widget-explanation {
  margin-bottom: var(--base-spacing-unit);
}
.hofff-consent-privacy-settings .widget-switch span.valid-feedback {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.hofff-consent-privacy-settings .widget-switch span.custom-switch ~ span.valid-feedback {
  opacity: 0%;
}
.hofff-consent-privacy-settings .widget-switch span.custom-switch.was-validated ~ span.valid-feedback {
  opacity: 100%;
}
.hofff-consent-privacy-settings .hofff-consent-privacy-notes {
  margin-bottom: var(--base-spacing-unit-lg);
}

.hofff-consent-content {
  background: var(--consent-bg);
  padding: var(--base-spacing-unit) var(--base-spacing-unit) 0;
  font-size: var(--base-font-size-xs);
}
.hofff-consent-content a {
  color: inherit;
  text-decoration: underline;
}
.hofff-consent-content .hofff-consent-buttons {
  display: inline-block;
  margin-top: var(--base-spacing-unit);
}
.hofff-consent-content .hofff-consent-button-accept-tags {
  --button-spacing: var(--base-spacing-unit-xs) var(--base-spacing-unit);
}
.hofff-consent-content .hofff-consent-privacy-settings-button {
  display: inline-block;
}
.hofff-consent-content .hofff-consent-privacy-settings-button button {
  --button-spacing: var(--base-spacing-unit-xs) var(--base-spacing-unit);
}

.ce_icontext {
  text-align: center;
  margin-bottom: 1.75rem;
}
.ce_icontext .icontext__headline {
  color: var(--color-brand);
}
@media screen and (min-width: 68.75em) {
  .ce_icontext .icontext__headline {
    -ms-hyphens: none;
    hyphens: none;
  }
}
.ce_icontext .image_container {
  margin-bottom: 1.75rem;
}
.ce_icontext .image_container img {
  max-width: 6rem;
}
@media screen and (min-width: 48em) {
  .ce_icontext .image_container img {
    max-width: 100%;
  }
}
.ce_icontext .icontext__link {
  margin-top: 1.5rem;
}
.ce_icontext .icontext__link a {
  display: block;
}
.ce_icontext .icontext__link a::before {
  content: "";
  vertical-align: middle;
  width: 2rem;
  height: 2rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-image: url("/files/icons/pfeil-icon-rechts.svg");
}
.ce_icontext .icontext__link .link__label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.mod_recommendationlist .layout_default {
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em) {
  .mod_recommendationlist .layout_default:first-of-type {
    margin-top: 2rem;
  }
}
.mod_recommendationlist .author {
  display: block;
  font-weight: 600;
}
.mod_recommendationlist .rating {
  display: block;
  margin-bottom: 0.5rem;
}
.mod_recommendationlist .star {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px;
  text-fill-color: transparent;
  text-stroke: 1.5px;
  color: var(--color-brand);
}

.color--text {
  color: var(--color-text);
}

.z-index-1000 {
  z-index: 1000;
}

.z-index-1001 {
  z-index: 1001;
}

.z-index-1002 {
  z-index: 1002;
}

.z-index-1005 {
  z-index: 1005;
}

.m-t-0 {
  margin-top: calc(0 * var(--base-spacing-unit));
}

.m-t--0 {
  margin-top: calc(-1 * 0 * var(--base-spacing-unit));
}
.m-t--0 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--0 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--0) > .inside {
  padding-bottom: calc(1 * 0 * var(--base-spacing-unit));
}

.m-b-0 {
  margin-bottom: calc(0 * var(--base-spacing-unit));
}
.m-b-0.content-headline {
  --h1-spacing-bottom: calc(0 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(0 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(0 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(0 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(0 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(0 * var(--base-spacing-unit));
}

.m-b--0 {
  margin-bottom: calc(-1 * 0 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--0) > .inside {
  margin-bottom: calc(0 * var(--base-spacing-unit));
}

.p-t-0 > .inside,
.mod_article.p-t-0 > .inside {
  padding-top: calc(0 * var(--base-spacing-unit));
}

.p-b-0 > .inside,
.mod_article.p-b-0 > .inside {
  padding-bottom: calc(0 * var(--base-spacing-unit));
}

.m-t-1 {
  margin-top: calc(1 * var(--base-spacing-unit));
}

.m-t--1 {
  margin-top: calc(-1 * 1 * var(--base-spacing-unit));
}
.m-t--1 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--1 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--1) > .inside {
  padding-bottom: calc(1 * 1 * var(--base-spacing-unit));
}

.m-b-1 {
  margin-bottom: calc(1 * var(--base-spacing-unit));
}
.m-b-1.content-headline {
  --h1-spacing-bottom: calc(1 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(1 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(1 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(1 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(1 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(1 * var(--base-spacing-unit));
}

.m-b--1 {
  margin-bottom: calc(-1 * 1 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--1) > .inside {
  margin-bottom: calc(1 * var(--base-spacing-unit));
}

.p-t-1 > .inside,
.mod_article.p-t-1 > .inside {
  padding-top: calc(1 * var(--base-spacing-unit));
}

.p-b-1 > .inside,
.mod_article.p-b-1 > .inside {
  padding-bottom: calc(1 * var(--base-spacing-unit));
}

.m-t-2 {
  margin-top: calc(2 * var(--base-spacing-unit));
}

.m-t--2 {
  margin-top: calc(-1 * 2 * var(--base-spacing-unit));
}
.m-t--2 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--2 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--2) > .inside {
  padding-bottom: calc(1 * 2 * var(--base-spacing-unit));
}

.m-b-2 {
  margin-bottom: calc(2 * var(--base-spacing-unit));
}
.m-b-2.content-headline {
  --h1-spacing-bottom: calc(2 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(2 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(2 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(2 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(2 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(2 * var(--base-spacing-unit));
}

.m-b--2 {
  margin-bottom: calc(-1 * 2 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--2) > .inside {
  margin-bottom: calc(2 * var(--base-spacing-unit));
}

.p-t-2 > .inside,
.mod_article.p-t-2 > .inside {
  padding-top: calc(2 * var(--base-spacing-unit));
}

.p-b-2 > .inside,
.mod_article.p-b-2 > .inside {
  padding-bottom: calc(2 * var(--base-spacing-unit));
}

.m-t-3 {
  margin-top: calc(3 * var(--base-spacing-unit));
}

.m-t--3 {
  margin-top: calc(-1 * 3 * var(--base-spacing-unit));
}
.m-t--3 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--3 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--3) > .inside {
  padding-bottom: calc(1 * 3 * var(--base-spacing-unit));
}

.m-b-3 {
  margin-bottom: calc(3 * var(--base-spacing-unit));
}
.m-b-3.content-headline {
  --h1-spacing-bottom: calc(3 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(3 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(3 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(3 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(3 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(3 * var(--base-spacing-unit));
}

.m-b--3 {
  margin-bottom: calc(-1 * 3 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--3) > .inside {
  margin-bottom: calc(3 * var(--base-spacing-unit));
}

.p-t-3 > .inside,
.mod_article.p-t-3 > .inside {
  padding-top: calc(3 * var(--base-spacing-unit));
}

.p-b-3 > .inside,
.mod_article.p-b-3 > .inside {
  padding-bottom: calc(3 * var(--base-spacing-unit));
}

.m-t-4 {
  margin-top: calc(4 * var(--base-spacing-unit));
}

.m-t--4 {
  margin-top: calc(-1 * 4 * var(--base-spacing-unit));
}
.m-t--4 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--4 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--4) > .inside {
  padding-bottom: calc(1 * 4 * var(--base-spacing-unit));
}

.m-b-4 {
  margin-bottom: calc(4 * var(--base-spacing-unit));
}
.m-b-4.content-headline {
  --h1-spacing-bottom: calc(4 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(4 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(4 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(4 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(4 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(4 * var(--base-spacing-unit));
}

.m-b--4 {
  margin-bottom: calc(-1 * 4 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--4) > .inside {
  margin-bottom: calc(4 * var(--base-spacing-unit));
}

.p-t-4 > .inside,
.mod_article.p-t-4 > .inside {
  padding-top: calc(4 * var(--base-spacing-unit));
}

.p-b-4 > .inside,
.mod_article.p-b-4 > .inside {
  padding-bottom: calc(4 * var(--base-spacing-unit));
}

.m-t-5 {
  margin-top: calc(5 * var(--base-spacing-unit));
}

.m-t--5 {
  margin-top: calc(-1 * 5 * var(--base-spacing-unit));
}
.m-t--5 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--5 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--5) > .inside {
  padding-bottom: calc(1 * 5 * var(--base-spacing-unit));
}

.m-b-5 {
  margin-bottom: calc(5 * var(--base-spacing-unit));
}
.m-b-5.content-headline {
  --h1-spacing-bottom: calc(5 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(5 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(5 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(5 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(5 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(5 * var(--base-spacing-unit));
}

.m-b--5 {
  margin-bottom: calc(-1 * 5 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--5) > .inside {
  margin-bottom: calc(5 * var(--base-spacing-unit));
}

.p-t-5 > .inside,
.mod_article.p-t-5 > .inside {
  padding-top: calc(5 * var(--base-spacing-unit));
}

.p-b-5 > .inside,
.mod_article.p-b-5 > .inside {
  padding-bottom: calc(5 * var(--base-spacing-unit));
}

.m-t-6 {
  margin-top: calc(6 * var(--base-spacing-unit));
}

.m-t--6 {
  margin-top: calc(-1 * 6 * var(--base-spacing-unit));
}
.m-t--6 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--6 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--6) > .inside {
  padding-bottom: calc(1 * 6 * var(--base-spacing-unit));
}

.m-b-6 {
  margin-bottom: calc(6 * var(--base-spacing-unit));
}
.m-b-6.content-headline {
  --h1-spacing-bottom: calc(6 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(6 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(6 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(6 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(6 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(6 * var(--base-spacing-unit));
}

.m-b--6 {
  margin-bottom: calc(-1 * 6 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--6) > .inside {
  margin-bottom: calc(6 * var(--base-spacing-unit));
}

.p-t-6 > .inside,
.mod_article.p-t-6 > .inside {
  padding-top: calc(6 * var(--base-spacing-unit));
}

.p-b-6 > .inside,
.mod_article.p-b-6 > .inside {
  padding-bottom: calc(6 * var(--base-spacing-unit));
}

.m-t-7 {
  margin-top: calc(7 * var(--base-spacing-unit));
}

.m-t--7 {
  margin-top: calc(-1 * 7 * var(--base-spacing-unit));
}
.m-t--7 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--7 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--7) > .inside {
  padding-bottom: calc(1 * 7 * var(--base-spacing-unit));
}

.m-b-7 {
  margin-bottom: calc(7 * var(--base-spacing-unit));
}
.m-b-7.content-headline {
  --h1-spacing-bottom: calc(7 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(7 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(7 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(7 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(7 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(7 * var(--base-spacing-unit));
}

.m-b--7 {
  margin-bottom: calc(-1 * 7 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--7) > .inside {
  margin-bottom: calc(7 * var(--base-spacing-unit));
}

.p-t-7 > .inside,
.mod_article.p-t-7 > .inside {
  padding-top: calc(7 * var(--base-spacing-unit));
}

.p-b-7 > .inside,
.mod_article.p-b-7 > .inside {
  padding-bottom: calc(7 * var(--base-spacing-unit));
}

.m-t-8 {
  margin-top: calc(8 * var(--base-spacing-unit));
}

.m-t--8 {
  margin-top: calc(-1 * 8 * var(--base-spacing-unit));
}
.m-t--8 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--8 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--8) > .inside {
  padding-bottom: calc(1 * 8 * var(--base-spacing-unit));
}

.m-b-8 {
  margin-bottom: calc(8 * var(--base-spacing-unit));
}
.m-b-8.content-headline {
  --h1-spacing-bottom: calc(8 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(8 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(8 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(8 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(8 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(8 * var(--base-spacing-unit));
}

.m-b--8 {
  margin-bottom: calc(-1 * 8 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--8) > .inside {
  margin-bottom: calc(8 * var(--base-spacing-unit));
}

.p-t-8 > .inside,
.mod_article.p-t-8 > .inside {
  padding-top: calc(8 * var(--base-spacing-unit));
}

.p-b-8 > .inside,
.mod_article.p-b-8 > .inside {
  padding-bottom: calc(8 * var(--base-spacing-unit));
}

.m-t-9 {
  margin-top: calc(9 * var(--base-spacing-unit));
}

.m-t--9 {
  margin-top: calc(-1 * 9 * var(--base-spacing-unit));
}
.m-t--9 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--9 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--9) > .inside {
  padding-bottom: calc(1 * 9 * var(--base-spacing-unit));
}

.m-b-9 {
  margin-bottom: calc(9 * var(--base-spacing-unit));
}
.m-b-9.content-headline {
  --h1-spacing-bottom: calc(9 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(9 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(9 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(9 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(9 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(9 * var(--base-spacing-unit));
}

.m-b--9 {
  margin-bottom: calc(-1 * 9 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--9) > .inside {
  margin-bottom: calc(9 * var(--base-spacing-unit));
}

.p-t-9 > .inside,
.mod_article.p-t-9 > .inside {
  padding-top: calc(9 * var(--base-spacing-unit));
}

.p-b-9 > .inside,
.mod_article.p-b-9 > .inside {
  padding-bottom: calc(9 * var(--base-spacing-unit));
}

.m-t-10 {
  margin-top: calc(10 * var(--base-spacing-unit));
}

.m-t--10 {
  margin-top: calc(-1 * 10 * var(--base-spacing-unit));
}
.m-t--10 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--10 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--10) > .inside {
  padding-bottom: calc(1 * 10 * var(--base-spacing-unit));
}

.m-b-10 {
  margin-bottom: calc(10 * var(--base-spacing-unit));
}
.m-b-10.content-headline {
  --h1-spacing-bottom: calc(10 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(10 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(10 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(10 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(10 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(10 * var(--base-spacing-unit));
}

.m-b--10 {
  margin-bottom: calc(-1 * 10 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--10) > .inside {
  margin-bottom: calc(10 * var(--base-spacing-unit));
}

.p-t-10 > .inside,
.mod_article.p-t-10 > .inside {
  padding-top: calc(10 * var(--base-spacing-unit));
}

.p-b-10 > .inside,
.mod_article.p-b-10 > .inside {
  padding-bottom: calc(10 * var(--base-spacing-unit));
}

.m-t-11 {
  margin-top: calc(11 * var(--base-spacing-unit));
}

.m-t--11 {
  margin-top: calc(-1 * 11 * var(--base-spacing-unit));
}
.m-t--11 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--11 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--11) > .inside {
  padding-bottom: calc(1 * 11 * var(--base-spacing-unit));
}

.m-b-11 {
  margin-bottom: calc(11 * var(--base-spacing-unit));
}
.m-b-11.content-headline {
  --h1-spacing-bottom: calc(11 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(11 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(11 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(11 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(11 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(11 * var(--base-spacing-unit));
}

.m-b--11 {
  margin-bottom: calc(-1 * 11 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--11) > .inside {
  margin-bottom: calc(11 * var(--base-spacing-unit));
}

.p-t-11 > .inside,
.mod_article.p-t-11 > .inside {
  padding-top: calc(11 * var(--base-spacing-unit));
}

.p-b-11 > .inside,
.mod_article.p-b-11 > .inside {
  padding-bottom: calc(11 * var(--base-spacing-unit));
}

.m-t-12 {
  margin-top: calc(12 * var(--base-spacing-unit));
}

.m-t--12 {
  margin-top: calc(-1 * 12 * var(--base-spacing-unit));
}
.m-t--12 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--12 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--12) > .inside {
  padding-bottom: calc(1 * 12 * var(--base-spacing-unit));
}

.m-b-12 {
  margin-bottom: calc(12 * var(--base-spacing-unit));
}
.m-b-12.content-headline {
  --h1-spacing-bottom: calc(12 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(12 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(12 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(12 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(12 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(12 * var(--base-spacing-unit));
}

.m-b--12 {
  margin-bottom: calc(-1 * 12 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--12) > .inside {
  margin-bottom: calc(12 * var(--base-spacing-unit));
}

.p-t-12 > .inside,
.mod_article.p-t-12 > .inside {
  padding-top: calc(12 * var(--base-spacing-unit));
}

.p-b-12 > .inside,
.mod_article.p-b-12 > .inside {
  padding-bottom: calc(12 * var(--base-spacing-unit));
}

.m-t-13 {
  margin-top: calc(13 * var(--base-spacing-unit));
}

.m-t--13 {
  margin-top: calc(-1 * 13 * var(--base-spacing-unit));
}
.m-t--13 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--13 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--13) > .inside {
  padding-bottom: calc(1 * 13 * var(--base-spacing-unit));
}

.m-b-13 {
  margin-bottom: calc(13 * var(--base-spacing-unit));
}
.m-b-13.content-headline {
  --h1-spacing-bottom: calc(13 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(13 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(13 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(13 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(13 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(13 * var(--base-spacing-unit));
}

.m-b--13 {
  margin-bottom: calc(-1 * 13 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--13) > .inside {
  margin-bottom: calc(13 * var(--base-spacing-unit));
}

.p-t-13 > .inside,
.mod_article.p-t-13 > .inside {
  padding-top: calc(13 * var(--base-spacing-unit));
}

.p-b-13 > .inside,
.mod_article.p-b-13 > .inside {
  padding-bottom: calc(13 * var(--base-spacing-unit));
}

.m-t-14 {
  margin-top: calc(14 * var(--base-spacing-unit));
}

.m-t--14 {
  margin-top: calc(-1 * 14 * var(--base-spacing-unit));
}
.m-t--14 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--14 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--14) > .inside {
  padding-bottom: calc(1 * 14 * var(--base-spacing-unit));
}

.m-b-14 {
  margin-bottom: calc(14 * var(--base-spacing-unit));
}
.m-b-14.content-headline {
  --h1-spacing-bottom: calc(14 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(14 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(14 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(14 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(14 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(14 * var(--base-spacing-unit));
}

.m-b--14 {
  margin-bottom: calc(-1 * 14 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--14) > .inside {
  margin-bottom: calc(14 * var(--base-spacing-unit));
}

.p-t-14 > .inside,
.mod_article.p-t-14 > .inside {
  padding-top: calc(14 * var(--base-spacing-unit));
}

.p-b-14 > .inside,
.mod_article.p-b-14 > .inside {
  padding-bottom: calc(14 * var(--base-spacing-unit));
}

.m-t-15 {
  margin-top: calc(15 * var(--base-spacing-unit));
}

.m-t--15 {
  margin-top: calc(-1 * 15 * var(--base-spacing-unit));
}
.m-t--15 > .inside {
  position: relative;
  z-index: 1003;
  pointer-events: none;
}
.m-t--15 > .inside a {
  pointer-events: all;
}

.mod_article:has(+ .mod_article .m-t--15) > .inside {
  padding-bottom: calc(1 * 15 * var(--base-spacing-unit));
}

.m-b-15 {
  margin-bottom: calc(15 * var(--base-spacing-unit));
}
.m-b-15.content-headline {
  --h1-spacing-bottom: calc(15 * var(--base-spacing-unit));
  --h2-spacing-bottom: calc(15 * var(--base-spacing-unit));
  --h3-spacing-bottom: calc(15 * var(--base-spacing-unit));
  --h4-spacing-bottom: calc(15 * var(--base-spacing-unit));
  --h5-spacing-bottom: calc(15 * var(--base-spacing-unit));
  --h6-spacing-bottom: calc(15 * var(--base-spacing-unit));
}

.m-b--15 {
  margin-bottom: calc(-1 * 15 * var(--base-spacing-unit));
}

.mod_article:has(.m-b--15) > .inside {
  margin-bottom: calc(15 * var(--base-spacing-unit));
}

.p-t-15 > .inside,
.mod_article.p-t-15 > .inside {
  padding-top: calc(15 * var(--base-spacing-unit));
}

.p-b-15 > .inside,
.mod_article.p-b-15 > .inside {
  padding-bottom: calc(15 * var(--base-spacing-unit));
}

.m-b--50p {
  margin-bottom: -25%;
}

.mod_article:has(.m-b--50p) {
  margin-bottom: 25%;
}

.article-xs-1 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-1 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-2 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-2 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-3 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-3 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-4 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-4 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-5 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-5 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-6 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-6 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-7 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-7 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-8 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-8 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-9 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-9 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-10 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-10 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-11 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-11 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xs-12 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xs-12 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 0) {
  .article-xs-1 .inside > * {
    grid-column-end: span 1;
  }
  @supports not (display: grid) {
    .article-xs-1 .inside > * {
      width: 8.3333333333%;
    }
  }
  .article-start-xs-1 .inside > * {
    grid-column-start: 1;
  }
  .article-xs-2 .inside > * {
    grid-column-end: span 2;
  }
  @supports not (display: grid) {
    .article-xs-2 .inside > * {
      width: 16.6666666667%;
    }
  }
  .article-start-xs-2 .inside > * {
    grid-column-start: 2;
  }
  .article-xs-3 .inside > * {
    grid-column-end: span 3;
  }
  @supports not (display: grid) {
    .article-xs-3 .inside > * {
      width: 25%;
    }
  }
  .article-start-xs-3 .inside > * {
    grid-column-start: 3;
  }
  .article-xs-4 .inside > * {
    grid-column-end: span 4;
  }
  @supports not (display: grid) {
    .article-xs-4 .inside > * {
      width: 33.3333333333%;
    }
  }
  .article-start-xs-4 .inside > * {
    grid-column-start: 4;
  }
  .article-xs-5 .inside > * {
    grid-column-end: span 5;
  }
  @supports not (display: grid) {
    .article-xs-5 .inside > * {
      width: 41.6666666667%;
    }
  }
  .article-start-xs-5 .inside > * {
    grid-column-start: 5;
  }
  .article-xs-6 .inside > * {
    grid-column-end: span 6;
  }
  @supports not (display: grid) {
    .article-xs-6 .inside > * {
      width: 50%;
    }
  }
  .article-start-xs-6 .inside > * {
    grid-column-start: 6;
  }
  .article-xs-7 .inside > * {
    grid-column-end: span 7;
  }
  @supports not (display: grid) {
    .article-xs-7 .inside > * {
      width: 58.3333333333%;
    }
  }
  .article-start-xs-7 .inside > * {
    grid-column-start: 7;
  }
  .article-xs-8 .inside > * {
    grid-column-end: span 8;
  }
  @supports not (display: grid) {
    .article-xs-8 .inside > * {
      width: 66.6666666667%;
    }
  }
  .article-start-xs-8 .inside > * {
    grid-column-start: 8;
  }
  .article-xs-9 .inside > * {
    grid-column-end: span 9;
  }
  @supports not (display: grid) {
    .article-xs-9 .inside > * {
      width: 75%;
    }
  }
  .article-start-xs-9 .inside > * {
    grid-column-start: 9;
  }
  .article-xs-10 .inside > * {
    grid-column-end: span 10;
  }
  @supports not (display: grid) {
    .article-xs-10 .inside > * {
      width: 83.3333333333%;
    }
  }
  .article-start-xs-10 .inside > * {
    grid-column-start: 10;
  }
  .article-xs-11 .inside > * {
    grid-column-end: span 11;
  }
  @supports not (display: grid) {
    .article-xs-11 .inside > * {
      width: 91.6666666667%;
    }
  }
  .article-start-xs-11 .inside > * {
    grid-column-start: 11;
  }
  .article-xs-12 .inside > * {
    grid-column-end: span 12;
  }
  @supports not (display: grid) {
    .article-xs-12 .inside > * {
      width: 100%;
    }
  }
  .article-start-xs-12 .inside > * {
    grid-column-start: 12;
  }
}
.article-sm-1 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-1 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-2 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-2 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-3 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-3 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-4 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-4 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-5 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-5 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-6 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-6 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-7 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-7 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-8 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-8 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-9 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-9 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-10 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-10 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-11 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-11 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-sm-12 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-sm-12 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 34.375em) {
  .article-sm-1 .inside > * {
    grid-column-end: span 1;
  }
  @supports not (display: grid) {
    .article-sm-1 .inside > * {
      width: 8.3333333333%;
    }
  }
  .article-start-sm-1 .inside > * {
    grid-column-start: 1;
  }
  .article-sm-2 .inside > * {
    grid-column-end: span 2;
  }
  @supports not (display: grid) {
    .article-sm-2 .inside > * {
      width: 16.6666666667%;
    }
  }
  .article-start-sm-2 .inside > * {
    grid-column-start: 2;
  }
  .article-sm-3 .inside > * {
    grid-column-end: span 3;
  }
  @supports not (display: grid) {
    .article-sm-3 .inside > * {
      width: 25%;
    }
  }
  .article-start-sm-3 .inside > * {
    grid-column-start: 3;
  }
  .article-sm-4 .inside > * {
    grid-column-end: span 4;
  }
  @supports not (display: grid) {
    .article-sm-4 .inside > * {
      width: 33.3333333333%;
    }
  }
  .article-start-sm-4 .inside > * {
    grid-column-start: 4;
  }
  .article-sm-5 .inside > * {
    grid-column-end: span 5;
  }
  @supports not (display: grid) {
    .article-sm-5 .inside > * {
      width: 41.6666666667%;
    }
  }
  .article-start-sm-5 .inside > * {
    grid-column-start: 5;
  }
  .article-sm-6 .inside > * {
    grid-column-end: span 6;
  }
  @supports not (display: grid) {
    .article-sm-6 .inside > * {
      width: 50%;
    }
  }
  .article-start-sm-6 .inside > * {
    grid-column-start: 6;
  }
  .article-sm-7 .inside > * {
    grid-column-end: span 7;
  }
  @supports not (display: grid) {
    .article-sm-7 .inside > * {
      width: 58.3333333333%;
    }
  }
  .article-start-sm-7 .inside > * {
    grid-column-start: 7;
  }
  .article-sm-8 .inside > * {
    grid-column-end: span 8;
  }
  @supports not (display: grid) {
    .article-sm-8 .inside > * {
      width: 66.6666666667%;
    }
  }
  .article-start-sm-8 .inside > * {
    grid-column-start: 8;
  }
  .article-sm-9 .inside > * {
    grid-column-end: span 9;
  }
  @supports not (display: grid) {
    .article-sm-9 .inside > * {
      width: 75%;
    }
  }
  .article-start-sm-9 .inside > * {
    grid-column-start: 9;
  }
  .article-sm-10 .inside > * {
    grid-column-end: span 10;
  }
  @supports not (display: grid) {
    .article-sm-10 .inside > * {
      width: 83.3333333333%;
    }
  }
  .article-start-sm-10 .inside > * {
    grid-column-start: 10;
  }
  .article-sm-11 .inside > * {
    grid-column-end: span 11;
  }
  @supports not (display: grid) {
    .article-sm-11 .inside > * {
      width: 91.6666666667%;
    }
  }
  .article-start-sm-11 .inside > * {
    grid-column-start: 11;
  }
  .article-sm-12 .inside > * {
    grid-column-end: span 12;
  }
  @supports not (display: grid) {
    .article-sm-12 .inside > * {
      width: 100%;
    }
  }
  .article-start-sm-12 .inside > * {
    grid-column-start: 12;
  }
}
.article-md-1 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-1 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-2 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-2 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-3 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-3 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-4 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-4 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-5 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-5 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-6 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-6 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-7 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-7 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-8 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-8 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-9 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-9 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-10 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-10 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-11 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-11 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-md-12 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-md-12 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 48em) {
  .article-md-1 .inside > * {
    grid-column-end: span 1;
  }
  @supports not (display: grid) {
    .article-md-1 .inside > * {
      width: 8.3333333333%;
    }
  }
  .article-start-md-1 .inside > * {
    grid-column-start: 1;
  }
  .article-md-2 .inside > * {
    grid-column-end: span 2;
  }
  @supports not (display: grid) {
    .article-md-2 .inside > * {
      width: 16.6666666667%;
    }
  }
  .article-start-md-2 .inside > * {
    grid-column-start: 2;
  }
  .article-md-3 .inside > * {
    grid-column-end: span 3;
  }
  @supports not (display: grid) {
    .article-md-3 .inside > * {
      width: 25%;
    }
  }
  .article-start-md-3 .inside > * {
    grid-column-start: 3;
  }
  .article-md-4 .inside > * {
    grid-column-end: span 4;
  }
  @supports not (display: grid) {
    .article-md-4 .inside > * {
      width: 33.3333333333%;
    }
  }
  .article-start-md-4 .inside > * {
    grid-column-start: 4;
  }
  .article-md-5 .inside > * {
    grid-column-end: span 5;
  }
  @supports not (display: grid) {
    .article-md-5 .inside > * {
      width: 41.6666666667%;
    }
  }
  .article-start-md-5 .inside > * {
    grid-column-start: 5;
  }
  .article-md-6 .inside > * {
    grid-column-end: span 6;
  }
  @supports not (display: grid) {
    .article-md-6 .inside > * {
      width: 50%;
    }
  }
  .article-start-md-6 .inside > * {
    grid-column-start: 6;
  }
  .article-md-7 .inside > * {
    grid-column-end: span 7;
  }
  @supports not (display: grid) {
    .article-md-7 .inside > * {
      width: 58.3333333333%;
    }
  }
  .article-start-md-7 .inside > * {
    grid-column-start: 7;
  }
  .article-md-8 .inside > * {
    grid-column-end: span 8;
  }
  @supports not (display: grid) {
    .article-md-8 .inside > * {
      width: 66.6666666667%;
    }
  }
  .article-start-md-8 .inside > * {
    grid-column-start: 8;
  }
  .article-md-9 .inside > * {
    grid-column-end: span 9;
  }
  @supports not (display: grid) {
    .article-md-9 .inside > * {
      width: 75%;
    }
  }
  .article-start-md-9 .inside > * {
    grid-column-start: 9;
  }
  .article-md-10 .inside > * {
    grid-column-end: span 10;
  }
  @supports not (display: grid) {
    .article-md-10 .inside > * {
      width: 83.3333333333%;
    }
  }
  .article-start-md-10 .inside > * {
    grid-column-start: 10;
  }
  .article-md-11 .inside > * {
    grid-column-end: span 11;
  }
  @supports not (display: grid) {
    .article-md-11 .inside > * {
      width: 91.6666666667%;
    }
  }
  .article-start-md-11 .inside > * {
    grid-column-start: 11;
  }
  .article-md-12 .inside > * {
    grid-column-end: span 12;
  }
  @supports not (display: grid) {
    .article-md-12 .inside > * {
      width: 100%;
    }
  }
  .article-start-md-12 .inside > * {
    grid-column-start: 12;
  }
}
.article-lg-1 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-1 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-2 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-2 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-3 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-3 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-4 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-4 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-5 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-5 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-6 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-6 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-7 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-7 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-8 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-8 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-9 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-9 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-10 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-10 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-11 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-11 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-lg-12 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-lg-12 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 58.75em) {
  .article-lg-1 .inside > * {
    grid-column-end: span 1;
  }
  @supports not (display: grid) {
    .article-lg-1 .inside > * {
      width: 8.3333333333%;
    }
  }
  .article-start-lg-1 .inside > * {
    grid-column-start: 1;
  }
  .article-lg-2 .inside > * {
    grid-column-end: span 2;
  }
  @supports not (display: grid) {
    .article-lg-2 .inside > * {
      width: 16.6666666667%;
    }
  }
  .article-start-lg-2 .inside > * {
    grid-column-start: 2;
  }
  .article-lg-3 .inside > * {
    grid-column-end: span 3;
  }
  @supports not (display: grid) {
    .article-lg-3 .inside > * {
      width: 25%;
    }
  }
  .article-start-lg-3 .inside > * {
    grid-column-start: 3;
  }
  .article-lg-4 .inside > * {
    grid-column-end: span 4;
  }
  @supports not (display: grid) {
    .article-lg-4 .inside > * {
      width: 33.3333333333%;
    }
  }
  .article-start-lg-4 .inside > * {
    grid-column-start: 4;
  }
  .article-lg-5 .inside > * {
    grid-column-end: span 5;
  }
  @supports not (display: grid) {
    .article-lg-5 .inside > * {
      width: 41.6666666667%;
    }
  }
  .article-start-lg-5 .inside > * {
    grid-column-start: 5;
  }
  .article-lg-6 .inside > * {
    grid-column-end: span 6;
  }
  @supports not (display: grid) {
    .article-lg-6 .inside > * {
      width: 50%;
    }
  }
  .article-start-lg-6 .inside > * {
    grid-column-start: 6;
  }
  .article-lg-7 .inside > * {
    grid-column-end: span 7;
  }
  @supports not (display: grid) {
    .article-lg-7 .inside > * {
      width: 58.3333333333%;
    }
  }
  .article-start-lg-7 .inside > * {
    grid-column-start: 7;
  }
  .article-lg-8 .inside > * {
    grid-column-end: span 8;
  }
  @supports not (display: grid) {
    .article-lg-8 .inside > * {
      width: 66.6666666667%;
    }
  }
  .article-start-lg-8 .inside > * {
    grid-column-start: 8;
  }
  .article-lg-9 .inside > * {
    grid-column-end: span 9;
  }
  @supports not (display: grid) {
    .article-lg-9 .inside > * {
      width: 75%;
    }
  }
  .article-start-lg-9 .inside > * {
    grid-column-start: 9;
  }
  .article-lg-10 .inside > * {
    grid-column-end: span 10;
  }
  @supports not (display: grid) {
    .article-lg-10 .inside > * {
      width: 83.3333333333%;
    }
  }
  .article-start-lg-10 .inside > * {
    grid-column-start: 10;
  }
  .article-lg-11 .inside > * {
    grid-column-end: span 11;
  }
  @supports not (display: grid) {
    .article-lg-11 .inside > * {
      width: 91.6666666667%;
    }
  }
  .article-start-lg-11 .inside > * {
    grid-column-start: 11;
  }
  .article-lg-12 .inside > * {
    grid-column-end: span 12;
  }
  @supports not (display: grid) {
    .article-lg-12 .inside > * {
      width: 100%;
    }
  }
  .article-start-lg-12 .inside > * {
    grid-column-start: 12;
  }
}
.article-xl-1 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-1 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-2 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-2 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-3 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-3 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-4 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-4 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-5 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-5 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-6 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-6 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-7 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-7 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-8 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-8 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-9 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-9 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-10 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-10 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-11 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-11 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

.article-xl-12 > .inside {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: var(--grid-gutter);
  -moz-column-gap: var(--grid-gutter);
  column-gap: var(--grid-gutter);
}
@supports not (display: grid) {
  .article-xl-12 > .inside > * {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 68.75em) {
  .article-xl-1 .inside > * {
    grid-column-end: span 1;
  }
  @supports not (display: grid) {
    .article-xl-1 .inside > * {
      width: 8.3333333333%;
    }
  }
  .article-start-xl-1 .inside > * {
    grid-column-start: 1;
  }
  .article-xl-2 .inside > * {
    grid-column-end: span 2;
  }
  @supports not (display: grid) {
    .article-xl-2 .inside > * {
      width: 16.6666666667%;
    }
  }
  .article-start-xl-2 .inside > * {
    grid-column-start: 2;
  }
  .article-xl-3 .inside > * {
    grid-column-end: span 3;
  }
  @supports not (display: grid) {
    .article-xl-3 .inside > * {
      width: 25%;
    }
  }
  .article-start-xl-3 .inside > * {
    grid-column-start: 3;
  }
  .article-xl-4 .inside > * {
    grid-column-end: span 4;
  }
  @supports not (display: grid) {
    .article-xl-4 .inside > * {
      width: 33.3333333333%;
    }
  }
  .article-start-xl-4 .inside > * {
    grid-column-start: 4;
  }
  .article-xl-5 .inside > * {
    grid-column-end: span 5;
  }
  @supports not (display: grid) {
    .article-xl-5 .inside > * {
      width: 41.6666666667%;
    }
  }
  .article-start-xl-5 .inside > * {
    grid-column-start: 5;
  }
  .article-xl-6 .inside > * {
    grid-column-end: span 6;
  }
  @supports not (display: grid) {
    .article-xl-6 .inside > * {
      width: 50%;
    }
  }
  .article-start-xl-6 .inside > * {
    grid-column-start: 6;
  }
  .article-xl-7 .inside > * {
    grid-column-end: span 7;
  }
  @supports not (display: grid) {
    .article-xl-7 .inside > * {
      width: 58.3333333333%;
    }
  }
  .article-start-xl-7 .inside > * {
    grid-column-start: 7;
  }
  .article-xl-8 .inside > * {
    grid-column-end: span 8;
  }
  @supports not (display: grid) {
    .article-xl-8 .inside > * {
      width: 66.6666666667%;
    }
  }
  .article-start-xl-8 .inside > * {
    grid-column-start: 8;
  }
  .article-xl-9 .inside > * {
    grid-column-end: span 9;
  }
  @supports not (display: grid) {
    .article-xl-9 .inside > * {
      width: 75%;
    }
  }
  .article-start-xl-9 .inside > * {
    grid-column-start: 9;
  }
  .article-xl-10 .inside > * {
    grid-column-end: span 10;
  }
  @supports not (display: grid) {
    .article-xl-10 .inside > * {
      width: 83.3333333333%;
    }
  }
  .article-start-xl-10 .inside > * {
    grid-column-start: 10;
  }
  .article-xl-11 .inside > * {
    grid-column-end: span 11;
  }
  @supports not (display: grid) {
    .article-xl-11 .inside > * {
      width: 91.6666666667%;
    }
  }
  .article-start-xl-11 .inside > * {
    grid-column-start: 11;
  }
  .article-xl-12 .inside > * {
    grid-column-end: span 12;
  }
  @supports not (display: grid) {
    .article-xl-12 .inside > * {
      width: 100%;
    }
  }
  .article-start-xl-12 .inside > * {
    grid-column-start: 12;
  }
}
.text-center {
  text-align: center;
}

@media screen and (min-width: 0) {
  .text-xs-left {
    text-align: left;
  }
}

@media screen and (min-width: 34.375em) {
  .text-sm-left {
    text-align: left;
  }
}

@media screen and (min-width: 48em) {
  .text-md-left {
    text-align: left;
  }
}

@media screen and (min-width: 58.75em) {
  .text-lg-left {
    text-align: left;
  }
}

@media screen and (min-width: 68.75em) {
  .text-xl-left {
    text-align: left;
  }
}

/*
html {
  &::after {
    content: 'screen-xs';
    position: fixed;
    z-index: 9999;
    font-size: 0.75rem;
    bottom: 0;
    left: 0;
    background-color: var(--color-brand);
    color: var(--color-text-inverted);
    padding: 0 0.3334rem;
    border-radius: 0 5px 0 0;

    @include media-query(screen-sm) {
      content: 'screen-sm';
    }

    @include media-query(screen-md) {
      content: 'screen-md';
    }

    @include media-query(screen-lg) {
      content: 'screen-lg';
    }

    @include media-query(screen-xl) {
      content: 'screen-xl';
    }
  }
}
*/