/**
 * CLICKPRESS CSS-Grid
 * @author: Stefan Schulz-Lauterbach
 *
 * thanks to Dinko Skopljak for co-working
 */
.justify-items-start {
  justify-items: start;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-stretch {
  justify-items: stretch;
}

.content-start {
  align-content: start;
}

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

.content-end {
  align-content: end;
}

.items-start {
  align-items: start;
}

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

.items-end {
  align-items: end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

[class*=grid_] {
  display: grid;
  grid-gap: 1rem;
}
[class*=grid_] > .block {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .grid_mobile_100 {
    grid-template-columns: 1fr;
  }
  .grid_mobile_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_mobile_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_mobile_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_mobile_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_mobile_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_mobile_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_mobile_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_mobile_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_mobile_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_mobile_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_mobile_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_mobile_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_mobile_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_mobile_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_mobile_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .gap_mobile_0 {
    grid-gap: 0;
  }
  .gap_mobile_1 {
    grid-gap: 1rem;
  }
  .gap_mobile_2 {
    grid-gap: 2rem;
  }
  .gap_mobile_3 {
    grid-gap: 3rem;
  }
  .gap_mobile_4 {
    grid-gap: 4rem;
  }
  .gap_mobile_5 {
    grid-gap: 5rem;
  }
  .gap_mobile_6 {
    grid-gap: 6rem;
  }
  .gap_mobile_7 {
    grid-gap: 7rem;
  }
  .gap_mobile_8 {
    grid-gap: 8rem;
  }
  .gap_mobile_9 {
    grid-gap: 9rem;
  }
  .gap_mobile_10 {
    grid-gap: 10rem;
  }
  .gap_mobile_11 {
    grid-gap: 11rem;
  }
  .gap_mobile_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 768px) {
  .grid_tablet_100 {
    grid-template-columns: 1fr;
  }
  .grid_tablet_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_tablet_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_tablet_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_tablet_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_tablet_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_tablet_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_tablet_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_tablet_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_tablet_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_tablet_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_tablet_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_tablet_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_tablet_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_tablet_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_tablet_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_tablet_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_tablet_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_tablet_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .gap_tablet_0 {
    grid-gap: 0;
  }
  .gap_tablet_1 {
    grid-gap: 1rem;
  }
  .gap_tablet_2 {
    grid-gap: 2rem;
  }
  .gap_tablet_3 {
    grid-gap: 3rem;
  }
  .gap_tablet_4 {
    grid-gap: 4rem;
  }
  .gap_tablet_5 {
    grid-gap: 5rem;
  }
  .gap_tablet_6 {
    grid-gap: 6rem;
  }
  .gap_tablet_7 {
    grid-gap: 7rem;
  }
  .gap_tablet_8 {
    grid-gap: 8rem;
  }
  .gap_tablet_9 {
    grid-gap: 9rem;
  }
  .gap_tablet_10 {
    grid-gap: 10rem;
  }
  .gap_tablet_11 {
    grid-gap: 11rem;
  }
  .gap_tablet_12 {
    grid-gap: 12rem;
  }
}
@media (min-width: 992px) {
  .grid_desktop_100 {
    grid-template-columns: 1fr;
  }
  .grid_desktop_50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_33_33_33 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid_desktop_75_25 {
    grid-template-columns: 3fr 1fr;
  }
  .grid_desktop_25_75 {
    grid-template-columns: 1fr 3fr;
  }
  .grid_desktop_66_33 {
    grid-template-columns: 2fr 1fr;
  }
  .grid_desktop_60_40 {
    grid-template-columns: 3fr 2fr;
  }
  .grid_desktop_40_60 {
    grid-template-columns: 2fr 3fr;
  }
  .grid_desktop_33_66 {
    grid-template-columns: 1fr 2fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_50_25_25 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid_desktop_25_50_25 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid_desktop_25_25_50 {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .grid_desktop_40_30_30 {
    grid-template-columns: 4fr 3fr 3fr;
  }
  .grid_desktop_30_40_30 {
    grid-template-columns: 3fr 4fr 3fr;
  }
  .grid_desktop_30_30_40 {
    grid-template-columns: 3fr 3fr 4fr;
  }
  .grid_desktop_20_40_40 {
    grid-template-columns: 1fr 2fr 2fr;
  }
  .grid_desktop_40_20_40 {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .grid_desktop_40_40_20 {
    grid-template-columns: 2fr 2fr 1fr;
  }
  .grid_desktop_25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_desktop_40_20_20_20 {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .grid_desktop_20_40_20_20 {
    grid-template-columns: 1fr 2fr 1fr 1fr;
  }
  .grid_desktop_20_20_40_20 {
    grid-template-columns: 1fr 1fr 2fr 1fr;
  }
  .grid_desktop_20_20_20_40 {
    grid-template-columns: 1fr 1fr 1fr 2fr;
  }
  .grid_desktop_20_20_20_20_20 {
    grid-template-columns: repeat(5, 1fr);
  }
  .gap_desktop_0 {
    grid-gap: 0;
  }
  .gap_desktop_1 {
    grid-gap: 1rem;
  }
  .gap_desktop_2 {
    grid-gap: 2rem;
  }
  .gap_desktop_3 {
    grid-gap: 3rem;
  }
  .gap_desktop_4 {
    grid-gap: 4rem;
  }
  .gap_desktop_5 {
    grid-gap: 5rem;
  }
  .gap_desktop_6 {
    grid-gap: 6rem;
  }
  .gap_desktop_7 {
    grid-gap: 7rem;
  }
  .gap_desktop_8 {
    grid-gap: 8rem;
  }
  .gap_desktop_9 {
    grid-gap: 9rem;
  }
  .gap_desktop_10 {
    grid-gap: 10rem;
  }
  .gap_desktop_11 {
    grid-gap: 11rem;
  }
  .gap_desktop_12 {
    grid-gap: 12rem;
  }
}

/*# sourceMappingURL=clickpress-grid.css.map */

@charset "UTF-8";
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

html {
  --bb-red: #9C1006;
  --bb-red-tint: #C2382B; /* hover/active lift */
  --bb-red-deep: #6D0903; /* pressed state */
  /* Beige — primary warm surface, used as page background on
     editorial sections and condolence cards. */
  --bb-beige: #F3E2CE;
  --bb-beige-soft: #F9EFE0; /* lighter wash */
  --bb-beige-deep: #E2CDB2; /* divider on beige */
  /* Navy — secondary brand colour. Cool counterpart to red.
     Used for institutional surfaces, info badges, secondary actions
     (Vorsorge, "Was tun im Trauerfall", informational copy blocks). */
  --bb-navy: #1D3D7A;
  --bb-navy-tint: #3556A0; /* hover/active lift */
  --bb-navy-deep: #142B57; /* pressed state */
  /* Neutrals */
  --bb-darkgrey: #6F6E6E; /* body copy, secondary text, logo greys */
  --bb-midgrey: #BBB8B9; /* dividers, disabled, quiet borders */
  --bb-ink: #3C3C3B; /* logo wordmark grey — used for primary text on light surfaces */
  --bb-paper: #FAF7F2; /* off-white page surface (slightly warm) */
  --bb-white: #FFFFFF;
  --bb-black: #1A1A1A;
  /* ============================================================
     COLOR — Semantic
     ============================================================ */
  --color-bg: var(--bb-white); /* page surface is white */
  --color-bg-warm: var(--bb-beige); /* used ONLY to separate sections from white */
  --color-bg-warm-soft: var(--bb-beige-soft);
  --color-bg-header: var(--bb-paper); /* fixed-header background once scrolled */
  --color-surface: var(--bb-white);
  --color-surface-quiet: var(--bb-beige-soft);
  --color-fg: var(--bb-ink); /* primary text */
  --color-fg-muted: var(--bb-darkgrey); /* secondary text on white only */
  --color-fg-on-warm: var(--bb-ink); /* on beige: use ink, never darkgrey (AA contrast) */
  --color-fg-quiet: var(--bb-midgrey); /* tertiary, timestamps */
  --color-fg-on-red: var(--bb-white);
  --color-fg-on-navy: var(--bb-white);
  --color-fg-on-dark: var(--bb-white);
  --color-accent: var(--bb-red);
  --color-accent-hover: var(--bb-red-tint);
  --color-accent-pressed: var(--bb-red-deep);
  --color-accent-cool: var(--bb-navy);
  --color-accent-cool-hover: var(--bb-navy-tint);
  --color-accent-cool-pressed: var(--bb-navy-deep);
  --color-border: var(--bb-midgrey);
  --color-border-soft: #DDD9D1;
  --color-border-strong: var(--bb-darkgrey);
  --color-divider: var(--bb-beige-deep);
  --color-focus-ring: color-mix(in oklab, var(--bb-red) 35%, transparent);
  --brand-color1:	var(--bb-red);
  --brand-color2:	var(--bb-beige);
  --brand-color3:	var(--bb-navy);
  --brand-black:	var(--bb-black);
  --grau-100:	#F2F2F3;
  --grau-200:	#E5E5E6;
  --grau-300:	#D7D9DA;
  --grau-400:	#BDBFC2;
  --grau-500:	#95999D;
  --grau-600:	#74787C;
  --grau-700:	#56595C;
  --grau-800:	#3D4042;
  --grau-900:	var(--brand-black);
  --base-color:	#fff;
  --text-color:	var(--grau-900);
  --text-color-light: #fff;
  --heading-color:	var(--brand-color1);
  --secondary-heading-color:	var(--brand-color2);
  --action:	var(--brand-color1);
  --action-respond:	var(--brand-color3);
  --alert-yellow:	#ff0;
  --alert-blue:	#00f;
  --alert-red:	#f00;
  --alert-green:	#0f0;
}

:root {
  --brand-color1-100: color-mix(in srgb, var(--brand-color1), white 80%);
  --brand-color1-200: color-mix(in srgb, var(--brand-color1), white 60%);
  --brand-color1-300: color-mix(in srgb, var(--brand-color1), white 40%);
  --brand-color1-400: color-mix(in srgb, var(--brand-color1), white 20%);
  --brand-color1-500: var(--brand-color1);
  --brand-color1-600: color-mix(in srgb, var(--brand-color1), black 20%);
  --brand-color1-700: color-mix(in srgb, var(--brand-color1), black 40%);
  --brand-color1-800: color-mix(in srgb, var(--brand-color1), black 60%);
  --brand-color1-900: color-mix(in srgb, var(--brand-color1), black 80%);
  --brand-color2-100: color-mix(in srgb, var(--brand-color2), white 80%);
  --brand-color2-200: color-mix(in srgb, var(--brand-color2), white 60%);
  --brand-color2-300: color-mix(in srgb, var(--brand-color2), white 40%);
  --brand-color2-400: color-mix(in srgb, var(--brand-color2), white 20%);
  --brand-color2-500: var(--brand-color2);
  --brand-color2-600: color-mix(in srgb, var(--brand-color2), black 20%);
  --brand-color2-700: color-mix(in srgb, var(--brand-color2), black 40%);
  --brand-color2-800: color-mix(in srgb, var(--brand-color2), black 60%);
  --brand-color2-900: color-mix(in srgb, var(--brand-color2), black 80%);
  --brand-color3-100: color-mix(in srgb, var(--brand-color3), white 80%);
  --brand-color3-200: color-mix(in srgb, var(--brand-color3), white 60%);
  --brand-color3-300: color-mix(in srgb, var(--brand-color3), white 40%);
  --brand-color3-400: color-mix(in srgb, var(--brand-color3), white 20%);
  --brand-color3-500: var(--brand-color3);
  --brand-color3-600: color-mix(in srgb, var(--brand-color3), black 20%);
  --brand-color3-700: color-mix(in srgb, var(--brand-color3), black 40%);
  --brand-color3-800: color-mix(in srgb, var(--brand-color3), black 60%);
  --brand-color3-900: color-mix(in srgb, var(--brand-color3), black 80%);
}

html {
  --base-font-size: 16px;
  --doc-font-size: 16;
}

body {
  --font-family-sans:	Arial, "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family-serif:	Georgia, "Times New Roman", Times, serif;
  --font-family-system:	system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-family-display:	var(--font-family-system);
  --font-family-default:	var(--font-family-system);
  --fw-l:	300;
  --fw-n:	400;
  --fw-sb:	600;
  --fw-b:	700;
}

:root {
  --space-small: .5rem;
  --space-medium: 1rem;
  --space-large: 3rem;
  --space-xlarge: 6rem;
  --space-default: var(--space-medium);
}

.bg-light {
  background-color: var(--grau-100);
}

.bg-dark {
  background-color: var(--grau-800);
  --text-color: #fff;
  --heading-color: #fff;
  --action: #fff;
}

.bg-primary {
  background-color: var(--brand-color1);
  --text-color: #fff;
  --heading-color: #fff;
  --action: #fff;
}

.bg-secondary {
  background-color: var(--brand-color2);
  --text-color: #fff;
  --heading-color: #fff;
  --action: #fff;
}

:root {
  --border-radius-global: calc(car(--space-default) / 4);
}

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

.invisible, .ce_form .widget-radio .radio_container > span input, .ce_form .widget-checkbox .checkbox_container > span input {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisibleAccessible,
.sr-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

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

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.flexit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.center-text {
  text-align: center;
}
.center-block {
  margin-inline: auto;
}
.center-all {
  text-align: center;
  margin-inline: auto;
}

.listreset, .notfall-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

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

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

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

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -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 */
}

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

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

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

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

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

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

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

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

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

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

small {
  font-size: 75%;
}

dd {
  margin: 0;
}

html {
  font-size: 100%;
  font-family: var(--font-family-default);
}
@media screen and (min-width: 768px) {
  html {
    font-size: 112.5%;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 125%;
  }
}

html,
body {
  font-family: var(--font-family-default);
  font-weight: var(--fw-n);
  line-height: 1.5;
  color: var(--text-color);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
p {
  color: var(--text-color);
}
p:not(:last-child) {
  margin: 0 0 0.75em 0;
}

::-moz-selection {
  background: var(--grau-500);
  color: #fff;
  text-shadow: none;
}

::-moz-selection,
::selection {
  background: var(--grau-500);
  color: #fff;
  text-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  text-wrap: balance;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  text-decoration: none;
  color: inherit;
}

:where([class^=content-]:is(h2, h3, h4, h5, h6):first-of-type,
.ce_cp_column_start:is(h2, h3, h4, h5, h6):first-of-type) {
  margin-top: 0;
}

h1, .h1 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-sb);
  color: var(--heading-color);
  margin: 0 0 0.5em 0;
  font-size: clamp(28 / var(--doc-font-size) * 1rem, 1.5rem + 1.5vw, 48 / var(--doc-font-size) * 1rem);
}

h2, .h2 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-n);
  color: var(--text-color);
  margin: 0 0 0.5em 0;
  font-size: clamp(22 / var(--doc-font-size) * 1rem, 1.2rem + 0.9vw, 36 / var(--doc-font-size) * 1rem);
}

h3, .h3 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-n);
  color: var(--heading-color);
  margin: 0 0 0.5em 0;
  font-size: clamp(20 / var(--doc-font-size) * 1rem, 1.15rem + 0.5vw, 28 / var(--doc-font-size) * 1rem);
}

h4, .h4 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--heading-color);
  margin: 0.75em 0 0.5em 0;
  font-size: clamp(18 / var(--doc-font-size) * 1rem, 1.05rem + 0.4vw, 24 / var(--doc-font-size) * 1rem);
}

h5, .h5 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--text-color);
  margin: 0.75em 0 0.5em 0;
  font-size: clamp(16 / var(--doc-font-size) * 1rem, 0.95rem + 0.3vw, 22 / var(--doc-font-size) * 1rem);
}

h6, .h6 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--text-color);
  margin: 0.75em 0 0.5em 0;
  font-size: calc(20 / var(--doc-font-size) * 1rem);
}

img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

figure {
  line-height: 0;
  margin: 0;
  display: block;
}

figcaption {
  line-height: 1.2;
}

figure img {
  display: block;
}

figcaption {
  display: inline-block;
  caption-side: bottom;
  font-style: italic;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--grau-500);
}

/*Alle Bilder ohne Alt-Attribut kennzeichen*/
/*sollte für Production auskommentiert werden!*/
img:not([alt]),
img[alt=""] {
  border: 5px dashed #c00;
}

/*Behebt Probleme mit responsiven Bildern
//https://community.contao.org/de/showthread.php?81074-Problem-mit-Bildgr%C3%B6%C3%9Fen-bei-responsive-Ausgabe-(seit-Kurzem)&p=545407&viewfull=1#post545407
*/
:where(source[width][height] ~ img) {
  width: auto;
  height: auto;
}

a {
  color: var(--action);
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
a:hover, a:focus {
  color: var(--action-respond);
}

:focus-visible {
  outline: 1px dashed var(--grau-700);
}

a[href^=tel] {
  text-decoration: none;
  color: var(--text-color);
}

a:has(img) {
  display: block;
}

ul li, ol li, dl li {
  color: inherit;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

[class^=icon] {
  height: 1.5rem;
  width: 1.5rem;
  display: inline-block;
  vertical-align: sub;
}
[class^=icon] + span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

html {
  background-color: var(--base-color);
}

body {
  margin: 0 auto;
}

.wrapper {
  min-height: 100dvh;
}

.wrap, .mod_article .wrap-article, #footer .inside, #header .inside {
  max-width: 1440;
  margin: 0 auto;
}
@media screen and (max-width: calc(1440px + 2rem)px) {
  .wrap, .mod_article .wrap-article, #footer .inside, #header .inside {
    padding: 0 var(--space-default) 0 var(--space-default);
  }
}

.container {
  position: relative;
}

/*
.inside {

} */
#header {
  color: var(--grau-900);
  padding: var(--space-default);
}
#header .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-default);
}

#topheader [class^=content-],
#topheader p {
  margin: 0;
}

#topheader .invisible, #topheader .ce_form .widget-radio .radio_container > span input, .ce_form .widget-radio .radio_container > span #topheader input, #topheader .ce_form .widget-checkbox .checkbox_container > span input, .ce_form .widget-checkbox .checkbox_container > span #topheader input,
#topheader [id^=skipNavigation],
#header .invisible,
#header .ce_form .widget-radio .radio_container > span input,
.ce_form .widget-radio .radio_container > span #header input,
#header .ce_form .widget-checkbox .checkbox_container > span input,
.ce_form .widget-checkbox .checkbox_container > span #header input,
#header [id^=skipNavigation] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

#topheader {
  background: var(--bb-paper);
  border-bottom: 1px solid var(--color-border-soft);
  font-family: var(--font-body);
}
#topheader .inside {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 32px;
}
#topheader .content-element-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#topheader .content-hyperlink a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--bb-red);
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  -webkit-transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
}
#topheader .content-hyperlink a:hover {
  color: var(--bb-red-deep);
}
#topheader .icon-phone {
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  fill: currentColor;
  stroke: currentColor;
}
#topheader .content-text {
  padding-left: 18px;
  border-left: 1px solid var(--color-border-soft);
}
#topheader .content-text .rte p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-darkgrey);
}
#topheader .mod_customnav {
  margin-left: auto;
}
#topheader .mod_customnav .level_1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#topheader .mod_customnav .level_1 a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bb-darkgrey);
  text-decoration: none;
  -webkit-transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
}
#topheader .mod_customnav .level_1 a:hover {
  color: var(--bb-red);
}
#topheader a:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: 1px;
}

#wrapper > #header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--color-border-soft);
}

#header .inside {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
#header .flexit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  min-height: 84px;
}
#header .content-image {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0;
}
#header .content-image figure {
  margin: 0;
}
#header .content-image figure a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
#header .content-image img {
  display: block;
  width: auto;
  height: 52px;
}
#header .mainnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#header .mainnav .level_1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 4px;
}
#header .mainnav .level_1 > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#header .mainnav .level_1 > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  height: 100%;
  padding: 30px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--bb-ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 180ms cubic-bezier(0.2, 0, 0, 1), border-color 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: color 180ms cubic-bezier(0.2, 0, 0, 1), border-color 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_1 > li > a:hover, #header .mainnav .level_1 > li > a.active, #header .mainnav .level_1 > li > a.trail {
  color: var(--bb-red);
  border-bottom-color: var(--bb-red);
}
#header .mainnav .level_1 > li:hover > a[aria-haspopup]::after, #header .mainnav .level_1 > li:focus-within > a[aria-haspopup]::after {
  color: var(--bb-red);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#header .mainnav .level_1 > li:hover > .level_2, #header .mainnav .level_1 > li:focus-within > .level_2 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  -webkit-transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s;
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav a[aria-haspopup]::after {
  content: "›";
  font-size: 14px;
  line-height: 1;
  color: var(--bb-darkgrey);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: color 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: color 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1), color 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: transform 180ms cubic-bezier(0.2, 0, 0, 1), color 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_2 {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--bb-paper);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  -webkit-box-shadow: var(--shadow-overlay);
          box-shadow: var(--shadow-overlay);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  pointer-events: none;
  -webkit-transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_2 > li {
  position: relative;
}
#header .mainnav .level_2 > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 14px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--bb-ink);
  text-decoration: none;
  border-bottom: 0;
  -webkit-transition: background 140ms, color 140ms;
  transition: background 140ms, color 140ms;
}
#header .mainnav .level_2 > li > a:hover, #header .mainnav .level_2 > li > a.active, #header .mainnav .level_2 > li > a.trail {
  background: var(--bb-beige-soft);
  color: var(--bb-red);
}
#header .mainnav .level_2 > li:hover > a[aria-haspopup]::after, #header .mainnav .level_2 > li:focus-within > a[aria-haspopup]::after {
  color: var(--bb-red);
}
#header .mainnav .level_2 > li:hover > .level_3, #header .mainnav .level_2 > li:focus-within > .level_3 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: auto;
  -webkit-transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s;
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s, -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_2 a[aria-haspopup]::after {
  font-size: 13px;
  color: var(--bb-midgrey);
  -webkit-transform: none;
          transform: none;
  -webkit-transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: color 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_3 {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: -11px;
  left: 100%;
  min-width: 240px;
  background: var(--bb-paper);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  -webkit-box-shadow: var(--shadow-overlay);
          box-shadow: var(--shadow-overlay);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  pointer-events: none;
  -webkit-transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: opacity 180ms cubic-bezier(0.2, 0, 0, 1), transform 180ms cubic-bezier(0.2, 0, 0, 1), visibility 0s linear 180ms cubic-bezier(0.2, 0, 0, 1), -webkit-transform 180ms cubic-bezier(0.2, 0, 0, 1);
}
#header .mainnav .level_3 > li > a {
  display: block;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--bb-darkgrey);
  text-decoration: none;
  -webkit-transition: background 140ms, color 140ms;
  transition: background 140ms, color 140ms;
}
#header .mainnav .level_3 > li > a:hover, #header .mainnav .level_3 > li > a.active, #header .mainnav .level_3 > li > a.trail {
  background: var(--bb-beige-soft);
  color: var(--bb-red);
}
#header a:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  border-radius: 1px;
}

@media (max-width: 1100px) {
  #header .mainnav .level_1 > li > a {
    padding: 30px 10px;
    font-size: 14px;
  }
  #header .flexit {
    gap: 24px;
  }
}
@media (max-width: 960px) {
  #topheader .content-text {
    display: none;
  }
  #topheader .content-element-group {
    gap: 16px;
  }
  #header .flexit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 16px;
  }
  #header .content-image img {
    height: 44px;
  }
  #header .mainnav {
    width: 100%;
  }
  #header .mainnav .level_1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2px 4px;
  }
  #header .mainnav .level_1 > li > a {
    padding: 10px 12px;
    border-bottom: 0;
  }
  #header .mainnav .level_2,
  #header .mainnav .level_3 {
    display: none;
  }
  #header .mainnav a[aria-haspopup]::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  #header .mainnav .level_2,
  #header .mainnav .level_3,
  #header .mainnav a[aria-haspopup]::after {
    -webkit-transition: none;
    transition: none;
  }
}
:root {
  --bg-footer: var(--bb-navy);
}

#footer {
  --text-color: #fff;
  --action: #fff;
  background-color: var(--bg-footer);
  padding: var(--space-default);
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  #footer {
    padding: var(--space-large) var(--space-default);
  }
}
@media screen and (min-width: 1200px) {
  #footer {
    padding: var(--space-xlarge) var(--space-default);
  }
}
@media screen and (min-width: calc(1440px + 2rem)px) {
  #footer {
    padding: var(--space-xlarge) 0;
  }
}
.mod_article {
  padding: var(--space-default) 1rem var(--space-default) 1rem;
}
@media screen and (min-width: 768px) {
  .mod_article {
    --space-default: var(--space-large);
  }
}
@media screen and (min-width: calc(1440px + 2rem)px) {
  .mod_article {
    --space-default: var(--space-large);
    padding-inline: 0;
  }
}
.mod_article .wrap-article {
  position: relative;
  padding-inline: 0;
}
.mod_article.nopadding {
  padding: 0;
}
.mod_article.full-width .wrap-article {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.flexit {
  --flexit-gap: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--flexit-gap);
}
.flexit.align-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flexit.align-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flexit.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flexit.gap-0 {
  --flexit-gap: 0;
}
.flexit.gap-1 {
  --flexit-gap: 1rem;
}
.flexit.gap-2 {
  --flexit-gap: 2rem;
}
.flexit.gap-3 {
  --flexit-gap: 3rem;
}
.flexit.valign-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flexit.valign-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

nav ul,
.subnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li,
.subnav li {
  position: relative;
}
nav a,
.subnav a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover, nav a:focus,
.subnav a:hover,
.subnav a:focus {
  color: var(--action-respond);
}

.mainnav {
  --link-space-inner-v: 0.2rem;
  --link-space-inner-h: 1rem;
  --bg-nav: transparent;
}
.mainnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--bg-nav);
}
.mainnav ul ul {
  display: none;
  position: absolute;
  z-index: 5;
}
.mainnav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mainnav a {
  padding: var(--link-space-inner-v) var(--link-space-inner-h);
}
.mainnav ul > li:hover > ul, .mainnav ul > li:focus > ul {
  display: block;
}
.mainnav .level_3 {
  left: 100%;
  top: 0;
}

/* Contao elements */
[class^=content-] {
  margin-bottom: var(--space-large);
}

.content-headline.centered {
  text-align: center;
}

blockquote {
  padding: 0.25rem 0 1rem 0;
  margin: 0;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--grau-700);
}
blockquote p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.notfall-box {
  border: none;
  border-left: 2px solid var(--brand-color1);
  padding: var(--space-large);
  background-color: var(--card-background);
}
.notfall-box ul li {
  padding: var(--space-small) 0;
  border-bottom: 1px solid var(--bb-beige-deep);
}
.notfall-box ul li strong {
  color: var(--action);
  font-size: 1.5em;
}

.root {
  --button-bg: transparent;
  --button-border-radius: 15px;
  --button-transition: .3s;
}

.button {
  display: inline-block;
}
.button.centered {
  display: block;
  text-align: center;
}
.button.centered a {
  display: inline-block;
}
.button a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid var(--text-color);
  border-radius: var(--button-border-radius);
  text-decoration: none;
  background-color: var(--button-bg);
  color: var(--text-color);
  -webkit-transition: background-color var(--button-transition);
  transition: background-color var(--button-transition);
}
.button a:hover, .button a:focus {
  border-color: var(--brand-color1-800, var(--grau-900));
  background-color: inherit;
}
.button.primary a {
  background-color: var(--brand-color1);
  color: var(--text-color-light);
  border-color: var(--brand-color1);
}
.button.primary a:hover, .button.primary a:focus {
  background-color: var(--brand-color1-700, var(--grau-800));
  border-color: var(--brand-color1-800, var(--grau-900));
}
.button.secondary a {
  background-color: var(--brand-color2);
  color: var(--text-color-light);
  border-color: var(--brand-color2);
}
.button.secondary a:hover, .button.secondary a:focus {
  background-color: var(--brand-color2-700, var(--grau-800));
  border-color: var(--brand-color2-800, var(--grau-900));
}

@media screen and (min-width: 768px) {
  .content-text.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.content-text.media.media--above {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-text.media.media--above figure {
  margin-bottom: var(--space-default);
}
.content-text.media.media--right {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content-text.media.media--right > h1,
.content-text.media.media--right > h2,
.content-text.media.media--right > h3,
.content-text.media.media--right > h4,
.content-text.media.media--right > h5,
.content-text.media.media--right > h6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.content-text.media.media--right .rte {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.content-text.media.media--right figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: var(--space-default);
}
.content-text.media.media--below {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-text.media.media--below figure {
  margin-top: var(--space-default);
}
.content-text.media--left {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content-text.media--left > h1,
.content-text.media--left > h2,
.content-text.media--left > h3,
.content-text.media--left > h4,
.content-text.media--left > h5,
.content-text.media--left > h6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.content-text.media--left .rte {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.content-text.media--left figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-right: var(--space-default);
}

.content-headline .subheadline {
  display: block;
  font-size: max(0.4em, 16px);
  text-transform: uppercase;
}
.content-headline .subheadline:before {
  content: "—";
  color: var(--brand-color1);
  margin-right: 0.2em;
}

.ce_form {
  /*Variable Werte für Grundstyle*/
  --field-border-color:	#000000;
  --field-background:	var(--grau-100);
  --field-color:	var(--text-color);
  --label-color:	var(--text-color);
  --field-alert-color:	red;
  --field-valid-color:	var(--text-color);
  --field-invalid-color:	var(--grau-800);
  --field-border-radius:	0px;
  --field-border-width:	1px;
  --field-border-style:	solid;
  --field-padding:	.6em;
  --checkbox-size:	20px;
  --abstand-widget:	.5em;
  --color-rangeslider:	var(--text-color);
}

/*Klassen für @extend*/
.fieldreset, .ce_form .widget-checkbox.dsgvo fieldset {
  border: none;
  padding: 0;
}

/*Basic Styles*/
.ce_form input,
.ce_form label {
  display: block;
}
.ce_form label,
.ce_form legend {
  color: var(--label-color);
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory {
  color: var(--field-alert-color);
}
.ce_form input,
.ce_form textarea {
  width: 100%;
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
  padding: var(--field-padding);
  background-color: var(--field-background);
  color: var(--field-colord);
  border-radius: var(--field-border-radius);
}
.ce_form input:focus,
.ce_form textarea:focus {
  background: hsl(var(--field-background), calc(var(--l) - 2%));
}
.ce_form input:valid {
  color: var(--field-valid-color);
}
.ce_form input:invalid {
  color: var(--field-invalid-color);
}
.ce_form fieldset {
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
}
.ce_form .widget {
  margin-bottom: var(--abstand-widget);
}
.ce_form .widget-checkbox .checkbox_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-checkbox .checkbox_container > span label {
  padding-left: 30px;
}
.ce_form .widget-checkbox .checkbox_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
  background: var(--field-background);
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-checkbox .checkbox_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: var(--checkbox-size);
}
.ce_form .widget-checkbox.dsgvo legend {
  display: none;
}
.ce_form .widget-radio .radio_container > span {
  display: block;
  position: relative;
}
.ce_form .widget-radio .radio_container > span label {
  padding-left: 30px;
}
.ce_form .widget-radio .radio_container > span label::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  height: var(--checkbox-size);
  width: var(--checkbox-size);
  border-radius: 50%;
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
  background: var(--field-background);
  text-align: center;
  cursor: pointer;
}
.ce_form .widget-radio .radio_container > span input:checked ~ label::before {
  content: "✔ ";
  line-height: 1;
  font-size: var(--checkbox-size);
}
.ce_form .widget-submit button {
  background: var(--field-background);
  color: var(--label-color);
  padding: var(--field-padding);
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
  cursor: pointer;
}
.ce_form .widget-submit button:hover {
  background: hsl(var(--field-background), calc(var(--l) - 2%));
}
.ce_form .widget-select,
.ce_form .ctlg_form_field.select {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ce_form .widget-select::after,
.ce_form .ctlg_form_field.select::after {
  content: "▼";
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem 0.2em;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
  color: var(--field-colord);
}
.ce_form .widget-select label,
.ce_form .ctlg_form_field.select label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.ce_form .widget-select select,
.ce_form .ctlg_form_field.select select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  padding: var(--field-padding);
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
  background: var(--field-background);
  color: var(--field-colord);
  cursor: pointer;
  border-radius: var(--field-border-radius);
}
.ce_form .widget-select select option,
.ce_form .ctlg_form_field.select select option {
  padding: var(--field-padding);
  color: var(--field-colord);
}
.ce_form .widget-select select,
.ce_form .ctlg_form_field.select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.ce_form .widget-range .range {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 25px;
  background: var(--field-background);
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.ce_form .widget-range .range:hover, .ce_form .widget-range .range:focus {
  opacity: 1;
}
.ce_form .widget-range .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: var(--color-rangeslider);
  cursor: pointer;
}
.ce_form .widget-range .range::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--color-rangeslider);
  cursor: pointer;
}

.pagination p {
  margin: 0;
}
.pagination ul {
  margin: 0;
  display: block;
}
.pagination li {
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 0.3em;
}
.pagination a,
.pagination .active {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--grau-100);
  border: 1px solid var(--grau-300);
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  line-height: 2.5rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pagination .active {
  background: var(--grau-700);
  border: 1px solid var(--grau-700);
  color: var(--grau-100);
}
.pagination a.next,
.pagination a.previous,
.pagination a.first,
.pagination a.last {
  width: auto;
  padding: 0 0.5em;
}
.pagination a:hover,
.pagination a:focus {
  background: var(--grau-700);
  border: 1px solid var(--grau-700);
  color: #fff;
}

.layout_teaser .flexit {
  --flexit-gap: 2rem;
}
.layout_teaser .visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  position: relative;
}
.layout_teaser .visual img {
  width: 100%;
}
.layout_teaser .visual .timecard {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #ffffff;
  text-align: center;
  padding: 0.5rem;
}
.layout_teaser .visual .timecard span {
  display: block;
  font-size: 0.6rem;
}
.layout_teaser .visual .timecard span.day {
  color: var(--brand-color1);
  font-size: 0.8rem;
}
.layout_teaser .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

:root {
  --card-background: var(--brand-color2-200);
  --card-border-color: var(--brand-color1-200);
}

.card {
  background-color: var(--card-background);
  border: 1px solid var(--card-border-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.card:hover, .card:focus-within {
  --card-background: var(--brand-color2-300);
}
.card .inner {
  padding: var(--space-medium);
}
.card .headline:before {
  content: "—";
  display: block;
}
.card a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

[class*=_0] .card {
  margin-left: -1px;
  margin-bottom: -1px;
}

.hero-box {
  --text-color: #fff;
  --headine-color: #fff;
  --action: #fff;
  position: relative;
  width: 100%;
  min-height: min(82vh, 760px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
.hero-box .wrap-article {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "stack";
}
.hero-box .wrap-article > * {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: stack;
}
.hero-box .hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-box .hero-image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.hero-box .hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}
.hero-box .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 20, 19, 0.5)), color-stop(38%, rgba(20, 20, 19, 0.22)), to(rgba(20, 20, 19, 0.58)));
  background: linear-gradient(180deg, rgba(20, 20, 19, 0.5) 0%, rgba(20, 20, 19, 0.22) 38%, rgba(20, 20, 19, 0.58) 100%);
}
.hero-box .hero-content {
  position: relative;
  z-index: 2;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center;
  color: var(--bb-white);
}
.hero-box .hero-content .hero-title {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: var(--fw-b);
  text-wrap: balance;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.28);
}
.hero-box .hero-content .hero-title .subheadline {
  font-weight: var(--fw-n);
}
.hero-box .hero-content .rte p {
  margin: 0 auto;
  max-width: 56ch;
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .hero-box {
    min-height: min(78vh, 620px);
  }
  .hero-box .hero-content {
    padding: 64px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-box .hero-content a {
    -webkit-transition: none;
    transition: none;
  }
}

#container #main .inside > .hero-box {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.has-hero #topheader,
.has-hero #wrapper > #header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  -webkit-transition: background 180ms cubic-bezier(0.2, 0, 0, 1), border-color 180ms cubic-bezier(0.2, 0, 0, 1), backdrop-filter 180ms cubic-bezier(0.2, 0, 0, 1);
  transition: background 180ms cubic-bezier(0.2, 0, 0, 1), border-color 180ms cubic-bezier(0.2, 0, 0, 1), backdrop-filter 180ms cubic-bezier(0.2, 0, 0, 1);
}
.has-hero #topheader {
  top: 0;
}
.has-hero #wrapper > #header {
  top: var(--th-h, 43px);
}
.has-hero .hero-box .hero-content {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -ms-grid-column-align: center;
      justify-self: center;
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: calc(var(--header-stack, 150px) + 32px);
  padding-bottom: 56px;
}
.has-hero:not(.is-scrolled) #topheader {
  background: transparent;
  border-bottom-color: transparent;
}
.has-hero:not(.is-scrolled) #wrapper > #header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.has-hero:not(.is-scrolled) #header .content-image img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.has-hero:not(.is-scrolled) #topheader .content-hyperlink a {
  color: var(--bb-white);
}
.has-hero:not(.is-scrolled) #topheader .content-hyperlink a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.has-hero:not(.is-scrolled) #topheader .content-text {
  border-left-color: rgba(255, 255, 255, 0.25);
}
.has-hero:not(.is-scrolled) #topheader .content-text .rte p {
  color: rgba(255, 255, 255, 0.8);
}
.has-hero:not(.is-scrolled) #topheader .mod_customnav .level_1 a {
  color: rgba(255, 255, 255, 0.85);
}
.has-hero:not(.is-scrolled) #topheader .mod_customnav .level_1 a:hover {
  color: var(--bb-white);
}
.has-hero:not(.is-scrolled) #header .mainnav .level_1 > li > a {
  color: var(--bb-white);
}
.has-hero:not(.is-scrolled) #header .mainnav .level_1 > li > a:hover, .has-hero:not(.is-scrolled) #header .mainnav .level_1 > li > a.active, .has-hero:not(.is-scrolled) #header .mainnav .level_1 > li > a.trail {
  color: var(--bb-white);
  border-bottom-color: var(--bb-red);
}
.has-hero:not(.is-scrolled) #header .mainnav .level_1 > li > a[aria-haspopup]::after {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) {
  .has-hero .hero-box .hero-content {
    padding-top: calc(var(--header-stack, 150px) + 16px);
  }
}

.bb-process {
  background: var(--bb-paper, #FAF7F2);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.bb-process__inner {
  max-width: 75rem;
  margin-inline: auto;
}

.bb-process__header {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.bb-process__eyebrow,
.bb-process__label {
  color: var(--bb-red-deep, #6D0903);
  text-transform: uppercase;
}

.bb-process__steps {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) clamp(0.75rem, 1.4vw, 1.25rem) minmax(0, 1fr) clamp(0.75rem, 1.4vw, 1.25rem) minmax(0, 1fr) clamp(0.75rem, 1.4vw, 1.25rem) minmax(0, 1fr) clamp(0.75rem, 1.4vw, 1.25rem) minmax(0, 1fr);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.bb-process__steps::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 10%;
  right: 10%;
  border-top: 0.25rem dotted var(--bb-navy, #1D3D7A);
  opacity: 0.45;
}

.bb-process__step {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: var(--bb-white, #FFFFFF);
  border: 1px solid var(--bb-beige-deep, #E2CDB2);
  border-radius: 1.25rem;
  text-align: center;
  -webkit-box-shadow: 0 0.75rem 1.75rem rgba(26, 26, 26, 0.08);
          box-shadow: 0 0.75rem 1.75rem rgba(26, 26, 26, 0.08);
}

.bb-process__icon {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(4.5rem, 8vw, 5.75rem);
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  color: var(--bb-white, #FFFFFF);
  background: var(--bb-red, #9C1006);
  border-radius: 999rem;
}

.bb-process__icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bb-process__number {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  color: var(--bb-red, #9C1006);
  background: var(--bb-beige-soft, #F9EFE0);
  border: 2px solid currentColor;
  border-radius: 999rem;
}

.bb-process__content > * {
  margin-top: 0;
}

.bb-process__content > *:last-child {
  margin-bottom: 0;
}

.bb-process__label {
  margin-bottom: 0.35rem;
}

.bb-process h3 {
  margin-bottom: 0.6rem;
  color: var(--bb-ink, #3C3C3B);
}

.bb-process p {
  color: var(--bb-darkgrey, #6F6E6E);
}

@media (max-width: 62rem) {
  .bb-process__steps {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bb-process__steps::before {
    display: none;
  }
}
@media (max-width: 38rem) {
  .bb-process__header {
    text-align: left;
  }
  .bb-process__steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .bb-process__step {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1rem 1fr;
    grid-template-columns: auto 1fr;
        grid-template-areas: "icon number" "icon content";
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
  }
  .bb-process__icon {
    grid-area: icon;
    margin-bottom: 0;
  }
  .bb-process__number {
    grid-area: number;
    margin-bottom: 0.65rem;
  }
  .bb-process__content {
    grid-area: content;
  }
}
@media (max-width: 38rem){
  .bb-process__icon {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .bb-process__number {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .bb-process__content {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
