@charset "utf-8";
/* CSS Document */


/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

html{
  overflow-y: hidden;
}

html, .wrapper{
  height: 100%;
}

body{
  background-color: white;
  height: 100%;
}

h1,h2{
  color: #ee7f1b;
}

a{
    color: black;
}
a:hover{
    color: rgb(238, 128, 28);
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#mainLogo{
  position: relative;
  z-index: 15;
}

#mainLogo img{
  position: absolute;
  top: 10px;
  right: 15px;
  max-width: 15%;
  z-index: 10;
}

#mainLogo + a{
  padding-right: 25%;
  text-align: right;
}
/*********************************************************************************/
/* Karussel                                                                      */
/*********************************************************************************/

.carousel-indicators{
  /* Damit Punkte nicht in Footer hineinragen */
  bottom: 60px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.carousel-indicators .active{
  background-color: black;
  margin: 1px;
  width: 14px;
  height: 14px;
}

.carousel-indicators li{
  border-top-color: black;
  border-bottom-color: black;
  border-left-color: black;
  border-right-color: black;
  opacity: 0.8;
  width: 14px;
  height: 14px;
}

.carousel-inner .item img{
  margin-left: auto;
  margin-right: auto;
  width: 55%;
}

/* FADE EFFEKT */
.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
          transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
  z-index: 2;
}
/* FADE EFFEKT ENDE */

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: calc(100% - 30px);
}

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: contain;
}

#myCarousel{
  padding-bottom: 15px;
}

/*********************************************************************************/
/* Info                                                                        */
/*********************************************************************************/

  .text{
    font-size: 12pt;
    font-family: Tahoma, Verdana;
    font-style: normal;
    line-height: 1.5;
    font-variant: normal;

    font-weight: 100;
  }


/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
footer{
  background-color: lightgray;
  bottom: -3px;
  color: black;
  height: auto;
  font-size: 12pt;
  font-family: Tahoma, Verdana;
  font-style: normal;
  font-variant: normal;
  font-weight: 100;
  text-align: center;
  position: fixed;
  transition-duration: 1000ms;
	/*transform: translate(0, 60px);*/
	transform: translate(0, 30px);
  width: 100%;
  z-index: 20;
}
footer ul{
	list-style-type: none;
	margin-top: 10px;
	padding-left: 0;
}

/* Die beiden Toggle-Classes */
.extended-impressum{
	transform: translate(0px, 30px);
}
.extended-impressum2{
  transform: translate(0px, 0px);
}

footer ul:first-child li:nth-child(odd){
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 13px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
}

footer ul:first-child li:nth-child(odd):hover{
	cursor: pointer;
  color: rgb(238, 128, 28);
}

.oberpunkte-impressum li{
  display: inline-block;
}

.gplus{
  position: absolute;
  top: 10px;
  right: 40px;
}

/* Schritte für Zeilenumbrüche */
@media screen and (max-width: 907px){
  footer{
    bottom: -30px;
  }
  .extended-impressum2 {
    transform: translate(0px, -30px);
  }
  .gplus{
    bottom: 100px;
  }
}
@media screen and (max-width: 736px){
  footer{
    bottom: -50px;
  }
  .extended-impressum2 {
    transform: translate(0px, -30px);
  }
  .gplus{
    bottom: 100px;
  }
}
@media screen and (max-width: 596px){
  footer{
    bottom: -70px;
  }
  .extended-impressum{
  	transform: translate(0px, 0px);
  }
  .extended-impressum2{
    transform: translate(0px, -50px);
  }
  .gplus{
    bottom: 120px;
  }
}
@media screen and (max-width: 500px){
  footer{
    bottom: -90px;
  }
  .extended-impressum{
  	transform: translate(0px, 10px);
  }
  .extended-impressum2{
    transform: translate(0px, -70px);
  }
  .gplus{
    bottom: 140px;
    right: 10px;
  }
}
