#assembly-slider {
    width: 100%;
    height: 640px;
    position: relative;
    overflow: hidden;
    z-index: 100;
    background-color: black;
}

#assembly-slider .more-link {
display:none;
}

#le {
    position: absolute;
    z-index: 1;
    width: 80px;
    left: calc(50% - 40px);
    bottom: 0px;
    opacity: 0.2;
}

#le img {
width:100%;
height:auto;
}

.grayback {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
}

#slidecont {
    font-size: 0;
    height: 100%;
    position: absolute;
    left: 0;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    -o-perspective: 1000px;
    width: 100%;
    z-index:10;
}

.slide {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: inline-block;
transform:scale(1);
-webkit-transform:scale(1);
-moz-transform:scale(1);
-ms-transform:scale(1);
-o-transform:scale(1);
opacity:0;
}

.slide .button {
    position: absolute;
    right: 0;
    top: 140px;
    opacity:0;
    padding: 12px 15px;
    text-align: center;
    width: 14px;
}

.layer:hover > .wrapper .padding .button {
opacity:1;
} 

.slide:nth-child(1) {
opacity:1;
}

.action-in {
  -webkit-animation: SlideIn 2s both ease;
  -moz-animation: SlideIn 2s both ease;
  -ms-animation: SlideIn 2s both ease;
  -o-animation: SlideIn 2s both ease;
  animation: SlideIn 2s both ease;
z-index: 20 !important;
}

.action-out {
  -webkit-animation: SlideOut 2s both ease;
  -moz-animation: SlideOut 2s both ease;
  -ms-animation: SlideOut 2s both ease;
  -o-animation: SlideOut 2s both ease;
  animation: SlideOut 2s both ease;
  z-index:10;
}

@keyframes SlideIn {
  0% { opacity:0;transform:scale(1.1); }
  100% { opacity:1;transform:scale(1); }
}

@-webkit-keyframes SlideIn {
  0% { opacity:0;-webkit-transform:scale(1.1); }
  100% { opacity:1;-webkit-transform:scale(1); }
}

@-moz-keyframes SlideIn {
  0% { opacity:0;-moz-transform:scale(1.1); }
  100% { opacity:1;-moz-transform:scale(1); }
}

@-ms-keyframes SlideIn {
  0% { opacity:0;-ms-transform:scale(1.1); }
  100% { opacity:1;-ms-transform:scale(1); }
}

@-o-keyframes SlideIn {
  0% { opacity:0;-o-transform:scale(1.1); }
  100% { opacity:1;-o-transform:scale(1); }
}

@keyframes SlideOut {
  0% { opacity:1;transform:scale(1); }
  100% { opacity:1;transform:scale(1.1); }
}

@-webkit-keyframes SlideOut {
  0% { opacity:1;-webkit-transform:scale(1); }
  100% { opacity:1;-webkit-transform:scale(1.1); }
}

@-moz-keyframes SlideOut {
  0% { opacity:1;-moz-transform:scale(1); }
  100% { opacity:1;-moz-transform:scale(1.1); }
}

@-ms-keyframes SlideOut {
  0% { opacity:1;-ms-transform:scale(1); }
  100% { opacity:1;-ms-transform:scale(1.1); }
}

@-o-keyframes SlideOut {
  0% { opacity:1;-o-transform:scale(1); }
  100% { opacity:1;-o-transform:scale(1.1); }
}

.backtext {
    position: absolute;
    font-size: 17vw;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: white;
    opacity: 0.2;
    top: 12%;
    left: 3%;
    line-height: 0;
  	transition: all 13300ms ease;
	-webkit-transition: all 13300ms ease;
	-moz-transition: all 13300ms ease;
	-ms-transition: all 13300ms ease;
	-o-transition: all 13300ms ease;
transform:translateX(-100px);	
-webkit-transform:translateX(-100px);	
-moz-transform:translateX(-100px);	
-ms-transform:translateX(-100px);	
-o-transform:translateX(-100px);	
}

.action-in .backtext {
transform:translateX(0px);
-webkit-transform:translateX(0px);
-moz-transform:translateX(0px);
-ms-transform:translateX(0px);
-o-transform:translateX(0px);
}

.layer {
position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  height:100%;
background-size: cover;
    background-position: center center;
  perspective:1000px;
}


.backlayer img {
min-width:100%;
height:auto;
}

.textlayer {
    top: 50%;
  position: absolute;
  height: auto;
  width: 100%;
  	transition: all 6000ms ease;
	-webkit-transition: all 6000ms ease;
	-moz-transition: all 6000ms ease;
	-ms-transition: all 6000ms ease;
	-o-transition: all 6000ms ease;
opacity:0;
transform:translateZ(-100px) translateY(-50%);
-webkit-transform:translateZ(-100px) translateY(-50%);
-moz-transform:translateZ(300px) translateY(-50%);
-ms-transform:translateZ(300px) translateY(-50%);
-o-transform:translateZ(300px) translateY(-50%);
    text-align: center;
    
}

.slidetitle {
    font-size: 46px;
    color: #fff;
    line-height: 1.1em;
    font-weight: normal;
    letter-spacing: -0.03em;
    text-transform:uppercase;
}

.decorline {
    background-color: #473028;
    width: 91px;
    height: 6px;
    margin: 10px auto 0px;
}

.slidecontent {
font-size: 22px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 80px;
}

.slidecontent p {
margin-top:5px;
}

.slidecontent a {
background-color: rgba(0,0,0,.3);
    color: #fff;
    display: block;
    padding: 15px 33px;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    display: inline-block;
    min-width: 113px;
    border: 4px solid white;
    border-radius: 50px;
}

.slidecontent a:hover {
background-color: black;
}

.slidein {
opacity:1;
transform:translateZ(0) translateY(-50%);
-webkit-transform:translateZ(0) translateY(-50%);
-moz-transform:translateZ(0) translateY(-50%);
-ms-transform:translateZ(0) translateY(-50%);
-o-transform:translateZ(0) translateY(-50%);
}

.textlayer img {
width:100%;
height:auto;
}

.editslide {
font-size: 9px;
  position: absolute;
  top: 2px;
}

.editslide a {
color:#ccc;
}

#paginate {
    position: absolute;
    margin-bottom: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.pagedot {
width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 1;
  transition: all 1000ms ease;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  background-color: rgba(255,255,255,0.3);
}

.aktiv {
background-color:#fff;
}

#prev, #next {
    opacity: 0.1;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 20;
    background-repeat: no-repeat;
    background-position: center center;
    bottom: calc(50% - 20px);
    font-size: 50px;
    color: white;
  }
  
#assembly-slider:hover > #prev {
opacity:1;
left:20px;
}

#assembly-slider:hover > #next {
opacity:1;
right:20px;
}

#prev {
  left: -80px;
}

#next {
  right: -80px;
}

#next:hover, #prev:hover {
background-color: rgba(0,0,0,0.3);
  opacity: 1;
}

#progressbar {
overflow: hidden;
  width: 0%;
  position: absolute;
  bottom: 0px;
  background-color: #FFF;
height: 5px;
    opacity: 0.2;
}

@media screen and (max-width: 1400px) {

      
}


@media screen and (max-width: 1000px) {
.slidetitle {
font-size: 42px;
}

.slidecontent {
font-size:20px;
padding:0;
}

#prev, #next {
visibility:hidden;
}


}


@media screen and (max-width: 800px) {
.slidetitle {
font-size: 32px;
}

.slidecontent {
font-size:17px;
}
}

@media screen and (max-width: 500px) {


.slidetitle {
font-size:26px;
}

.slidecontent {
font-size:15px;
}

#prev, #next {
bottom:25px;
opacity:0.9;
}

}