/*CONTAINER FÜR INHALT IM HEADER*/

.header_content {
  position: relative;
  z-index: 1;
  width: 88%;
  margin: 0 auto;
  margin-top: -80px;
}

/*Üerschrift im Header*/

.header_content h2 {
  font-size: 2.8em;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 26px;
}

/*NAVIGATIONSBEREICH für Slideshow*/

.intro_nav {
  position: relative;
  padding: 40px 0;
  text-align: center;
}

/*MehrInfo-Button*/

a.info {
  color: white;
  background-color: rgba(31, 106,149, 0.15);
  font: 1.4em 'lato_regular', Arial;
  text-transform: uppercase;
  -webkit-transition: background-color 1s, color 1s; /* Safari */
      transition: background-color 1s, color 1s;
}

a.info:hover {
  background-color: rgba(31, 106,149, 0.6);
  color: #57bade;
}

/*Anzeige der Steps für Slideshow*/

.slide_nav {
 position: absolute;
 right: 160px;
 bottom: 60px;
 line-height: 0;
}

.slide_nav li, a.next, a.previous, a.stop {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-right: 4px;
  background-color: rgba(31, 106,149, 0.1);
  border-radius: 6px;
  text-indent: -2000px;
  overflow: hidden;
  -webkit-transition: background-color 1s; /* Safari */
      transition: background-color 1s;
  -moz-box-shadow:    inset 1px 1px 1px rgba(0,0,0, 0.08), 1px 1px 1px rgba(255,255,255, 0.2);
     -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0, 0.08), 1px 1px 1px rgba(255,255,255, 0.2);
     box-shadow:         inset 1px 1px 1px rgba(0,0,0, 0.08), 1px 1px 1px rgba(255,255,255, 0.2);
}

.slide_nav li.active:before {
  content:"";
  display: block;
  position: absolute;
  left: 9px;
  top: 9px;
  width: 6px;
  height:6px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.8);
}

/*Steuerung Buttons*/

a.next, a.previous, a.stop {
  position: absolute;
  margin: 0;
  width: 40px;
  height: 40px;
  right: 0px;
  bottom: 53px;
  background: rgba(31, 106,149, 0.15) url("../img/arrow-right.svg") no-repeat 10px 8px;
}

a.previous {
  right: 100px;
  background-image:url("../img/arrow-left.svg");
}

a.stop {
  right: 50px;
  background-image:url("../img/pause.svg");
  background-position: 8px 8px;
}

a.stop.stopped {
  background-image:url("../img/play.svg");
}

a.next:hover, a.previous:hover, a.stop:hover {
  background-color: rgba(31, 106,149, 0.6);
  cursor: pointer;
}

/*eigentlicher Inhalts Container für Slideshow*/

.intro_content {
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.intro_content p {
  font-size: 1.1em;
}

/*Diese divs beinhalten die einzelnen Steps der Slideshow und haben
die Klassen .step1 – .step5*/

.intro_content>div {
  width: 100%;
  position: absolute;
  left: -150%;
  top: 0;
  bottom: 0;
  -webkit-transition: left 1s; /* Safari */
      transition: left 1s;
}

.intro_content>div.step1 {
  position: relative;
}

.intro_content>div:not(.step1) p{
  width: 50%;
  position: absolute;
  left: 50%;
  top: 24%;
}

.intro_content>div img {
  width: 30%;
  margin-left: 15%;
  max-width: 300px;
  position: absolute;
  top: 10%;
}

/*Das aktuelle Slide bekommt von Javascript die Klasse .show*/

.intro_content .show {
  left: 0;
}

.step1 {
  color: white;
  padding: 20px 0;
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
      -moz-column-count: 2; /* Firefox */
      column-count: 2;
  -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
     -moz-column-gap: 40px; /* Firefox */
     column-gap: 40px;
}
.step1 h3 {
  font: 1.2em 'droid_sansbold', Arial;
  padding-bottom: 8px;
}
.step1 p {
  display: table;
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
  page-break-inside: avoid; 
}



@media all and (max-width: 950px) {
  
  
  .intro_content p {
    font-size: 1em;
  }
  /*
  .intro_nav {
    text-align: left;
  }*/
  
  .intro_content>div img {
    width: 40%;
    margin-left: 5%;
  }
  
  
}

@media all and (max-width: 750px) {
  
  .header_content {
    width: 94%;
    margin-top: 40px;
  }
  
  .header_content h2 {
    font-size: 2.4em;
    padding-top: 0;
  }
  
  
  .step1 {
    padding: 10px 0 2px 0;
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
        -moz-column-count: 1; /* Firefox */
        column-count: 1;
  }
  
  .intro_content p {
    font-size: 1em;
    text-align: left;
  }
  
  .intro_content h3 {
    text-align: left;
  }
  .intro_content {
    text-align: center;
  }
  
  .intro_content>div:not(.step1) p{
    width: 90%;
    left: 5%;
    padding-top: 0px;
    top: auto;
    bottom: 5%;
  }

  .intro_content>div img{
    width: 260px;
    position: relative;
    display: inline;
    top: 0;
    margin: 0 auto;
  }
  
  .intro_nav {
    text-align: center;
    padding: 80px 0 20px 0;
  }
   
  .slide_nav {
    position: absolute;
    left: 0;
    top: 18px;
    right: auto;
  }
  
  a.next, a.stop, a.previous {
    top: 10px;
  }
  
  .intro_content>div img{
   margin: 10px auto;
  }
  
}

@media all and (max-width: 450px) {

  
  .slide_nav li{
    width: 24px;
    height: 24px;
    margin-right: 4px;
  }

  .slide_nav li.active:before{
    left: 9px;
    top: 9px;
  }
  
  .intro_content>div p{
   padding-bottom: 0;
  }
  a.info {
	  font-size:1.2em;
  }
}

@media all and (max-width: 350px) {

  
  .intro_content>div img{
   margin-top: 60px;
  }
  
   a.info {
	  font-size:1.0em;
  }
}

@media all and (min-width: 1400px) {

  
  .header_content {
    width: 80%;
  }
  
  .intro_content>div:not(.step1) p{
    font-size: 1.2em;
    left: 45%;
  }
  
}
