

/* Section2 */
.section2
{
    padding: 5% 0%;
}

.gallery_image
{
    width: 100%;
}

.gallery_light_box_slide_show
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery_img
{
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

/* End of Section2 */

/* Mobile View */
@media only screen and (max-width: 500px)
{
    /* Section 2 */
    .gallery_img
    {
        width: 100%;
    }
    
    /* End of Section 2 */
}
/* End of Mobile View */

/* Tablet View */
@media only screen and (min-width:740px) and (max-width: 980px)
{
    /* Section 2 */
    .gallery_img 
    {
        width: 225px;
        height: 225px;
    }
    /* End of Section 2 */
}
/* End of Tablet View */

/* Mini screen */
@media only screen and (min-width: 990px) and (max-width: 1091px)
{
    /* Section 2 */
    .gallery_light_box_slide_show
   {
    gap: 20px;
   }

   .gallery_img
   {
    width: 297px;
    height: 297px;
   }
    /* End Section 2 */
}
/* End of Mini screen */