.sections {
	margin: 100px -100px 150px;
}
.sections .section {
	position: relative;
	width: calc(100% / 5);
	transition: width .25s, transform .25s, background .25s, z-index 0s .25s;
	text-align: center;
	border: 1px solid #888;
	z-index: 90;
}

.sections .section h2 {
	font-size: 1.5rem;
	color: #888;
}

.sections .section:nth-child(1) {
	background: #f7f6f6;
	transform: scale(.8);
	border-color: #BEC0C2;
	left: 55px;
	z-index: 80;
}
.sections .section:nth-child(2) {
	background: #EDEAEA;
	transform: scale(.9);
	border-color: #BEC0C2;
	left: 10px;
	z-index: 90;
}
.sections .section:nth-child(3) {
	background: #ffffff;
	transform: scale(1);
	border-color: #EDEAEA;
	z-index: 100;
}
.sections .section:nth-child(4) {
	background: #EDEAEA;
	transform: scale(.9);
	border-color: #BEC0C2;
	left: -10px;
	z-index: 90;
}
.sections .section:nth-child(5) {
	background: #f7f6f6;
	transform: scale(.8);
	border-color: #BEC0C2;
	left: -55px;
	z-index: 80;
}

.sections .section:hover {
	transform: scale(1.05);
	background: #ffffff;
	z-index: 110;
	transition: width .25s, transform .25s, background .25s, z-index 0s 0s;
}

.sections .section:hover h2 {
	color: #0076BD;
}

.latestnews .article_container .article_image {
	width: 100%;
	height: 100%;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.bg-gray {
	background: #F7F7F7;
}