﻿


/************************** 4. GALLERY PAGE CSS***********************************/


/*--------------------Animation effect start--------------------------*/

.gallery_product {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .gallery_product.show {
        opacity: 1;
        transform: scale(1);
    }

/*--------------------Animation effect end--------------------------*/
