.custom-slider { display: none; }

.body {
    width: 100%;
    max-width: 1100px;
    min-width: 330px;
    scroll-behavior: smooth;
}
}
#retour {
  background-color: #4CAF50; /* Vert */
  height:40px;
  color: white;
  font-family: Arial black;
  font-size: 14px;
  border : 2px solid red;
  cursor: pointer;
}
#retour:hover {
  background-color:cyan; /* cyan */
  color: black;
}
#retour2 {
  background-color: #4CAF50; /* Vert */
  color: white;
  font-family: Arial black;
  font-size: 14px;
  border : 1px solid black;
  cursor: pointer;
}
#retour2:hover {
  background-color:cyan; /* cyan */
  color: black;
}
.page{
    width: 100%;
    max-width: 1100px;
    min-width: 330px;
    align-items:center;
    top;0px;
}
.slide-container {
    width: 100%;
    max-width: 1100px;
    min-width: 330px;
    position: relative;
    top:0px;
    margin: auto;
}
.prev {
    cursor: pointer;
    position: absolute;
    top: -20px;
    transform: translateY(-50%);
    width: 70px;
    height: 50px;
    display: flex;
    align-items:center;
    justify-content: center;
    border-radius: 50%;
    color: red;
    font-family:Arial Black;
    font-size: 40px;
    background-color: rgba(0,0,0,0);
    transition: background-color 0.6s ease;
}
.next {
    cursor: pointer;
    position: absolute;
    top: -20px;
    transform: translateY(-50%);
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: red;
    font-family:Arial Black;
    font-size: 40px;
    background-color: rgba(0,0,0,0);
    transition: background-color 0.6s ease;
}
.prev{ left: -25px; }
.next { right: -26px; }

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.5);
}
.slide-text {
    position: absolute;
    color: #000000;
    font-family: Arial;
    font-size: 14px;
    padding: 2px;
    bottom: 2px;
    width: 100%;
    text-align: left;
}
.slide-index {
    color: #000000;
    font-size: 13px;
    padding: 15px;
    position: absolute;
    top: 0;
}
.slide-img{
    width: 100%;
    min-width: 300px;
    height: 100%;
    object-fit: cover;       
    object-position: center;
    border : 1px solid #000000;
    
}
.slide-dot{ text-align: center; }

.fixed {
  position: fixed;
  top: 0;
}

.dot {
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: 0 2px;
    font-family: Arial;
    font-size: 15px;
    color: white;
    background-color: #999999;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.mini {
    cursor: pointer;

    width:80px; 
    height:50px;
    margin: 0 2px;
    background-color: #999999;
    border-radius: 0%;
    border: 1px solid black;
    display: inline-block;
    transition: border 0.3s ease;
}

.active, .dot:hover, .mini:hover {
border: 2px solid red; 
background-color: #111111; 
}
.fade {
    animation-name: fade;
    animation-duration: 2s;
}
@keyframes fade {
    from {opacity: 0}
    to {opacity: 1}
}
p.small {
  line-height: 0.1;
  font-size: 3px;
}
p.moyen {
  line-height: 0.1;
  font-size: 30px;
}
p.titre {
  text-align: center;
  line-height: 1.0;
  font-family: Arial Black;
  font-size: 28px;
}
p.lien {
  text-align: center;
  line-height: 1.0;
  font-family: Arial;
  font-size: 4px;
}