.cover {
	height: 100vh;
	position: relative;
	background: #1d99d9;
}

.cover-slick {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}

.cover-slick div {
	height: 100%;
	background-size: cover;
	background-position: center;
}

.cover-content {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	z-index: 99;
	text-align: center;
	
	max-width: 600px;
	margin-top: -60px;
}

.cover-content h1 {
	margin-bottom: 1rem;
}

.cover-content h1 > span {
	background: rgba(3,25,48,.9);
	color: #fff;
}

.cover-content h1 > span > span {
	color: #fffc00;
}

.cover-content p {
	margin: 0;
}

.cover-content .text {
	background: rgba(204,211,223,.8);
	padding: 1rem;
	color: #333;
	display: inline-block;
}

/**/

video {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	background-size: cover;
	transition: 1s opacity;
	opacity: .05;
}

/**/

.services {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
}

.services-slick {
	padding: .5rem 1rem;
	margin: 0 1rem;
}

.service {
	text-align: center;
	display: block;
	background: #fff;
	margin: 1rem;
}

.service .icon {
	padding: 1rem;
}

.service .icon img {
	display: block;
	margin: 0 auto;
}

.service figcaption {
	background: #f1f1f1;
	border-top: 2px solid #ffffff;
	padding: .75rem;
	color: #1d99d9;
	
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.service:hover {
	text-decoration: none;
	color: #000;
}

.service:hover figcaption {
	background: #fff;
	color: #000;
}


/**/

.articles {
	background: url(images/articles.jpg);
	background-size: cover;
	color: #fff;
	padding: 3rem 2rem;
}

.articles article {
	background: rgba(255,255,255,0.1);
	display: block;
	margin: 1rem;
}

@media (max-width: 991px) {
	.articles article {
		margin: 1rem 0;
	}
}

.articles article:hover {
	background: rgba(255,255,255,0.15);
}

.articles article a {
	display: block;
	color: inherit;
}

.articles article a:hover, .articles article a:focus {
	text-decoration: none;
}

.articles article img {
	display: block;
	width: 100%;
}

.articles article figcaption {
	padding: 1rem;
}

.articles article h3 {
	color: #fffc00;
}

/**/

.contact {
	margin: 0 -15px;
	padding: 2rem;
	
	color: #fff;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#005a7d+0,05305d+100 */
	background: rgb(0,90,125); /* Old browsers */
	background: -moz-linear-gradient(45deg, rgba(0,90,125,1) 0%, rgba(5,48,93,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(0,90,125,1) 0%,rgba(5,48,93,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(0,90,125,1) 0%,rgba(5,48,93,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005a7d', endColorstr='#05305d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

@media (min-width: 992px) {
	
	.contact {
		padding: 5rem;
	}
	.contact-container {
		max-width: 400px;
		margin: 0 auto;
	}
}
.contact h2 {
	color: #fffc00;
	text-align: center;
	margin-bottom: 2rem;
}

.contact .form-control {
	background: rgba(255,255,255,0.07);
	border-radius: 0;
	border: 0;
}

.contact .form-control:focus {
	box-shadow: 0 0 0 0.2rem rgba(255,255,0,.25);
}

.contact button {
	background: #fffc00;
	color: #000;
	border-radius: 0;
	border: 0;
}

.contact-bg {
	background: url(images/contact.jpg);
	background-position: center;
	background-size: cover;
}

@media (max-width: 991px) {
	.contact-bg {
		height: 400px;
	}
}