/* CSS Document */

/*-------------------------
	Simple reset
--------------------------*/

*{
	margin:0;
	padding:0;
	font-family:Lato, Helvetica, sans-serif;
}


/*-------------------------
	General Styles
--------------------------*/

h1{
	font-size:20px;
	font-weight:normal;
	color:#79b93b;
	line-height: 1.5;
}

h2{
	font-size:16px;
	font-weight:normal;
	color:#ad134e;
	line-height: 1.5;
}

h3{
	font-size:15px;
	font-weight:normal;
	color:#79b93b;
	line-height: 1.5;
}

h4{
	font-size:15px;
	font-weight:normal;
	color:#ad134e;
	line-height: 1.5;
}

h5{
	font-size:14px;
	font-weight:normal;
	color:#79b93b;
	line-height: 1.5;
}

h6{
	font-size:14px;
	font-weight:normal;
	color:#ad134e;
	line-height: 1.5;
}

p{
	font-size:14px;
	font-weight:normal;
	color:#476680;
	line-height: 1.5;
}

a{
	text-decoration:none;
}




/*----------------------------
	Header
-----------------------------*/

#navigation{
	width:100%;
	/*max-width:960px;	*/
	margin-left:auto;
	margin-right:auto;
	margin-top: 50px;
	margin-bottom: 15px;
}

#logo{
	float:left;
	width: calc(25% - 20px);
	max-width: 230px;
	margin: 0 10px;
}

#logo img{
	width:100%;
}

/*----------------------------
	Navigation Menu
-----------------------------*/

#menuToggler{
	display:none;
}

#main-menu{
	float:right;
	margin:30px 0px 0px 10px;
	width: calc(75% - 10px);
}

#main-menu > ul{
	margin:0 auto;
	float:right;
}

#main-menu > ul > li{ /* will style only the top level li */
	list-style: none;
	display: inline-block;
	position:relative;
}

#main-menu > ul > li > a,
.separator{
	color:#476680;
	text-decoration:none !important;
	font-size:14px;
	padding: 10px;
}

.divider{
	top:10px;
}

#main-menu > ul > li:hover > a{
	color:#79b93b;
}

#main-menu li ul{
	position:absolute;
	list-style:none;
	text-align:center;
	width:180px;
	left:50%;
	margin-left:-90px;
	top:30px;
	font-size:12px;
	z-index: 3;

	/* This is important for the show/hide CSS animation */
	max-height:0px;
	overflow:hidden;

	-webkit-transition:max-height 0.4s linear;
	-moz-transition:max-height 0.4s linear;
	transition:max-height 0.4s linear;
}

.divider ul{
	top:5px !important;
}

#main-menu li ul li{
	background-color:#8dc853;
}

#main-menu li ul li a{
	padding:12px;
	color:#fff !important;
	text-decoration:none !important;
	display:block;
}

#main-menu li ul li:nth-child(odd){ /* zebra stripes */
	background-color:#79b93b;
}

#main-menu li ul li:hover{
	background-color:#a0d968;
}

#main-menu li ul li:first-child{
	border-radius:3px 3px 0 0;
	margin-top:25px;
	position:relative;
}

#main-menu li ul li:first-child:before{ /* the pointer tip */
	content:'';
	position:absolute;
	width:1px;
	height:1px;
	border:5px solid transparent;
	border-bottom-color:#79b93b;
	left:50%;
	top:-10px;
	margin-left:-5px;
}

#main-menu li ul li:last-child{
	border-bottom-left-radius:3px;
	border-bottom-right-radius:3px;
}

/* This will trigger the CSS */
/* transition animation on hover */

#main-menu li:hover ul{
	max-height:300px; /* Increase when adding more dropdown items */
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #79b93b;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
#show-menu[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
#show-menu[type=checkbox]:checked ~ #menu{
    display: block;
}

/*----------------------------
	Vertical Accordion Navigation
-----------------------------*/

/*.nav{
	width:100%;
}*/

.nav label {
  display: block;
 padding: 10px;
  color: #476680;
  background-color: #;
  box-shadow: inset 0 -1px #e3e3e3;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  font-size:14px;
	font-weight:normal;
}

.nav a{
	display:block;
	color: #476680;
	padding:5px;
	font-size:14px;
	font-weight:normal;
	}

.nav label > a{
	padding:0;
}

.nav__list li{
	list-style-type: none;
}

.nav a:focus, .nav a:hover, .nav label:focus, .nav label:hover {
  background: #79b93b;
	color:#fff;
}

.nav label { cursor: pointer; }

/**
 * Styling first level lists items
 */

.group-list a, .group-list label {
  padding-left: 20px;
  background: #;
  box-shadow: inset 0 -1px #e3e3e3;
}

.group-list a:focus,
.group-list a:hover,
.group-list label:focus,
.group-list label:hover {
	background: #8dc853;
	color:#fff;
	}

/**
 * Styling second level list items
 */

.sub-group-list a, .sub-group-list label {
  padding-left: 30px;
  background: #;
  box-shadow: inset 0 -1px #e3e3e3;
}

.sub-group-list a:focus,
.sub-group-list a:hover,
.sub-group-list label:focus,
.sub-group-list label:hover {
	background: #79b93b;
	color:#fff;
	}

/**
 * Styling third level list items
 */

.sub-sub-group-list a, .sub-sub-group-list label {
  padding-left: 40px;
  background: #;
  box-shadow: inset 0 -1px #e3e3e3;
}

.sub-sub-group-list a:focus,
.sub-sub-group-list a:hover,
.sub-sub-group-list label:focus,
.sub-sub-group-list label:hover {
	background: #79b93b;
	color:#fff; }

/**
 * Hide nested lists
 */

.group-list, .sub-group-list, .sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .5s ease-in-out;
}

.nav__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */
max-height: 1000px; }

/**
 * Rotating chevron icon
 */

label > span {
  float: right;
  -webkit-transition: -webkit-transform .65s ease;
  transition: transform .65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}


/*----------------------------
	Trenner
-----------------------------*/

.trenner{
	height:10px;
	background-color:#79b93b;
	clear:all;
	margin-bottom:15px;

}

.tr_content{
	margin-top:15px;
}

/*----------------------------
	Slider
-----------------------------*/

.slider_text{
	width:100%;
	margin:0 auto;
	text-align:center;
}

.slider_text h1{
	color:#fff !important;
}

.slider_text h2{
	color:#fff !important;
}

.slider_text p{
	color:#fff !important;
}

.sp-title{
	font-size:18px !important;
	font-weight:normal;
	color:#fff !important;
	line-height: 1.5;
}

.sp-posttitle{
	font-size:15px !important;
	font-weight:normal;
	color:#fff !important;
	line-height: 1.5;
}

.sp-corporex-layout .sp-slider-content {
    /*display: inline-block;*/
    display:none !important;
    width: 60% !important;
    position: absolute;
    z-index: 1;
    left: 30px !important;
    top: 45%;
    padding: 30px !important;
    color: #fff;
    background-color: rgba(0,0,0, .6);
    border: 1px solid rgba(255, 255,255, .6);
    bottom:30px;
}

#sp-smart-slider{
	margin:15px 0;
}


/*----------------------------
	Quadrate
-----------------------------*/

#header{
	width:100%;
	max-width:960px;
	margin: 20px auto 20px auto;
}

.red{
	background-color:#ad134e;
}

.green{
	background-color:#79b93b;
}

.item{
	width: 100%;
    height: 270px;
    transition: all 0.2s linear;
    float: left;
    margin:15px 0;
    opacity:0.8;
}

.items_left{
	/*width: calc(25% - 20px);
	 margin: 10px;*/
	float:left;

}

.items_right {
    /*width: calc(25% - 20px);
	 margin: 10px;*/
    float: right;
}

.items_bottom{
	float:right !important;
	}

/*.items_bottom .item{
	width: calc(100% / 4 - 23px);
	margin:15px 0;
}*/

.item:hover{
	border-radius:135px 135px 135px 135px;
	opacity:1;
}

/*.span12 > div:nth-child(1) > div:nth-child(2){
	margin-left:30px;
	margin-right:15px;
}

div.item:nth-child(3){
	margin-left:15px;
	margin-right:30px;
}*/

.item{
	text-align:center;
	font-size:50px;
}

.kachelicon{
	color:#fff;
	text-decoration:none;
	margin-bottom:10px;
	margin-top:110px;

}

.item .kacheltitle{
	display:none;
	margin-bottom:90px;
}

.item:hover .kacheltitle{
	display:block;
	text-transform:uppercase;
	font-size:20px;
	text-decoration:none;
	color:#fff;
}

.item a{
	text-decoration:none;

}

.item:hover a{
	display:block;
	overflow:hidden;
}


.slider-image img{
	width:auto;
	margin-left:auto;
	margin-top:auto;
}

.controller-prev [class^="icon-"], [class*=" icon-"] {
	background-position: -429px -70px !important;
	padding:2px !important;
	background-color: rgba(255,255,255, .6) !important;
}

.controller-next [class^="icon-"], [class*=" icon-"] {
	background-position: -454px -70px  !important;
	padding:2px !important;
	background-color: rgba(255,255,255, .6) !important;
}

.djslider-default{
	margin-top:15px !important;
}

/*----------------------------
	Location
-----------------------------*/

#location{
	margin-left:10px;
	margin-right:10px;
}


/*----------------------------
	Content
-----------------------------*/

.sidebar_left{
	width:calc(25% - 20px);
	float:left;
}

.sidebar_right{
	/*width:calc(25% - 10px);*/
	float:left;
	/*padding-left:10px;
	margin-right:10px;
	box-sizing:border-box;
	border-left:1px solid #e3e3e3;*/
}

.content{
	width:100%;
	max-width:960px;
	margin: 25px auto;
}

#text_wrapper{
	width:50%;
	box-sizing:border-box;
	height:470px;
	float:left;
	margin: 10px 0;
}

.content_subpages{
	width:75% !important;
	margin-left:10px;
	margin-right:10px;
}

.text{
	/*height:585px;*/
	overflow:scroll;
	}

.cont_mod{
		margin-left:0 !important;
			}

.titel {
	text-align:center;
	margin-top:20px;
	display:none;
	transition: display 0.4s linear;
}

.titel a{
	color:#fff;
}

/*----------------------------
	Breadcrumbs
-----------------------------*/

.breadcrumb img{
	margin-top: -5px;
}

/*----------------------------
	Footer
-----------------------------*/

footer{
	background-color:#466580;
	margin-top:15px;
}

footer p{
	color:#fff;
}

#footer_wrapper{
	width:100%;
	max-width:960px;
	margin:0 auto;
	display:block;
}

.copyright{
	/*width:calc(25% - 20px);*/
	float:left;
	margin-top:30px;
	margin-bottom:30px;
	padding-left:10px;
}

#punkte img{
	max-width:180px;
	width:100%;
}

.adresse{
	/*width:calc(25% - 20px);*/
	float:right;
	margin-top:30px;
	margin-bottom:30px;
}

.contact{
	/*width:calc(25% - 20px);*/
	float:right;
	margin-top:30px;
	margin-bottom:30px;
}

td:nth-child(2){
	padding-left:10px;
}

@media screen and (min-width: 550px) and (max-width: 799px) {

 #footer_wrapper{
	display:inline-block;
}

 #adresse{
	width:calc(75% / 2 - 20px);
	float:right;
	margin:30px 10px;
}

#contact{
	width:calc(75% / 2 - 20px);
	float:right;
	margin:30px 10px;
}

}


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

#logo{
	min-width: 200px;
}

#logo{
	float:none;
	margin-left:auto;
	margin-right:auto;
}

/*#main-menu{
	float:none;
	margin-left:auto;
	margin-right:auto;
	width: calc(100% / 3);
	min-width: 200px;
}

#main-menu ul{
	background-color: #f1f1f1;
	z-index: 999;
	width: calc(100% / 3);
	min-width: 200px;
}

#main-menu ul li, #main-menu ul li a {
	width:100%;
	min-width: 200px;
	box-sizing: border-box;
}

.hidden li a{
	width: 100%;
	min-width: 200px;
	box-sizing: border-box;
}

#main-menu ul li{
	text-align: center;
}

.show-menu {
	display:block;
}

#main-menu li:hover ul{
display: block;
width:100%;
min-width:200px;
position:static;
margin-left:0;
margin-top:-20px;
box-sizing: border-box;
}

.separator{
	padding:0;
}*/

#menuToggler{
	display:block;
}

.navbar{
	margin:0 !important;
	top:0 !important;
	left: 0 !important;
	position:absolute;
	padding:15px;
	z-index:1000;
}

.show-on-small {
	display: block;
	}

  ul.menu {
  	left: -302px !important;
  	width: 300px;
  	z-index: 10009;
  	line-height: 1.8;
  	position: absolute !important;
  	z-index: 9999;
  	border: 1px solid #f2f2f2; /* resetting and blocking the elements in order to have a large touch surface */

	/* the transitions */
  	 -webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
     transition: all 300ms ease-in-out;
   }

  	/* the open state -  here we are using the CSS 3D Transforms */
  	ul.menu.menuIsActive {
	-webkit-transform: translate3d(300px, 0, 0);
	-moz-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
	-webkit-overflow-scrolling: touch;
	background-color:#fff;}

  ul.menu ul {
  	display: block;
  	position: static;
  	opacity: 1;
 	position:static !important;
  	width:100% !important;
  	margin-left:0 !important;

  	}

  ul.menu ul li {
  	text-indent: 15px;
  	font-size: 0.9em;
  	border-bottom: 1px solid #f2f2f2;

  	}

  ul.menu > li,
  ul.menu li,
  ul.menu a,
  ul.menu li > a {
  	display: block !important;
  	float:none !important;

  	}

 ul.menu > li{
 	position:static !important;
 }

  /* globally reset all paddings */
  ul.menu a { padding: 12px 20px !important; }
  /* resetting all the hover states - can be omitted in live sites */
  ul.menu a:hover,
  ul.menu li:hover a { background: none !important; }

  /* support for browsers which do not support 3D transforms - must use Modernizr for this feature */
	.no-csstransforms3d ul.menu.menuIsActive { left: 0; }

  /* the visibility toggler */
	#menuToggler .icon { display: inline-block; vertical-align: middle; padding-right: 5px; }
	#menuToggler span { display: inline-block; vertical-align: middle; font-weight: 800; font-size: 12px; line-height: 28px; }
	#menuToggler a:hover { text-decoration: none; }

	.divider{
		padding:10px 0;
		box-sizing:border-box;
	}

	.separator{
		margin-left:10px;
	}

}

@media screen and (max-width: 767px) {
	.items_left,
	.items_right,
	.items_bottom{
		display:none !important;
	}

	body{
		padding:0 !important;
	}




	.copyright,
	.adresse,
	.contact{
		padding-left:15px;
	}
}

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

#logo{
	min-width: 200px;
}

#main-menu ul li, #main-menu ul li a {
	min-width: 200px;
}

.hidden li a{
	width: 100%;
	min-width: 200px;
	box-sizing: border-box;
}

#footer_wrapper{
	display:inline-block;
}

#copyright{
	width:calc(100% - 20px);
	float:none;
	margin:30px 10px 20px 10px;
	text-align:center;
}

#punkte img{
	max-width:220px;
	width:100%;
	margin: 0 auto;
}

#adresse{
	width:calc(100% - 20px);
	float:none;
	margin:0 10px 10px 10px;
	text-align:center;
}

#contact{
	width:180px;
	float:none;
	margin:0 auto 10px auto;
}

.items_left,
.items_right,
.items_bottom{
	display:none;
}

.csslider{
	width:100% !important;
}

#text_wrapper{
	width:100%;
	float:none;
}

}
ul li a .item-117{
		display:none;
	}
