/*style.css*/
/* -------------------------------------------------------------
   2. RESET & BASIS
   ------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	background-color: var(--dunkelrot);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 300;
	font-stretch: 100;
	font-variation-settings: "wght" 320, "wdth" 100;
	line-height: 1.65;
	color: var(--text-dark);
	background: linear-gradient(180deg, var(--creme) 0%, var(--creme-warm) 100%);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	display: block;
}

/* -------------------------------------------------------------
   3. ALLGEMEINE TYPOGRAFIE — h1 bis h4, p, Listen, Zitat
   ------------------------------------------------------------- */

/* Gemeinsame Basis aller Überschriften */
H1, H2, H3, H4
{
	font-family: var(--font);
	font-family: "Bricolage Grotesque", Georgia, sans-serif;
	font-weight: normal;
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--dunkelrot-hover);
	margin: 0;
	column-span: all;
}
H1
{
	font-size: clamp(2rem, 2.9013vw + .9138rem, 3.525rem);
	font-weight: 800;
	margin-bottom: 1.7rem;
}
H2
{
	font-size:clamp(1.75rem, 4.4vw, 2.375rem);
	margin-bottom: 1.4rem;
	line-height: 1.2;
}
H3
{
	font-size:clamp(1.35rem, 3.4vw, 1.55rem);
	line-height: 1.25;
	margin-bottom: 1rem;
	font-weight: 300;
}
H4
{
	font-size: 0.8125rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	color:var(--text-dark);
}
A
{
	text-decoration: none;
	color:var(--text-dark);
	transition: all 0.5s ease-in-out;
	border-bottom:2px solid var(--dunkelrot);
}
A:hover
{
	color:var(--dunkelrot);
	border-bottom-color: transparent;
	font-weight: 700;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
STRONG
{
	font-weight: 700;
}
BLOCKQUOTE
{
	/*font-family: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;*/
	font-weight: 100;
	font-size: clamp(1.75rem, 3.8vw, 2.75rem);
	line-height: 1.25;
	letter-spacing: -0.01em;
	/*font-style: italic;*/
	/*text-align: center;*/
	margin-bottom: 2rem;
	color:var(--text-grau);
}
BLOCKQUOTE P
{
	quotes: '»' '«';
}
BLOCKQUOTE P:before
{
	content: open-quote;
	margin-right: 5px;
}
BLOCKQUOTE P:after
{
	content: close-quote;
	margin-left: 5px;
}

cite {
	display: inline-block;
	font-style: normal;
	font-size: 0.8125rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--hellbraun);
}

cite::before {
	content: "";
	display: inline-block;
	width: 36px;
	height: 1px;
	background: var(--dunkelrot);
	vertical-align: middle;
	margin-right: 14px;
}
@media (max-width: 560px)
{
	H1, H2
	{
		hyphens: auto;
	}
}

/* Hilfsklasse für rote Akzentfarbe in Überschriften */
.hand-drawn-underline
{
	position: relative;
	display: inline-block;
	/* Platz für den Unterstrich */
	border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
	padding: 1rem;
	border:0.25rem solid var(--dunkelrot);
	color:var(--dunkelrot);
}


/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn A, .more A, .back A, .content-hyperlink A, FORM BUTTON, INPUT[type="submit"], .button
   {
	   display: inline-flex;
	   align-items: center;
	   gap: 10px;
	   margin: 1rem 0;
	   padding: clamp(0.5rem, 0.999vw + 0.126rem, 1rem) clamp(0.938rem, 1.873vw + 0.236rem, 1.875rem);
	   font-family:var(--fontheader);
	   font-size: 0.9375rem;
	   font-weight: 800;
	   letter-spacing: 0.01em;
	   border-radius: var(--r-pill);
	   cursor: pointer;
	   transition: 500ms ease-in-out;
	   background-color:var(--dunkelrot);
	   color:var(--weiss);
	   border-bottom: none;
   }
   .btn A:hover, .more A:hover, .back A:hover, .content-hyperlink A:hover, FORM BUTTON:hover, INPUT[type="submit"], .button:hover
   {
	   background:var(--dunkelrot-hover);
	   transform: scale(0.9);
   }
.invert.btn A, .invert.more A, .invert.back A, .invert.content-hyperlink A, FORM .invert BUTTON, .invert INPUT[type="submit"], .invert .button
   {
	   background-color:var(--dunkelrot-hover);
   }
.btn-primary A {
	background: var(--dunkelrot);
	color: var(--weiss);
	box-shadow: 0 0 24px rgba(153, 22, 27, 0.24);
}

.btn-primary A:hover {
	background: var(--dunkelrot-hover);
	color: var(--weiss);
	transform: translateY(-2px);
	box-shadow: 0 0 24px rgba(153, 22, 27, 0.32);
}

.btn-ghost {
	background: transparent;
	color: var(--dunkelrot);
	border-color: var(--dunkelrot);
}

.btn-ghost:hover {
	background: var(--dunkelrot);
	color: var(--weiss);
	transform: translateY(-2px);
}

.btn .arrow {
	transition: transform .25s ease;
}

.btn:hover .arrow {
	transform: translateX(4px);
}

.btn.content-hyperlink {
	display: inline-grid;
	margin-right: 1rem;
}

.contact
{
	line-height: 1;
}
.contact A
{
	padding: 1.618rem;
	display: block;
	background-color: rgba(255, 255, 255, 0.333);
	backdrop-filter:blur(1rem);
	border: 2px solid rgba(159, 82, 45, 0.100);
	/*+border-radius: 1rem;*/
	-moz-border-radius: 1rem;
	-webkit-border-radius: 1rem;
	-khtml-border-radius: 1rem;
	border-radius: 1rem;
	/*+box-shadow: 0 0 4rem -2rem rgba(27, 38, 49, 0.260);*/
	-moz-box-shadow: 0 0 4rem -2rem rgba(27, 38, 49, 0.260);
	-webkit-box-shadow: 0 0 4rem -2rem rgba(27, 38, 49, 0.260);
	box-shadow: 0 0 4rem -2rem rgba(27, 38, 49, 0.260);
}
.contact A:hover
{
	border: 2px solid rgba(193, 206, 41, 0.100);
	background: var(--dunkelrot);
	color: var(--weiss);
	transform: translateY(-2px);
}
.contact UL
{
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	/* align-items: center;  <-- WICHTIG: Dies entfernen oder zu 'stretch' ändern */
	align-items: stretch;
}
.contact LI
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 100%;
	/* WICHTIG: Das LI muss die volle Höhe der Grid-Zelle einnehmen */
}
.contact LI A
{
	display: flex;
	/* Statt block */
	height: 100%;
	/* Füllt das LI aus */
	align-items: center;
	/* Zentriert Text vertikal */
	justify-content: center;
	/* Zentriert Text horizontal */
	box-sizing: border-box;
	/* Verhindert, dass Padding die Box sprengt */
	line-height: 1.33;
}
@media (max-width: 992px)
{
	.contact UL
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px)
{
	.contact UL
	{
		grid-template-columns: 1fr;
	}
}
.contact.info A:before
{
	font-weight: 400;
	font-family: 'Material Icons';
	content: "\e88e";
	vertical-align: middle;
	color:var(--dunkelrot);
	font-size: 24px;
	margin-right: 0.333rem;
}
.contact.info A:hover:before
{
	color: #FFFFFF;
}

/*Logo*/
.mod_logo
{
	padding: 0 0 1rem 0;
	margin-top: -1rem;
	margin-right: 2rem;
}

/*Container*/
.content-video,
.content-inlinemedia,
.content-youtube {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
	margin-bottom: 1em;
}

.content-video IFRAME,
.content-video OBJECT,
.content-video EMBED,
.content-inlinemedia IFRAME,
.content-youtube IFRAME {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.content-youtube {}

P IMG {
	vertical-align: bottom;
}

H2 IMG {
	vertical-align: middle;
}

#main .liste UL
{
	padding-bottom: 1rem;
}
#main .liste UL UL
{
	padding-bottom: 0;
}

#main .liste LI {
	padding-left: 1.7rem;
}

#main .liste LI:before {
	font-weight: 400;
	font-size: 1em;
	margin-left: -1.7rem;
	margin-right: 10px;
	font-family: 'Material Icons';
	content: "\eaaa";
	vertical-align: middle;
	color: var(--dunkelrot);
}
FORM BUTTON, INPUT[type="submit"], .button
{
	border: none;
	background-image: none;
}

#main HR {
	border: none;
	border-top: 1px solid #CCCCCC;
}
.card
{
	background: linear-gradient(180deg, var(--creme) 0%, var(--creme-warm) 100%);
	padding:clamp(1rem, 3.074vw + .2334rem, 3rem);
	/*+box-sizing: border-box;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*+border-radius:var(--r-lg);*/
	-moz-border-radius: var(--r-lg);
	-webkit-border-radius: var(--r-lg);
	-khtml-border-radius: var(--r-lg);
	border-radius:var(--r-lg);
	border: 1px solid rgba(163, 137, 123, 0.200);
	position: relative;
	backdrop-filter: var(--backdrop);
}
.card.margin
{
	margin-block: 1rem;
}
.card H3
{
	font-weight: 800;
	line-height: 1.333;
}
.card P SPAN
{
	padding: 0.5rem 1rem;
	line-height: 2;
	font-weight: 700;
	color:var(--weiss);
	text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.333);
}
.card.light
{
	background: rgba(255, 255, 255, 0.250);
}
.card.light h3
{
	color:var(--dunkelrot);
}
.angebot .card
{
	background:var(--dunkelrot-hover);
	color:var(--weiss);
}
.angebot .card H3
{
	color:var(--weiss);
}
.hinweis
{
	display: block;
	padding: clamp(1rem, 3.074vw + .2334rem, 3rem);
	padding: clamp(1rem, 2.074vw + .2334rem, 2rem);
	background-color: rgba(255, 255, 255, 0.333);
	backdrop-filter: blur(1rem);
	border-radius: 0 var(--r-lg) var(--r-lg) 0;
	/*+box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);*/
	-moz-box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	-webkit-box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	border: 1px solid rgba(163, 137, 123, 0.200);
	border-left: 0.25rem solid var(--dunkelrot-hover);
	/*+border-radius:0 var(--r-lg) var(--r-lg) 0;*/
	-moz-border-radius: 0 var(--r-lg) var(--r-lg) 0;
	-webkit-border-radius: 0 var(--r-lg) var(--r-lg) 0;
	-khtml-border-radius: 0 var(--r-lg) var(--r-lg) 0;
	border-radius:0 var(--r-lg) var(--r-lg) 0;
	font-size: 80%;
}
.hinweis.margin
{
	margin: clamp(1rem, 3.074vw + .2334rem, 3rem) 0;
}
.schritt
{
	border-bottom:0.5rem solid var(--dunkelrot);
	padding-bottom: 1rem;
}
.schritt H3
{
	font-weight: 800;
}
.schritt H3 EM
{
	display: block;
	font-style: normal;
	line-height: 1;
	font-size: 66%;
	font-weight: normal;
	color:var(--dunkelrot);
}
.stationen TABLE TR TD
{
	padding: 1rem;
}
.stationen TABLE TR
{
	border-bottom: 1px solid rgba(0, 0, 0, 0.333);
}
.leistung
{
	display: block;
	padding: clamp(1rem, 3.074vw + .2334rem, 3rem);
	background-color: rgba(255, 255, 255, 0.333);
	backdrop-filter: blur(1rem);
	/*+box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);*/
	-moz-box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	-webkit-box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	box-shadow: -1rem 0 4rem -2.3rem rgba(27, 38, 49, 0.260);
	border: 1px solid rgba(163, 137, 123, 0.200);
	margin: clamp(1rem, 3.074vw + .2334rem, 3rem) 0;
	/*+border-radius: var(--r-lg);*/
	-moz-border-radius: var(--r-lg);
	-webkit-border-radius: var(--r-lg);
	-khtml-border-radius: var(--r-lg);
	border-radius: var(--r-lg);
}
TABLE TR TH
{
	font-weight: 800;
	padding: 1rem;
	color:var(--dunkelrot);
}
#main .shadow .image_container {
	margin: 5px 20px 30px;
}

#main .shadow IMG {
	/*+box-shadow: var(--shadow);*/
	-moz-box-shadow: var(--shadow);
	-webkit-box-shadow: var(--shadow);
	box-shadow: var(--shadow);
}

#main .image_container {
	margin: 0;
	line-height: 0;
	padding: 0;
}

#main IMG
{
	line-height: 0;
	margin: 0;
	padding: 0;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

#main A IMG:hover
{
	filter: saturate(2) sepia(0.5);
}

#main .padding.right IMG
{
	margin-right: 1rem;
	margin-bottom: 1rem;
	/*+border-radius: 0.5rem;*/
	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-khtml-border-radius: 0.5rem;
	border-radius: 0.5rem;
}

#main .padding.left IMG
{
	margin-left: 1rem;
	margin-bottom: 1rem;
	/*+border-radius: 0.5rem;*/
	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	-khtml-border-radius: 0.5rem;
	border-radius: 0.5rem;
}

#main .corner IMG
{
	/*+border-radius:var(--r-lg);*/
	-moz-border-radius: var(--r-lg);
	-webkit-border-radius: var(--r-lg);
	-khtml-border-radius: var(--r-lg);
	border-radius: var(--r-lg);
}
#main .glas IMG
{
	backdrop-filter: var(--backdrop);
	background-color: rgba(255, 255, 255, 0.333);
}
#main .rund IMG
{
	-webkit-mask-image: url("../../../files/theme/img/bild_rahmen_rund.svg");
	mask-image:url("../../../files/theme/img/bild_rahmen_rund.svg");
	-webkit-mask-size: cover;
	mask-size:cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position:center;
}
#main .eckig IMG
{
	-webkit-mask-image: url("../../../files/theme/img/bild_rahmen_eckig.svg");
	mask-image:url("../../../files/theme/img/bild_rahmen_eckig.svg");
	-webkit-mask-size: cover;
	mask-size:cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position:center;
}
#main .rechteckig IMG
{
	-webkit-mask-image: url("../../../files/theme/img/bild_rahmen_rechteckig.svg");
	mask-image:url("../../../files/theme/img/bild_rahmen_rechteckig.svg");
	-webkit-mask-size: cover;
	mask-size:cover;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position:center;
}


#main .full IMG
{
	width: 100%;
}

#main .blend IMG
{
	mix-blend-mode: multiply;
}

#main .abstand {
	width: 4em;
	display: inline-block;
}

I.abstand {
	display: inline-block;
	width: 40px;
	text-align: center;
}

.zweispaltig {
	column-width: 480px;
	column-gap: 5%;
	margin-block: 1rem;
}
.center
{
	text-align: center;
}
.width70
{
	width: 100%;
	max-width: 680px;
	margin: 0 auto 3rem;
}
@media (max-width: 576px)
{
	.float_left, .media--left > FIGURE, .float_right, .media--right > FIGURE
	{
		float: none;
	}
}

/*Pagination*/
.pagination {
	font-size: 0.825em;
}

.pagination P {
	position: relative;
	float: right;
}

.pagination UL LI {
	position: relative;
	float: left;
	margin-right: 0.5em;
}

.pagination UL LI A {
	text-decoration: none;
	color: #676464;
	/*+transition: all 0.3s ease-in-out;*/
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.pagination UL LI A:hover,
.pagination UL LI SPAN {
	color: #33595B;
}

/*Footertop*/
#footertop
{
	background-color: var(--dunkelrot);
	color: var(--weiss);
	color:var(--dunkelrot-hover);
	font-weight: 400;
}
#footertop A
{
	color: var(--weiss);
	color:var(--dunkelrot-hover);
	border-bottom: none;
}
#footertop .justify-items-end .brand
{
	justify-items: start;
}
#footertop A.brand
{
	color: var(--weiss);
}
#footertop A:hover
{
	color: var(--dunkelrot-hover);
}
#footertop .material-icons
{
	color: rgba(0, 0, 0, 0.100);
}

/*Footer*/
#footer {
	background-color: var(--dunkelrot-hover);
	line-height: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	font-weight: normal;
	font-size: 0.825em;
	color: #FFFFFF;
}

#footer .inside {
	line-height: 1.5;
}

#footer A
{
	color: rgba(255, 255, 255, 0.100);
	border-bottom: none;
}

#footer .content-text {
	text-align: right;
}

@media (max-width: 799px) {
	#footer .content-text {
		text-align: left;
	}
}

/*Downloads*/
.content-downloads,
.content-download {
	position: relative;
}

.content-downloads UL {
	margin: 0;
	padding: 0;
	list-style-type: none;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

.content-downloads UL LI,
.content-download A {
	position: relative;
	display: block;
	margin-bottom: 10px;
	/*+box-sizing: border-box;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

.content-downloads UL LI A,
.content-download A {
	width: 100%;
	position: relative;
	display: block;
	padding: 12px 35px 10px;
	background-color: #FAA619;
	text-decoration: none;
	/*+box-sizing: border-box;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	color: #FFFFFF;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

.content-downloads UL LI A:hover,
.content-downloads UL LI A:active,
.content-download A:hover,
.content-download A:active {
	background-color: #FC9605;
	color: #FFFFFF;
}

.content-downloads UL LI A SPAN,
.content-download A SPAN {
	position: relative;
	float: right;
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

.content-downloads UL LI A:hover SPAN,
.content-downloads UL LI A:active SPAN,
.content-download A:hover SPAN,
.content-download A:active SPAN {
	color: #FFFFFF;
}

.content-downloads UL LI A:before,
.content-download A:before {
	right: 10px;
	top: 1em;
	position: absolute;
	display: block;
	font: 16px FontAwesome;
	text-decoration: none;
	color: #FFFFFF;
	content: "\f019";
	/*+transition: 500ms ease-in-out;*/
	-webkit-transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-o-transition: 500ms ease-in-out;
	transition: 500ms ease-in-out;
}

.content-downloads UL LI A:hover:before,
.content-downloads UL LI A:active:before,
.content-download A:hover:before,
.content-download A:active:before {
	color: #FFFFFF;
}

.content-downloads UL LI A:after,
.content-download A:after {
	position: relative;
	float: none;
	clear: both;
	display: block;
	content: "";
}

.content-downloads UL LI IMG,
.content-download IMG {
	left: 10px;
	top: 1em;
	position: absolute;
	z-index: 999;
}

/*Sticker*/
#container .sticker {
	position: absolute;
	top: 0;
	right: 0;
	/*+transform: rotate(12deg);*/
	-webkit-transform: rotate(12deg);
	-moz-transform: rotate(12deg);
	-o-transform: rotate(12deg);
	-ms-transform: rotate(12deg);
	transform: rotate(12deg);
	margin: 5vw;
}

.content-hyperlink.sticker A {
	width: 240px;
	height: 240px;
	position: relative;
	display: table-cell;
	display: table;
	vertical-align: middle;
	padding: 55px 40px 40px;
	background-color: #F0EEEF;
	background-color: #B4CC00;
	text-decoration: none;
	/*+box-sizing: border-box;*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*+transition: all 0.5s ease-in-out;*/
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	line-height: 1.5;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.05em;
	/*+border-radius: 50%;*/
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	/*+box-shadow: 5px 10px 20px -10px rgba(0, 0, 0, 0.333);*/
	-moz-box-shadow: 5px 10px 20px -10px rgba(0, 0, 0, 0.333);
	-webkit-box-shadow: 5px 10px 20px -10px rgba(0, 0, 0, 0.333);
	box-shadow: 5px 10px 20px -10px rgba(0, 0, 0, 0.333);
	text-align: center;
	margin: 10px;
}

.content-hyperlink.sticker A:before {
	display: block;
	font-family: FontAwesome;
	text-decoration: none;
	/*color: #565556;*/
	content: "\f08e";
	/*+transition: all 0.3s ease-in-out;*/
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-size: 1.4em;
}

.content-hyperlink.sticker A:after {
	content: none;
}

@media (max-width: 799px) {
	.content-hyperlink.sticker A {
		width: 180px;
		height: 180px;
		padding: 20px;
		margin: 5px 5px 15px 5px;
	}
}

/*Hyperlink*/
.content-hyperlink
{
	display: inline-block;
	margin-right: 1rem;
}
/*Slider*/
.slider-wrapper .image_container {
	margin: 0 40px;
}

.slider-control .slider-prev,
.slider-control .slider-next {
	font-size: 0;
	margin-top: -30%;
}

.slider-control .slider-prev:before {
	font-family: FontAwesome;
	content: "\f104";
	font-size: 40px;
}

.slider-control .slider-next:after {
	font-family: FontAwesome;
	content: "\f105";
	font-size: 40px;
}

.flexslider {
	margin: 0 0 40px 0;
}

#main .flexslider LI {
	margin: 0;
	padding: 0;
}

#main .flexslider LI:before {
	content: none;
}

.flex-control-nav LI {
	margin: 0 6px;
}

.flex-control-paging LI A {
	width: 10px;
	height: 10px;
	display: block;
	background: #F0EEEF;
	/*+border-radius: 20px;*/
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	border-radius: 20px;
	/*+box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.304);*/
	-moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.304);
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.304);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.304);
	margin-right: 5px;
	margin-left: 5px;
}

.flex-control-paging LI A:hover {
	background: #333;
	background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging LI A.flex-active {
	background-color: #A3084E;
}

.achtzigprozent .flexslider .slides IMG {
	width: 80%;
	display: block;
	margin: 0 auto;
}

@media (max-width: 599px) {
	.achtzigprozent .flexslider .slides IMG {
		width: 100%;
		display: block;
		margin: 0 auto;
	}
}

/*Colors*/
#main .hell
{
	background: rgba(255, 255, 255, 0.333);
}
#main .dunkel
{
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(74, 98, 130, 0.25) 70%, rgba(48, 66, 93, 0.5) 100%);
}

#main .hellbraun
{
	background: var(--hellbraun);
}

#main .rot
{
	background: var(--dunkelrot);
}


/*Form*/
FORM .checkbox_container.mandatory SPAN {
	display: block;
}