* {
    border: 0;
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    font-size: 14px;
	font-weight: normal;
    line-height: 1.4;
	min-width: 360px;
	background-color: #ffffff;
	color: #505050;	
	text-align: center;
	-webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}
nav {
	background-color: #ffcccc;
	text-align: left;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 50;
	min-height: 100vh;
	display: none;
	transform: translateX(-100%);
	transition: transform 0.3s;
}
nav a {
	color: #333366;
	display: block;
	line-height: 2.5;
	padding: 0 1em;
	border-bottom: 1px dotted;
}
header {
	position: relative;
	background-color: #333366;
	background-image: url(header.svg), url(header.jpg);
	background-size: contain, cover;
	background-position: center bottom, center center;
	background-repeat: no-repeat, no-repeat;
}
section {
	margin: auto;
	padding: 3em 2em;
	max-width: 1200px;
}
b {
	font-weight: bold;
}
em {
	font-style: italic;
}
a {
	text-decoration: none;	
}
h1, h2, h3 {
	font-weight: normal;
}
h1 {
	font-size:2em;
}
h2 {
	font-size:1.5em;
}
p {
	margin-bottom: 1.5em;
}
hr {
	border-top: 3px double #333366;
}
ol {
	 list-style-position:inside;
}
li {
	margin: 0.25em 0;
}
li::marker {
  color: #ffcccc;
  font-weight: bold;
}
footer {
	text-align: left;
	background-color: #333366;
}
footer a {
	padding: 0.5em 1em;
	color: #ffffff;
	display: inline-block;
}
.material-icons {
	vertical-align: middle;
}
.active {
	text-decoration: underline;
}
.blue {
	color: #333366;
}
.rose {
	color: #ffcccc;
}
.leftalign {
	text-align: left;
}
.style1 {
	color: #ffcccc;
	font-size: 1.5em;
	display: block;
	margin: 0 auto;
}
.box {
	 border:1px solid #afafaf;
	 border-radius:0.5em;
	 padding:1em 2em;
	 margin: 1em 0;
}
.leistung {
	color: #333366;
	cursor: pointer;
}
.inner {
	display: none;
	opacity: 0;
	margin-top:1em;
	text-align: left;
	transition: opacity 0.5s;
}
.open {
	max-height: 2000px;
}
.member {
	padding: 1em;
	border: 1px solid #ffcccc;
}
.person {
	width: 200px;
	height: auto;
	background-color: white;
	border-radius: 50%;
}
#toggleNav {
	color: #ffffff;
	background-color: transparent;
	position: absolute;
	top: 0.5em;
	right: 0.5em;
}
#logo {
	 height: 150px;
	 width: auto;
	 margin:4em 0;
}
@media only screen and (min-width: 601px) {
	.style1 {
		display: inline;
		margin: 0 auto;
	}
	.member {
		float: left;
		margin: 1%;
		width: 48%;
	}
}
@media only screen and (min-width: 731px) {
	nav {
		position: static;
		left: auto;
		top: auto;
		min-height: 0;
		display: block;
		transform: none;
		transition: none;
	}
	nav a {
		display: inline-block;
		padding: 0 0.5em;
		border-bottom: none;
		border-right: 1px dotted;
	}
	#toggleNav {
		display: none;
	}
}

@media only screen and (min-width: 1001px) {
	body {
		font-size: 16px;
	}
	h1 {
		font-size:3em;
	}
	h2 {
		font-size:2em;
	}
	.member {
		width: 31.333%;
	}
}