div.gallery img {
  width: auto;
  height: auto;
	min-height: 300px;
	min-width: 300px;
	object-fit:cover;


}
.gallery img {
	max-height: 25%;
	text-align: center;
}
div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 25%;
	max-height: 300px;
	min-height: 300px;
	max-width: 300px;
	min-width: 300px;

}	
.container {
		margin: auto;
		width: 50%;

}
@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
	  max-width: 50%;
    margin: 6px 0;
  }
}
.container {
		margin: auto;
		width: 75%;

}
@media only screen and (max-width: 500px) {
  .responsive {
    max-width: 75%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.responsive {
  display: inline-block;
  margin: auto;
  overflow: hidden;
	margin-bottom: 10px;

	/* clip the excess when child gets bigger than parent */
}
.responsive img {
  display: block;
  transition: transform .4s;   /* smoother zoom */

}
.responsive:hover img {
  transform: scale(1.3);
  transform-origin: 50% 50%;
}
