* {	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

body {
	background-color: #2A2421;
    font-family: 'Lato', sans-serif;
	line-height: 150%;
}

h1 {
	font-family: 'Arvo', serif;
	line-height: 150%;
	padding-top: 10px;
	padding-bottom: 10px;}
	
h2, h3, h4 {
	font-family: 'Arvo', serif;
	line-height: 150%;
	padding:10px 0;
}

a:link, a:visited {text-decoration: none}
a:hover{text-decoration: underline;}

ul {list-style-type: none}

hr {margin: 30px 0;}

img{
	width:100%;
	height: auto;
}
.clear {clear: both}

/*HEADER & MENU-------------------------*/
header{
	min-height: 400px;
	background-image: url(../bilder/header.jpg);
	background-repeat: no-repeat;
	background-size: 1920px 400px;
	background-position: center top;
}

.menu-icon {
	position: absolute;
	right: 30px;
	top: 30px;
	width: 40px;
	height: 40px;
	display: inline;
	cursor: pointer;
}
.menu-icon span {
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #F8F1EC;
	transition: all 250ms ease-in-out;
	transform: rotate(0deg);
	box-shadow: 0px 1px 1px rgba(255,255,255,0.6);
}
.menu-icon span:nth-child(1) {top: calc(45px / 32)}
.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {top: calc(45px / 3.2)}
.menu-icon span:nth-child(4) {top: calc(45px * 0.625)}
.menu-icon.is-active span:nth-child(1),
.menu-icon.is-active span:nth-child(4) {opacity: 0}
.menu-icon.is-active span:nth-child(2) {transform: rotate(45deg)}
.menu-icon.is-active span:nth-child(3) {
	top: calc(45px / 3.2);
	transform: rotate(-45deg);
}
.navtoggle {
	visibility: hidden;
	width: 200px;
	height:400px;
	float: right;
	top: 10px;
	padding-top: 120px;
	z-index: 10;
	background-color: rgb(42, 36, 33, 0.7);
	text-align: right;
	font-family: 'Arvo', serif;
}
.navtoggle.is-active {visibility: visible;}
nav a{
	color:#FFFAF7;
	text-decoration: none;
}

header nav ul li {
	padding-right: 40px;
	height: 45px;
}


/*CONTENT------------------------------*/
main {
	background-color: #F8F1EC;
	outline: 2px solid #FFFAF7;
	outline-offset: 5px;
	margin: 20px 20px;
	max-width: 1000px;
	color: #2A2421;
}
main * a{
	color: black;
	text-decoration: underline;}
.einspaltig {
	padding: 20px 20px;
}
.einspaltig img {max-width: 500px;}


.info {
	padding-left: 20px;
	width: 300px;
}

.map {
	width: 100%;
	max-width: 600px;
	padding-left: 20px;
}

iframe {
	width: 100%;
	height: 400px; 
	border:0;
	-webkit-box-shadow: 2px 2px 2px 2px gray50;
	box-shadow: 2px 2px 2px 2px gray50;
}

.form {
	background-color:#ACDAC5;
	padding:25px;
	border-radius: 3px;
	outline: 3px dotted #F8F1EC;
	outline-offset: -10px;
	width:100%
}
.input {
	padding: 10px;
	width:100%;
	border: 1px solid #ccc;
	border-radius: 3px;
}
textarea{
		padding: 10px;
		width:100%;
		border: 1px solid #ccc;
		border-radius: 3px;
		font-family: 'Arvo', serif;
		font-size: 120%;			
		resize: none;			
}
input[type=submit] {
	display: block;
	background-color:#719987;
	color: white;
	font-family: 'Arvo', serif;
	font-size: 100%;
	padding: 12px 30px;
	margin: 10px auto;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}
label {
	padding: 12px 12px 5px 0;
	display: inline-block;
}

table {border-collapse: collapse;}	

td {padding: 5px 20px 5px 0px;}

.up {
	border: solid  #2A2421;
	border-width: 0 4px 4px 0;
	display: inline-block;
	padding: 8px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
	
.center {
	width: 50px;
	padding: 30px 0;
	margin: 0 auto;
}


/*FLEX---------------------------------*/
.flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.flex img {}

.news_flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content:center;
}

/*index--------------------------------*/
.imglink {
	padding-top: 20px;
	padding-right: 20px;
	position: relative;
 	text-align: center;
}
.imglink a {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.imglink a:hover {
	opacity: .8;
}
.imglink h2 {  
	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%, -50%);
	color:#2A2421;
	background-color:#F8F1EC;
	padding: 5px 20px;
	outline: 2px solid #FFFAF7;
	outline-offset: 5px;
}

/*galerie------------------------------*/
.galerie_flex{
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.galerie_item {
	padding: 10px;
}
.galerie_item:hover {
	background-color: white;
	/*cursor: pointer;*/
	-webkit-box-shadow: 0px 0px 1px 1px #7C7C7C;
	box-shadow: 0px 0px 1px 1px #7C7C7C;
}
.galerie_item img {
	width:100%;
	height:auto;
}
.img-beschreibung{
	padding: 0 5px;
	min-height: 50px;
}


/*FOOTER------------------------------*/
footer {
	color: white;
	max-width: 1000px;
	margin: 20px 20px;
	text-align: center;
}
footer nav ul li{
	padding: 10px;
	display:inline;
}
footer img {
	width: 150px;
	height: 150px;
	margin: 20px 0;
}
footer a {color:#F8F1EC;}

.copyright {}