

/* ==========================================================================
   DI-Vision
   ========================================================================== */

@media(max-width:767px){}
@media(min-width:768px){}
@media(min-width:992px){}
@media(min-width:1200px){}


html, body{
	padding: 0;
	margin: 0;
}

body{
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
	/*letter-spacing: 0.5px;*/
	font-size: 16px;
	font-weight: 300;
	overflow-x: hidden;
	overflow-y: scroll;
}


h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	font-family: 'Roboto Slab', serif;
}

h1{
	font-size: 1.2em;
}

h2{
	font-size: 1.2em;
}

.indent {
	margin-top: -100px;
}

.sectiontitle {
	font-size: 1.3em;
}

h3 {
	font-size: 1.2em;
}

strong{
	font-weight: 700;
}

ul{
	padding-left: 20px;
}

a{
	color: rgb(186, 214, 51);
}

a:hover{
	color: rgb(186, 214, 51);
	text-decoration: underline;
}

@media(max-width:767px){

	h3 {
		font-size: 0.9em;
	}

}


/* ==========================================================================
   allgemein
   ========================================================================== */

span.it{
	color: rgb(186, 214, 51);
	font-weight: 600;
}


/* ==========================================================================
   aside
   ========================================================================== */

aside{
	width: 250px;
	background: rgb(186, 214, 51);
	height: 100vh;
	position: fixed;
}


/* ==========================================================================
   header
   ========================================================================== */

header{
	background: rgb(186, 214, 51);
	position: fixed;
	top: 0;
	min-height: 100px;
	width: 100%;
	z-index: 9999;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}

header .container{
	position: relative;
	min-height: 100px;
}

.logo{
	width: 125px;
	height: 125px;
	padding: 10px;
	margin: 10px 0 0;
	position: absolute;
	left: 15px;
	z-index: 2;
	top: 0;
	background: rgb(186, 214, 51);
	box-shadow: 0px 0px 12px rgba(0,0,0,0.4);
	/* box-shadow: 5px 5px 5px rgba(0,0,0,0.5); */
	border-radius: 50%;
}

.logo img{
	margin: auto;
	height: 95px;
}

@media(max-width:767px){
	.logo{
		width: auto;
		height: 100px;
		padding: 5px 0 0;
		margin: 0;
		box-shadow: none;
	}
}

/*Language*/
.language{
	position: absolute;
	top: 0;
	right: 15px;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.language li{
	display: inline-block;
	margin-left: 10px;
}

.language li a{
	color: white;
}

.language li a:hover{
	color: black;
	text-decoration: none;
}

.language li img {
	width: 30px;
	height: auto;
	vertical-align: top;
}

/* ==========================================================================
   nav
   ========================================================================== */

nav{
	position: absolute;
	z-index: 1;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	/*overflow: hidden;*/
}

@media(max-width:767px){
	nav.hassub{
		height: 50px;
	}
}

nav ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
	padding: 0 -15px;
	overflow: hidden;
	text-align: right;
}

nav ul li{
	padding: 0;
	margin: 0 15px;
	display: inline-block;

}

nav ul li a{
	color: white;
	text-decoration: none;
	font-size: 19px;
}


nav ul li a:hover, nav ul li.active a, nav ul li a:focus{
	color: black;
	text-decoration: none;
}



/*ul sub*/

nav ul.sub{

		
}

nav ul li.active ul{
	display: block;
}

nav ul.sub li a {
	font-size: 0.9em;
	font-style: normal;
	color: white;
}

nav ul.sub li.active a, nav ul.sub li a:hover {
	font-style: normal;
	color: black;
}

@media(max-width:767px) {
	nav ul.sub li a {
		font-size: 1.4em;
	}
}

.menutoggle{
	display: none;
}

@media(max-width:767px){
	nav{
		display: none;
		position: relative;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
		margin-top: 100px;
		background: rgb(186, 214, 51);
		height: auto;
	}

	nav ul{
		padding: 0;
		position: relative;
		text-align: left;
	}

	nav > ul > li{
		display: block;
		margin: 15px 0;
	}

	nav > ul > li > a {
		font-size: 1.6em;
	}
	
	nav ul.sub{
		display: none;
	}
	
	nav ul.sub li{
		display: block;
		
	}

	/*navtoggle*/
	.menutoggle {
		display: block;
		position: absolute;
		right: 15px;
		top: 35.5px;
		overflow: hidden;
		margin: 0;
		padding: 0;
		width: 40px;
		height: 35px;
		font-size: 0;
		text-indent: -9999px;
		appearance: none;
		box-shadow: none;
		border-radius: none;
		border: none;
		cursor: pointer;
		background: transparent;
		-webkit-transition: background 0.3s;
		transition: background 0.3s;
		z-index: 2;
	}

	.menutoggle:focus {
		outline: none;
	}

	.menutoggle span {
	  display: block;
	  position: absolute;
	  width: 100%;
	  top: 15px;
	  height: 5px;
	  background: white;
	}

	.menutoggle span::before,
	.menutoggle span::after {
	  position: absolute;
	  display: block;
	  left: 0;
	  width: 100%;
	  height: 5px;
	  background-color: #fff;
	  content: "";
	}

	.menutoggle span::before {
	  top: -15px;
	}

	.menutoggle span::after {
	  bottom: -15px;
	}

	.menutoggle span {
	  -webkit-transition: background 0s 0.3s;
	  transition: background 0s 0.3s;
	}

	.menutoggle span::before,
	.menutoggle span::after {
	  -webkit-transition-duration: 0.3s, 0.3s;
	  transition-duration: 0.3s, 0.3s;
	  -webkit-transition-delay: 0.3s, 0s;
	  transition-delay: 0.3s, 0s;
	}

	.menutoggle span::before {
	  -webkit-transition-property: top, transform;
	  transition-property: top, transform;
	}

	.menutoggle span::after {
	  -webkit-transition-property: bottom, transform;
	  transition-property: bottom, transform;
	}

	/* active state, i.e. menu open */

	.menutoggle.is-active span {
	  background: none;
	}

	.menutoggle.is-active span::before {
	  top: 0;
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}

	.menutoggle.is-active span::after {
	  bottom: 0;
	  -webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	}

	.menutoggle.is-active span::before,
	.menutoggle.is-active span::after {
	  -webkit-transition-delay: 0s, 0.3s;
	  transition-delay: 0s, 0.3s;
	}

}


/* ==========================================================================
   Button
   ========================================================================== */

.sliderbutton {
	position: absolute;
	bottom: 10%;
	right: 10%;
	z-index: 2;
	width: 14%;
	min-width: 100px;
	height: auto;
	cursor: pointer;
}



/* ==========================================================================
   Slick slider
   ========================================================================== */

.slick-slider img{
	max-width: 100%;
}

/*Arrows*/

.prevArrow, .nextArrow{
	position: absolute;
	width: 35px;
	height: 50px;
	background-size: auto 30px;
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;

	top: calc(50% - 25px);
}

.prevArrow{
	left: 0;
}

.nextArrow{
	right: 0;
}

.prevArrow:before, .nextArrow:before{
	content: "";
	position: absolute;
	background: rgba(186, 214, 51,0.7);
	width: 100%;
	height: 100%;
	z-index: 1;
}
.prevArrow:after, .nextArrow:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: auto 30px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 2;
}

.prevArrow:after{
	background-image: url('../img/pfeil_links.png')
}

.nextArrow:after{
	background-image: url('../img/pfeil_rechts.png')
}

/* ==========================================================================
   main
   ========================================================================== */

main{
	width: 100%;
	margin-top: 100px;
}

/* ==========================================================================
   section
   ========================================================================== */

section{
	position: relative;
	padding: 100px 0;
}

/* main section h2:first-child{
	margin-top: 0;
} */

section.headline{
	background: #f0f0f0;
	font-size: 30px;
	font-weight: lighter;
	color: black;
	padding: 50px 0;
	font-family: 'Roboto Slab', serif;
}

section.gray{
	background: #f0f0f0;
}

section.parallax{
	height: 30vh;
	background-size: cover;
	background-attachment: scroll;
	background-position: center center;
}

section .sectiontitle{
	color: white;
	background: rgb(186, 214, 51);
	margin-top: -100px;
	padding: 5px 0;
	margin-bottom: 100px;
}


/*Spacer*/
section.spacer{
	padding: 200px 0;
	background-size: cover;
	background-position: center center;
}

section.spacer:before{
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(186, 214, 51, 0.7);
}

section.spacer .container{
	position: relative;
	color: white;
}


/*Mobile*/

@media(max-width:767px){
	section{
		padding: 30px 0;
	}
	section .sectiontitle{
		margin-top: -30px;
		margin-bottom: 30px;
	}
}

/* ==========================================================================
   faces - slider
   ========================================================================== */

.faces{
	position: relative;
	overflow: hidden;
}

.faces .inner{
	position: relative;
}

/* ==========================================================================
   latest Jobs
   ========================================================================== */

.latest-jobs{
	margin-top: 50px;
}

.latest-jobs .job{
	background: white;
	width: 100%;
	padding: 15px;
	/*margin-bottom: 30px;*/
	border-bottom: 10px solid #f0f0f0;
	color: black;
	text-decoration: none;
}

.latest-jobs .job:first-child{
}

.latest-jobs a:hover{
	text-decoration: none;
}

.latest-jobs .job .title{
	font-weight: normal;
}

/* ==========================================================================
   featred Job
   ========================================================================== */

.featured-job{
	margin-top: 50px;
}

.featured-job .job{
	background: white;
	padding: 15px;
}

.featured-job a{
	color: black;
	text-decoration: none;
}

.featured-job .job .title{
	font-weight: normal;
}

.featured-job .job .details{
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
	overflow: hidden;
	padding: 5px 0;
	margin: 15px 0;
}


/* ==========================================================================
   Jobs Overview
   ========================================================================== */


section.jobsearch{
	padding: 100px 0 20px;
}

section.jobsearch .sectiontitle{
	margin-bottom: 30px;
}


/*filters*/
.filters ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}

.filters ul li{
	display: inline-block;
	padding: 0;
	margin: 0;
}

/*jobs*/

.jobsoverview .job{
	display: block;
	width: 100%;
	color: black;
	text-decoration: none;
}

.jobsoverview .job:not(:last-child){
	border-bottom: 1px solid rgb(186, 214, 51);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.jobsoverview .job h2{
	margin-top: 0; 
}

.jobsoverview .job table {
	margin: 0;
	margin-bottom: -8px;
}

.jobsoverview .job table td{
	padding-left: 0px;
	padding-right: 0px;
}
.jobsoverview .job table tr td:first-child{
	width: 175px;
}

.jobsoverview .no-result{
	text-align: center;
	font-color: gray;
	font-style: italic;
	display: none;
}

/* ==========================================================================
   Job Single
   ========================================================================== */

.jobsingle .glyphicon{
	margin-right: 10px;
}

.apply .button{
	text-align: center;
	font-weight: normal;
	background: #f0f0f0;
	padding: 30px 0;
	cursor: pointer;
}

.apply .button:hover{
	background: rgba(186, 214, 51, 0.5);
}

.apply .applyform{
	padding: 50px 0;
	display: none;
}

/* ==========================================================================
   gallery
   ========================================================================== */

/*overview*/
.galleryoverview{
	margin-top: 50px;
	display: block;
	overflow: hidden;
}

.galleryoverview .galleryitem{
	/*width: 20%;*/
	/*display: inline-block;*/
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	/*margin: 0;*/
	/*padding: 0;*/
	/*float: left;*/
}

.galleryoverview .galleryitem figcaption{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: rgba(0,0,0,0.5);
	color: white;
	
	-webkit-transition: all 300ms;
	transition: all 300ms;

	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.galleryoverview .galleryitem:hover figcaption{
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/* ==========================================================================
   Video
   ========================================================================== */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Team
   ========================================================================== */

.team{
	margin-top: 50px;
}

.teammember{
	margin-bottom: 30px;
	min-height: 400px;
}

@media(max-width:767px){
	.teammember p {
		font-size: 0.9em;
	}
}

/* ==========================================================================
   Kontakt
   ========================================================================== */

.gmap-wrapper{
	/*padding-top: calc(100% / 2340 * 800);*/
	position: relative;
	width: 100%;
	min-height: 300px;
}

#gmap{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

form.contact {
	margin-top: 30px;
}

form.contact input, form.contact select, form.contact textarea {
	margin-bottom: 25px;
}

form.contact textarea{
	height: 150px;
	resize: none;
}

form.contact button.submit {
	height: 75px;
	width: 75px;
	border-radius: 50%;
	background: rgb(186, 214, 51);
	border: rgb(186, 214, 51);
	color: white;
	position: absolute;
	left: calc(50% - 37.5px);
	bottom: -12.5px;
	font-size: 0.8em;
	outline: none;
}

form.contact input.submit {
	height: 75px;
	width: 75px;
	border-radius: 50%;
	background: rgb(186, 214, 51);
	border: rgb(186, 214, 51);
	color: white;
	position: absolute;
	left: calc(50% - 37.5px);
	bottom: -37.5px;
	font-size: 0.8em;
	outline: none;
}

@media(max-width:767px){
    form.contact input.submit,form.contact button.submit {
        bottom: -37.5px;
    }
}

/* ============= */

.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
input[readonly] {
  background-color: white !important;
  cursor: text !important;
}

input[type="file"] {
 font-size: 11px;
}

.error {
    font-size: 0.75em;
    color: #e43439;
}

/* ==========================================================================
   footer
   ========================================================================== */

footer{
	background: rgb(186, 214, 51);
	padding: 30px 0;
	color: white;
	/*height: 300px;*/
}

footer a {
	color: white;
}

footer a:hover{
	color: white;
	text-decoration: none;
}

footer .contact span:not(:last-child){
	margin-right: 20px;; 
}

footer .claim{
	font-size: 1.2em;
	font-weight: 600;	
}

footer .claim span:first-child{
	color: black;
}

footer .container{
    position: relative;
}
@media(min-width:993px){
    .social-media{
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.social-media img {
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0 4px 0 0;
}

.social-media-header img {
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0 4px 0 0;
}

.social-media-header {
     position: absolute;
     left: 160px;
     top: 77%;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
    }

.we-are-social ul {
 	list-style-type: none;
 	text-align: center;
 	padding: 0;
 }

.we-are-social ul li {
 	display: inline-block;
 }

.we-are-social img {
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 5px 0;
}

@media(max-width:766px){
    	.social-media-header {
		left: 100px;
		top: 76%;
	}

	.social-media-header img {
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0 8px 0 0;
    }
}

@media(max-width:992px){
	footer span{
		width: 100%;
		display: block;
	}

	footer .contact{
		margin-bottom: 20px;
	}
	.social-media{
	    position: relative;
	    margin-top: 10px;
	}
	.social-media img {
	    width: 30px;
	    height: 30px;
	}

}


/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

	nav {
		display: none;
	}

	header {
		height: 100px;
		display: none;
	}

	.logo {
		display : none;
		position: relative;
		height: 100px;
		box-shadow: none;

	}

	.social-media {
		display: none;
	}

	.social-media-header {
		display: none;
	}

}
