.ISISliderDiv {
    height: 400px;
    width: 600px;
    position: relative;
}

.ISISliderDiv .DIV {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s;
}

.ISISliderDiv img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ISISliderDiv div.Actif {
    opacity: 1;
}


.ISISliderDiv .BTPrecedant {
    position: absolute;
    left: 0;
    height: 100%;
    width: 10%;
    cursor: pointer;
}

.ISISliderDiv .BTSuivant {
    position: absolute;
    right: 0;
    height: 100%;
    width: 10%;
    cursor: pointer;
}

.ISISliderDiv .Precedant,
.ISISliderDiv .Suivant {
    position: absolute;
    top: 50%;
    width: 35%;
    min-width: 50px;
    transform: translateY(-50%) scaleX(0.8);
    fill: #fff;
}

.ISISliderDiv .Precedant {
    left: 5px;
    height: 100%;
    transform: translateY(-50%) scaleX(0.7) rotate(180deg);
}

.ISISliderDiv .Suivant {
    right: 5px;
    height: 100%;
}

.ISISliderDiv .ListePuces {
    position: absolute;
    bottom: 2%;
    width: 100%;
    text-align: center;
}

.ISISliderDiv .Puce {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    border: 2px solid #4e403a;
    cursor: pointer;
    background-color: #eeeeee00;
    transition: background-color 0.5s;
}

.ISISliderDiv .Puce.Actif {
    background-color: #eeeeee;
}

.ISISliderDiv .ConteneurDescription {
    position: absolute;
    bottom: 100px;
    left: 100px;
    background: rgba(224, 222, 216, 0.9);
    padding: 2em 2em 1em 2em;
    border-radius: 1em;
}

.ISISliderDiv .ConteneurDescription h1 {
    color: #c5a48c;
    font-size: 2.5em;
    margin: 0;
}

.ISISliderDiv .ConteneurDescription p {
    color: #5d4b44;
}