.slider-container {
    height: 85vh;
    background-image: linear-gradient(to bottom, rgb(245, 246, 252, 0), rgba(0, 0, 0, 0.75));
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    position: relative;
}

.slider-container.no-data {
    background: var(--white-color);
    align-items: center;
    justify-content: center;
}

.slider-container.no-data h1 {
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px dashed var(--border-color);
    padding: 30px;
    border-radius: 5px;
}

.images-slider {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left:0;
    z-index: -1;
}

.images-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.images-slider div {
    width: 100%;
    height: 100%;
}

.slider-titles {
    color: white;
    position: relative;
    width: 65%;
}

.slider-titles ul:first-child li{
    list-style: none;
    position: absolute;
    bottom: 30px;
}

.slider-titles ul:first-child li:not(.active){
    visibility: hidden;
    animation: flipOutX;
    animation-duration: .5s;
}

.slider-titles ul:first-child li.active{
    animation: flipInX;
    animation-duration: 1s;
}

.slider-titles ul:last-child li{
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid white;
    margin-right: 10px;
}

.slider-titles ul:last-child li.active{
    background-color: white;
}

.btn-demande-devis-sm {
    display: none;
}

.slider-titles li p {
    display: none;
}

.slider-texts h1 {
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .slider-container {
        padding-bottom: 30px;
    }

    .container-slider-content {
        flex-direction: column;
    }

    .slider-titles {
        width: 100%;
    }

    .approach-sentence {
        display: none;
    }

    .btn-demande-devis-sm {
        display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 32px;
        margin-bottom: 15px;
    }

    .btn-demande-devis-sm .btn-demande-devis {
        padding: 10px 20px;
    }

    .slider-titles .slider-texts li {
        margin-bottom: 20px;
    }

    .slider-titles li p {
        display: initial;
        color: var(--white-text-color);
        font-weight: 500;
    }
}