@charset "UTF-8";
/* CSS Document */
/* Reset */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
}
html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-hyphens: manual;
  -moz-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #46535e;
}
body img {
  width: 100%;
  height: auto;
  display: block;
}

#app img {
	width: revert-layer;
}

body video {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------- HEADER ---------------------------------- */
header {
  width: 70px;
  height: 100vh;
  background: #0f5c5c;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-right: 1px solid #b2c106;
}
.logo {
  position: absolute;
  top: 5.5vh;
  right: 4vw;
  width: 16vW;
  z-index: 99;
}
.logo-index {
  position: absolute;
  top: 5.5vh;
  right: 4vw;
  width: 16vW;
  z-index: 99;
}

/* ---------------------------------- Burger ---------------------------------- */
.burger-box {
  display: block;
  width: 35px;
  height: 35px;
  padding-right: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #0f5c5c;
}
.burger {
  width: 30px;
  height: 4px;
  background-color: #b2c106;
  position: absolute;
  top: 50%;
  left: 49%;
  padding-left: 2px;
  transform: translate(-50%, -50%);
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #b2c106;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.burger::before {
  top: -8px;
}
.burger::after {
  top: 8px;
}
.burger-box.active .burger {
  background-color: #0f5c5c;
}
.burger-box.active .burger::before {
  transform: rotate(45deg);
  top: 0px;
}
.burger-box.active .burger::after {
  transform: rotate(-45deg);
  top: 0px;
}
.burger-box p {
  color: #b2c106;
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 120%;
  text-decoration: none;
  display: block;
  margin-top: 45px;
}
.social p {
  color: #fff;
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 120%;
  text-decoration: none;
  display: block;
}
.header-footer {
  position: absolute;
  bottom: 3%;
  width: 100%;
}
.header-footer-projekt {
  position: absolute;
  top: 3%;
  width: 100%;
}	
a.social-media {
	float: right;
	width:30px;
  opacity: 1;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;	
}
a.social-media:hover {
	  opacity: 0.5;
}

.subnav {
	float: left;
}

/* ---------------------------------- CONTENT ---------------------------------- */
section {
  width: 100%;
  clear: both;
 padding-left: 70px;
}
.main {
  width: 91.66%;
  max-width: 1280px;
  margin: auto;
  clear: both;
}
/* ---------------------------------- EIN - AUSBLENDEN ---------------------------------- */
.ct-block, .cm-block, .cs-block {
  display: none;
}
.ct-block img, .cm-block img, .cs-block img {
  display: none;
}
/* ---------------------------------- SPALTEN ---------------------------------- */
.cd, .cd1, .cd2, .cd3, .cd4, .cd5, .cd6, .cd7, .cd8, .cd9, .cd10, .cd11, .cd12, .ct, .ct1, .ct2, .ct3, .ct4, .ct5, .ct6, .ct7, .ct8, .ct9, .ct10, .ct11, .ct12, .cm, .cm1, .cm2, .cm3, .cm4, .cm5, .cm6, .cm7, .cm8, .cm9, .cm10, .cm11, .cm12, .cs, .cs1, .cs2, .cs3, .cs4, .cs5, .cs6, .cs7, .cs8, .cs9, .cs10, .cs11, .cs12, .cd2plus {
  float: left;
}
.cd1 {
  width: 8.33%;
}
.cd2 {
  width: 16.66%;
}
.cd3 {
  width: 25%;
}
.cd4 {
  width: 33.33%;
}
.cd5 {
  width: 41.66%;
}
.cd6 {
  width: 50%;
}
.cd7 {
  width: 58.33%;
}
.cd8 {
  width: 66.66%;
}
.cd9 {
  width: 75%;
}
.cd10 {
  width: 83.33%;
}
.cd11 {
  width: 91.66%;
}
.cd12 {
  width: 100%;
}
.cd2plus {
  width: 20%;
}
/* ---------------------------------- SPALTEN - AUSRICHTUNG ---------------------------------- */
.cr {
  float: right;
}
.cl {
  float: left;
}
.cc {
  float: none;
  margin: auto;
}
.relativ {
  position: relative;
}
.absolut {
  position: absolute;
}
.bottom {
  position: absolute;
  bottom: -2px;
}

.botton-icon {
  position: absolute;
  bottom: 0px;
}


.full-h {
  min-height: 100vH;
}
.full-h-img {
  min-height: 100vH;
}
.fullheight {
  min-height: 100vH;
}

.h100 {
		height: 100%;
	}	

.h100 {
		height: 50%;
	}	

.artikel-flex {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
	flex-wrap: wrap;
}

.list-hight-flex {
	height: 100%;
}

.list-low-flex {
	display: flex;
	align-items: flex-end;
}


/* ---------------------------------- TEXTE - AUSRICHTUNG ---------------------------------- */
.tx-center {
  text-align: center;
}
.tx-left {
  text-align: left;
}
.tx-right {
  text-align: right;
}
/* ---------------------------------- TEXTE ---------------------------------- */
h1 {
  font-weight: normal;
  font-size: 500%;
  font-family: 'Saira Condensed';
}

h1.h1-scale {
	font-size: 4.5vW;
}

h1.h3 {  font-weight: normal;
  font-size: 150%;
	margin-bottom: 30px;
}

h1.jobs,
h2.jobs {
	font-weight: normal;
  	font-size: 250%;
}

h2,.h2 {
  font-weight: normal;
  font-size: 350%;
  font-family: 'Saira Condensed';
}
h2.zero-line {
  line-height: 100%;
}
h2.counter {
  font-size: 400%;
}

h2.projekt {
  font-weight: normal;
  font-size: 200%;
  font-family: 'Saira Condensed';
}

.h2-small h2 {
	font-size: 250%;
}

h3,
h2.h3 {
  font-weight: normal;
  font-size: 150%;
  line-height: 130%;
  font-family: 'Saira Condensed';
}
h4 {
  font-weight: normal;
  font-size: 130%;
  line-height: 120%;
  font-family: 'Saira Condensed';
}
p {
  font-size: 100%;
  line-height: 180%;
}
.tx-large {
  font-size: 120%;
  line-height: 180%;
}
p.tx-small,
a span.tx-small{
  font-size: 90%;
  line-height: 150%;
}
a {
  font-size: 100%;
  text-decoration: none;
}

.tx-block {
	text-align: justify; 
}

.tx-hoch {
  text-transform: uppercase;
}

.icon-h3 {
	display: flex;
	align-items: baseline;
}

.icon-h3 img {
	width: 100px;
	margin-left: 15px;
}

.font-linie {
	display: flex;
	align-items: baseline;
}

.bottom-icon {
  position: absolute;
  bottom: 0px;
}

.bottom-icon-left {
  position: absolute;
  bottom: 0px;
	left: 45%;
}

.button-icon {
  position: absolute;
  bottom: 0px;
}

.button-icon h3 {
  font-weight: normal;
  font-size: 260%;
  font-family: 'Saira Condensed';
}


/* .................................. Middel-Box .................................. */
/* ---------------------------------- AUSKLAPPEN ----------------------------------*/
.ac-box {
  display: block;
  position: relative;
}
.ac-button {
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 180%;
  display: inline-block;
  color: #005352;
}

.ac-button-small {
font-family: 'Saira Condensed';
font-weight: normal;
font-size: 130%;
display: inline-block;
color: #005352;
padding-top: 13px;
padding-right: 30px;
}
.open::after {
  background-image: url(../grafik/kreuz.svg);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0px;
  top: 15px;
  width: 30px;
  height: 30px;
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.closed::after {
  background-image: url(../grafik/kreuz.svg);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0px;
  top: 15px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ac-tx {
  display: none;
}
.ac-button h3 {
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 110%;
  display: inline-block;
  text-transform: uppercase;
  color: #005352;
}
.ac-button-faq {
  font-family: 'Open Sans';
  font-weight: bold;
  font-size: 110%;
  display: inline-block;
  color: #005352;
  padding-right: 3%;
}
.ac-button-faq.open::after {
  background-image: url(../grafik/kreuz.svg);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  transform: rotate(135deg);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.ac-button-faq.closed::after {
  background-image: url(../grafik/kreuz.svg);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.zoom-kreis-box {
	display: flex;
	position: relative;
	align-items: center;
}

.zoom-kreis {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 200%;
	text-align: center;
	right: calc(50% - 25px);
	background: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;	
}

.zoom-kreis-box:hover .zoom-kreis {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 200%;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);	
}

.igetreide {
  background-image: url("../grafik/biodiverse/getreide.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ivoegel {
  background-image: url("../grafik/biodiverse/voegel.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ireptilien {
  background-image: url("../grafik/biodiverse/reptilien.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.isaumstreifen {
  background-image: url("../grafik/biodiverse/saumstreifen.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.iwild {
  background-image: url("../grafik/biodiverse/wildtier.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.iwiese {
  background-image: url("../grafik/biodiverse/wiese.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ihecke {
  background-image: url("../grafik/biodiverse/strauch-hecke.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ihaselmaus {
  background-image: url("../grafik/biodiverse/haselmaus.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.isonne {
  background-image: url("../grafik/biodiverse/sonne-regen.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ikleintier {
  background-image: url("../grafik/biodiverse/feldhase.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ihotel {
  background-image: url("../grafik/biodiverse/insektenhotel.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.iblumen {
  background-image: url("../grafik/biodiverse/blumen.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.iexlandw {
  background-image: url("../grafik/biodiverse/exlandw.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ihamster {
  background-image: url("../grafik/biodiverse/hamster.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ifrosch {
  background-image: url("../grafik/biodiverse/frosch.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.imoor {
  background-image: url("../grafik/biodiverse/moor.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ipegel {
  background-image: url("../grafik/biodiverse/pegelstelle.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ituempel {
  background-image: url("../grafik/biodiverse/tuempel.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.isee {
  background-image: url("../grafik/biodiverse/seeblatt.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ibiene {
  background-image: url("../grafik/biodiverse/biene.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.inisthilfe {
  background-image: url("../grafik/biodiverse/nisthilfe.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ilandwirtschaft {
  background-image: url("../grafik/biodiverse/landwirtschaft.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.istrauch {
  background-image: url("../grafik/biodiverse/kraut-saumstruktur.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.iboden {
  background-image: url("../grafik/biodiverse/boden.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ifledermaus {
  background-image: url("../grafik/biodiverse/fledermaus.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 60px;
}
.ipflicht {
  background-image: url("../grafik/biodiverse/m-pflicht.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 35px;
  margin-bottom: 10px;	
}

.iumgesetzt {
  background-image: url("../grafik/biodiverse/m-umgesetzt.svg");
  background-position: left center;
  background-size: auto 95%;
  background-repeat: no-repeat;
  padding-left: 35px;
  margin-bottom: 10px;		
}



.icon-legende {
	width: 40px;
	float: left;
	padding-right: 10px;
}

.icon-mehrwerte {
	width: 60px;
	margin-bottom: 8px;
}


.image-index {
	width: 100%;
	height: 100vH;
	position: relative;
	display: flex;
	align-content: center;
}

.image-index h1 {
	font-size: 9vW;
	opacity: 1;
	color: #b2c106; 
   text-shadow: 7px 7px 20px #333;
}

article {
	min-height: 100%;
	height: auto;
	width: 100%
}

.img_1 {
	background: url("../image/slider/titel-solar.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 20s linear infinite alternate-reverse;
    /* Safari and Chrome */
    animation:mymove 20s linear infinite alternate-reverse;
}

.img_2 {
	background: url("../image/slider/titel-solar-biene.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 20s linear infinite alternate;
    /* Safari and Chrome */
    animation:mymove 20s linear infinite alternate;
}

.img_3 {
	background: url("../image/slider/titel-solar-landwirtschaft.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 20s linear infinite alternate-reverse;
    /* Safari and Chrome */
    animation:mymove 20s linear infinite alternate-reverse;
}

@-webkit-keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}
@keyframes mymove {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 100% 0%;
    }
}

.img_1.lottorf_1 {
	background: url("../image/slider/titel-solar-lottorf.jpg");
	background-size: auto 100%;	
}

.img_2.lottorf_2 {
	background: url("../image/slider/titel-solar-moor-vegi.jpg");
	background-size: auto 100%;	
}

.img_3.lottorf_3 {
	background: url("../image/slider/titel-solar-moor-blumen.jpg");
	background-size: auto 100%;	
}

/* ---------------------------------- SILDER TITEL BOX ----------------------------------*/

.titel-box {
	position: absolute;
	bottom: 0px;
	right: 0px;
	color: #fff;
	z-index: 999;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.icon-uebergang {

}

.flaeche-uebergang {
	display: flex;
	align-self: stretch;
}
/* ---------------------------------- TEASER IMAGE ----------------------------------*/

.teaser-image {
	position: absolute;
	right: 0;
	top: 0;
}

/* ---------------------------------- STELLENANGEBOTE ---------------------------------- */

.stellenangebote {
	display: flex;
	color: #666;
	list-style: none;
	align-items: center;
	padding-left: 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;	
}

.stellenangebote li {
	font-size: 90%;
	display: flex;
	padding-left: 5px;
}


.stellenangebote li::before {
	content: "";
    width: 25px;
    height: 20px;
	margin-right: 5px;
}

.stellenangebote.stelle li::before {
	content: "";
    width: 20px;
    height: auto;
	margin-right: 5px;
}

.stellenangebote li.bereich::before {
	    background: url("../grafik/sonne-bereich.svg") no-repeat center left;
}

.stellenangebote .bereich {
	color: #005352;
	font-weight: bold;
		width: 25%;
	padding-left: 10px;
}
.stellenangebote li.standort,
.stellenangebote li.zeit{
	min-width: 17%;
}

.stellenangebote li.standort::before {
	    background: url("../grafik/standort.svg") no-repeat center right;
}

.stellenangebote li.zeit::before {
	    background: url("../grafik/zeit.svg") no-repeat center right;
}
.stellenangebote.stelle,
.stellenangebote.stelle li.standort,
.stellenangebote.stelle li.zeit {
		width: auto;
	padding-left: 0px;
	padding-right: 10px;
}


.initiativ {
	float: left;
		color: #666;
	padding-left: 20px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;	
}

.button-job {
	display: block;
padding: 2vH 0;
}

h3 span.tx-small { font-size: 80%;}
.button-job h3 { color: #005352;
-webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;}

.button-job:hover h3 { color: #b2c106;}

.button-job:hover {
	  -webkit-box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
  box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
}

.space-right {
	margin-right: 30px;
}

.spacer-top {
	margin-top: -60px;
}

.sticky-top {
  position: sticky;
  position: -webkit-sticky;
	top:25px;
}
.sticky-bottom {
  position: sticky;
  position: -webkit-sticky;
	bottom:60px;
	visibility: hidden;
}

.img-job {
	position: absolute;
	transform: translate(35%, -70%);
}

/* ---------------------------------- ABSTÄNDE ---------------------------------- */
.pd-5 {
  padding: 5%;
}
.pd-3 {
  padding: 3%;
}
.pd-2 {
  padding: 2%;
}
.pd-2-l {
  padding-left: 2%;
}
.pd-1 {
  padding: 1%;
}
.mg-blog {
  margin-top: -3vw;
  position: absolute;
}


.overflow {
  overflow: hidden;
}
/* ---------------------------------- TRENNER ---------------------------------- */
.trenner-50 {
  width: 100%;
  clear: both;
  height: 6vh;
}
.trenner-25 {
  width: 100%;
  clear: both;
  height: 4vh;
}
.trenner-10 {
  width: 100%;
  clear: both;
  height: 2vh;
}
.trenner-linie {
  width: 100%;
  height: 1px;
  clear: both;
}
.trenner-nav-icon {
  width: auto;
  height: 150px;
}

.trenner-nav-projekt {
  width: auto;
  height: 80px;
}

.trenner-hero {
  width: 100%;
  clear: both;
  height: 15vw;
}
/* ---------------------------------- BOX MIDDEL ---------------------------------- */
.bm,
.bm-index {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.box-center {
  display: flex;
  justify-content: center;
}

/* ---------------------------------- Higlight Box ---------------------------------- */
.box-sdw {
  -webkit-box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
  box-shadow: 0 11px 46px -19px rgba(0, 0, 0, 0.5);
}
.box-radius {
  border-radius: 10px;
}
.bm-img {
  align-self: stretch;
  overflow: hidden;
  position: relative;
  min-height: 250px;
}
.bm-img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.bm-tx {
  padding: 4% 4%;
}
.box-top {
  position: absolute;
}

.bt-l {
  left: 50%;
}
/* ---------------------------------- FARBEN ---------------------------------- */
.weiss {
  background-color: #ffffff;
}
.green {
  background: rgb(15, 92, 92)
}
.lightgreen {
  background-color: #b2c106;
}
.lightgreen-a {
  background: rgba(178, 193, 6, 0.6);
}
.hellgrau {
  background-color: #ebebeb;
}
.beige {
  background-color: #E9DECB;
}
.bg-green-weiss {
  background: rgb(15, 92, 92);
  background: linear-gradient(90deg, rgba(15, 92, 92, 1) 0%, rgba(15, 92, 92, 1) 41.66%, rgba(255, 255, 255, 1) 41.66%, rgba(255, 255, 255, 1) 100%);
}
.bg-green-weiss-v {
  background: rgb(15, 92, 92);
  background: linear-gradient(180deg, rgba(15, 92, 92, 1) 0%, rgba(15, 92, 92, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.bg-green-weiss-h {
  background: rgb(15, 92, 92);
  background: linear-gradient(180deg, rgba(15, 92, 92, 1) 0%, rgba(15, 92, 92, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.bg-weiss-green-h {
  background: rgb(15, 92, 92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(15, 92, 92, 1) 50%, rgba(15, 92, 92, 1) 100%);
}

.bg-lgreen-weiss-h {
  background: #b2c106;
  background: linear-gradient(180deg, #b2c106 0%, #b2c106 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
.bg-lgreen {
  background: #fff;
  background: #b2c106;
}
.bg-weiss-lgreen-h {
  background: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, #b2c106 50%, #b2c106 100%);
}

.bg-lgreen-green-h {
  background: #b2c106;
  background: linear-gradient(180deg, #b2c106 0%, #b2c106 50%, rgba(15, 92, 92, 1) 50%, rgba(15, 92, 92, 1) 100%);
}
.bg-green-lgreen-h {
  background: rgb(15, 92, 92);
  background: linear-gradient(180deg, rgba(15, 92, 92, 1) 0%, rgba(15, 92, 92, 1) 50%, #b2c106 50%, #b2c106 100%);
}
.tx-weiss {
  color: #ffffff;
}
.tx-grau {
  color: #3E3E3E;
}
.tx-green {
  color: #005352;
}
.tx-l-green {
  color: #b2c106;
}
.tx-beige {
  color: #E9DECB;
}

.tx-beige a {
  color: #E9DECB;
}
.tx-weiss a {
  color: #ffffff;
}
.tx-grau a {
  color: #333;
}
.tx-grau a:hover {
  opacity: 0.5;
}
a.tx-green:hover {
  color: #333;
}
a.tx-beige:hover {
  color: #b2c106;
}
a.tx-l-green {
  color: #b2c106;
}
a.tx-l-green:hover {
  color: #005352;
}

.green a.tx-l-green:hover {
  color: #E9DECB;
}

.blurr {
  opacity: 0.5;
}
/* ---------------------------------- BUTTON ---------------------------------- */
a.dark-button {
  width: 94%;
  padding: 1.5vw 0px 1.5vw 0px;
  position: absolute;
  text-align: center;
  bottom: 3%;
  left: 3%;
  background-color: rgba(10, 10, 10, 0.5);
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 2vw;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}
a.dark-button:hover {
  background-color: rgba(10, 10, 10, 0.8);
  padding: 1.7vw 0px 1.7vw 0px;
  bottom: 3%;
  left: 3%;
}
.mouse-down {
  width: 60px;
  margin: auto;
}
.mouse-down > a img {
  width: 60px;
  position: absolute;
  bottom: 5vh;
  padding-bottom: 5px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.mouse-down > a:hover img {
  padding-bottom: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.button {
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 160%;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;	
}
.button:hover {
  color: #0f5c5c;
}

.job-button { background-color:  #0f5c5c;
	color: #fff;
-webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;}

.job-button:hover {
	background-color:  #b2c106;
	color: #fff;
}


.timeline-button {
  font-family: 'Saira Condensed';
  font-weight: normal;
  font-size: 160%;
  display: block;
  color: #b2c106;
}
.timeline-button:hover {
  color: #0f5c5c;
}

/* ---------------------------------- AUFLSITUNG ----------------------------------*/
.pfeil-liste li {
  list-style: none;
  padding: 5px;
  padding-left: 27px;
  margin-left: 0px;
  display: block;
  background-image: url("../grafik/haken.svg");
  background-position: left top 9px;
  background-repeat: no-repeat;
  background-size: 16px;
}

.pfeil-liste-small li {
  list-style: none;
  padding: 2px;
  padding-left: 16px;
  margin-left: 0px;
  display: block;
  background-image: url("../grafik/haken.svg");
  background-position: left top 9px;
  background-repeat: no-repeat;
  background-size: 10px;
}

.liste li {
  list-style: none;
  padding: 5px;
padding-left: 0px;	
  margin-left: 0px;
  display: block;
}

.pfeil-liste li.large {
  list-style: none;
  padding: 5px;
  padding-left: 27px;
  margin-left: 0px;
  display: block;
  background-image: url("../grafik/haken.svg");
  background-position: left top 12px;
  background-repeat: no-repeat;
  background-size: 18px;
}

.pfeil-liste-green li {
  list-style: none;
  padding: 5px;
  padding-left: 27px;
  margin-left: 0px;
  display: block;
  background-image: url("../grafik/haken-green.svg");
  background-position: left top 9px;
  background-repeat: no-repeat;
  background-size: 16px;
}

.daten-liste li {
font-family: 'Saira Condensed';	
  list-style: none;
  margin-bottom: 10px;
  display: block;
   font-size: 180%;	
}
/* ---------------------------------- BILDER PANO ---------------------------------- */
.pano {
  height: 50vh;
}

.pano-xl {
  height: 60vh;
}
.pano-box {
  margin-top: -25vh;
  position: relative;
  z-index: 999;
}
.pano-box-big {
  margin-top: -5%;
  position: relative;
  z-index: 999;
}
.pano-box-back {
  margin-top: -25vh;
  position: relative;
  z-index: 800;
}

/* ---------------------------------- BILDER PANO ---------------------------------- */

.video-box {
	overflow: hidden;
	height: 100vH;
}

.video-file,
.video-file-content {
width: 100%;
min-width: 100%;	
height: auto;
  display: block;
	margin: auto;
}

.box-down {
	position: absolute;
	bottom: 6%;
	width: 80px;
	margin-left: calc(50% - 40px);
	z-index: 9999;	
}


/* ---------------------------------- IMAGES ----------------------------------*/
.natur-solar {
  background-image: url("../image/natur-solar.jpg");
  background-size: cover;
}
.solar-technik {
  background-image: url("../image/energie/solarpark-technik.jpg");
  background-size: cover;
}
.agri-pv-konzept {
  background-image: url("../image/konzeptpapier/header.jpg");
  background-size: cover;
background-position: center;
}
.klein-rheide-pano {
  background-image: url("../image/best-practice/klein-rheide/solarpark-pano.jpg");
  background-size: cover;
}
.solar-biodiv{
  background-image: url("../image/solar-biodiv.jpg");
  background-size: cover;
  background-position: bottom;	
}
.solar-agri {
  background-image: url("../image/freienwill/agri-pv-flaeche.jpg");
  background-size: cover;
  background-position: bottom;		
}

.moor-landwirtschaft {
  background-image: url("../image/best-practice/lottorf/landwirtschaft-moor.jpg");
  background-size: cover;
  background-position: bottom;		
}

.solar-green {
  background-image: url("../image/solarpark-green.jpg");
  background-size: cover;
background-position: bottom;	
  background-repeat: no-repeat;		
}

.osterhof-pano {
  background-image: url("../image/osterhof-panorama.jpg");
  background-size: cover;
background-position: bottom;	
  background-repeat: no-repeat;		
}
.index-solar {
  background-image: url("../image/solar-biene.jpg");
  background-size: cover;
  background-repeat: no-repeat;	
}
.header-energie {
  background-image: url("../image/energie/header.jpg");
  background-size: cover;
  background-repeat: no-repeat;	
}
.header-landwirt {
  background-image: url("../image/landwirtschaft/header-landwirtschaft.jpg");
  background-size: cover;
  background-repeat: no-repeat;		
}
.header-biodivers {
  background-image: url("../image/karriere/header-karriere.jpg");	
  background-size: cover;
  background-repeat: no-repeat;		
}
.header-technik {
  background-image: url("../image/technik/header-technik.jpg");
  background-size: cover;
  background-repeat: no-repeat;		
}
.header-projekte{
  background-image: url("../image/projekt/header-projekt.jpg");
  background-size: cover;
  background-repeat: no-repeat;		
}
.header-presse{
  background-image: url("../image/presse/header-presse.jpg");
  background-size: cover;
  background-repeat: no-repeat;		
}
.header-kontakt {
  background-image: url("../image/kontakt/header-kontakt.jpg");
  background-size: cover;
  background-repeat: no-repeat;	
}
.header-karriere {
  background-image: url("../image/job/header-jobs.jpg");
  background-size: cover;
  background-repeat: no-repeat;	
}

.header-biodiv-pv {
  background-image: url("../image/lebensraum/biodiv-pv-lebensraum.webp");
  background-size: cover;
  background-repeat: no-repeat;	
}


.projekt-solar {
  background-image: url("../image/solar-biene-2.jpg");
  background-size: cover;
  background-position: right center;
}
.agri-projekt-solar {
  background-image: url("../image/agri-pv.jpg");
  background-size: cover;
  background-position: right center;
}
.mehrwert-hg {
  height: 110vH;
  background-image: url("../image/mehrwerte/h-nissen-technik.jpg");
  background-size: cover;	
  background-position: center;
}

.energie-hg {
  height: 80vH;
  background-image: url("../image/energie/solarfeld.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.solarpark-hg {
  height: 80vH;
  background-image: url("../image/energie/sonne-solarfeld.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.biodiv-hg {
  height: 80vH;
  background-image: url("../image/best-practice/klein-rheide-top.jpg");
  background-size: cover;	
  background-position: center;
background-repeat: no-repeat;	
}

.moor-hg {
  height: 80vH;
  background-image: url("../image/best-practice/lottorf-top.webp");
  background-size: cover;	
  background-position: center;
background-repeat: no-repeat;	
}

.solar-eigentuemer-hg {
  height: 80vH;
  background-image: url("../image/mehrwerte/solarpark-flaechen-eigentuemer.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.solar-bearbeitung-hg {
  height: 80vH;
  background-image: url("../image/mehrwerte/solarfeld-bearbeitung.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.solar-gespraech-hg {
  height: 80vH;
  background-image: url("../image/mehrwerte/solar-gespraech.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.kreis {
  border-radius: 50%;
}

.kreis-green {
  border-radius: 50%;
	border: 2px solid #b2c106;
}


.img-max-kreis {
	max-width: 300px;
}
.cover-box {
  position: absolute;
  padding: 14.1%;
  padding-top: 5%;
z-index: 10;
}

.cover-box-hover {
  position: absolute;
z-index: 11;	
}



/* - - - - - - - REFERENZEN BUTTON BOX - - - - - - - - */

.visible-box {
  position: relative;
  width: 100%;
}
.visible-box img {
  width: 100%;
  height: 100%;
  border: none;
}
.visible-box:hover img {
  -webkit-filter: grayscale(0.8);
  filter: grayscale(0.8);
}
.visible-button {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 92, 92, 0.8);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}
.visible-box:hover .visible-button {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=95);
  opacity: 0.95;
}
.visible-text {
  padding: 5px;
}
.visible-text p {
  font-size: 90%;
  line-height: 100%
}
/* ---------------------------------- FOOTER ---------------------------------- */
footer {
  width: 100%;
  color: #fff;
  background-color: #b2c106;
}
footer p, a {
  color: #fff;
}
.footer-icon {
  width: 50px;
  float: right;
  margin-left: 20px;
}
.subnav a {
  color: #fff;
  padding: 0px 10px 0px 5px;
  margin-right: 5px;
  border-right: 1px solid #fff;
  display: inline-block;
  font-size: 90%;
}
.subnav a:hover {
  color: #fff;
}
.social,
.logo-short,
.logo-short-projekt{
  display: block;
  width: 30px;
  margin-bottom: 15px;
  opacity: 1;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}

.social:hover {
  opacity: 0.5;
}
/* ---------------------------------- UP SCROLLER  ---------------------------------- */
.scrollup {
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 999;
  bottom: 60px;
  right: 0px;
  display: none;
  text-indent: -9999px;
  background: url(../grafik/icon_top.png) no-repeat;
}
@media only screen and (min-width: 2200px) {
  .main {
    max-width: 1750px;
  }
  /* ---------------------------------- TEXTE ---------------------------------- */
	body {
		font-size: 125%;
	}
  /* ---------------------------------- HEADER ---------------------------------- */
  header {
    width: 90px;
    height: 100vh;
    background: #0f5c5c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  	border-right: 1px solid #b2c106;
  }
  /* ---------------------------------- Burger ---------------------------------- */
  .burger-box {
    right: 8px;
  }
.burger-box {
  display: block;
  width: 35px;
  height: 35px;
  padding-right: 15px;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 9999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #0f5c5c;
}
.burger {
  width: 30px;
  height: 4px;
  background-color: #b2c106;
  position: absolute;
  top: 50%;
  left: 49%;
  padding-left: 2px;
  transform: translate(-50%, -50%);
}	
	
  .burger-box p {
    margin-top: 45px;
    margin-left: -5px;
    color: #b2c106;
  }
  .social p {
    font-size: 100%;
  }	
	
}
/* ------- ENDE 2200 ----- */
@media only screen and (max-width: 1600px) {
  /* ---------------------------------- TEXTE ---------------------------------- */

h2 {
  font-weight: normal;
  font-size: 300%;
  font-family: 'Saira Condensed';
}	
	
} /* ------- ENDE 1600 ----- */
@media only screen and (max-width: 1390px) {
  /* ---------------------------------- TEXTE ---------------------------------- */

h2 {
  font-weight: normal;
  font-size: 250%;
  font-family: 'Saira Condensed';
}	
	
.daten-liste li {
font-family: 'Saira Condensed';	
  list-style: none;
  margin-bottom: 10px;
  display: block;
   font-size: 160%;	
}	
	
} /* ------- ENDE 1390 ----- */
@media only screen and (max-width: 1280px) {
  /* ---------------------------------- HEADER ---------------------------------- */
  header {
    width: 50px;
    height: 100vh;
    background: #0f5c5c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  	border-right: 1px solid #b2c106;
  }
.logo-index {
  position: absolute;
  top: 5.5vh;
  right: 4vw;
  width: 250px;
  z-index: 99;
}	

  /* ---------------------------------- Burger ---------------------------------- */
  .burger-box {
    right: 8px;
  }
  .burger-box p {
    font-size: 100%;
    margin-top: 35px;
    margin-left: 3px;
    color: #b2c106;
  }
  .social p {
    font-size: 100%;
  }
  /* ---------------------------------- CONTENT ---------------------------------- */
  section {
    width: 100%;
    clear: both;
    padding-left: 50px;
  }
	
.video-file {
width: auto;
min-width: 100%;	
height: 100%;
  display: block;
	margin: auto;
}	
	
  /* ---------------------------------- SPALTEN ---------------------------------- */
  .ct1 {
    width: 8.33%;
  }
  .ct2 {
    width: 16.66%;
  }
  .ct3 {
    width: 25%;
  }
  .ct4 {
    width: 33.33%;
  }
  .ct5 {
    width: 41.66%;
  }
  .ct6 {
    width: 50%;
  }
  .ct7 {
    width: 58.33%;
  }
  .ct8 {
    width: 66.66%;
  }
  .ct9 {
    width: 75%;
  }
  .ct10 {
    width: 83.33%;
  }
  .ct11 {
    width: 91.66%;
  }
  .ct12 {
    width: 100%;
  }
  /* ---------------------------------- EIN - AUSBLENDEN ---------------------------------- */
.ct-cr {
  float: right;
}
.ct-cl {
  float: left;
}
.ct-cc {
  float: none;
  margin: auto;
}  
	
	
.ct-none {
    display: none;
  }
  .ct-block {
    display: block;
  }
	
.bottom {
  position: inherit;
  bottom:0px;
}	
	
.img-max-kreis {
	max-width: 200px;
}
/* ---------------------------------- TEXTE ---------------------------------- */
  h1 {
    font-size: 190%;
  }
	h1.h3 {    font-size: 140%;}	
	
  h2,.h2 {
    font-size: 170%;
  }
	
  h3,
h2.h3 {
    font-size: 140%;
  }	
.button {
  font-size: 140%;
}
  p {
    font-size: 95%;
    line-height: 150%
  }
  p.tx-small {
    font-size: 80%;
    line-height: 140%;
  }
  .tx-large {
    font-size: 95%;
  }
  /* ---------------------------------- TRENNER ---------------------------------- */
  .trenner-50 {
    width: 100%;
    clear: both;
    height: 50px;
  }
  .trenner-25 {
    width: 100%;
    clear: both;
    height: 25px;
  }
  .trenner-10 {
    width: 100%;
    clear: both;
    height: 10px;
  }
  /* ---------------------------------- Higlight Boxen ---------------------------------- */
  .bt-l {
    left: 40%;
  }
  /* ---------------------------------- Stellen ---------------------------------- */	
	
.stellenangebote .bereich { width: 50%; padding-left: 0px;}			
.stellenangebote .job { padding-bottom: 5px;}		
	.stellenangebote {
		flex-wrap: wrap;
	}	
  /* ---------------------------------- FOOTER ---------------------------------- */
  .social {
    display: block;
    width: 25px;
    margin-bottom: 15px;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
  }
} /* ------- ENDE 1280 ----- */

@media only screen and (max-width: 880px) {
	
section {
 padding-left: 0px;
}
/* ---------------------------------- HEADER ---------------------------------- */
header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.5);
  border-right: 0px solid #b2c106;	
}

	
article {
	width: 100%;
	min-height: 70vH;
}
		
	
.header-footer {
  position: absolute;
left: 15px;	
  bottom: 0%;
top: 10px;	
  width: 30px;
}
	
.social {
  display: inline-block;
  width: 30px;
position: absolute;	
  left: 80px;	
  margin: 0px;
top:10px;	
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}	
	
.logo-short-projekt{
  display: inline-block;
  width: 30px;
position: absolute;	
  left: 0px;	
  margin: 0px;
top:8px;	
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -ms-transition: all 0.6s;
  transition: all 0.6s;
}	
	.trenner-nav-icon {
		display: none;
	}	
/* ---------------------------------- Burger ---------------------------------- */
.burger-box {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 9999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-box p {
  display: none;
}	
	
.logo {
  position: absolute;
  top: 5.5vh;
  right: 4vw;
  width: 200px;
  z-index: 99;
}	
	
.logo-index {
  position: absolute;
  top: 100px;
  right: 4vw;
  width: 250px;
  z-index: 99;
}	
	
.full-h {
  min-height: 50vH;
  padding: 40px 0px;	
}
.full-h-img {
  min-height: 50vH;
}	
	
.fullheight {
  min-height: 50vH;
}	
	
	
.video-box {
	overflow: hidden;
	width: 100%;
	height: auto;
}	
	
.video-file {
  width: auto;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}	
	
	
.box-down {
		display: none;
	}	
  /* ---------------------------------- SPALTEN ---------------------------------- */
  .cm1 {
    width: 8.33%;
  }
  .cm2 {
    width: 16.66%;
  }
  .cm3 {
    width: 25%;
  }
  .cm4 {
    width: 33.33%;
  }
  .cm5 {
    width: 41.66%;
  }
  .cm6 {
    width: 50%;
  }
  .cm7 {
    width: 58.33%;
  }
  .cm8 {
    width: 66.66%;
  }
  .cm9 {
    width: 75%;
  }
  .cm10 {
    width: 83.33%;
  }
  .cm11 {
    width: 91.66%;
  }
  .cm12 {
    width: 100%;
  }
  /* ---------------------------------- EIN - AUSBLENDEN ---------------------------------- */
.cm-cr {
  float: right;
}
.cm-cl {
  float: left;
}
.cm-cc {
  float: none;
  margin: auto;
}
	
	.cm-none {
    display: none;
  }
  .cm-block,
.cm-block img	{
    display: block;
  }	
  .cm-cc {
    float: none;
    margin: auto;
  }

  .cm-mitte-none {
    display: -webkit-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /* ---------------------------------- TEXTE ---------------------------------- */
  h1 {
    font-size: 190%;
  }

  p {
    font-size: 95%;
  }
  .tx-large {
    font-size: 95%;
  }
  h2.tx-font {
    font-family: 'Saira Condensed';
    font-weight: normal;
    font-size: 160%;
  }
  h3.tx-font {
    font-family: 'Saira Condensed';
    font-weight: normal;
    font-size: 130%;
  }
.button {
  font-size: 130%;
}	
  /* ---------------------------------- BUTTON ---------------------------------- */
  a.dark-button {
    width: 94%;
    padding: 1.5vw 0px 1.5vw 0px;
    position: absolute;
    text-align: center;
    bottom: 3%;
    left: 3%;
    background-color: rgba(10, 10, 10, 0.5);
    font-family: 'Saira Condensed';
    font-weight: normal;
    font-size: 130%;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
  }
  a.dark-button:hover {
    background-color: rgba(10, 10, 10, 0.8);
    padding: 1.7vw 0px 1.7vw 0px;
    bottom: 3%;
    left: 3%;
  }
  /* ---------------------------------- BILDER PANO ---------------------------------- */
  .pano {
    height: 35vh;
  }
.pano-box	{
  margin-top: -10vh;
}	

.pano-box-back	{
  margin-top: -15vh;
}		
	
  /* ---------------------------------- BILDER  -------------------------------------- */
	
	.header-landwirt {
  background-image: url("../image/landwirtschaft/header-landwirtschaft-m.jpg");
  background-size: cover;
  background-repeat: no-repeat;		
}
	
.energie-hg {
  height: 50vH;
  min-height: 300px;	
  background-image: url("../image/energie/solarfeld.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}

.mehrwert-hg {
  height: 50vH;
  min-height: 300px;	
  background-image: url("../image/mehrwerte/h-nissen-technik.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;		
}	
	
.solarpark-hg {
  height: 50vH;
  min-height: 300px;		
  background-image: url("../image/energie/sonne-solarfeld.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}
	
.solar-eigentuemer-hg {
  height: 50vH;
  background-image: url("../image/mehrwerte/solarpark-flaechen-eigentuemer.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}	
	
.solar-bearbeitung-hg {
  height: 50vH;
  background-image: url("../image/mehrwerte/solarfeld-bearbeitung.jpg");
  background-size: cover;	
  background-position: center;
	background-repeat: no-repeat;	
}		
	
.solar-gespraech-hg {
  height: 50vH;
  background-image: url("../image/mehrwerte/solar-gespraech.jpg");
  background-size: cover;	
  background-position: center;
  background-repeat: no-repeat;	
}	
/* ---------------------------------- STELLENANGEBOTE ---------------------------------- */

.stellenangebote,
.initiativ{
	padding-left: 0px;
	
}

.stellenangebote li {
	font-size: 90%;
	width: auto;
}

.stellenangebote li::before {
	content: "";
    width: 20px;
    height: 20px;
	margin-right: 5px;
}
	
.stellenangebote li.standort::before {
	    background: url("../grafik/standort.svg") no-repeat top right;
}

.stellenangebote li.zeit::before {
	    background: url("../grafik/zeit.svg") no-repeat top right;
}
	
  /* ---------------------------------- Higlight Boxen ---------------------------------- */
  .box-top {
    position: relative;
  }
  .bt-l {
    top: 0%;
    left: 8.33%;
    margin-top: -20%;
  }
  .bm {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bm-img {
    min-height: 300px;
  }
} /* ------- ENDE 880 ----- */
@media only screen and (max-width: 560px) {
	
.logo {
  position: relative;
  top: 0px;
  right: 0;
  width: 80%;
  z-index: 99;
  padding: 40px;
	padding-left: 8.4%;
 padding-bottom: 0px;	
}	
	
.logo-index {
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  z-index: 99;
  padding: 43px;
}	
	
.full-h {
  min-height: 45vH;
}	
	
.bm-index {
  display: -webkit-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;	
}	
	
.video-box {
	overflow: hidden;
	width: 100%;
	height: auto;
  padding-top: 87px;	
}	
	
.video-file {
  width: auto;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
	}
	
  /* ---------------------------------- SPALTEN ---------------------------------- */
  .cs1 {
    width: 8.33%;
  }
  .cs2 {
    width: 16.66%;
  }
  .cs3 {
    width: 25%;
  }
  .cs4 {
    width: 33.33%;
  }
  .cs5 {
    width: 41.66%;
  }
  .cs6 {
    width: 50%;
  }
  .cs7 {
    width: 58.33%;
  }
  .cs8 {
    width: 66.66%;
  }
  .cs9 {
    width: 75%;
  }
  .cs10 {
    width: 83.33%;
  }
  .cs11 {
    width: 91.66%;
  }
  .cs12 {
    width: 100%;
  }
  .main {
    width: 90%;
  }
  /* ---------------------------------- EIN - AUSBLENDEN ---------------------------------- */
 .cs-cr {
  float: right;
}
.cs-cl {
  float: left;
}
.cs-cc {
  float: none;
  margin: auto;
}
	.cs-none {
    display: none;
  }
  .cs-block,
  .cs-block img {
    display: block;
  }
  .cs-cc {
    float: none;
    margin: auto;
  }
  .mitte {
    display: -webkit-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
	
.artikel-flex {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
	flex-wrap: wrap;
}	
	
	
  .cs-txc {
    text-align: center;
  }
  .cs-txl {
    text-align: left;
  }
  .cs-txr {
    text-align: right;
  }
	
.pano-xl {
  height: 250px;
}	
	
.img_1 {
	background: url("../image/slider/titel-solar.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 40s linear infinite alternate-reverse;
    /* Safari and Chrome */
    animation:mymove 40s linear infinite alternate-reverse;
}

.img_2 {
	background: url("../image/slider/titel-solar-biene.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 40s linear infinite alternate;
    /* Safari and Chrome */
    animation:mymove 40s linear infinite alternate;
}

.img_3 {
	background: url("../image/slider/titel-solar-landwirtschaft.jpg");
	background-size: auto 100%;
	background-position: center center;
    -webkit-animation:mymove 40s linear infinite alternate-reverse;
    /* Safari and Chrome */
    animation:mymove 40s linear infinite alternate-reverse;
}	
	
  /* ---------------------------------- TEXTE ---------------------------------- */
  h1 {
    font-size: 180%;
  }
	h1.h3 {
		    font-size: 100%;
		margin-bottom: 20px;
	}
  h2,.h2 {
    font-size: 160%;
  }
  h3,
.button,
h2.h3{
    font-size: 120%;
  }
  p, .tx-large {
    font-size: 95%;
  }
  .ac-button {
    font-size: 130%;
  }
	
.iumgesetzt {
  background-image: url("../grafik/biodiverse/m-umgesetzt.svg");
  background-position: left center;
  background-size: auto 65%;
  background-repeat: no-repeat;
  padding-left: 35px;
  margin-bottom: 10px;		
}	
	
.open::after,
.closed::after	{
  top: 6px;
}	
	
.daten-liste li {
font-family: 'Saira Condensed';	
  list-style: none;
  margin-bottom: 8px;
  display: block;
   font-size: 120%;	
}	
	
.button-icon h3 {
  font-weight: normal;
  font-size: 150%;
  font-family: 'Saira Condensed';
}	
/* ---------------------------------- STELLEN ----------------------------------*/	
	h1.jobs, h2.jobs {
  font-weight: normal;
  font-size: 150%;
}
	
	.stellenangebote li.bereich,
	.stellenangebote li.zeit,
	.stellenangebote li.standort
	{
	display: none;
}
	
		.stellenangebote.stelle li.frist,
	.stellenangebote.stelle li.zeit,
	.stellenangebote.stelle li.standort {
	display: block;
	width: 100%;
	padding-left: 0px;	
}	
	.stellenangebote.stelle li::before { display: none;}	
	
/* ---------------------------------- TEASER IMAGE ----------------------------------*/

.teaser-image {
	position: inherit;
	right: 0;
	top: 0;
}	
	
  /* ---------------------------------- ABSTÄNDE ---------------------------------- */
  .mg-15 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .mg-25 {
    padding-left: 10px;
    padding-right: 10px;
  }
	
.footer-icon {
  width: 40px;
  float:left;
  margin-right: 20px;
  margin-left: 0px;
  margin-top: 20px;	
}	
} /* ------- ENDE 560 ----- */