div.img img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius:10px;
}
.responsive {
  margin-top:10px;
  float: left;
  width: 50%;
}
.responsive-full {
  margin-top:10px;
}
.responsive-custom {
  float: left;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1; 
  padding-top: 90px; 
  left:0;
  top: 0;
  width: 100%;
  height: 100%; 
  overflow:hidden; 
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(35,30,57,0.9); /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-height: 90%;
  max-width: 90%;
  border-radius:10px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px;
  height: 150px;
}

.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0.1)} 
  to {transform:scale(1)}
}
  figcaption {
	font-size: 12px;
	text-align: center;
}
.zoomie {
  transition: transform .2s;
}
.zoomie:hover {
  transform: scale(1.05);
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}