/* Lightbox */
.lightbox {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox:target {
    display: flex;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/*Couleur custom ui-text*/
.page-header-ui-dark .page-header-ui-text{
    color: rgb(220,220,220) !important;
}

#carouselRealisations .carousel-caption{
    position: static;
}

.carousel-dark .carousel-control-prev-icon, .carousel-dark .carousel-control-next-icon{
    filter: 
        drop-shadow( 1px  0px 0px black) 
        drop-shadow(-1px  0px 0px black)
        drop-shadow( 0px  1px 0px black) 
        drop-shadow( 0px -1px 0px black);
}