.hero {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
  color:white;
  padding: 5rem;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /*background-color: rgba(0,0,0,0.2);*/
  pointer-events: none;
}

.hero .bg,
.hero .cover {
  display: block;
  z-index: 0;
}

.hero > h1 {
  position: relative;
  font-size: 6rem;
  max-width: 768px;
  text-align: center;
  line-height: 1.3;
}

.hero > p {
  width: 550px;
  max-width: 80%;
}

.hero .dcll-placeholder, .hero .dcll-image {
  background: transparent !important;
}

.hero > * {
  z-index: 1;
}

.hero #LinkUeberUns{
    z-index:11;
    top: 3rem;
    position: absolute;
    width: 40%;
    height: auto;
}

.hero .fade {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out 1s;
  -o-transition: opacity 1s ease-in-out 1s;
  transition: opacity 1s ease-in-out 1s;
  z-index:  -1;
}

.hero .current_fade {
  opacity: 1;
  z-index: 0;
  -webkit-transition: opacity 1s ease-in-out 0s;
  -o-transition: opacity 1s ease-in-out 0s;
  transition: opacity 1s ease-in-out 0s;
}

.hero svg {
  max-width: 80vw;
  margin: auto;
  transform: translate3d(0,0,0);
}

#PlayVideo{
    display:block;
    text-align: center;
	max-width:50%;
}

@media all and (max-width: 767px) {
  .hero > h1 {
    font-size: 4rem
  }
  
  .hero svg{
      max-width: 40vw;
  }
}