.list-gallery {
  width: 100%;
}

.gallery-list {
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-flow: wrap;
	justify-content: center;
}
.gallery-list a:hover {
	text-decoration: none;
}

.gallery-list a {
	width: 24%;
	height: 240px;
	margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
	.gallery-list a {
		width: 46%
	}
}


.gallery-list .gallery-item {
	/* width: 400px;
	height: 240px; */
	width: 100%;
	height: 100%;
	margin: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}


.gallery-list .gallery-item .gallery-item-mask {
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	display: flex;
	transition: linear all 0.3s;
	position: absolute;
	bottom: 0;
	left: 0;
}

.gallery-list .gallery-item:hover .gallery-item-mask {
	height: 45px;
}


.gallery-list .gallery-item .gallery-item-mask h5 {
	color: white;
	height: 45px;
	line-height: 45px;
	font-size: 20px;
	font-weight: 100;
	text-align: center;
}

.newsCont {
	background: white;
}

.newsCont .container {
	width: 100%;
}