@font-face {
font-family: 'MyFont';
src: url('../cpfont/Speedee_W_Rg.woff2') format('woff2'),
	         url('../cpfont/Speedee_W_Rg.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'MyFont';
src: url('../cpfont/Speedee_W_It.woff2') format('woff2'),
	         url('../cpfont/Speedee_W_It.woff') format('woff');
font-weight: normal;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'MyFont';
src: url('../cpfont/Speedee_W_Bd.woff2') format('woff2'),
	         url('../cpfont/Speedee_W_Bd.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'MyFont';
src: url('../cpfont/Speedee_W_BdIt.woff2') format('woff2'),
	         url('../cpfont/Speedee_W_BdIt.woff') format('woff');
font-weight: bold;
font-style: italic;
font-display: swap;
}
/*
farben sollten in der programmierung immer in englisch erfolgen
var(--xxx)
*/
:root {
	--black: #000000;
	--white: #ffffff;
	--lightgrey: #f0efef;
	--yellow: #ffbc0d;
	--green: #264f36;
	--brown: #431E11;
	--cspace: 2rem;
	--cwidth: 1050px;
	--ewidth: 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 {
	font-family: MyFont, Helvetica, Arial, Verdana, sans-serif;
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.1em;
}
p, ul, li {
	line-height: 1.4em;
}
h1, h2, h3, h4, h5, h6, p, ul {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}
h1 {
	color: var(--yellow);
	font-size: 3rem;
	text-align: center;
}
.yellow h1 {
	color: var(--black);
}
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.25);
	text-decoration: none;
	display: inline-block;
}
.btn:hover {
	box-shadow: 0px 0px 0.1em rgba(0,0,0,0.25);
}
/*
header
*/
header {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	z-index: 1000;
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	color: white;
	box-shadow: 0px 5px 8px rgba(0,0,0,0.25);
}
header .content {
	margin-top: 1rem;
	margin-bottom: 0rem;
}
header .logo {
	float: left;
	display: inline-block;
	margin-top: 1rem;
	margin-left: 1rem;
}
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;
}
.sml img {
	height: 1.5rem;
	width: auto;
	margin-left: 0.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;
}
.image::after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 3.8vw;
	background: url(/images/balken_y_u.png) center bottom no-repeat;
	background-size: 100% 100%;
	z-index: 100;
	position: absolute;
	left: 0;
	bottom: -1px;
}
/*
navigation
*/
body nav {
	margin: 2.5rem 0 0;
	padding: 0;
	z-index: 2000;
	transition: 0.5s;
	display: inline-block;
}
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: #000000;
	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(--yellow);
	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.25);
}
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;
	border-bottom: 1px solid var(--yellow);
}
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: #000000;
	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(--yellow);
}
.nav_icon, #nav_bg {
	display: none;
}
/*
fuss
*/
footer {
	width: 100%;
	position: relative;
	background-color: var(--yellow);
	clear: both;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	font-size: 14px;
	color: #000000;
	text-align: left;
}
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-left: 1rem;
}
footer a:hover {
	text-decoration: underline;
}
/*
allgemeines
*/
section, .section {
	width: 100%;
	display: inline-block;
}
section {
	padding-top: 4.4vw;
}
main {
	padding-top: 6rem;
	padding-bottom: 3rem;
}
main::before {
	content: '';
	display: inline-block;
	width: 100%;
	height: 7.81vw;
	background: url(/images/balken_y_o.png) center top no-repeat;
	background-size: 100% 100%;
	z-index: 100;
	position: absolute;
	left: 0;
}
.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;
}
.section:first-of-type .block:first-of-type {
	margin-top: 3rem;
}
.yellow {
	background-color: var(--yellow);
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.yellow .block{
	margin-top: 0;
}
.grey {
	background-color: var(--lightgrey);
	width: 100%;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.green {
	background-color: var(--green);
	width: 100%;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.green, .green h1, .green h2, .green h3, .green h4 {
	color: var(--white);
	text-transform: uppercase;
}
.spalte12 {
	display: inline-block;
	width: calc(50% - 2rem);
}
.minus {
	margin-top: -2rem;
}
.plus {
	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(--yellow);
	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(--yellow);
	color: var(--black);
	float: right;
	border-style: none;
}
.formularfehler {
	background-color: #f7f8be;
	padding: 5px;
}
.inputabstand {
	width: 10px;
	height: 10px;
	display: inline-block;
}
form input[type='submit'], form input[type='button'], button {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	padding: 12px 17px;
	font: bold 16px Arial, Helvetica, Geneva, sans-serif;
	cursor: pointer;
	color: var(--black);
	float: right;
}
#form_registrieren {
	display: none;
}
.formular div.select_strasse {
	max-height: 200px;
	max-width: 100%;
	overflow: auto;
	border: 1px solid #d0d0d0;
	position: absolute;
	z-index: 1;
	display: none;
	background-color: white;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	padding: 2px;
	left: 130px;
}
.formular .select_strasse span {
	color: #999;
	cursor: pointer;
	z-index: 10;
}
/*
socialmedia
*/
.social {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.social h3 {
	width: 100%;
	font-weight: bold;
	font-size: 2rem;
	display: inline-block;
	margin-bottom: 1rem;
}
.social h3 > img {
	height: 3rem;
	width: auto;
	float: left;
	margin-right: 1rem;
}
.social_links {
	float: right;
	display: inline-block;
}
.social_links a {
	text-align: center;
	display: inline-block;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	font-size: 0.9rem;
	line-height: 1em;
	margin-left: 1rem;
}
.social_links a img {
	width: auto;
	height: 1.75rem;
	margin-bottom: 0.25rem;
}
.social_beitrag {
	width: calc(25% - 2rem);
	margin-bottom: 1rem;
}
.social_beitrag > p {
	font-size: 0.8rem;
	text-align: left;
	margin-top: 0;
}
.social_bild {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0;
}
.social_bild > img {
	width: 100%;
	height: auto;
	z-index: 0;
	margin: 0;
}
.social_bild .social_link, .social_bild .social_link:visited {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 0.9rem;
	background-color: var(--green);
	color: var(--white);
	z-index: 10;
	opacity: 0.95;
	display: none;
}
.social_bild:hover .social_link {
	display: flex;
}
.social_bild .social_link a {
	display: inline-block;
	margin: 0.5rem;
}
.social_bild .social_link a img {
	height: 1.5rem;
	width: auto;
}
.social_counts p {
	width: auto;
	font-size: 0.7rem;
	line-height: 1rem;
	display: inline-block;
	margin-top: 0;
}
.social .social_counts p img {
	height: 1.4rem;
	margin-bottom: -0.4rem;
	margin-right: 0.25rem;
}
/*
zeiltstrahl
*/
.zeit {
}
.zeit:nth-of-type(odd) {
	flex-direction: row-reverse;
	text-align: left;
}
.zeit:nth-of-type(even) div {
	text-align: right;
}
.zeit div {
	width: calc(50% - 2rem);
	display: inline-block;
	margin-bottom: 2rem;
	margin-top: -0.2em;
}
.zeit div h4 {
	font-size: 1.8rem;
	color: var(--yellow);
}
.zeit div h4, .zeit div p {
	max-width: 350px;
	display: inline-block;
	white-space: normal;
	margin: 0;
}
.zeit:nth-of-type(even) h4 {
	text-align: right;
}
.zeit pre {
	width: 2rem;
	display: inline-block;
	background: url(/images/linie.svg) center repeat-y;
	background-size: 3px, 100%;
}
.zeit pre img {
	width: 100%;
	height: auto;
}
/*
restaurants
*/
.restaurantlinks, .restaurantgalerie {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 1rem;
	margin-bottom: 1rem;
	position: relative;
}
.restaurantlinks a, .restaurantlinks a:visited {
	margin-top: 1rem;
	margin-right: 0.5rem;
	min-width: 7.5rem;
	margin-left: 0.5rem;
	font-weight: bold;
}
.restaurantlinks a:hover {
	color: var(--black);
}
.restaurantgalerie a.maplink {
	display: inline-block;
	margin-right: 1rem;
}
.restaurantgalerie a.maplink img {
	height: 1.5rem;
	width: auto;
}
.restaurantkarte {
	width: 100%;
	position: relative;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 0;
}
.restaurantkarte a.marker, .restaurantkarte div.marker {
	position: absolute;
	z-index: 100;
	width: 40px;
	height: 54px;
	margin-top: -60px;
	margin-left: -20px;
	background: url(/images/marker.svg) center center no-repeat;
	background-size: contain;
	font-size: 0;
}
.restaurantkarte div.rinfo {
	font-size: 0.9rem;
	position: absolute;
	display: none;
	z-index: 200;
	margin-top: -1rem;
	margin-right: -1rem;
	background-color: #ffffff;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--black);
	color: var(--black);
	box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.25);
}
.restaurantkarte div.rinfo a, .restaurantkarte div.rinfo a:visited {
	color: var(--black);
	background-color: var(--yellow);
	border-radius: 0.25rem;
	padding: 0.25rem 0.5rem;
	font-size: 0.8rem;
	text-decoration: none;
	display: inline-block;
	margin-top: 0.5rem;
}
.restaurantkarte img {
	width: 100%;
	height: auto;
	position: relative;
	background-color: #fff;
	z-index: 0;
}
.restaurant h1 {
	text-transform: uppercase;
	margin-top: 3rem;
}
.restaurant .grey {
	padding-top: 1rem;
	padding-bottom: 1rem;
	margin-top: 2rem;
}
.restaurant .grey .content {
	max-width: var(--ewidth);
	justify-content: center;
}
.restaurant .grey img {
	height: 2rem;
	padding: 0 2rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.restaurant td {
	padding: 2px 8px 2px 2px;
	text-align: left;
}
.restaurant .bilder {
	text-align: center;
	font-size: 0;
	margin-bottom: 3rem;
	margin-top: -0.5rem;
}
.restaurant .bild {
	display: inline-block;
	width: calc(12.5% - 2px);
	margin: 1px;
	padding: 0;
	font-size: 0;
}
.restaurant .bild.b_breit {
	display: none;
}
.restaurant .bild img {
	width: 100%;
	height: auto;
}
.restaurant .eckdaten {
	padding-top: 2rem;
	padding-bottom: 2rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.restaurant .eckdaten h3 {
	color: var(--yellow);
	font-weight: bold;
}
.restaurant .eckdaten .oeffnung {
	width: auto;
	display: inline-block;
}
.restaurant .eckdaten .oeffnung td {
	font-size: 0.8rem;
	white-space: nowrap;
}
.kontaktcard {
	align-items: stretch;
}
.kontaktcard .kontakt, .kontaktcard .restaurantkarte {
	width: calc(50% - 1.5rem);
	margin-top: 0;
	margin-bottom: 0;
}
.kontaktcard .kontakt {
	background-color: var(--yellow);
	position: relative;
	justify-content: space-around;
}
.kontaktcard .kontakt h4 {
	font-size: 1.5rem;
	line-height: 1em;
	margin-bottom: 2rem;
	margin-top: 0;
}
.kontaktcard .kontakt a {
	text-decoration: none;
}
.kontaktcard .kontaktbild {
	position: relative;
}
.kontaktcard .kontakt img {
	max-width: 100%;
	max-height: 100%;
	z-index: 10;
}
.kontaktcard .kontakt .vcard {
	position: absolute;
	top: 2rem;
	right: 2rem;
	bottom: 2rem;
	left: 2rem;
}
.kontaktcard  .vcard > div {
	width: 50%;
	height: 100%;
	height: auto;
	display: inline-block;
	position: relative;
	text-align: left;
}
.kontaktcard .kontakt a.btn, .kontaktcard .kontakt a.btn:visited {
	color: var(--white);
	background-color: var(--green);
	font-size: 1rem;
	margin-top: 2rem;
}
.kontaktcard .kontaktbild span {
	background-color: var(--white);
	display: inline-block;
	padding: 0.75em 1.5rem;
	text-align: center;
	width: auto;
	min-width: 30%;
	position: absolute;
	bottom: 2rem;
	left: -40%;
	z-index: 11;
	line-height: 1.2em;
}
.kontaktcard .bewerbung {
	width: 100%;
	margin-top: 2rem;
}
/*
karriere
*/
.jobs {
	background-color: var(--lightgrey);
	padding: 2rem 0;
}
.jobs h3 {
	width: 100%;
	text-align: center;
	font-weight: bold;
	color: var(--green);
}
.jobkat {
	width: calc(50% - 2rem);
}
.jobs h5 {
	margin-top: 1rem;
	font-size: 1.2rem;
	font-weight: normal;
	font-style: normal;
}
.jobs h5 span {
	color: var(--black);
	background-color: var(--yellow);
	border-radius: 0.5em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.5em 2em;
	box-shadow: 0.1em 0.1em 0.5em rgba(0,0,0,0.25);
	text-decoration: none;
	margin-top: 0.5rem;
	display: inline-block;
	font-weight: bold;
	font-size: 0.8rem;
}
.jobs h5 span:hover {
	box-shadow: 0px 0px 0.1em rgba(0,0,0,0.25);
}
.joblinks {
	text-align: left;
	background-color: var(--white);
	padding: 0 0.75rem;
	height: auto;
	max-height: 0;
	overflow: hidden;
	border-color: transparent;
	font-size: 0;
	transition: all 1s ease-in-out 0s;
}
.akt .joblinks {
	height: auto;
	max-height: 400px;
	border: 1px solid var(--green);
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;
	transition: all 1s ease-in-out 0s;
}
.joblinks h6 {
	font-weight: normal;
	font-style: normal;
}
.joblinks ul {
	margin-top: 1rem;
	font-size: 0.9rem;
}
.joblinks a {
}
.benefit {
	text-align: center;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.jobs .btn {
	margin-top: 1rem;
	margin-right: 1rem;
	min-width: 7rem;
	margin-left: 1rem;
}
/*
engagement
*/
.engagement {
	width: 100%;
	background-color: var(--lightgrey);
	margin-top: 3rem;
	margin-bottom: 3rem;
	justify-content: space-around;
}
.engagement:nth-of-type(odd) {
	flex-direction: row-reverse;
}
.engagement>div {
	padding: 2rem;
	align-content: center;
}
.engagement>div.eng_beschr {
	width: calc(33% - 6rem);
}
.engagement>div.eng_gal {
	width: calc(66% - 6rem);
}
/*
akzente
*/
.swing {
	width: 100%;
	height: auto;
	font-size: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
}
.swing img {
	width: 105%;
	height: auto;
	margin: 0;
}
.pfeils, .pfeilb {
	text-align: center;
	display: inline-block;
}
.pfeils.drehung90 span::before, .pfeilb.drehung90 span::before {
	transform: rotate(90deg);
}
.pfeils.drehung180 span::before, .pfeilb.drehung180 span::before {
	transform: rotate(180deg);
}
.pfeils.drehung270 span::before, .pfeilb.drehung270 span::before {
	transform: rotate(270deg);
}
.pfeils.spiegel span, .pfeilb.spiegel span {
	transform: scaleX(-1);
}
.pfeils span, .pfeilb span {
	display: inline-block;
	background-size: contain;
	position: relative;
}
.pfeils span {
	height: 6rem;
	width: 6rem;
}
.pfeils span::before {
	content: '';
	display: inline-block;
	height: 6rem;
	width: 6rem;
}
.pfeilb span {
	height: 6rem;
	width: 6rem;
}
.pfeilb span::before {
	content: '';
	display: inline-block;
	height: 6rem;
	width: 6rem;
}
.pfeils.gelb span::before {
	background: url(/images/pfeil_y_o.svg) center center no-repeat;
}
.pfeils.gruen span::before {
	background: url(/images/pfeil_g_o.svg) center center no-repeat;
}
.pfeils.rot span::before {
	background: url(/images/pfeil_r_o.svg) center center no-repeat;
}
.pfeils.schwarz span::before {
	background: url(/images/pfeil_s_o.svg) center center no-repeat;
}
.pfeilb.gelb span::before {
	background: url(/images/pfeil_y.svg) center center no-repeat;
}
.pfeilb.gruen span::before {
	background: url(/images/pfeil_g.svg) center center no-repeat;
}
.pfeilb.rot span::before {
	background: url(/images/pfeil_r.svg) center center no-repeat;
}
.pfeilb.schwarz span::before {
	background: url(/images/pfeil_s.svg) center center no-repeat;
}
/*
responsiv
*/
@media(max-width: 1300px) {
	html {
	}
	.restaurant .bild {
		width: calc(16.666% - 2px);
	}
	.restaurant .bild.b_mittel {
		display: none;
	}
	.engagement>div.eng_beschr {
		width: calc(33% - 5rem);
	}
	.engagement>div.eng_gal {
		width: calc(66% - 5rem);
	}
}
@media(max-width: 1250px) {
	html {
	}
	.kontaktcard .kontaktbild span {
		bottom: 0;
	}
	.kontaktcard .kontakt img {
		max-height: calc(100% - 2rem);
	}
}
@media(max-width: 1150px) {
	html {
	}
	.kontaktcard .kontakt h4 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}
}
@media(max-width: 1100px) {
	html {
	}
	.restaurant .restaurantkarte div.rinfo {
		display: inline-block!important;
	}
	.eng_beschr h2 {
		font-size: 1.5rem;
	}
	.engagement>div.eng_beschr {
		width: calc(40% - 5rem);
	}
	.engagement>div.eng_gal {
		width: calc(60% - 5rem);
	}
	.kontaktcard .kontakt, .kontaktcard .restaurantkarte {
		width: 50%;
	}
	.kontakt, .restaurant .restaurantkarte {
		width: calc(50% - 1rem);
		margin-top: 0;
		margin-bottom: 0;
	}
	.kontaktcard .kontakt a.btn {
		margin-top: 1rem;
	}
}
@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(--yellow);
		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;
	}
	.news {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
	.news_liste {
		width: calc(50% - 30px);
	}
	.restaurant .bild {
		width: calc(25% - 2px);
	}
	.kontakt, .restaurant .restaurantkarte {
		width: 100%;
	}
	.kontaktcard .kontakt .vcard {
		top: 1.5rem;
		right: 1.5rem;
		left: 1.5rem;
		bottom: 1.5rem;
	}
	.engagement>div.eng_beschr {
		width: calc(100% - 5rem);
	}
	.engagement>div.eng_gal {
		width: calc(100% - 5rem);
	}
}
@media(max-width: 800px) {
	html {
		font-size: 18px;
	}
	.kontaktcard .kontakt h4 {
		margin-bottom: 0.5rem;
		font-size: 1.2rem;
	}
	.kontaktcard .kontakt a.btn {
		margin-top: 0.5rem;
	}
	.kontaktcard .kontaktbild span {
		padding: 0.5em 1rem;
		left: -20%;
		font-size: 0.8rem;
	}
	.jobkat {
		width: 100%;
	}
}
@media(max-width: 700px) {
	html {
	}
	main::before {
		height: 15vw;
	}
	.spalte12 {
		width: 100%;
	}
	.social_beitrag {
		width: calc(50% - 1rem);
	}
	.restaurant h1 {
		margin-top: 5rem;
	}
	.restaurant .eckdaten {
		justify-content: center;
	}
	.restaurant .eckdaten .oeffnung {
		min-width: 60%;
	}
	.restaurant .eckdaten h3 {
		text-align: center;
	}
	.restaurant .eckdaten h4 {
		margin-top: 1rem;
	}
	.kontaktcard .kontakt, .kontaktcard .restaurantkarte {
		width: 100%;
	}
	
	.kontaktcard .kontakt h4 {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}
	.kontaktcard .kontakt .vcard {
		position: relative;
		padding: 2rem;
	}
	.kontaktcard .kontakt .vcard {
		top: auto;
		right: auto;
		left: auto;
		bottom: auto;
	}
	.kontaktcard  .vcard > div {
		width: 50%;
		height: 100%;
		height: auto;
		display: inline-block;
		position: relative;
		text-align: left;
	}
	.kontaktcard .kontakt a.btn, .kontaktcard .kontakt a.btn:visited {
		color: var(--white);
		background-color: var(--green);
		font-size: 1rem;
		margin-top: 2rem;
	}
	.kontaktcard .kontakt img {
		max-height: 100%;
	}
	.kontaktcard .kontaktbild span {
		background-color: var(--white);
		display: inline-block;
		padding: 0.75em 1.5rem;
		text-align: center;
		width: auto;
		min-width: 30%;
		position: absolute;
		bottom: 2rem;
		left: -40%;
		z-index: 11;
		line-height: 1.2em;
	}
}
@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%;
	}
	.social h3 {
		text-align: center;
	}
	.social h3 > img {
		float: none;
		margin-bottom: -1rem;
	}
	.social_links {
		width: 100%;
		text-align: center;
		margin-top: 2rem;
	}
	.engagement>div.eng_beschr {
		width: calc(100% - 5rem);
	}
	.engagement>div.eng_gal {
		width: calc(100% - 2rem);
	}
	.engagement > div {
		padding: 1rem;
	}
	.restaurantkarte a.marker, .restaurantkarte div.marker {
		width: 20px;
		height: 27px;
		margin-top: -27px;
		margin-left: -7px;
	}
	.restaurant .grey span {
		width: 100%;
	}
	.restaurant .eckdaten .oeffnung {
		width: calc(100% - 4rem);
	}
	.kontaktcard .kontakt .vcard {
		padding: 1rem;
	}
	.kontaktcard .kontakt h4 {
		margin-bottom: 0.5rem;
		font-size: 1.2rem;
	}
	.kontaktcard .kontakt a.btn {
		margin-top: 0.5rem;
	}
	.kontaktcard .kontaktbild span {
		padding: 0.5em 1rem;
		left: -20%;
		font-size: 0.8rem;
		bottom: 0;
	}
	.bewerbung .btn {
		max-width: calc(100% - 7rem);
	}
	.jobs {
		padding-right: 0;
		padding-left: 0;
	}
	.slidegalerie {
		padding-right: 2rem;
		padding-left: 2rem;
		width: 100%;
		max-width: 300px;
	}
	.galerie_image {
		width: calc(33% - 3px);
	}
}
@media(max-width: 450px) {
	html {
	}
	body header .logo img {
		height: 3rem;
	}
	body header .sml {
		margin-top: 2rem;
	}
	body .nav_icon {
		top: 2rem;
	}
	main {
		padding-top: 4rem;
	}
}
@media(max-width: 400px) {
	html {
		font-size: 16px;
	}
	.formular div.normal {
		width: 100%;
	}
	.news_liste {
		width: 100%;
	}
	.restaurantlinks {
		justify-content: space-around;
	}
	.restaurant .bild {
		width: calc(33.333% - 2px);
	}
	.slidegalerie {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}