
/* --------- เข้าเว็บ https://bootsnipp.com/snippets/DOnja ----------*/

/* --------- Global ----------*/
.transition{
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}
.img-responsive{
    width:100%;
}

/* --------- Simple Zoom Effects ----------*/
.product-div1{
    position:relative;
    overflow:hidden;
}
.product-div1:hover img{
    transform: scale(1.1);
}
img{
    transform: scale(1);
}


