.realisations{
    background: linear-gradient(#ffffffb5, #ffffff2d);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    margin-bottom: 50px;
    h2{
        color: #941C80;
        font-weight: 700;
        font-size: 2.5rem;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        &::before{
            content: '';
            display: inline-block;
            width: 300px;
            height: 3px;
            background: #941C80;
            margin-right: 30px;
            vertical-align: middle;
            clip-path: polygon(100% 0%, 100% 100%, 0% 50%);
        }
        &::after{
            content: '';
            display: inline-block;
            width: 300px;
            height: 3px;
            background: #941C80;
            margin-left: 30px;
            vertical-align: middle;
            clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
        }
    }
    .realisations-list{
        margin-top: 50px;
        width: 100%;
        /* Container du slider */
        .swiper {
            width: 100%;
            margin: 0 auto;
            position: relative;
        }

        /* Wrapper des slides */
        .swiper-wrapper {
        align-items: center;
        }

        /* Style des slides */
        .swiper-slide {
            box-shadow: 0 2px 10px#941c8028;
            min-height: 600px;
            display: flex;
            background-color: #fff;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            p{
                color: #EE8068;
                text-decoration: underline;
                font-weight: 600;
                font-size: 1.5rem;
            }
            img{
                height: auto;
                width: 100%;
                max-height: 600px;
                height: 600px;
                object-fit: cover;
            }
        }

        /* Boutons de navigation */
        .swiper-button-prev,
        .swiper-button-next {
        color: #941c80;
        width: 44px;
        height: 44px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 8px #941c8028;
        }

        .swiper-button-prev:after,
        .swiper-button-next:after {
        font-size: 20px;
        font-weight: bold;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
        background: #f5f5f5;
        }

        /* Pagination (points) */
        .swiper-pagination {
        bottom: 10px;
        }

        .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #941c80;
        opacity: 0.3;
        }

        .swiper-pagination-bullet-active {
        opacity: 1;
        background: #941c80;
        }
    }
}

@media (width<1300px){
    .realisations{
        h2{
            &::before{
                width: 200px;
            }
            &::after{
                width: 200px;
            }
        }
    }
}

@media (width<1000px){
    .realisations{
        h2{
            font-size: 2rem;
            &::before{
                display: none;
            }
            &::after{
                display: none;
            }
        }
    }
}

@media (width<1400px){
    .realisations{
        .realisations-list{
            .swiper-slide{
                width: 100%;
                height: auto;
                min-height: auto;
                img{
                    height: 400px;
                    width: 100%;
                }
            }
        }
    }
}
@media (width<750px){
    .realisations{
        .realisations-list{
            .swiper-slide{
                width: 100%;
                height: auto;
                min-height: auto;
                img{
                    height: 250px;
                    width: 100%;
                }
            }
        }
    }
}