html {
	height: 100%;
}

body {
	background: #005CB9 url(../img/logo_bg.png) no-repeat scroll center center;
	height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
}

a {
	color: white;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	text-decoration: none;
}

a:hover {
	color: black;
}

p {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
}

p.contact {
	font-size: 24px;
	margin-top: 55px;
	font-weight: 300;
}

.logo {
	margin-bottom: 42px;
	width: 550px;
}

.content {
	width: auto;
	margin: 0 auto;
	max-width: 550px;
	text-align: center;
	padding: 0 20px;
}

footer {
	position: absolute;
	bottom: 32px;
	width: 100%;
	text-align: center;
}

footer a {
	color: #003972;
	font-size: 14px;
	letter-spacing: 6px;
	text-transform: uppercase;
}

footer a:hover {
	color: white;
}


@media (max-width: 768px) {

	body {
		background-size: auto 80%;
	}

	.logo {
		width: auto;
	}

	.contact span {
		display: block;
		opacity: 0;
		height: 10px;
	}

}