.image-wrapper img {
	width: 100%;
	height: auto;
}

.image-wrapper {
	text-align: center;
	clear: both;
	position: relative;
	width: 100%;
	height: auto;
	min-width: 250px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
}

.inner {
	text-align: left;
}

.inner div {
	position: absolute;
	background: rgba(0, 0, 0, 0.2);
	transition: all 0.3s linear 0s;
	cursor: pointer;
}

.inner div > em {
  color: #fff;
  opacity: 0;
  display: block;
  margin-top: 36px;
  padding: 20px;
  transition: all 0.3s linear 0s;
}
.inner div:hover {
  background-color: #608bb5 !important;
}
.inner div:hover > em {
  opacity: 1;
}

.inner div > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: auto;
  padding: 0 12px;
  height: auto;
  line-height: 32px;
  font-size: 18px;
  background-color: #608bb5;
  color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear 0s;
}
.inner div:hover > span {
  left: 5px;
  top: 15px;
  transform: translate(0, 0);
}

@media (max-width: 992px) {
	.inner {
		display: none;
	}
}