.img-galeria{
    object-fit: cover;
    /*width: 30%;*/
    display: inline-block;
    margin-bottom: 15px;
    cursor: pointer;
}

/*---Lightbox---*/

.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, 0.027);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transform: scale(0);
    transition: transform .3s ease;
    z-index: 10000;
}

.agregar-imagen{
    object-fit: cover;
    width: 80%;
    border-radius: 30px;
    transform: scale(0);
    transition: transform .5s;
}

.show{
    transform: scale(1);
}

.showImage{
    transform: scale(0.8);
}

@media (max-width:700px){
    .showImage{
        transform: scale(1);
    }
}


