/* Version: 05.03.2018 */


 /* ------------------- NICHT VERÄNDERN ------------------------- */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
 font-family: 'ITC Avant Garde Std Bk Cn',Arial, sans-serif;
/* ------------------- NICHT VERÄNDERN ------------------------- */
  font-size: 100%;
 /* ------------------------------------------------------------ */
  color: #1d1d1b;
  text-decoration: none;
  font-weight: normal;
  word-spacing: normal;
  line-height: 1.5;

background-color: #ededed;
	
  /*	Hintergrundbilder werden in Chrome mit ausgedruckt	*/
  -webkit-print-color-adjust:exact;
/* 	background-color:#e5eff5;*/
}




p {
  margin: 0;
}

small{
	font-size: 0.5em;
}

.abstand-bottom{
  margin-bottom: 0.4rem;
}

h1 {
  line-height: 1.5;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
	color: #1d1d1b;
}

h2 {
  margin: 0;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 500;
	margin-bottom: 0.4rem;
	color: #1d1d1b;
}



h3 {
  margin: 0;
  line-height: 1.5;
  font-size: 0.97rem;
  font-weight: 700;
	color: #1d1d1b;

}

.frame-outer {
  position: relative;
  padding: 0;
  width: 780px;
  margin: 1.3rem auto;
  background-color: #fff;
  box-shadow: 2px 5px 4px #2c3147;
  font-size: 0.97rem;
}


.frame-outer::after {
  content: "";
  display: block;
  clear: both;
}

.greater{
	font-size: 1.2em;
	line-height: 1.45em;
}


.abstand40{
	line-height: 40px;
}

.logo {
text-align: right;
margin-top: 0.7rem;
 
}

.logo img{
	 width: 30%;
}

.header {
  position: relative;
}


.name{
	font-style: oblique;
}

.farbe{
color: #33AA33;
}

.headline{
font-size: 1.1em;
font-weight: bold;
margin: 0.4rem 0;
}

.title-block {
  position: absolute;
  bottom: 3%;
  right: 0;
  padding: 0.5rem 3%;
  /* --------------------- FALLBACK FÜR BROWSER DIE RGBA-WERTE NICHT UNTERSTÜTZEN -------------------- */
  background: rgb(0, 0, 0);
  /* ------------------------------------------------------------------------------------------------- */
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
} 

.content {
  padding: 1.2rem 5%;
}

.content::after {
  content: "";
  display: block;
  clear: both;
}




.box-left {
  float: left;
  width: 48%;
}

.box-right {
  float: right;
  width: 48%;
}

.footer {
background-color: #f67828;

}

.footer::after {
  content: "";
  display: block;
  clear: both;
}





img {
  max-width: 100%;
  height: auto;
  width: auto9;
  border: 0;
  vertical-align: middle;
}

a:link {
  color: #f67828;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: #f67828;
}

a:hover {
  text-decoration: underline;
  color: #f67828;
}

a:active {
  text-decoration: none;
  color: #f67828;
}

p.a {
  white-space: nowrap;
}


.video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 59%;
  position: relative;

}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


ul {
  margin: 0 auto 0rem 0.5rem;
  padding-left: 0.2rem;
 list-style-type: none; 
}

li {
  
  position: relative; 
  margin: auto;
  padding: 0;
	margin-bottom: 0.2rem;
	
}


 
li::before {
  position: absolute;
  top: -0.15rem;
  left: -0.7rem;
  content: "•";
	font-size: 1.2rem;
	color: #f67828;
} 

.black::before {
  position: absolute;
  top: -0.15rem;
  left: -0.7rem;
  content: "•";
	font-size: 1.2rem;
	color: #000;
} 



.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
}

.hide {
  display: none;
}

.cc{
column-count: 2;
column-gap: 1.5rem;
}

.refnr {}

.justifier {
  text-align: justify;
}

.justifier:after {
  content: "";
  display: inline-block;
  width: 100%;
}



.center{
	text-align: center;
}

.header-text{
position: absolute;
top: 19.5rem;

background-color: rgba(255, 255, 255, 0.0);
z-index: 7;
width: 100%;
left: 2rem;
	
	
	}





.intro{
	
	padding: 1.2rem 5%;
	background-color: #fff;
	
	
}






/* -------------- FLEXBOX EIGENSCHAFTEN -------------------- */
/* -----GENERELL: FLEXBOX STATT FLOAT NEHMEN, DA SIE BESSERE OPTIONEN ZUR GESTALTUNG BIETEN, 
JEDOCH DARAUF ACHTEN, DASS FLEXBOXEN NICHT VOM INTERNET EXPLORER 9 UND ABWÄRTS UNTERSTÜTZT WERDEN. => IN DEM FALL FLOATEN --------------------- */

/* .flex {
  display: table;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0;
} 
*/

/* -------------- FLEXBOX EIGENSCHAFTEN FÜR GLEICHE HOHE BOXEN MIT "PLATZ ZWISCHEN DEN BOXEN" (siehe "justify-content: space-between;") -------------------- */

.flex {
 display: flex;
display: -ms-flexbox;
display: -webkit-flex;
-webkit-justify-content: space-between;
justify-content: space-between;
	
}

.box-full {
  width: 100%;
 background-color: #fff;
	margin-bottom: 2rem;

	
}


.box-fulllast {
  width: 100%;
 background-color: #fff;
	
}






.bewerbung{
width: 100%;
background: #fff;

	
}




.button_box {
  text-align: center;
}

.button_box::after {
  clear: both;
  content: "";
  display: block;
}



.white{
	
	color: #fff;
}

/*_______________________

BUTTON MIT ANIMATION
_______________________
*/

.button a {
  display: inline-block;
  padding: 0.3rem 1rem 0.3rem 1rem;
  margin: 1rem auto;
  cursor: pointer;
	font-size: 1.1em;
 background-color:#c1d100;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  color: #fff;
	

}
.button a:hover {
  
  background-color: #c1d100;
text-decoration: underline;
	color: #fff;
	
}

/*Slider*/

.slider-wrap{
	max-width:780px;
  	width: auto;
  	height: auto;
	position:relative;
	border-top: 1px solid #c1d100;
}

.slideshow {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow li span {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: image 18s linear infinite;
  animation: image 18s linear infinite;
}
@keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  4% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  30% {
    opacity: 1;
  }
  34% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes image {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  4% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  30% {
    opacity: 1;
  }
  34% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.slideshow li {
	margin:0;
	padding:0;
  list-style: none;
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
.slideshow li:nth-child(1) span {}
.slideshow li:nth-child(2) span {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

ul.slideshow {
	margin:0;
	padding-left: 0rem;
}

.slider-wrap li::before{
                display:none;
}


/* ENDE Slider mit 4 Bildern mit transform Animation */


/* SLIDER ENDE */


/*
_______________________

MARKIERTER TEXT
_______________________

::selection {
background: #ffb7b7;
}
::-moz-selection {
background: #ffb7b7;
}

*/
.apply {}
