.grid-item {
    position: relative;
    z-index: 1;
    display: inline-block;
    height: auto;
    overflow: hidden;
    text-align: center;
    width: 33.06%;
}
.grid-item img{
	width: 100%;
	height:auto;
    transition: 0.9s;
}
.grid-item img:hover{
    filter: none;
}
.overlay {
  z-index: 1000;
  position: absolute; 
  bottom: 0; 
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-family: 'Parkinsans', sans-serif;
  font-weight: 400;
  font-size: 11.5pt;
}
.grid-item:hover .overlay {
  opacity: 1;
}


@media only screen and (max-width: 900px) {
.grid-item {
    position: relative;
    z-index: 1;
    display: inline-block;
    height: auto;
    overflow: hidden;
    text-align: center;
    width: 49.5%;
} 
.overlay {
  z-index: 1000;
  position: absolute; 
  bottom: 0;
  background: none;
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: #fff;
  padding: 15px 20px;
  text-align: left;
  font-family: 'Parkinsans', sans-serif;
  font-weight: 400;
  font-size: 12.4pt;
}
}
