/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  padding-bottom: 20px;
  color: #5a5a5a;
  background-color: #fff;
  padding-top: 0px;
}
/*wichtig - Positionierung des Inhalts bei sich ändernder Navbar-Höhe:*/
@media (min-width: 768px) {
  body {
  padding-top: 140px;
   }
}
@media (min-width: 992px) {
  body {
  padding-top: 50px;
   }
}
@media (min-width: 1200px) {
  body {
  padding-top: 20px;
   }
}

/* Carousel base class */
.carousel {
  height: 780px;
  margin-bottom: 20px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 780px;
  background-color: #4d5a66;
  background-color: #343d46;/* ----------------------------------------------BG des oberen Bereiches----*/
  background-image: url(../images/yt-banner.jpg);
}

/*Gradient der Controls entfernen*/
.carousel-control.left, .carousel-control.right {
  background: none !important;
  filter: progid: none !important;
  outline: 0;
 }
.carousel .carousel-control {
  /*visibility: hidden;*/ /*geht*/
}
.carousel:hover .carousel-control {
  visibility: visible;
  /*Pfeilfarbe - Glyphicon*/
  color: #fff;
}

.carousel-inner > .item > img {
  position: absolute;
/*  top: 47%;*/
  top: 398px;  /* 318---------------------------------------------------Mitte Bild von oben */
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 780px;
  width: auto;
  /*border-radius: 6px;*/
}

/* Einblendeverzoegerung der Caption - opacity erstmal auf 0*/
.item.next .carousel-caption {
    opacity: 0;
}
.item.prev .carousel-caption {
    opacity: 0;
}
.carousel-caption {
  transition: opacity .925s ease-in-out;
  -moz-transition: opacity .925s ease-in-out;
  -webkit-transition: opacity .925s ease-in-out;
/*  text-align: left;  geht!! */
}
.carousel-caption h1 {
  margin-bottom: 1px;
  font-size: 22px;
  line-height: 1.2;
  text-align: left;
  color: #e7e7e7;/*hellgrau*/
color: #e43427;/*mlt red*/
  margin-left: 20px;
}

.carousel-caption h2 {
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.2;
color: #e43427;/*mlt red*/
}

.carousel-caption p {
  font-size: 12px;
  /*line-height: 1.2;*/
  text-align: left;
  color: #fff;
  margin-left: 20px;
}

.carousel-caption p.c1 {
  font-size: 16px;
  /*line-height: 1.2;*/
  text-align: left;
  color: #fdb532;/*gks-yellow*/
  margin-left: 20px;
}

.carousel-caption li {
  font-size: 16px;
  text-align: left;
  color: #fff;
}

.page-header {
   margin-bottom: 2px;
}

/*Carousel-Navpoints*/
.carousel-indicators li {
    display: inline-block;
    width: 20px;/*alt: 12 x 12*/
    height: 8px;
    margin: 1px;
    text-indent: 0;
    cursor: pointer;
    border-radius: 15%;
    background-color: #000;
    border-color: #9b9ba0;/*mlt light grey*/
    box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.5);
}
.carousel-indicators .active {
    width: 20px;
    height: 8px;
    margin: 1px;
    background-color: #e43427;/*mlt red*/
    border-color: #9b9ba0;/*mlt light grey*/
    box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.5);
}



/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 768px) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.1;
  }
}


