.slider a {
  color: #fff;
  text-decoration: none;
}

.slider img { 
  width: 100%;
}


.slider {
  position: relative;
  width: 90%;
	max-width: 900px;
  margin: auto;
  height: 600px;
}

.slider_decalage
{
	margin-top: -100px;
}


.slider .slide {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.slider .active {
  transform: translateX(0%) translateZ(0);
  transition: 0.5s all cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 100;
}

.slider .prev {
  transform: translateX(-300%) translateZ(0);
  transition: 0.5s  all cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 90;

}

.slider .next {
  transform: translateX(300%) translateZ(0);
  transition: 0.5s all cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 90;

}

.slider .controls {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 110;
  left: 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  font-size: 32px;
  color: rgb(255,255,255);
}

.click-left, .click-right
{
	color: #000 !important;
}







