/*  photogallery.css
#-- Author: Warren Moore - CJ Tech Support
#-- Photo Gallery Section Starts Here  ---------------------- --*/ 
 
.photo-collection {
    margin-left: 0;
    padding: 5px;
    box-sizing: border-box;
    background-color: #ffffff;
}
.featured{
	margin:auto;
	width:400px;
	border: 20px solid #ffffff;
}
.product-gallery {
  margin: 5px;
  float: left;
  width: 200px;
  max-height: 190px;
  overflow: hidden;
}

.gallery {
  margin: 5px;
  float: left;
  width: 180px;
  height: 270px;
  color: #ffffff;
  font-weight: 500;
  padding: 5px;  
  text-shadow: 1px 1px 2px #000000;
}

.gallery img {
  width: 100%;
  height: auto;
  max-height: 420px;
}

.desc {
  padding: 15px;
  text-align: center;
}
.zoom {
  padding: 50px;
  background-color: green;
  transition: transform .2s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
