.feature-img {
    position: relative;
	  height: 100%;
	  width:100%;
    background-size: contain;
    display: inline-block;
    transition: all .2s;
    margin:0;
}

.feature-img img {
  height:auto;
  width:100%;
}

.feature-img .content {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: scale(.8) translateY(-50%) translateZ(0);
  transition: all .2s;
  color:white;
}

.feature-img .content h3 {
  color: #fff;
  font-size: 24px;
  margin-top: 10px;
}

.feature-img .content a,
.feature-img .content span {
  font-size: 15px;
  color: white;
}

.feature-img:hover .content {
  transform: scale(.9) translateY(-50%);
}

.feature-img .overlay {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  transition: opacity .3s linear;
}

.feature-img:hover .overlay {
  opacity: 1 !important;
  transition: opacity .3s linear;
}
