/**
 * 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,
picture,
section,
summary {
  display: block;
}

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

html {
  --brand-color1:	#8dc63f;
  --brand-color2:	#ca4137;
  --brand-color3:	#ffcb06;
  --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(--grau-900);
  --text-color-light: var(--grau-100);
  --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;
}

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

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-default: 1rem;
  --space-medium: 2rem;
  --space-large: 3rem;
  --space-xlarge: 6rem;
}

:root {
  --bp-s: 480+px;
  --bp-m: 768+px;
  --bp-l: 990+px;
  --bp-xl: 1200+px;
  --bp-wrap: 1440+px;
  --bp-wrapbox: 1472+px;
}

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

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

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

.embed-container,
.aspect {
  height: auto;
  padding-bottom: 0;
}
.embed-container.aspect--16\:9,
.aspect.aspect--16\:9 {
  aspect-ratio: 16/9;
}
.embed-container.aspect--16\:10,
.aspect.aspect--16\:10 {
  aspect-ratio: 16/10;
}
.embed-container.aspect--21\:9,
.aspect.aspect--21\:9 {
  aspect-ratio: 21/9;
}
.embed-container.aspect--4\:3,
.aspect.aspect--4\:3 {
  aspect-ratio: 4/3;
}
.embed-container.aspect--3\:2,
.aspect.aspect--3\:2 {
  aspect-ratio: 3/2;
}
.embed-container.aspect--1\:1,
.aspect.aspect--1\:1 {
  aspect-ratio: 1/1;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
p {
  margin: 0 0 0.75em 0;
}

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

:root {
  --spacingtop: 1;
  --spacingbottom: 1;
}

.mtop0 {
  --spacingtop: 0;
}

.mtop10 {
  --spacingtop: 10;
}

.mtop20 {
  --spacingtop: 20;
}

.mtop30 {
  --spacingtop: 30;
}

.mtop40 {
  --spacingtop: 40;
}

.mtop50 {
  --spacingtop: 50;
}

.mtop60 {
  --spacingtop: 60;
}

.mtop70 {
  --spacingtop: 70;
}

.mtop80 {
  --spacingtop: 80;
}

.mtop90 {
  --spacingtop: 90;
}

.mtop100 {
  --spacingtop: 100;
}

.mtop150 {
  --spacingtop: 150;
}

.mtop200 {
  --spacingtop: 200;
}

.mtop300 {
  --spacingtop: 300;
}

.mbottom0 {
  --spacingbottom: 0;
}

.mbottom10 {
  --spacingbottom: 10;
}

.mbottom20 {
  --spacingbottom: 20;
}

.mbottom30 {
  --spacingbottom: 30;
}

.mbottom40 {
  --spacingbottom: 40;
}

.mbottom50 {
  --spacingbottom: 50;
}

.mbottom60 {
  --spacingbottom: 60;
}

.mbottom70 {
  --spacingbottom: 70;
}

.mbottom80 {
  --spacingbottom: 80;
}

.mbottom90 {
  --spacingbottom: 90;
}

.mbottom100 {
  --spacingbottom: 100;
}

.mbottom150 {
  --spacingbottom: 150;
}

.mbottom200 {
  --spacingbottom: 200;
}

.mbottom300 {
  --spacingbottom: 300;
}

.ptop0 {
  --spacingtop: 0;
}

.ptop10 {
  --spacingtop: 10;
}

.ptop20 {
  --spacingtop: 20;
}

.ptop30 {
  --spacingtop: 30;
}

.ptop40 {
  --spacingtop: 40;
}

.ptop50 {
  --spacingtop: 50;
}

.ptop60 {
  --spacingtop: 60;
}

.ptop70 {
  --spacingtop: 70;
}

.ptop80 {
  --spacingtop: 80;
}

.ptop90 {
  --spacingtop: 90;
}

.ptop100 {
  --spacingtop: 100;
}

.ptop150 {
  --spacingtop: 150;
}

.ptop200 {
  --spacingtop: 200;
}

.ptop300 {
  --spacingtop: 300;
}

.pbottom0 {
  --spacingbottom: 0;
}

.pbottom10 {
  --spacingbottom: 10;
}

.pbottom20 {
  --spacingbottom: 20;
}

.pbottom30 {
  --spacingbottom: 30;
}

.pbottom40 {
  --spacingbottom: 40;
}

.pbottom50 {
  --spacingbottom: 50;
}

.pbottom60 {
  --spacingbottom: 60;
}

.pbottom70 {
  --spacingbottom: 70;
}

.pbottom80 {
  --spacingbottom: 80;
}

.pbottom90 {
  --spacingbottom: 90;
}

.pbottom100 {
  --spacingbottom: 100;
}

.pbottom150 {
  --spacingbottom: 150;
}

.pbottom200 {
  --spacingbottom: 200;
}

.pbottom300 {
  --spacingbottom: 300;
}

[class*=mtop] {
  margin-top: calc(var(--spacingtop) * 1px);
}

[class*=mbottom] {
  margin-bottom: calc(var(--spacingbottom) * 1px);
}

[class*=mtop].ppercent {
  margin-top: calc(var(--spacingtop) * 0.1%);
}

[class*=mbottom].ppercent {
  margin-bottom: calc(var(--spacingbottom) * 0.1%);
}

[class*=ptop],
.mod_article[class*=ptop] {
  padding-top: calc(var(--spacingtop) * 1px);
}

[class*=pbottom],
.mod_article[class*=pbottom] {
  padding-bottom: calc(var(--spacingbottom) * 1px);
}

[class*=ptop].ppercent,
.mod_article[class*=ptop].ppercent {
  padding-top: calc(var(--spacingtop) * 0.1%);
}

[class*=pbottom].ppercent,
.mod_article[class*=pbottom].ppercent {
  padding-bottom: calc(var(--spacingbottom) * 0.1%);
}

.innerpadding {
  padding-left: 1rem;
  padding-right: 1rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  font-family: var(--font-family-display);
  color: var(--heading-color);
  margin: 0 0 0.5em 0;
}
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, h2, h3, h4 {
  text-wrap: balance;
}

h1, .h1 {
  font-weight: var(--fw-sb);
  font-size: clamp(1.75rem, 1.316vw + 1.421rem, 3rem);
}

h2, .h2 {
  font-weight: var(--fw-sb);
  font-size: clamp(1.25rem, 0.526vw + 1.118rem, 1.5rem);
}

h3, .h3 {
  font-weight: var(--fw-sb);
  font-size: clamp(1.25rem, 0.526vw + 1.118rem, 1.5rem);
}

h4, .h4 {
  font-weight: var(--fw-b);
  font-size: clamp(1.125rem, 0.395vw + 1.026rem, 1.25rem);
}

h5, .h5 {
  font-weight: var(--fw-b);
  font-size: clamp(1rem, 0.395vw + 0.901rem, 1.25rem);
}

h6, .h6 {
  font-weight: var(--fw-b);
  font-size: 1rem;
}

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

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

figcaption {
  line-height: 1.2;
  font-style: italic;
  text-align: center;
}

figure img {
  display: block;
}

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

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 #000;
  outline-offset: 2px;
}

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

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

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

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

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

.wrapper {
  min-height: 100vh;
}

.wrap, .mod_article .wrap-article, #footer .inside {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1472px) {
  .wrap, .mod_article .wrap-article, #footer .inside {
    padding: 0 1rem 0 1rem;
  }
}

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

#header {
  background: var(--brand-color1);
  color: var(--text-color);
  padding: 1rem clamp(1rem, 0.3043rem + 3.4783vw, 3rem);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#header .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
#header .sitename {
  font-size: clamp(1.25rem, 1.5041rem + 0.5793vw, 1.5rem);
  font-weight: bold;
}

#footer {
  --action: var(--text-color-light);
  background: var(--grau-800);
  color: #fff;
  padding: 1rem;
  border-top: 1rem solid var(--brand-color3);
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 2.5rem 1rem;
  }
}
@media screen and (min-width: 1200px) {
  #footer {
    padding: 4rem 1rem;
  }
}
@media screen and (min-width: 1472px) {
  #footer {
    padding: 4rem 0;
  }
}
#footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
#footer .footer-logos .content-image img {
  border-radius: 5px;
}
#footer .footer-bottom {
  margin-top: 2rem;
}

.mod_article {
  --article-bg-color: transparent;
  --article-color: var(--text-color);
  --ce-color: var(--text-color);
  color: var(--article-color);
  background-color: var(--article-bg-color);
  padding: calc(var(--spacingtop) * 1rem) 1rem calc(var(--spacingbottom) * 1rem) 1rem;
}
@media screen and (min-width: 768px) {
  .mod_article {
    padding: calc(var(--spacingtop) * 2rem) 1rem calc(var(--spacingbottom) * 2rem) 1rem;
  }
}
@media screen and (min-width: 1472px) {
  .mod_article {
    padding: calc(var(--spacingtop) * 3rem) 0 calc(var(--spacingbottom) * 3rem) 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;
}
.mod_article.bg-brandcolor1 {
  --article-bg-color: var(--brand-color1);
  --article-color: var(--text-color);
  --ce-color: var(--text-color);
  --ce-color-invert: var(--text-color);
  --heading-color: var(--text-color);
  border-top: 1rem solid var(--brand-color3);
  border-bottom: 1rem solid var(--brand-color3);
}
.mod_article.bg-brandcolor2 {
  --article-bg-color: var(--brand-color2);
}
.mod_article.bg-hellgrau {
  --article-bg-color: var(--grau-200);
}

@supports (grid-area: auto) {
  .grid-gap-null {
    --gapvalue: 0;
  }
  .grid-item-padding {
    padding: 1rem;
  }
  @media screen and (min-width: 768px) {
    .grid-item-padding {
      padding: 2rem;
    }
  }
}
/* Contao elements */
.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;
}

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

.mainnav {
  --padding-block: .25em;
  --padding-inline: 1em;
}
.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;
}
.mainnav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.mainnav a {
  padding: var(--padding-block) var(--padding-inline);
  color: var(--text-color);
  font-weight: var(--fw-sb);
}
.mainnav a:hover, .mainnav a:focus {
  background-color: var(--brand-color3);
  color: var(--text-color);
  border-radius: 5px;
}

.content-text:after {
  content: "";
  display: table;
  clear: both;
}
@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);
}

.textimage50 {
  --gap-default: var(--gapvalue, 2rem);
  --wraparea: var(--wrap, 1440px);
  padding: 0;
  margin: 0;
}
.textimage50 .wrap-article {
  max-width: unset;
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 0;
}
.textimage50 .wrap-article > .content-element-group {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: content;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-block: 2.5rem;
}
@media screen and (min-width: 1472px) {
  .textimage50 .wrap-article > .content-element-group {
    margin-block: var(--gap-default);
  }
}
.textimage50 .wrap-article > .content-image {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  --space-default: 0;
  grid-area: image;
}
.textimage50 .aufruf {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: image;
  -ms-grid-row-align: end;
  -ms-grid-column-align: end;
  place-self: end;
  padding: 1rem;
  background-color: var(--brand-color2);
  border: 10px solid var(--brand-color3);
  border-radius: 10rem 10rem 10rem 0;
  max-width: 20ch;
  text-align: center;
  font-weight: var(--fw-b);
  color: var(--text-color-light);
  font-size: 1.25rem;
  right: 1.5rem;
  position: relative;
  bottom: 1.5rem;
}
.textimage50 .wrap-article > .content-image {
  height: 100%;
  width: 100%;
  margin-bottom: 0;
}
.textimage50 .wrap-article > .content-image figure {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.textimage50 .wrap-article > .content-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  height: 100%;
  width: 100%;
}

.content-image.siegel {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.textimage50.image--right .wrap-article {
  -ms-grid-columns: var(--gap-default) 1fr var(--gap-default);
  grid-template-columns: var(--gap-default) 1fr var(--gap-default);
      grid-template-areas: "marginleft content gap" "image image image";
}
@media screen and (min-width: 768px) {
  .textimage50.image--right .wrap-article {
    -ms-grid-columns: var(--gap-default) 1fr var(--gap-default) 50%;
    grid-template-columns: var(--gap-default) 1fr var(--gap-default) 50%;
        grid-template-areas: "marginleft content gap image";
  }
  .textimage50 .wrap-article > .content-element-group {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .textimage50 .wrap-article > .content-image {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
  }
  .textimage50 .aufruf {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
  }
}
@media screen and (min-width: 1472px) {
  .textimage50.image--right .wrap-article {
    -ms-grid-columns: calc((100vw - var(--wraparea)) / 2) 1fr var(--gap-default) 50%;
    grid-template-columns: calc((100vw - var(--wraparea)) / 2) 1fr var(--gap-default) 50%;
  }
}

.textimage50.image--left .wrap-article {
  -ms-grid-columns: var(--gap-default) 1fr var(--gap-default);
  grid-template-columns: var(--gap-default) 1fr var(--gap-default);
      grid-template-areas: "gap content marginright" "image image image";
}
@media screen and (min-width: 768px) {
  .textimage50.image--left .wrap-article {
    -ms-grid-columns: 50% var(--gap-default) 1fr var(--gap-default);
    grid-template-columns: 50% var(--gap-default) 1fr var(--gap-default);
        grid-template-areas: "image gap content marginright";
  }
  .textimage50.image--left .wrap-article > .content-element-group {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .textimage50.image--left .wrap-article > .content-image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .textimage50.image--left .wrap-article > .aufruf {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media screen and (min-width: 1472px) {
  .textimage50.image--left .wrap-article {
    -ms-grid-columns: 50% var(--gap-default) 1fr calc((100vw - var(--wraparea)) / 2);
    grid-template-columns: 50% var(--gap-default) 1fr calc((100vw - var(--wraparea)) / 2);
        grid-template-areas: "image gap content marginright";
  }
  .textimage50.image--left .wrap-article > .content-element-group {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .textimage50.image--left .wrap-article > .content-image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .textimage50.image--left .wrap-article > .aufruf {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
