/*custom CSS*/
.description-short h6{
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 5em;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 70%);
    z-index: 10;
    transition: all 500ms;

    opacity: 0;
    transform: scale(0);
}
    .description-short h6.on{
        opacity: 1;
        transform: scale(1);
    }

.description-short h6 img {
    max-width: 100%;
    height: auto;
    background-color: #FFF;
    padding: 25px;
    border-radius: 10px;
}