.gallery-item-filter {
	margin-bottom: 50px;
	text-align: center;
}

.gallery-item-filter .tab {
	display: inline-block;
	line-height: 28px;
	padding: 10px 20px;
	background-color: #eee;
	color: #444;
	font-size: 14px;
	cursor: pointer;
    transition: 200ms;
    margin-right: 30px;
    margin-top: 50px;
}

.gallery-item-filter .tab:hover {
	background-color: #FF5316;
    color: #fff;
}

.gallery-item-filter .tab.active {
	background-color: #FF5316;
	color: #fff;
}

.gallery-masonry {
	margin: -15px;
	*overflow: hidden;
}

.gallery-masonry .item {
	width: 33.3333%;
	padding: 15px;
	display: block;
}

.gallery-masonry img {
	width: 100%;
	height: auto;
	display: block;
	background-color: #fff;
	backface-visibility: hidden;
	transition: 200ms;
}

.gallery-masonry a:hover img {
	border-radius: 0;
	opacity: 0.85;
}

@media (max-width: 768px) {
	.gallery-masonry .item {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.gallery-masonry .item {
		width: 100%;
	}
}