

.item {
  position: relative;  

  margin: 0%;
  overflow: hidden;
  width: 100%;

  
}
.item img {
  max-width: 100%; 
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.item-overlay{
	background:#FFF;color:#333333;
	text-align:center;}


	
.item2 {
  position: relative;  

  margin: 0%;
  overflow: hidden;
  width: 100%;

}
.item2 img {
  max-width: 100%; 
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.item2:hover img {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
