.custom-slider { display: none; }
.slide-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 58%; /* position haut fleche */
  transform: translateY(-50%);
  width: 60px; /* largeur ombre sous fleche */
  height: 60px; /* hauteur ombre sous fleche */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffb617;  /* couleur fleche */
  font-size: 30px; /* grosseur fleche */
  background-color: rgba(0,0,0,0);
  transition: background-color 0.6s ease;
}
.prev{ left: -60px; }  /* position horizon fleche droite */
.next { right: -60px; }   /* position horizon fleche gauche */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);  /* couleur ombre sous fleche */
}
.slide-text {
  position: absolute;
  color: #93366;
  font-size: 15px;
  padding: 10px;
  bottom: -35px;
  width: 100%;
  text-align: center;
}
.slide-index {
  color: #821111; /* couleur texte petit titre sur plaque */
  font-size: 20px;
  padding: 15px;
  position: relative; /* position texte petit titre sur plaque  origine :absolute*/
  top: 0;
}
.slide-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
 }
.slide-dot{ text-align: center; }
.dot {
  cursor: pointer;
  height: 10px;  /* hauteur points sous photos */
  width: 10px;  /* largeur points sous photos */
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #111111; }
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {opacity: 0}
  to {opacity: 1}
}body {
   background-color: white;
   color: black;
}
