.category {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -2%;
        padding-top: 15px;
}
.category__item {
	width: 31.2%;
	margin-left: 2%;
	margin-bottom: 15px;
}
.category__item__img {
	position: relative;
	display: block;
	width: 100%;
	height: 150px;
	overflow: hidden;
	margin-bottom: 10px;
	-webkit-transition: all ease 0.8s;
          transition: all ease 0.8s;
}
.category__item__img:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition: all ease 0.8s;
          transition: all ease 0.8s;
}
.category__item__img img {
	width: 110%;
	position: relative;
    left: -15px;
     -webkit-transition: all ease 0.8s;
          transition: all ease 0.8s;
    z-index: 0;
}
.category__item__img:hover img {
	left: 0;
}
.category__item__img:hover:before {
	opacity: 1;
}
.category__item__title {
	font-size: 1rem;
	text-decoration: none;
}
.category__item__desc {
	margin: 0;
	padding: 5px 0;
}

@media screen and (max-width: 768px) {
	.category__item {
		width: 48%;
	}
	.category__item__img img {
		width: 120%;
	}
}
@media screen and (max-width: 480px) {
	.category {
		display: block;
		margin-left: 0;
	}
	.category__item {
		width: 100%;
		margin-left: 0;
	}
	.category__item__img img {
		width: 107%;
	}
}