@charset "utf-8";
/* CSS Document */

/* ------ GENERAL ------- */

* {
	margin:0px;
	padding:0px;
}

body {
	width:100%;
	height:100%;
	background-image:url(../img/background.jpg);
	background-size:cover;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:130%;
}

#logo {
	position:absolute;
	margin-left:-120px;
	top:50px;
	background:rgba(255,255,255,0.8);
	border-radius:10px;
	width:320px;
	height:100px;
	padding:10px;
}

/* ------ FONT ------- */

h1,h2 {
	color:#007345;
	font-size:21px;
	font-weight:600;
	margin-bottom:10px;
}

h2 {
	font-size:18px;
}

ul,p {
	font-size:13px;
}

.textfeld ul {
	margin:10px 0px 10px 20px;
}

a {
	text-decoration:none;
}
strong {
	font-weight:600;
	color:#007345;
	font-size:13px;
}

/* ------ DESIGN/CONTENT ------- */

.content, .content-inhaltliches,.content-besonderes, .content-professionelles, .content-verbindliches, .content-impressum {
	position:absolute;
	width:960px;
	height:100%;
	background-color:#fff;
	margin:0 auto;
	left:50%;
	margin-left:-480px;
	background-image:url(../img/fluegel.jpg);
	background-size:cover;
	box-shadow:0px 0px 20px #222;
}

.content-inhaltliches {
	background-image:url(../img/inhaltliches.jpg);
	background-position:bottom;
}
.content-besonderes {
	background-image:url(../img/besonderes.jpg);
}
.content-verbindliches {
	background-image:url(../img/kontakt.jpg);
	background-position:bottom;
}
.content-professionelles {
	background-image:url(../img/steinpfad.jpg);
	background-position:bottom;
}
.content-impressum {
	background-image:url(../img/libelle.jpg);
	background-position:bottom;
}

.textfeld {
	position:relative;
	float:right;
	margin-right:30px;
	margin-top:50px;
	width:500px;
	max-height:70%;
	height:auto;
	padding:20px;
	background-color:rgba(255,255,255,0.8);
	border-radius:15px;
	overflow-y:auto;
}



/* ------ NAVIGATION ------- */

nav {
	position:absolute;
	top:90%;
	width:100%;
	background-color:#efefef;
	background-image:url(../img/menu_back.png);
}

nav ul {
	list-style:none;
}

nav ul li {
	position:relative;
	float:left;
	padding:10px 20px;
	color:#444;
	font-size:14px;
	font-weight:300;
	-webkit-transition: all ease-in 0.2s;
	-moz-transition: all ease-in 0.2s;
	-o-transition: allt ease-in 0.2s;
	transition: all ease-in 0.2s;
}

nav ul li:hover, .active {
	background-color:#007345;
	color:#fff;
	-webkit-transition: all ease-in 0.2s;
	-moz-transition: all ease-in 0.2s;
	-o-transition: allt ease-in 0.2s;
	transition: all ease-in 0.2s;
}	

@media (max-width: 1400px) {
	.content, .content-inhaltliches,.content-besonderes, .content-professionelles, .content-verbindliches, .content-impressum  {
		width:760px;
		margin-left:-380px;
	}
	
	.textfeld {
		width:370px;
	}
	
	nav ul li {
		padding:10px 10px;
	}
}

@media (max-width: 760px) {
	.content, .content-inhaltliches,.content-besonderes, .content-professionelles, .content-verbindliches, .content-impressum  {
		width:100%;
		margin:0 auto;
		left:0px;
	}
	
	.textfeld {
		width:80%;
		top:150px;
		height:auto;
		margin-bottom:200px;
	}
	
	#logo {
		margin-left:10%;
		width:80%;
	}
	
	nav {
		top:100%;
		background-image:none;
		background-color:#efefef;
	}
	
	nav ul li {
		position:relative;
		float:none;
		width:100%;
		text-align:center;
		display:block;
		padding:10px 0px;
		border-right:none;
		border-bottom:solid 1px #dedede;
	}
	
}
	
/* -----ACCORDION-----*/

.accordion { 
     width:100%;
     overflow:hidden; 
     margin:10px auto; 
     color:#333; 
     padding:10px; 
}

.accordion section{ 
      float:left;
      overflow:hidden; 
      color:#333; 
      cursor:pointer; 
      margin:3px; 
}
.accordion section:hover {
}

.accordion section p, accordion section ul { 
      display:none; 
}
.accordion section:after{
      position:relative;
      font-size:24px;
      color:#000;
      font-weight:bold;
}
.accordion section:nth-child(1):after{ content:'1'; }
.accordion section:nth-child(2):after{ content:'2'; }
	
	.accordion section:target { 
      padding:10px;
}
.accordion section:target:hover { 
}
.accordion section:target h2 {
      width:100%;
	  font-weight:600;
}
.accordion section:target h2 a{ 
      color:#007345; 
      padding:0;
	  font-weight:600;
}
.accordion section:target p {
      display:block;
}
.accordion section h2 a{
      padding:8px 10px;
      display:block; 
      font-size:16px; 
      font-weight:600;
      color:#007345; 
      text-decoration:none; 
}
.vertical section{ 
     width:100%; 
     height:50px; 
     -webkit-transition:height 0.2s ease-out;
     -moz-transition:height 0.2s ease-out;
     -o-transition:height 0.2s ease-out;
     transition:height 0.2s ease-out;
}
 
/*Set height of the slide*/
.vertical :target{ 
     height:auto; 
     width:97%;
}
.vertical section h2 { 
     position:relative; 
     left:0; 
	  font-weight:600;
}
/*Set position of the number on the slide*/
.vertical section:after{ 
      top:-60px;
      left:810px;
}
.vertical section:target:after{ 
      left:-9999px;
}