   /* -----------------------------
        IMAGE CAROUSEL STYLES
   -------------------------------*/

   .single__image__slide {
    position: relative;
    overflow: hidden;
}

.single__image__slide .overlay__lightbox {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    opacity: 0;
}
.single__image__slide:hover .overlay__lightbox {
    opacity: 1;
}

.single__image__slide .overlay__lighbox__icon {
    background: #000000;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius:50px;
    color:#ffffff;

}
