/* siehe html + "index.js" */

#site-loading {
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left:0;
	background: #fff;
	z-index: 9999;
}

#site-loading::after {
	content: '';
	position: fixed;
  
	top: 50%;
	left: 50%;
	height:50px;
	width:50px;
	margin-top: -25px;
	margin-left: -25px;
  
	border-left: 2px solid #0186c9;
	border-right: 2px solid #0186c9;
	border-bottom: 2px solid #0186c9;
	border-top: 2px solid #fff;
	border-radius:100%;
  
	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;  
}

@-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
}

@-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
}

@-o-keyframes rotation {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(359deg);}
}

@keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
}


/* -------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 640px){
	#nav > li:last-of-type > a {
		margin-bottom: 30px;
	}
}

/* -------------------------------------------------------------------------------------------------------------------------- */
#banner-wrapper{
  position: relative; /* z-index! */
  width:100%;
  overflow: hidden;
  z-index: 150; 
}

#banner{
  position: relative;
  height: 520px;
}

#banner #a-region{
  position: absolute;  
  top: 30px;
  width: 360px;
  height: 400px;
  
  background-image: url("/img/sites/index/verbandsgebiet.png");
  background-repeat: no-repeat;
  
  /*background-color: rgba(255,255,255,0.1);*/
  border-top-right-radius: 80%;
  border-bottom-left-radius: 80%;
}

#banner #a-region span{
  position: absolute;
  color: #02457a;
  font-size: 12px;
  font-weight: 500;
}

#banner #span-beilrode{
  top: 162px;
  left: 165px; 
}

#banner #span-arzberg{
  top: 265px;
  left: 225px;  
}

#banner #img-circle{
  position: absolute;
  top: 100px;
}

#banner #div-claim{
  position: absolute;
  top: 60px;
  width:340px;
  font-size: 30px;
  line-height: 44px;
  color: #fff;
}

#banner #quicklinks-wrapper{
  position: absolute;
  width: 340px;
  top:220px;
}

#banner .a-quicklinks{
  display:block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 300;
  font-size: 17px;
  
  padding: 12px 0 12px 18px;

  background-image: url("/img/nav-right.png");
  background-color: rgba(255,255,255,0.1);
  background-position: right 18px center;
  background-repeat: no-repeat;
  
  border-radius: 2px;
  color: #fff;
  
  transition: background-color 0.1s ease-in-out;
}

#banner .a-quicklinks:hover{
  background-color: rgba(1,122,193,1);
}

/*----------------------------------*/


@media screen and (min-width: 1280px){
		
	#banner #div-claim{
	  right: 0;
	}
	
	#banner #quicklinks-wrapper{
	  right: 0;
	}

	#banner #img-circle{
		left: 0;
	}

	#banner #a-region{
		left: 140px;
	}
		
}


@media screen and (min-width: 1024px) and (max-width: 1280px) {
	
	#banner #div-claim{
		right: 80px;
		width:320px;
		font-size: 28px;
	}
	
	#banner #quicklinks-wrapper{
		right: 80px;
		width:320px;
	}

	#banner #img-circle{
		left: 70px;
	}

	#banner #a-region{
		left: 210px;
	}
	
}



@media screen and (max-width: 1023px) {
  
	#banner{
		max-width: 710px;
		height:500px;
		margin: 0 auto;
	}
	
	#banner #img-circle{
		top: 170px;
		width:260px;
		background-size: 100%;
	} 
  
	#banner #a-region{
		top: 80px;
		left: 20px;
		width:330px;
		background-size: 100%;
	}
  
	#banner #a-region span{
		display: none;
	}
  
	#banner #div-claim{
		top: 20px;
		width: 100%;
		text-align: center;
	}
  
	#banner #quicklinks-wrapper{
		width: 300px;
		right: 0;
	}

}

@media screen and (max-width: 800px) {
	
	#banner{
		max-width: 580px;
		height:auto;
	}
	
	#banner #img-circle{
		display:none;
	}
	
	#banner #div-claim{
		position: relative;
		top: auto;
		margin-top:20px;
		margin-bottom:70px;
	}

	#banner #a-region{
		left:0;
		top:-20px;
		height: 400px;
		width:100%;
		background-size: 300px;
		background-position: center center;
		opacity: 0.5;
	}

	#banner #quicklinks-wrapper{
		position: relative;
		top: auto;
		width:100%;
		margin-bottom:100px;
	}
	
	
}


@media screen and (max-width: 640px) {
  
	#banner{
		max-width: 100%;
	}
	
	#banner #a-region{
		display:none;
	}
	
	#banner #div-claim{
		display:none;
	}
	
	#banner #quicklinks-wrapper{
		margin-top:10px;
		margin-bottom:60px;
	}
  
}

@media screen and (max-width: 480px) {
	
	
	
	#banner #quicklinks-wrapper{
		
		margin-top:20px;
		margin-bottom:60px;
	}

}

/* Banner ani -------------------------------------------------------------------------------------------------------------------------- */

@media screen and (min-width: 641px) {

	#banner *{  
	  animation-iteration-count: 1;
	  animation-timing-function: ease-out;    
	}

	.ani-region{
	  animation-name: ani_region;
	  animation-duration: 1.5s;  
	}

	@keyframes ani_region {
	  0%   { opacity: 0; }
	  0%   { transform: scale(0.5) rotate(-10deg); }
	  
	  100% { opacity: 1; }
	  100% { transform: scale(1) rotate(0deg); }
	}

	.ani-beilrode{
	  animation-name: ani_beilrode;
	  animation-duration: 1.6s;  
	}

	@keyframes ani_beilrode {
	  0%   { transform: scale(0); }
	  50%  { transform: scale(0); }
	  100% { transform: scale(1); }
	}

	.ani-arzberg{
	  animation-name: ani_arzberg;
	  animation-duration: 2s;   
	}

	@keyframes ani_arzberg {
	  0%   { transform: scale(0); }
	  50%  { transform: scale(0); }
	  100% { transform: scale(1); }
	}

	.ani-circle{
	  animation-name: ani_circle;
	  animation-duration: 2.8s;  
	}

	@keyframes ani_circle {
	  0%   { opacity: 0; }
	  50%  { opacity: 0; }
	  100% { opacity: 1; }
	}

	.ani-claim{
	  animation-name: ani_claim;
	  animation-duration: 3.4s;  
	}

	@keyframes ani_claim {
	  0%   { opacity: 0; }  
	  50%  { opacity: 0; }
	  100% { opacity: 1; }
	}

	.ani-quicklink-1{
	  animation-name: ani_quicklink_1; 
	  animation-duration: 3.2s;
	}

	.ani-quicklink-2{
	  animation-name: ani_quicklink_2; 
	  animation-duration: 3.3s;
	}
	  
	.ani-quicklink-3{
	  animation-name: ani_quicklink_3; 
	  animation-duration: 3.4s;
	}

	@keyframes ani_quicklink_1 {
	  0%   { opacity: 0; }  
	  75%  { opacity: 0; }
	  100% { opacity: 1; }
	}

	@keyframes ani_quicklink_2 {
	  0%   { opacity: 0; }  
	  83%  { opacity: 0; }
	  100% { opacity: 1; }
	}

	@keyframes ani_quicklink_3 {
	  0%   { opacity: 0; }  
	  90%  { opacity: 0; }
	  100% { opacity: 1; }
	} 

}

 /* -------------------------------------------------------------------------------------------------------------------------- */

#news-wrapper{
	background: #fff;
	border-bottom: 1px dotted #ccc;
}

.news-headline{
	color: #017bbb;
}

.news-author{
	color: #637178; 
}

.toggle-more{
	color: #017bbb; 
}

.news-author, .toggle-more{
	display: block;
}

.news-col-wrapper:not(:last-of-type){
	display:block;
	padding-bottom: 15px;
	 margin-bottom: 15px;
}
 
 @media screen and (min-width: 641px) {
	
	#news-wrapper{
	  padding: 86px 0 86px 0;
	}

	#news-wrapper h1{
		font-size: 32px;
		margin-bottom: 32px;
	}

	.news-col-wrapper{
	  display:table;
	  width: 100%;
	  
	  outline: 0 none;
	}

	.news-col-left{
	  display:table-cell;
	  vertical-align: top;
	  width: 72px;
	  padding-top: 8px;
	}

	.news-col-right{
	  vertical-align: top;
	  display:table-cell;
	}

	/* ----------------------------------- */
	.date-responsive{
		display:none;
	}
	
	.date-wrapper {
		display: block;
		width: 48px;
		text-align: center;
		position: relative;
	}

	.date-head {
		display: block;
		padding: 4px 0 4px 0;
		font-size: 12px;
	  line-height: 12px;
	  font-weight: 500;
	  color: #fff;
	  background: #017bbb;
	}

	.date-main {
		position: relative;
		display: block;
		margin: 0;
		padding: 0 0 4px 0;
		border-top: 0 none; /* s.u. hover */
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		color: #637178;
	}

	.date-day{
	  display: block;
	  font-size: 18px;
	  line-height: 24px;
	  font-weight: 500;
	}

	.date-month{
	  display: block;
	  font-size: 12px;
	  line-height: 12px;
	  padding-bottom: 2px;
	}

	/* ----------------------------------- */
	.news-headline{
	  font-size:21px;
	  line-height: 32px;
	}

	.news-author, .toggle-more{
	  font-size:14px;
	}

}

@media screen and (max-width: 640px) {
	
	#news-wrapper{
		padding: 66px 0 66px 0;
	}
	
	.news-col-wrapper:not(:last-of-type) {
		border-bottom: 1px dotted #ddd;
	}
	
	.date-main, 
	.date-head,
	.news-author{
		display:none;
	}
	
	.date-responsive{
		color: #637178;
		margin-bottom:4px;
	}
	
	.news-headline{
		font-size: 18px;
		line-height: 28px;
	}
	
	.toggle-more{
		margin-top:6px;
	}

}

@media screen and (max-width: 480px){	
	#news-wrapper{
		padding: 56px 0 56px 0;
	}
	
	#news-wrapper h1{
		font-size: 28px;
		margin-bottom: 26px;
	}
	
}

 /* -------------------------------------------------------------------------------------------------------------------------- */
 
#welcome-wrapper{
  padding: 100px 0 110px 0; 
	background: #fff; 
	line-height: 28px;
}

@media screen and (max-width: 640px){	
#welcome-wrapper{
  padding: 56px 0 76px 0; 
}
	
}

 /* -------------------------------------------------------------------------------------------------------------------------- */

#sub-wrapper{
  padding: 160px 0 180px 0;
	background: #fbfbfbe6;  
}

.col-wrapper{
  display: table;
	height: 100%; /* Wichtig! column-wrapper + column-cell + inner */
	font-size:16px;
}

.col-item{
  display: table-cell; 
  width: 33.3%;
  height: 100%; /* Wichtig! column-wrapper + column-cell + inner */  
}

.col-item:nth-of-type(1){  
  border-right: 50px solid transparent;   
}
  
.col-item:nth-of-type(2){  
  border-left: 25px solid transparent; 
  border-right: 25px solid transparent;    
}
  
.col-item:nth-of-type(3){  
  border-left: 50px solid transparent;    
}

.col-item-inner{ /* Link */
  display: block;
  height: 100%; /* Wichtig! column-wrapper + column-cell + inner */ 
  padding-top: 10px;

	outline: 0 none;
	background: #ffffffe6;
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.09);
	border-radius: 4px;
}

.col-item-inner:hover .col-text{
  color: #017ac1;
}

.col-img{
  height: 170px;
}

.col-item:nth-of-type(1) .col-img{  
  background-image: url("/img/sites/index/wasserwerte.png");
  background-position: center center;
  background-repeat: no-repeat; 
}

.col-item:nth-of-type(2) .col-img{  
  background-image: url("/img/sites/index/gebuehren.png");
  background-position: center center;
  background-repeat: no-repeat; 
}

.col-item:nth-of-type(3) .col-img{  
  background-image: url("/img/sites/index/wissenswert.png");
  background-position: center center;
  background-repeat: no-repeat; 
}

.col-headline{
  font-size: 21px;
  line-height:32px;
  text-align: center;
}

.col-text{
  padding: 20px 34px 40px 34px;
  text-align: center;   
  color: #637178; 
}

.col-text span{
  color: #017ac1;
  font-weight: 400; 
}

@media screen and (max-width: 1279px) {
    
  .col-item:nth-of-type(1){  
    border-right: 36px solid transparent;   
  }
  
  .col-item:nth-of-type(2){  
    border-left: 18px solid transparent; 
    border-right: 18px solid transparent;    
  }
  
  .col-item:nth-of-type(3){  
    border-left: 36px solid transparent;    
  }
  
}

@media screen and (max-width: 979px) {
  
  #sub-wrapper{
    padding: 100px 0 100px 0; 
  }
    
  .col-item:nth-of-type(1){  
    border-right: 24px solid transparent;   
  }
  
  .col-item:nth-of-type(2){  
    border-left: 12px solid transparent; 
    border-right: 12px solid transparent;    
  }
  
  .col-item:nth-of-type(3){  
    border-left: 24px solid transparent;    
  }
  
  .col-img{
    height: 120px; 
  }
  
  .col-item:nth-of-type(1) .col-img{
    background-size: 44px auto; 
  }

  .col-item:nth-of-type(2) .col-img{  
    background-size: 80px auto; 
  }

  .col-item:nth-of-type(3) .col-img{  
    background-size: 50px auto; 
  }
  
}


@media screen and (max-width: 768px) {
  
  .col-wrapper{
    display: block;
  }
  
  .col-item{
    display: block; 
    width: 100%;
    border: 0 none !important;
    margin-bottom: 20px;        
  }
  
}

@media screen and (max-width: 640px) {
  
  #sub-wrapper{
    padding: 76px 0 76px 0; 
  }

}

@media (max-width:768px) and (min-width:479px) {
  
  .col-item-inner{
    padding: 40px 20px 40px 0;       
  }
  
  .col-img, .col-headline-text-wrapper{
    display: table-cell;
  }
  
  .col-img{
    width: 130px;
    height: 70px;
  }

  .col-headline-text-wrapper{
    vertical-align: top;
    padding-top: 2px;
  }

  .col-headline, .col-text{
    text-align: left;
    
  }
  
  .col-headline{

  }
  
  .col-text{
    padding: 0;
    padding-top: 10px;
  }
   
  
}