@font-face {
	font-family: 'Dancing Script';
	font-weight: 300;
	src: url('/static/fonts/dancing-script/DancingScript-Regular.ttf');
}

@font-face {
	font-family: 'Lora';
	font-weight: 400;
	src: url('/static/fonts/lora/Lora-Regular.ttf');
}

@font-face {
	font-family: 'Lora';
	font-weight: 400;
	font-style: italic;
	src: url('/static/fonts/lora/Lora-Italic.ttf');
}

@font-face {
	font-family: 'Lora';
	font-weight: 700;
	src: url('/static/fonts/lora/Lora-Bold.ttf');
}

@font-face {
	font-family: 'Lora';
	font-weight: 700;
	font-style: italic;
	src: url('/static/fonts/lora/Lora-BoldItalic.ttf');
}


:root {
	--typo-cursive: 'Dancing Script', cursive;
	--typo-copy: 'Lora', serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	list-style-type: none;
}

img {
	width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	color: #222;
	font-family: var(--typo-copy);
	position: relative;
}

header {
	width: 100%;
	position: relative;
}

header img {
	width: 100%;
	height: auto;
	display: block;
}

header img.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 200;
}

header img.logoBackground {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	height: auto;
	z-index: 100;
}

.start header img.logoBackground {
	width: 80%;
}

.swiper-container {
	width: 100%;
}

nav {
	position: absolute;
	right: 60px;
	top: 0px;
	z-index: 9999;
	border: 0px solid white;
	border-top: none;
	border-radius: 0 0 10px 10px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.1);
	padding: 4px 10px;
}

#responsive {
	display: none;
}

nav>ul {
	display: flex;
	justify-content: flex-end;
}

nav a {
	padding: 5px 10px;
	display: block;
	color: white;
	font-size: 18px;
	text-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
	white-space: nowrap;
}

nav a::before,
footer a::before,
nav li.aktiv li a::before {
	content: "» ";
	opacity: 0;
	transition: opacity 0.3s;
}

nav a:hover,
footer a:hover {
	color: white;
}

nav li.aktiv li a.aktiv::before,
nav li.aktiv li :hover::before,
nav li.aktiv a::before,
nav a:hover::before,
footer li.aktiv a.aktiv::before,
footer a:hover::before {
	opacity: 1;
}

nav>ul>li {
	position: relative;
}

nav ul ul {
	position: relative;
	display: none;
	flex-direction: column;
}

nav li:hover ul,
nav li.aktiv ul {
	display: flex;
}

#logo {
	position: absolute;
	display: block;
	bottom: 30%;
	z-index: 500;
	width: 18%;
	height: auto;
	left: 3%;
}

.start #logo {
	bottom: 15%;
	width: 28%;
	left: 7%;
}

#content {
	padding: 50px 100px 80px;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#left {
	width: 68%;
}

#right {
	width: 32%;
	padding-left: 100px;
}

#middle {
	width: 100%;
	margin-top: 25px;
}

h1 {
	font-family: var(--typo-cursive);
	font-size: 80px;
	font-weight: 300;
	line-height: 80px;
}

h2 {
	font-family: var(--typo-cursive);
	font-size: 54px;
	margin-bottom: 0px;
	font-weight: 300;
}

h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
}

.impressum h3 {
	margin-top: 30px;
	margin-bottom: 10px;
}

h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.impressum h4 {
	margin-top: 25px;
	margin-bottom: 10px;
}

p {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 140%;
}

section li {
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 140%;
}

#right p {
	font-size: 16px;
}

a {
	color: rgb(255, 126, 71);
	text-decoration: none;
	transition: all 0.3s;
}

#content a:not(.fab)::before {
	content: "»";
	padding-right: 4px;
	color: rgb(255, 126, 71);
	transition: all 0.3s;
}

.social-box {
	display: flex;
	margin-top: 15px;
}

a.fab {
	margin-right: 10px;
	font-size: 24px;
	color: black;
}

#content a:hover,
#content a:hover::before {
	color: rgb(211, 64, 62);
}

#kachelMenu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 30px;
	position: relative;
	overflow: hidden;
	justify-content: space-between;
}

#kachelMenu::before {
	content: url("/static/img/kachel_overlay.png");
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	z-index: 999;
	position: absolute;
}

#kachelMenu::after {
	content: url("/static/img/kachel_overlay.png");
	width: 100%;
	height: auto;
	bottom: 0;
	left: 0;
	z-index: 999;
	position: absolute;
	-moz-transform: scale(1, -1);
	-webkit-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

#kachelMenu .contentbild {
	display: block;
	width: calc(50% - 10px);
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

#kachelMenu>div:nth-last-of-type(1),
#kachelMenu>div:nth-last-of-type(2) {
	margin-bottom: 0;
}

#kachelMenu img {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	left: 0;
	top: 0;
	transition: all 0.3s;
}

#kachelMenu .contentbild:hover img {
	width: 110%;
	left: -5%;
	top: -5%;
}

#kachelMenu a::before {
	display: none;
}

#kachelMenu .bu {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	background-image: url("/static/img/kachel_textBackground.png");
	padding: 35px 15px 15px 15px;
}

#kachelMenu h3 {
	color: white;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
	font-size: 32px;
	font-weight: 500;
	margin: 0px;
}

#kachelMenu h3 a,
#kachelMenu h3 a:hover {
	color: white;
}

#kachelMenu h3::before {
	content: "» ";
}

#kachelMenu>div:nth-last-of-type(1) .bu,
#kachelMenu>div:nth-last-of-type(2) .bu {
	padding-bottom: 45px;
	padding-top: 20px;
	background-image: url("/static/img/kachel_textBackground_r.png");
}

.contentbild.team {
	display: flex;
	margin: 30px 0 50px;
	align-items: flex-start;
}

.contentbild.team img {
	width: 200px;
	height: auto;
	margin-right: 30px;
	flex-shrink: 0;
}

.icon {
	height: 55px;
	width: auto;
	margin: 15px 0;
}

.icon img {
	height: 100%;
	width: auto;
	margin: 0;
	display: block;
}

.widget {
	margin-bottom: 50px;
}

.widget,
.newsbox {
	margin-bottom: 30px;
}

figure {
	margin: 20px 0;
}

figcaption {
	margin: 10px 0;
	font-style: italic;
}

#middle p {
	width: 65%;
}

footer {
	width: 100%;
	background-image: url("/static/img/footer_background.png");
	position: absolute;
	bottom: 0;
	left: 0;
	height: 80px;
}

footer .menu {
	position: absolute;
	right: 200px;
	bottom: 20px;
}

footer ul {
	display: flex;
	justify-content: flex-end;
}

footer ul a {
	padding-left: 20px;
	color: white;
}

#oeffnungszeiten h4 {
	margin-top: 20px;
}

#oeffnungszeiten h4:first-of-type() {
	margin-top: 0px;
}

ul.cmsMenuButtons li a::before,
#cmsPage ul.cmsMenuButtons li a::before {
	display: none;
}

.terminitem h2 {
	margin: 30px 0 10px;
}

.terminitem figure {
	margin-top: 30px;
}

.terminitem img {
	width: auto;
	max-width: 100%;
}

.terminitem,
.oeffnungszeiten,
.kontaktbox,
.newsbox {
	display: none;
}

.terminitem.aktiv,
.oeffnungszeiten.aktiv,
.kontaktbox.aktiv,
.newsbox.aktiv {
	display: block;
}

.editmode.termine .terminitem.inaktiv,
.editmode.termine .oeffnungszeiten.inaktiv,
.editmode.termine .kontaktbox.inaktiv,
.editmode.termine .newsbox.inaktiv {
	display: block;
	opacity: 0.5;
}

.editmode.termine section .cmsMenuButtons {
	position: absolute;
	z-index: 999;
	margin-left: -50px;
}

#galerie {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 40px 0 50px;
	position: relative;
}

#galerie .contentbild {
	width: calc(25% - 9px);
	overflow: hidden;
	margin-bottom: 12px;
}

#left #galerie .contentbild {
	width: calc(33.33% - 8px);
}

#galerie .contentbild img {
	height: 100%;
	width: auto;
	transition: all 0.5s;
}

#galerie .contentbild.hoch img {
	width: 100%;
	height: auto;
}

#galerie .contentbild:hover img {
	transform: scale(1.1);
}

#galerie .contentbild a {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#galerie .contentbild a::before {
	display: none;
}

.termine figure {
	position: relative;
	margin-bottom: 40px;
}

figure .overlay,
#galerie .overlay {
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	height: auto;
	z-index: 300;
}

figure .overlayBottom,
#galerie .overlayBottom {
	position: absolute;
	left: 0;
	top: initial;
	bottom: 12px;
	width: 100%;
	height: auto;
	z-index: 300;
}

figure .overlayBottom {
	bottom: 0px;
}

.editmode.termine .terminitem {
	border-top: 1px solid #ddd;
	padding-bottom: 30px;
}

.editmode.termine .terminitem h2 {
	margin-top: 0;
}

.cmsKarte img {
	max-width: 400px;
	height: auto;
}

.cmsKarte table tr:nth-of-type(11) {
	display: none;
}

.stoerer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	background-color: #660303;
	/* Herbst / Winter */
	background-color: #ff73a1;
	/* Frühling / Sommer */
	color: white;
	width: 540px;
	padding: 20px 30px;
	position: absolute !important;
	right: -40px;
	bottom: 100px;
	z-index: 9999;
	transform: rotate(5deg);
	text-align: center;
}

.stoerer p {
	font-size: 18px;
	margin: 8px 0;
	line-height: 150%;
}

.stoerer a {
	text-decoration: underline;
	color: white;
}

.stoerer em {
	font-style: normal;
	font-size: 15px;
}

#stoerer_responsive {
	display: none;
}

.editmode.start #logo,
.editmode.start .logoBackground,
.editmode.start .overlay {
	display: none;
}

.editmode.start #mood {
	display: flex;
	flex-wrap: wrap;
	background: #eee;
	padding: 100px 30px;
}

.editmode.start #mood>ul {
	margin-top: 20px;
}

.editmode.start #mood .contentbild {
	width: 32%;
	margin-right: 1%;
}

.editmode.start #mood .contentbild img {
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.editmode.start #mood .cmsEditElement li:nth-last-of-type(2),
.editmode.start #mood .cmsEditElement li:nth-last-of-type(3),
.editmode.start #mood .cmsEditElement li:nth-last-of-type(5) {
	display: none;
}

.editmode .stoerer {
	bottom: 0px;
}

.instagram a::before {
	display: none !important;
}

.instagram_gallery {
	padding: 4px;
}

.instagram_gallery a img {
	margin: 3px !important;
	width: calc(50% - 6px) !important;
}

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

.instagram_profile {
	display: flex;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.instagram_username {
	font-size: 18px !important;
	padding: 0 0 0 15px !important;
	margin: 0 !important;
	text-align: left;
}

.instagram_username a {
	font-size: 16px !important;
}

.feed {
	border: 1px solid #ddd;
}

.terminitem em {
	padding-left: 20px;
	font-size: 20px;
	display: block;
	margin: 20px 0;
	line-height: 140%;
	background-image: url("/static/img/linie-left.svg");
	background-position: left top 0px;
	background-repeat: repeat-y;
	font-style: normal;
	background-size: 6px;
}

#map-button {
	cursor: pointer;
	border: 1px solid black;
	color: black;
	display: table;
	font-size: 15px;
	padding: 10px 22px;
	font-weight: 400;
}

#map-button:hover,
#map-button:focus,
#map-button:active {
	color: white;
	background-color: black;
}

#map {
	width: 100%;
}

#map.offen {
	height: 500px;
}

@media screen and (max-width: 1720px) {

	.stoerer {
		right: 40px;
	}

}

@media screen and (max-width: 1400px) {

	#content {
		padding: 50px 60px 80px;
	}

	footer {
		background-position: center center;
	}

	footer ul {
		padding-left: 60px;
		padding-right: 60px;
	}

	#secondary {
		padding-left: 50px;
	}

	h1 {
		font-size: 70px;
	}

	h2 {
		font-size: 44px;
	}

	footer .menu {
		right: 100px;
	}
}

@media screen and (max-width: 1200px) {

	h1 {
		font-size: 65px;
	}


	h3 {
		font-size: 20px;
	}

	#kachelMenu h3 {
		font-size: 22px;
	}

	footer .menu {
		right: 20px;
	}

	h2 {
		font-size: 38px;
	}

	.stoerer {
		width: 420px;
		bottom: 20px;
	}

	.stoerer p {
		font-size: 16px;
	}
}

@media screen and (max-width: 1074px) {

	nav a {
		padding: 5px;
		font-size: 16px;
	}

	#left #galerie .contentbild {
		width: calc(50% - 6px);
	}
}

@media screen and (max-width: 1024px) {

	#lightgallery a {
		width: 33.33%;
	}

	#content {
		padding: 50px 30px 80px;
	}

	footer {
		background-image: none;
		background-color: #9f8c8e;
		height: auto;
		position: static;
	}

	footer .menu {
		position: static;
	}

	footer ul {
		padding: 20px 0;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	footer ul a {
		display: block;
		padding: 6px 20px;
		font-size: 18px;
	}

	nav {
		right: 30px;
	}
}

@media screen and (max-width: 860px) {

	#left,
	#right {
		width: 100%;
		padding-left: 0;
		margin-bottom: 60px;
	}

	#right img {
		max-width: 300px;
	}

	#middle {
		padding: 0;
		margin-top: 10px;
	}

	#middle p {
		width: 100%;
	}

	#responsive {
		display: flex;
		position: absolute;
		right: 60px;
		top: 30px;
		color: white;
		text-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
		font-size: 26px;
		z-index: 99999;
		align-items: center;
		cursor: pointer;
	}

	#responsive .navicon {
		width: 20px;
		height: 16px;
		position: relative;
		margin: 0 7px 0 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}

	#responsive .navicon span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: white;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
		box-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
	}

	#responsive .navicon span:nth-child(1) {
		top: 0px;
	}

	#responsive .navicon span:nth-child(2),
	#responsive .navicon span:nth-child(3) {
		top: 7px;
	}

	#responsive .navicon span:nth-child(4) {
		top: 14px;
	}

	nav {
		display: none;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

	nav>ul {
		flex-direction: column;
		align-items: center;
		background: rgba(0, 0, 0, 0.8);
		padding: 30px 0;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
	}

	nav.open ul {
		opacity: 1;
	}

	nav ul li a {
		font-size: 20px;
		padding: 10px;
	}

	nav.open {
		display: block;
	}

	#responsive.open .navicon span:nth-child(1) {
		top: 7px;
		width: 0%;
		left: 50%;
	}

	#responsive.open .navicon span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#responsive.open .navicon span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	#responsive.open .navicon span:nth-child(4) {
		top: 7px;
		width: 0%;
		left: 50%;
	}

	#left #galerie .contentbild,
	#galerie .contentbild {
		width: calc(33.33% - 8px);
	}

	.stoerer {
		bottom: -30px;
		padding: 20px;
		width: 340px;
	}

	.stoerer p {
		font-size: 15px;
		margin: 4px 0;
	}
}

@media screen and (max-width: 680px) {

	#lightgallery a {
		width: 50%;
	}

	h1 {
		font-size: 60px;
		line-height: 110%;
		margin-bottom: 10px;
	}

	h2 {
		font-size: 44px;
		line-height: 110%;
	}

	p {
		font-size: 16px;
	}

	header img.logoBackground {
		width: 100%;
	}

	#logo {
		width: 40%;
	}

	.contentbild.team {
		flex-direction: column;
	}

	.contentbild.team img {
		margin: 0 0 20px;
	}

	#content {
		padding: 20px 20px 40px;
	}

	.icon {
		height: 40px;
	}

	#left #galerie .contentbild,
	#galerie .contentbild {
		width: calc(50% - 6px);
	}

	#mood .stoerer {
		display: none;
	}

	#stoerer_responsive {
		display: flex;
	}

	#stoerer_responsive .stoerer {
		position: static !important;
		width: 100%;
		transform: unset;
		margin-bottom: 30px;
	}

	#stoerer_responsive .stoerer a {
		white-space: nowrap;
	}

	#stoerer_responsive .stoerer a::before {
		color: white;
	}
}

@media screen and (max-width: 460px) {

	.start #logo,
	#logo {
		position: static;
		padding: 20px;
		width: 200px;
	}

	h1 {
		font-size: 50px;
	}

	#lightgallery a {
		width: 100%;
	}

	#kachelMenu .contentbild {
		width: 100%;
		padding-left: 0px;
		margin-bottom: 20px !important;
	}

	#kachelMenu .bu {
		background-image: url("/static/img/kachel_textBackground.png") !important;
		padding: 35px 15px 15px 15px !important;
	}

	#responsive {
		text-shadow: none;
		color: #524850;
		font-size: 24px;
		right: 40px;
		top: 40px;
	}

	#responsive .navicon span {
		box-shadow: none;
		background-color: #524850;
	}

	#responsive.open {
		color: white;
		text-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
	}

	#responsive.open .navicon span {
		background-color: white;
		box-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
	}

	.logoBackground,
	header .overlay,
	#lightgallery .overlay,
	#lightgallery .overlayBottom,
	#kachelMenu::before,
	#kachelMenu::after {
		display: none;
	}

	header img.logoBackground {
		width: 120%;
	}

	nav ul {
		align-items: flex-start;
		padding-left: 20px;
	}

	#left #galerie .contentbild,
	#galerie .contentbild {
		width: calc(100%);
	}
}