@font-face {
	font-family: 'MyFont';
	src: url('../cpfont/Inter-Light.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'MyFont';
	src: url('../cpfont/Inter-LightItalic.woff2') format('woff2');
	font-style: italic;
}
@font-face {
	font-family: 'MyFont';
	src: url('../cpfont/Inter-SemiBold.woff2') format('woff2');
	font-weight: bold;
}
@font-face {
	font-family: 'MyFont';
	src: url('../cpfont/Inter-SemiBoldItalic.woff2') format('woff2');
	font-weight: bold;
	font-style: italic;
}
@font-face {
	font-family: 'Head';
	src: url('../cpfont/SpaceGrotesk-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Logo';
	src: url('../cpfont/SpaceGrotesk-Bold.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
}
/*
farben sollten in der programmierung immer in englisch erfolgen
var(--xxx)
*/
:root {
	--black: #000000;
	--white: #ffffff;
	--grey: #aaaaaa;
	--darkgrey: #333333;
	--red: #ff000000;
	--width: calc(1050px + 4rem);
}
/*
standards
*/
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, ol, ul, li, form, table, tbody, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}
table {
	border-collapse: collapse;
}
td {
	vertical-align: top;
}
html {
	font-size: 20px;
}
body {
	color: var(--black);
	text-align: center;
	background-color: var(--white);
	overflow-Y: scroll;
	overflow-x: hidden;
	font-family: MyFont, Helvetica, Arial, Verdana, sans-serif;
	line-height: 1.7;
	font-style: normal;
	width: 100%;
	height: 100%;
	overflow: auto;
}
img {
	border-style: none;
	max-width: 100%;
}
.noborder {
	border-style: none !important;
}
/*
links
*/
a {
	text-decoration: underline;
}
a, a:visited {
	color: var(--black);
}
a:hover {
	color: var(--black);
	text-decoration: none;
}
a.anker {
	width: 0;
	height: 0;
	margin: -110px 0 0;
	padding: 0;
	position: absolute;
}
/*
schrift
*/
h1, h2, h3, h4, h5, h6, p, ul {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: Head, Helvetica, Arial, Verdana, sans-serif;
	line-height: 1.1em;
}
p, ul, li {
	font-family: MyFont, Helvetica, Arial, Verdana, sans-serif;
	line-height: 1.4em;
}
h1, h2, h3, h4, h5, h6, p, ul {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
h1 {
	font-size: 3rem;
	text-align: center;
}
h2 {
	font-size: 2rem;
	text-align: center;
}
h3 {
	font-size: 1.4rem;
	text-align: left;
	font-weight: normal;
	font-style: normal;
}
h4 {
	font-size: 1.2rem;
	text-align: left;
}
h5 {
	font-size: 0.9rem;
}
h6 {
	font-size: 0.9rem;
}
p {
}
ul {
	
}
li {
	text-align: left;
	margin-left: 1rem;
}
.small, .kl {
	font-size: 0.75rem;
}
.b {
	font-weight: bold;
}
.i, .italic {
	font-style: italic;
}
.u, .underline {
	text-decoration: underline;
}
.links, .l {
	text-align: left !important;
}
.center, .c {
	text-align: center !important;
}
.rechts, .r {
	text-align: right !important;
}
/*
standardelemente
*/
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.trennlinie, hr {
	font-size: 0;
	width: auto;
	height: 0;
	clear: both;
	border-bottom: 1px solid var(--grau);
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.bild {
	font-size: 0;
	line-height: 0;
	width: 100%;
	text-align: center;
}
.hide {
	display: none;
}
.clearer {
	clear: both;
}
.btn {
	color: var(--black);
	background-color: var(--yellow);
	border-radius: 0.5em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.5em 1em;
	box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.15);
	text-decoration: none;
	display: inline-block;
}
.btn:hover {
	box-shadow: 0px 0px 0.1em rgba(0,0,0,0.15);
}
/*
header
*/
header {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	z-index: 1000;
	background-color: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	color: white;
	box-shadow: 0px 5px 8px rgba(0,0,0,0.15);
	border-bottom: 2px solid var(--darkgrey);
}
header .content {
	margin-top: 1rem;
	margin-bottom: 0rem;
}
header .logo {
	float: left;
	display: inline-block;
	margin-top: 1rem;
	margin-left: 2rem;
	font: 3rem Logo, sans-serif;
	text-transform: uppercase;
}
header a.logo {
	text-decoration: none;
}
body header .logo img {
	height: 4rem;
	width: auto;
	transition: 0.5s;
}
body.min header .logo img {
	height: 2rem;
	margin-bottom: 5px;
	transition: 0.5s;
}
body header .sml {
	display: inline-block;
	float: right;
	margin-right: 1rem;
	margin-top: 3.25rem;
}
body.min header .sml {
	margin-top: 1.5rem;
}
.parallax-mirror {
	text-align: left;
}
.image {
	width: 100%;
	height: 50vw;
	max-height: calc(80vh - 5rem);
	background: transparent;
	text-align: left;
	overflow: hidden;
	margin-bottom: -0.5rem;
	position: relative;
}
/*
navigation
*/
body nav {
	margin: 2.5rem 1rem 0 0;
	padding: 0;
	z-index: 2000;
	transition: 0.5s;
	display: inline-block;
	float: right;
}
body.min nav {
	margin: 01rem 0 0;
	transition: 0.5s;
}
nav > ul {
	text-align: left;
	display: inline-block;
}
nav > ul li {
	list-style: none;
	position: relative;
	float: left;
	margin-left: 0;
}
nav > ul > li a, nav > ul > li a:visited {
	color: var(--black);
	text-decoration: none;
	display: inline-block;
	position: relative;
	padding: 0 0.8rem;
	line-height: 2rem;
	font-size: 1rem;
	transition: color 0.2s;
	white-space: nowrap;
}
nav > ul > li:hover a, nav > ul > li.aktuell a {
	color: var(--grey);
	text-decoration: none;
	transition: color 0.2s;
}
nav > ul > li.aktuell a {
	font-weight: bold;
}
nav ul li ul {
	position: absolute;
	display: none;
	top: 2rem;
	left: 0.5rem;
	width: auto;
	background-color: #ffffff;
	z-index: 1000;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
	overflow-x: hidden;
	margin: 0;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
}
nav ul li:hover ul, nav ul li:focus ul {
	display: inline-block;
}
nav ul li ul li {
	float: none;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
nav ul li ul li:last-child {
	border-bottom: none;
}
nav ul li ul li a, 
nav ul li:hover ul li a, 
nav ul li ul li a:visited, 
nav ul li.aktuell ul li a, 
nav ul li.aktuell ul li a:visited {
	color: var(--black);
	width: 100%;
	font-weight: normal;
	padding: 0 0.5rem;
	display: block;
}
nav ul li ul li.aktuell a, 
nav ul li ul li.aktuell a:hover, 
nav ul li:hover ul li a:hover, 
nav ul li.aktuell ul li.aktuell a, 
nav ul li.aktuell ul li.aktuell a:hover {
	color: var(--grey);
}
.nav_icon, #nav_bg {
	display: none;
}
/*
fuss
*/
footer {
	width: 100%;
	position: relative;
	background-color: var(--white);
	clear: both;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	font-size: 14px;
	color: #000000;
	text-align: left;
	border-top: 2px solid var(--darkgrey);
	box-shadow: 0px -5px 8px rgba(0,0,0,0.15);
}
footer .content {
	align-items: flex-end;
}
footer img {
	height: 4rem;
	width: auto;
	display: inline-block;
}
footer p {
	width: auto;
	margin-bottom: 0;
}
footer a {
	text-decoration: none;
	color: #000000;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}
footer a:hover {
	text-decoration: underline;
}
/*
allgemeines
*/
section, .section {
	width: var(--width);
	display: inline-block;
	margin-right: auto;
	margin-left: auto;
}
section {
	padding-top: 4.4vw;
}
main {
	padding-top: 6rem;
	padding-bottom: 3rem;
}
.content {
	width: calc(100% - 2rem);
	max-width: var(--cwidth);
	margin-right: auto;
	margin-left: auto;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.block {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.spalte12 {
	display: inline-block;
	width: calc(50% - 2rem);
}
.minus {
	margin-top: -2rem;
}
.plus, .secure  {
	margin-top: 2rem;
}
/*
galerie
*/
.galerie {
	width: 100%;
	max-width: 990px;
}
.galerie_image {
	width: calc(25% - 3px);
	text-align: center !important;
	display: inline-block;
	font-size: 0;
	margin: -5px 0 0;
	padding: 0;
}
.galerie_image a {
	font-size: 0;
}
.galerie_image img {
	height: auto;
	max-width: 100%;
}
.slidegalerie {
	width: 80%;
	max-width: 300px;
	background-color: var(--grey);
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
	padding: 2rem 10rem;
	display: inline-block;
}
.lSAction > .lSPrev {
	transform: rotate(180deg);
	width: 14px;
	height: 14px;
	left: 0;
}
.lSAction > .lSNext {
	background-position: 0;
	width: 14px;
	height: 14px;
	right: 0px;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
	background-color: #333333;
}
.lSSlideOuter ul.lSPager.lSpg {
	margin-top: 10px !important;
}
/*
formulare
*/
.formular {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: left;
}
.formular div.normal, .formular div.breit {
	display: inline-block;
	margin-bottom: 1rem;
	font: 0.9rem/1em var(--sans);
}
.formular div.normal {
	width: calc(50% - 20px);
}
.formular div.breit {
	width: 100%;
}
.formular h5 {
	
}
.formular p {
	
}
.formular label {
	width: 100%;
	display: inline-block;
	color: #333333;
	font: bold 0.7rem/1em;
	margin-bottom: 3px;
	padding-right: 10px;
}
.formular label.pflicht::after {
	content: ' *';
}
.formular span {
	margin-right: 0.7em;
	white-space: nowrap;
	margin-left: 0.7em;
	font-size: 0.9em;
}
.formular label span {
	margin-left: 0.3em;
}
.formular input, .formular select, .formular textarea {
	margin: 0;
	padding: 2px 5px;
	border: 1px solid #949596;
	font: 0.9rem var(--sans);
}
.formular .standard, .formular .lang {
	width: calc(100% - 20px);
}
.formular .kurz {
	width: calc(30% - 30px);
	margin-right: 20px;
}
.formular .mittel {
	width: calc(70% - 20px);
}
.formular .inputgroup {
	line-height: 1.5em;
}
.formular input[type='checkbox'], .formular input[type='radio'] {
	margin-right: 0.3em;
	font: 0.9rem var(--sans);
}
input[type='submit'], input[type='button'], button, .sendbutton, a.sendbutton, a.sendbutton:visited {
	display: inline-block;
	text-align: center;
	padding: 0.2rem 0.5rem;
	font: bold 1.1rem MyFont, Helvetica, Arial, Verdana, sans-serif;
	cursor: pointer;
	background-color: var(--white);
	color: var(--black);
	float: right;
	border: 2px solid var(--black);
}
input[type='submit']:hover, input[type='button']:hover, button:hover, .sendbutton:hover, a.sendbutton:hover {
	color: var(--white);
	background-color: var(--black);
}
.formularfehler {
	background-color: #f7f8be;
	padding: 5px;
}
.inputabstand {
	width: 10px;
	height: 10px;
	display: inline-block;
}
/*
individuelle inhalte
*/
/*
responsiv
*/
@media(max-width: 1200px) {
	html {
	}
}
@media(max-width: 1000px) {
	html {
		font-size: 18px;
	}
	body header .sml {
		margin-right: 6rem;
		margin-top: 2.5rem;
	}
	.nav_icon, .nav_close {
		display: block;
		position: absolute;
		cursor: pointer;
		font-size: 0.9rem;
		text-align: center;
		line-height: 1rem;
	}
	body .nav_icon {
		width: 2rem;
		height: 2rem;
		top: 2.5rem;
		right: 1rem;
		color: var(--black);
	}
	body.min .nav_icon {
		top: 1.4rem;
	}
	main {
		padding-top: 5rem;
	}
	main::before {
		height: 10vw;
	}
	.nav_icon span, .nav_close span {
		display: block;
		width: 100%;
		height: 4px;
		background-color: var(--grey);
		margin-bottom: 7px;
	}
	.nav_close {
		width: 1.5rem;
		height: 1.5rem;
		top: 1rem;
		right: 1rem;
		position: absolute;
	}
	.nav_close span {
		position: absolute;
		top: 33%;
		left: 0;
		z-index: 2001;
	}
	.nav_close span:first-of-type {
		transform: rotate(45deg);
	}
	.nav_close span:last-of-type {
		transform: rotate(-45deg);
	}
	#nav_bg {
		background-color: #000;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 999;
		display: none;
		opacity: 0.05;
		transition: opacity 0.3s, display 0.3s;
	}
	#nav_bg.akt {
		opacity: 0.;
		display: block;
		transition: opacity 0.3s, display 0s;
	}
	body nav {
		position: fixed;
		top: 0;
		height: 100%;
		background-color: #ffffff;
		z-index: 1000;
		overflow: auto;
		right: 0;
		width: 0;
		max-width: 0%;
		transition: width 0.4s;
		margin-top: 0;
	}
	nav.akt {
		width: 300px;
		max-width: 100%;
		transition: width 0.4s;
	}
	nav > ul {
		margin: 1.7rem 0.5rem 0.5rem 1rem;
	}
	nav ul li {
		list-style: none;
		text-align: left;
		width: 100%;
	}
	nav ul li a, nav ul li a:visited {
		text-decoration: none;
	}
	nav ul li.aktuell a, nav ul li a:hover {
		text-decoration: none;
	}
	nav ul li ul {
		display: inline-block;
		position: relative;
		border-style: none;
		top: 0;
		width: 100%;
		box-shadow: none;
		padding-left: 0.75rem;
	}
	nav ul li ul li {
		border-style: none;
		padding: 0;
	}
	nav ul li ul li a, nav ul li ul li a:visited {
		font-size: 0.9rem;
	}
}
@media(max-width: 800px) {
	html {
		font-size: 18px;
	}
}
@media(max-width: 700px) {
	html {
	}
	.spalte12 {
		width: 100%;
	}
}
@media(max-width: 600px) {
	html {
	}
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.6rem;
	}
	h3 {
		font-size: 1.3rem;
	}
	h4 {
		font-size: 1.1rem;
	}
	footer .content {
		justify-content: center;
		text-align: center;
	}
	footer img {
	}
	footer p {
		width: 100%;
	}
}
@media(max-width: 450px) {
	html {
	}
	main {
		padding-top: 4rem;
	}
}
@media(max-width: 400px) {
	html {
		font-size: 16px;
	}
	.formular div.normal {
		width: 100%;
	}
}