.img-gallery{
    object-fit: cover;
    width: 30%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgb(0, 0, 0, 0.5);
    cursor: pointer;
}
.image-lightbox{
    transform: translate(100%);
    transition: transform .2s ease-in-out;
}
.show{
    transform: translate(0);
}
.showImage{
    transform: scale(1);
}
.image-pop{
    width:60%;
    height:60%;
}
.image-lightbox {
    height: calc(100vh-100px);
    width: 100vw;
    z-index:999;
}
