/**
 * 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 {
  --brand-color1:	#72c447;
  --brand-color2:	#004971;
  --brand-color3:	#d9edcc;
  --brand-color4:	#668553;
  --brand-black:	#1D1D1B;
  --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(--brand-color2);
  --heading-color:	var(--brand-color1);
  --secondary-heading-color:	var(--brand-color2);
  --action:	var(--brand-color2);
  --action-respond:	var(--brand-color1);
  --alert-yellow:	#ff0;
  --alert-blue:	#00f;
  --alert-red:	#f00;
  --alert-green:	#0f0;
}

@font-face {
  font-family: "Avenir Roman";
  font-style: normal;
  font-weight: normal;
  src: local("Avenir Roman"), url("/files/theme/fonts/avenir_roman_12.woff") format("woff");
}
html {
  --base-font-size: 16px;
  --doc-font-size: 16;
  --base-line-height: 24px;
}

body {
  --font-family-sans:	"Avenir Roman", "Arial", "Droid sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-family-serif:	var(--font-family-sans);
  --font-family-display:	var(--font-family-serif);
  --font-family-default:	var(--font-family-sans);
  --fw-l:	400;
  --fw-n:	400;
  --fw-sb:	700;
  --fw-b:	800;
}

strong {
  font-weight: var(--fw-b);
}

.bg-brand1 {
  background-color: var(--brand-color1);
  color: #fff;
}
.bg-brand1 * {
  color: inherit;
}

.bg-wave {
  background: url("/files/theme/img/bg-wave.svg") top center no-repeat;
  background-size: contain;
}

.boxed {
  background-color: var(--brand-color3);
  border-radius: 15px;
  padding: 4% 15%;
}

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

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

/*Make Contao Elements visble at all*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.centered {
  text-align: center;
}

.listreset, .ce_downloads 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 {
  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;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

.top-s {
  margin-top: 1rem !important;
}

.top-m {
  margin-top: 2rem !important;
}

.top-l {
  margin-top: 4rem !important;
}

.top-xl {
  margin-top: 6rem !important;
}

.bottom-s {
  margin-bottom: 0.5rem !important;
}

.bottom-m {
  margin-bottom: 1rem !important;
}

.bottom-l {
  margin-bottom: 2rem !important;
}

.bottom-xl {
  margin-bottom: 3rem !important;
}

.ptop-s {
  padding-top: 0.5rem !important;
}

.ptop-m {
  padding-top: 1rem !important;
}

.ptop-l {
  padding-top: 2rem !important;
}

.ptop-xl {
  padding-top: 3rem !important;
}

.pbottom-s {
  padding-bottom: 0.5rem !important;
}

.pbottom-m {
  padding-bottom: 1rem !important;
}

.pbottom-l {
  padding-bottom: 2rem !important;
}

.pbottom-xl {
  padding-bottom: 3rem !important;
}

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

[class^=ce_] h2:first-of-type,
[class^=ce_] h3:first-of-type,
[class^=ce_] h4:first-of-type,
[class^=ce_] h5:first-of-type,
[class^=ce_] h6:first-of-type {
  margin-top: 0;
}

h1 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--text-color);
  margin: 0 0 0.5em 0;
  font-size: 1.3rem;
}

h2 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--text-color);
  margin: 0.75em 0 0.5em 0;
  font-size: 1.3rem;
}

h3 {
  font-family: var(--font-family-display);
  font-weight: var(--fw-b);
  color: var(--heading-color);
  margin: 0.75em 0 0.5em 0;
  font-size: 1.3rem;
}

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: 1.3rem;
}

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: 1.3rem;
}

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: 1rem;
}

img, picture {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

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

figcaption {
  line-height: 1.2;
}

/*Fix für Caption auf Bildbreite beschränken*/
figure img {
  display: block;
}
.centered figure img {
  display: inline-block;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
}

/*Alle Bilder ohne Alt-Attribut kennzeichen*/
/*sollte für Production auskommentiert werden!*/
img:not([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:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px dashed var(--text-color);
  outline-offset: 2px;
}

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

:target::before {
  content: "";
  display: block;
  height: 180px;
  margin-top: -180px;
}

ul li, ol li {
  color: inherit;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

html {
  background-color: var(--grau-100);
}

body {
  margin: 0 auto;
  background-color: #fff;
}

.wrapper {
  max-width: 1920px;
  min-height: 100vh;
}

.wrap, .flipboxgrid, #ablauf, #begleitung, .mod_article .wrap-article, #footer .inside, #header .inside, .left-aside-right .container, .aside-right .container, .aside-left .container {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .wrap, .flipboxgrid, #ablauf, #begleitung, .mod_article .wrap-article, #footer .inside, #header .inside, .left-aside-right .container, .aside-right .container, .aside-left .container {
    padding: 0 1rem 0 1rem;
  }
}

.grid_start {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 1480px) {
  .grid_start {
    padding: 0;
  }
}

.container {
  background-color: #fff;
  position: relative;
}

/*
.inside {

} */
.aside-left .container {
  --layout-column-gap: 5rem;
  -ms-grid-columns: 25% var(--layout-column-gap) calc(75% - var(--layout-column-gap));
  grid-template-columns: 25% calc(75% - var(--layout-column-gap));
      grid-template-areas: "aside-left main";
  grid-column-gap: var(--layout-column-gap);
}
@media screen and (min-width: 990px) {
  .aside-left .container {
    display: -ms-grid;
    display: grid;
  }
}
.aside-left .container .left {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: aside-left;
}

.aside-right .container {
  --layout-column-gap: 5rem;
  -ms-grid-columns: calc(75% - var(--layout-column-gap)) var(--layout-column-gap) 25%;
  grid-template-columns: calc(75% - var(--layout-column-gap)) 25%;
      grid-template-areas: "main aside-right ";
  grid-column-gap: var(--layout-column-gap);
}
@media screen and (min-width: 990px) {
  .aside-right .container {
    display: -ms-grid;
    display: grid;
  }
}
.aside-right .container .right {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: aside-right;
}

.left-aside-right .container {
  --layout-column-gap: 3rem;
  -ms-grid-columns: 25% var(--layout-column-gap) calc(50% - var(--layout-column-gap) * 2) var(--layout-column-gap) 25%;
  grid-template-columns: 25% calc(50% - var(--layout-column-gap) * 2) 25%;
      grid-template-areas: "aside-left main aside-right ";
  grid-column-gap: var(--layout-column-gap);
}
@media screen and (min-width: 990px) {
  .left-aside-right .container {
    display: -ms-grid;
    display: grid;
  }
}
.left-aside-right .container .left {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: aside-left;
}
.left-aside-right .container .right {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: aside-right;
}

#header {
  background: #fff;
  color: var(--grau-900);
  padding: 1rem;
  /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
}
#header .logo img {
  height: 100px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#header.sticky {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--brand-color1);
}
#header.sticky .logo img {
  height: 60px;
}
#header.sticky + #container {
  padding-top: 102px;
}
@media screen and (max-width: 520px) {
  #header .grid_start {
    padding: 0;
  }
  #header .logo {
    text-align: center;
  }
  #header .logo a {
    display: inline-block;
  }
  #header .logo img {
    height: 60px;
  }
  #header .mainnav ul {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
  }
  #header .mainnav li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    margin: 1px;
    background-color: #edf3e9;
  }
}

#footer {
  padding: 1rem;
  border-top: 3px solid var(--brand-color1);
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 2.5rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  #footer {
    padding: 4rem 1rem;
  }
}
.mod_article {
  padding: 2rem 0;
}
@media screen and (min-width: 900px) {
  .mod_article {
    padding: 4rem 0;
  }
}
#ueberuns .content-image img {
  width: 100px;
}
@media screen and (min-width: 600px) {
  #ueberuns .content-image img {
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  #ueberuns .content-image img {
    width: auto;
  }
}

#ablauf {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  #ablauf .ablauf {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    --border-width: 30px;
  }
  #ablauf .ablauf.first {
    border-radius: 50px 0 0 0;
  }
  #ablauf .ablauf.first, #ablauf .ablauf.third {
    margin: 0 0 0 50%;
    border-left: var(--border-width) solid var(--brand-color1);
  }
  #ablauf .ablauf.second, #ablauf .ablauf.fourth {
    margin: 0 calc(50% - var(--border-width)) 0 0;
    border-right: var(--border-width) solid var(--brand-color1);
  }
  #ablauf .ablauf.fourth {
    padding-bottom: 5rem;
  }
}

@supports (grid-area: auto) {
  [class*=grid_] {
    --gapvalue: 1rem;
    grid-column-gap: var(--gapvalue);
    grid-row-gap: var(--gapvalue);
  }
  @media screen and (min-width: 900px) {
    [class*=grid_] {
      --gapvalue: 2rem;
    }
  }
  @media screen and (min-width: 1400px) {
    [class*=grid_] {
      --gapvalue: 3rem;
    }
  }
  .nogap [class*=grid_] {
    --gapvalue: 0;
  }
  * + .ce_cp_grid_start {
    margin-top: var(--gapvalue);
  }
  .grid-gap-null {
    --gapvalue: 0;
  }
  .grid-gap-small [class*=grid_] {
    --gapvalue: 1rem;
  }
  .grid-item-padding {
    padding: 1rem;
  }
  @media screen and (min-width: 768px) {
    .grid-item-padding {
      padding: 2rem;
    }
  }
}
/* Contao elements */
.ce_headline.centered {
  text-align: center;
}

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

.portrait {
  height: 100%;
  position: relative;
  margin-top: -10%;
}
.portrait.rounded img {
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
}
.portrait.bordered img {
  border: 5px solid var(--brand-color4);
}
.portrait figcaption {
  color: #fff;
  font-size: 1rem;
  position: absolute;
  right: 0;
  bottom: 2rem;
  z-index: 2;
  text-align: right;
  max-width: 150px;
  line-height: 1;
}
.portrait figcaption strong {
  display: block;
}

.content-image.centered figure {
  display: inline-block;
}

.content-text:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 600px) {
  .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--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: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.content-text.media.media--right figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.content-text.media.media--below {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-text.media.media--left {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content-text.media.media--left > h1,
.content-text.media.media--left > h2,
.content-text.media.media--left > h3,
.content-text.media.media--left > h4,
.content-text.media.media--left > h5,
.content-text.media.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.media--left .rte {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.content-text.media.media--left figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.content-text.quote {
  position: relative;
  max-width: 30rem;
}
.content-text.quote:before {
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  left: -20px;
  top: -20px;
  background: url("/files/theme/img/quote.svg") left top no-repeat;
  opacity: 0.3;
}
.content-text.ablauf {
  padding: 0 5rem;
  position: relative;
}
.content-text.ablauf:after {
  content: "";
  display: block;
  position: absolute;
  height: 100px;
  aspect-ratio: 1;
  background: var(--brand-color1);
  border-radius: 50%;
  text-align: center;
  font-size: 45px;
  color: #fff;
  line-height: 100px;
  font-weight: bold;
}
.content-text.ablauf.first:after {
  content: "1.";
  left: -24px;
  top: -3px;
}
.content-text.ablauf.second {
  text-align: right;
}
.content-text.ablauf.second:after {
  content: "2.";
  right: -20px;
  top: -6px;
}
.content-text.ablauf.third:after {
  content: "3.";
  left: -20px;
  top: -6px;
}
.content-text.ablauf.fourth {
  text-align: right;
}
.content-text.ablauf.fourth:after {
  content: "4.";
  right: -20px;
  top: -6px;
}
.content-text.ablauf h2, .content-text.ablauf h3 {
  color: var(--brand-color1);
  font-weight: bold;
}
.content-text.icontext figure {
  margin-bottom: 1rem;
}
.content-text.icontext h2 {
  font-size: 1.2rem;
  font-weight: bold;
}

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

.mainnav {
  --link-space-inner-v: .2rem;
  --link-space-inner-h: 1rem;
  --bg-nav: #fff;
}
.mainnav ul {
  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;
  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);
  color: var(--text-color);
  font-weight: bold;
}
.mainnav ul > li:hover > ul, .mainnav ul > li:focus > ul {
  display: block;
}
.mainnav .level_3 {
  left: 100%;
  top: 0;
}

.mod_onepage_navigation li {
  display: inline-block;
}

.mod_breadcrumb {
  display: none;
  font-size: 0.875rem;
}
@media screen and (min-width: 900px) {
  .mod_breadcrumb {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .mod_breadcrumb {
    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;
  }
  .mod_breadcrumb ol {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .mod_breadcrumb li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    font-size: 1em;
  }
  .mod_breadcrumb li.active {
    font-weight: var(--fw-b);
  }
  .mod_breadcrumb li:not(.last):after {
    content: ">";
    display: inline-block;
    margin: 0 0.25rem;
  }
  .mod_breadcrumb a {
    font-size: 1em;
    color: var(--text-color);
    -webkit-transition: 0;
    transition: 0;
  }
  .mod_breadcrumb a:hover, .mod_breadcrumb a:focus {
    color: var(--grau-700);
  }
  .mod_breadcrumb .breadcrumb-name {
    margin-right: 0.5rem;
  }
}
.mod_breadcrumb .navicon a:hover .icon-home, .mod_breadcrumb .navicon a:focus .icon-home {
  color: var(--grau-700);
}
.mod_breadcrumb .icon-home {
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
  margin-right: 0;
  height: 18px;
  width: 18px;
  color: var(--grau-500);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.button {
  --button-bg__primary: var(--brand-color1);
  --button-bg__secondary: var(--brand-color2);
  --button-color__light: var(--text-color__light);
  --button-color: var(--text-color);
  --button-border__primary__color: var(--brand-color1);
  --button-border__secondary__color: var(--brand-color2);
  --button-border__width: 1px;
  --button-border__style: solid;
  --button-border__default: var(--button-border__width) var(--button-border__style) var(--button-bg__primary);
  --button-border__radius: 15px 15px 15px 15px;
}

.button {
  display: inline-block;
}
.button a {
  display: block;
  padding: 0.5rem;
  text-align: center;
  border: var(--button-border__default);
  border-radius: var(--button-border__radius);
  text-decoration: none;
  background: none;
  color: var(--button-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button a:hover, .button a:focus {
  border: var(--button-border__default);
  border-color: var(--button-bg__secondary);
  color: var(--button-color__light);
  background: inherit;
}

.ce_download {
  --download-color: #000000;
  --download-background: var(--grau-200);
  --download-border-weight: 1px;
  --download-border-style: solid;
  --download-border-color: var(--grau-400);
  --download-action-color: #ffffff;
  --download-action-background: var(--grau-700);
  --download-action-border-color: var(--grau-800);
}

.ce_download {
  display: inline-block;
  /* Display the extension as file*/
}
.ce_download a {
  display: block;
  padding: 0.5em 0.5em 0.5em 2.5rem;
  color: var(--download-color);
  background-color: var(--download-background);
  border: var(--download-border-weight) var(--download-border-style) var(--download-border-color);
  background-repeat: no-repeat;
  background-position: left 0.25rem center;
  background-size: 1.5rem;
  text-decoration: none;
}
.ce_download a:hover, .ce_download a:focus {
  border-color: var(--download-action-border-color);
  background-color: var(--download-action-background);
  color: var(--download-action-color);
}
.ce_download .download-element a {
  padding: 0.5rem;
}
.ce_download .download-element a:before {
  content: attr(data-type);
  display: inline-block;
  vertical-align: middle;
  height: 1.5rem;
  width: 1.2rem;
  font-size: 8px;
  line-height: 240%;
  text-align: center;
  border: 1px solid var(--download-border-color);
  border-radius: 5px 2px 2px 2px;
  padding: 0.2rem;
  margin-right: 0.3rem;
}

.ce_downloads li {
  padding-left: 1rem;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiM4ODg4ODgiIGQ9Ik0xOSA5aC00VjNIOXY2SDVsNyA3bDctN3pNNSAxOHYyaDE0di0ySDV6Ii8+PC9zdmc+) left top 0.5em no-repeat;
}

.ce_accordion {
  --accordion-toggler-background: #d7d7d7;
  --accordion-toggler-color: #000;
  --accordion-toggler-action-background: #252525;
  --accordion-toggler-action-color: #ffffff;
  --accordion-toggler-action-border-color: rgb(123, 123, 123);
  --accordion-toggler-border-weight: 1px;
  --accordion-toggler-border-style: solid;
  --accordion-toggler-border-color: rgb(209, 209, 209);
  --accordion-toggler-inner-spacing: 1rem 3rem 1rem 1rem;
  --accordion-content-spacing: 1rem;
  --accordion-toggler-transition-time: .2s;
}

.ce_accordion {
  margin-bottom: 0.3em;
}
.ce_accordion .toggler {
  border: var(--accordion-toggler-border-weight) var(--accordion-toggler-border-style) var(--accordion-toggler-border-color);
  position: relative;
  background-color: var(--accordion-toggler-background);
  -webkit-transition: all var(--accordion-toggler-transition-time) linear;
  transition: all var(--accordion-toggler-transition-time) linear;
  padding: var(--accordion-toggler-inner-spacing);
}
.ce_accordion .toggler:hover, .ce_accordion .toggler:focus {
  background-color: var(--accordion-toggler-action-background);
  border: var(--accordion-toggler-border-weight) var(--accordion-toggler-border-style) var(--accordion-toggler-action-border-color);
  color: var(--accordion-toggler-action-color);
}
.ce_accordion .toggler:hover .title, .ce_accordion .toggler:focus .title {
  color: var(--accordion-toggler-action-color);
}
.ce_accordion .toggler::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%231D1D1B'/%3E%3C/svg%3E");
  background-size: 40px;
  color: var(--text-color);
  cursor: pointer;
}
.ce_accordion .toggler:hover::after, .ce_accordion .toggler:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.882 23.506l9.49-9.133a.891.891 0 0 1 1.444.284.869.869 0 0 1-.192.955L20.51 25.627a.891.891 0 0 1-1.252 0L9.143 15.612a.87.87 0 0 1 0-1.239.891.891 0 0 1 1.252 0l9.487 9.133z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.ce_accordion .toggler.active::after {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28.626 10.236l-8.628 8.392-8.624-8.392a.806.806 0 0 0-1.138 1.139L18.856 20l-8.62 8.625a.8.8 0 0 0-.175.878.806.806 0 0 0 1.313.26l8.628-8.39 8.624 8.391a.806.806 0 0 0 1.138-1.139L21.144 20l8.62-8.625a.8.8 0 0 0 .175-.878.806.806 0 0 0-1.313-.26z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.ce_accordion .accordion {
  max-height: 0;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
  overflow: hidden;
}
.ce_accordion .accordion.open {
  max-height: 5000px;
  -webkit-transition: max-height 1.5s;
  transition: max-height 1.5s;
}
.ce_accordion .accordion > div {
  padding: var(--accordion-content-spacing);
}

.ce_form {
  /*Variable Werte für Grundstyle*/
  --field-border-color:	var(--text-color);
  --field-background:	#fff;
  --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:	10px;
  --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 a {
  color: var(--text-color);
}
.ce_form a:hover, .ce_form a:focus {
  color: var(--text-color);
}
.ce_form .grid_start {
  padding: 0;
  margin: 0;
}
.ce_form input,
.ce_form label {
  display: block;
}
.ce_form label,
.ce_form legend {
  color: var(--label-color);
  font-size: 0.8rem;
}
.ce_form label span.mandatory,
.ce_form legend span.mandatory {
  color: var(--text-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: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 {
  text-align: center;
}
.ce_form .widget-submit button {
  background: var(--brand-color2);
  color: #fff;
  padding: var(--field-padding) 2rem;
  border: var(--field-border-width) var(--field-border-style) #fff;
  border-radius: var(--field-border-radius);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ce_form .widget-submit button:hover {
  background: var(--brand-color1);
  border: var(--field-border-width) var(--field-border-style) var(--field-border-color);
}
.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);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.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-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;
}

.ce_gallery.center ul {
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ce_gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ce_gallery ul li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% - 1rem);
      flex-basis: calc(100% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul li {
    margin: 0;
  }
}
.ce_gallery ul.cols_2 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(50% - 1rem);
      flex-basis: calc(50% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_2 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_2 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_2 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_3 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33% - 1rem);
      flex-basis: calc(33% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_3 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_3 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_3 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_4 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(25% - 1rem);
      flex-basis: calc(25% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_4 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_4 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_4 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_5 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(20% - 1rem);
      flex-basis: calc(20% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_5 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_5 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_5 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_6 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(16.6666% - 1rem);
      flex-basis: calc(16.6666% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_6 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_6 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_6 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_7 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(14.28% - 1rem);
      flex-basis: calc(14.28% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_7 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_7 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_7 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_8 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(12.5% - 1rem);
      flex-basis: calc(12.5% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_8 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_8 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_8 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_9 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(11.1111111% - 1rem);
      flex-basis: calc(11.1111111% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_9 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_9 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_9 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_10 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(10% - 1rem);
      flex-basis: calc(10% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_10 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_10 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_10 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_11 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(9.09% - 1rem);
      flex-basis: calc(9.09% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_11 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_11 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_11 li {
    margin: 0;
  }
}
.ce_gallery ul.cols_12 li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(8.333331% - 1rem);
      flex-basis: calc(8.333331% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul.cols_12 {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul.cols_12 {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul.cols_12 li {
    margin: 0;
  }
}

.ce_gallery ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ce_gallery ul li {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33.333333% - 1rem);
      flex-basis: calc(33.333333% - 1rem);
  margin: 0 1rem 1rem 0;
}
@supports (grid-area: auto) {
  .ce_gallery ul {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  @media screen and (min-width: 660px) {
    .ce_gallery ul {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .ce_gallery ul li {
    margin: 0;
  }
}

table {
  --table-border-width: 1px;
  --table-border-style: solid;
  --table-border-color: var(--grau-300);
  --table-color: var(--brand-black);
  --table-even-background: var(--grau-200);
  --table-odd-background: none;
  --table-cell-padding: .5rem;
  --table-th-padding: 1.5rem var(--table-cell-padding) 1rem var(--table-cell-padding);
  --table-row-action-respond-background: #c7c7c7;
  --table-caption-color: rgb(61, 61, 61);
  --table-th-background: rgb(209, 179, 79);
  --table-th-color: rgb(255, 255, 255);
  --table-th-body-background: rgb(186, 173, 129);
  --table-tfoot-fontsize: .7rem;
}

table caption {
  color: var(--table-caption-color);
}
table td, table th {
  border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  padding: var(--table-cell-padding);
}
table tr:nth-child(even) {
  background-color: var(--table-even-background);
}
table tr:nth-child(odd) {
  background-color: var(--table-odd-background);
}
table tr:hover {
  background-color: var(--table-row-action-respond-background);
}
table th {
  padding: var(--table-th-padding);
  text-align: left;
  background-color: var(--table-th-background);
  color: var(--table-th-color);
}
table tbody th {
  background-color: var(--table-th-body-background);
}
table tfoot td, table tfoot th {
  font-size: var(--table-tfoot-fontsize);
}

.ce_table,
.ce_text:has(table) {
  overflow-x: auto;
}

.video_container .responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video_container .responsive:hover {
  cursor: pointer;
}
.video_container .responsive.ratio-169 {
  padding-bottom: 56.25%;
}
.video_container .responsive.ratio-916 {
  padding-bottom: 0;
  height: auto;
  overflow: inherit;
  max-width: auto;
}
.video_container .responsive.ratio-916 iframe {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 9/16 !important;
}

.video_container .responsive iframe,
.video_container .responsive object,
.video_container .responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video_container .responsive figure {
  opacity: 0.75;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.video_container .responsive figure:hover,
.video_container .responsive figure:focus {
  opacity: 1;
}
.video_container .responsive figure:hover figcaption,
.video_container .responsive figure:focus figcaption {
  height: auto;
  bottom: 0;
}
.video_container .responsive figure:focus {
  outline: 4px dashed var(--grau-500);
  outline-offset: -4px;
}
.video_container .responsive figure:focus figcaption {
  height: auto;
  bottom: 0;
}
.video_container .responsive figcaption {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  top: auto;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--grau-800);
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 2rem 0.5rem;
  font-weight: var(--fw-b);
}

.ce_player .video_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.ce_player .video_container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mod_search {
  margin: 1rem 0;
}
.mod_search .formbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  max-width: 30rem;
  margin: 0 auto 2rem auto;
}
.mod_search .formbody .widget-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mod_search .formbody .widget-text label {
  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;
}
.mod_search .formbody .widget-text input {
  height: 40px;
  padding: 0.5em;
  border: 1px solid var(--grau-300);
  border-radius: 5px 0 0 5px;
  background-color: var(--grau-100);
  color: var(--grau-900);
  width: 100%;
}
.mod_search .formbody .widget-submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mod_search .formbody .widget-submit button {
  height: 40px;
  width: auto;
  background: var(--grau-400);
  border: none;
  border-radius: 0 5px 5px 0;
  color: var(--grau-900);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.mod_search .formbody .widget-submit button:hover, .mod_search .formbody .widget-submit button:focus {
  background-color: var(--grau-800);
  color: var(--grau-100);
  cursor: pointer;
}
.mod_search .header {
  margin-bottom: 2rem;
}
.mod_search > div {
  margin-bottom: 2rem;
}
.mod_search h3 {
  font-family: var(--font-family-default);
  font-weight: var(--fw-sb);
  margin-bottom: 0.25em;
  color: var(--grau-700);
}
.mod_search .relevance, .mod_search .url {
  font-size: 0.75rem;
  color: var(--grau-600);
  font-weight: normal;
}
.mod_search .context {
  margin-bottom: 0.25em;
}
.mod_search .highlight {
  background-color: var(--grau-200);
  padding: 0 0.2em;
}
.mod_search .url {
  color: var(--grau-600);
}

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

.ce_rsce_flipbox .flip-box {
  background-color: transparent;
  -webkit-perspective: 1000px;
          perspective: 1000px; /* Remove this if you don't want the 3D effect */
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--brand-color2);
}
.ce_rsce_flipbox .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.ce_rsce_flipbox .flip-box:hover .flip-box-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.ce_rsce_flipbox .flip-box-front, .ce_rsce_flipbox .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 4rem;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  background: var(--brand-color3);
  border-radius: 50%;
  overflow: hidden;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.ce_rsce_flipbox .flip-box-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  text-align: left;
}
.ce_rsce_flipbox .flip-box-front {
  font-weight: bold;
}
.ce_rsce_flipbox .flip-box-front figure {
  border-bottom: 2px solid var(--brand-color1);
}
.ce_rsce_flipbox .flip-box-front figure img {
  display: block;
  margin: 0 auto;
  max-width: 60%;
}

.flipboxgrid {
  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;
}
.flipboxgrid .ce_rsce_flipbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 0 4% 0;
}
@media screen and (min-width: 550px) {
  .flipboxgrid .ce_rsce_flipbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}
@media screen and (min-width: 800px) {
  .flipboxgrid .ce_rsce_flipbox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

.content-headline {
  position: relative;
}
.content-headline.bordered {
  margin-bottom: 2rem;
}
.content-headline.bordered:after {
  content: "";
  border-bottom: 3px solid var(--brand-color1);
  display: block;
  width: 80%;
  margin: 0.3rem auto 0 auto;
}
@media screen and (min-width: 800px) {
  .content-headline.bordered:after {
    width: 30%;
  }
}
