.service {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0 -15px;
}

.service:before {
	content: '';
	display: block;
	padding-bottom: 75%;
}

.service img {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	transform-origin: 0 0;
	
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
}

.service:hover img {
	-moz-transform: scale(1.3) translate(-50%, -50%);
	-webkit-transform: scale(1.3) translate(-50%, -50%);
	transform: scale(1.3) translate(-50%, -50%);
	transform-origin: 0 0;
}

.service figcaption {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	
	font-size: 180%;
	color: #fff;
	
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
	
	text-align: center;
}

.service:hover figcaption {
	margin-top: -40px;
}

.service .hover {
	background: rgba(0,0,0,0.8);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
	
	opacity: 0;
}

.service:hover .hover {
	
	opacity: 1;
}

.service .hover span {
	display: inline-block;
	padding: .5rem 1rem;
	border: 1px solid #fff;
	margin-top: 40%;
	color: #fff;
	
	font-size: 0;
	
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	transition: all 1s;
}
.service:hover .hover span {
	font-size: 120%;
}

/**/

.news {
	background: #f5f5f5;
	padding: 1rem;
	height: 46.9rem;
	margin: 0 -15px;
}

@media (max-width: 1199px) {
	.news {
		height: 45rem;
	}
}

@media (max-width: 991px) {
	.news {
		height: 33.75rem;
	}
}

.news .title {
	border-bottom: 1px solid #eb2123;
	margin-bottom: 1rem;
	margin: 1rem;
}

.news .title h2 {
	float: right;
	background: #eb2123;
	color: #fff;
	padding: .2rem .8rem;
	margin: 0;
	font-size: 1.4rem;
	font-weight: bold;
}

.news .news-marquee {
	height: 60%;
	overflow: hidden;
}

.news .news-marquee a {
	color: inherit;
	display: block;
	padding: 1rem;
}

.news .news-marquee p:last-child {
	margin: 0;
}

.news .news-marquee h3 {
	color: #1f2b5f;
	font-size: 1.2rem;
}

.news .news-marquee a:hover {
	text-decoration: none;
	background: rgba(0,0,0,0.1);
}

.news-toggle {
	background: none;
	border: 0;
	color: #eb2123;
	font-size: 1.2rem;
}

.all-news {
	
	background: #eb2123;
	color: #fff;
	padding: .5rem 1rem;
	font-size: 1.1rem;
	position: absolute;
	bottom: 2rem;
	left: 2rem;
}