html {
	height: 100%;
}

body {
	margin: 0;
	height: 100%;
	background: #000 url(../img/background.jpg) no-repeat center center / cover fixed;
	color: #fff;
	font-family: Montserrat;
	font-weight: 300;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 1px;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

h1 {
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: 400;
	margin: 0 0 10px 0;
}

p {
	margin-top: 0;
	margin-bottom: 30px;
}

a {
	color: #013662;
	text-decoration: none;
}

a.button {
	display: inline-block;
	background: rgba(255,255,255,0.75);
	padding: 10px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-transform: uppercase;
	text-align: center;
	font-size: 18px;
}

#page {
	width: 90%;
	min-height: 98%;
	padding: 0 10px 50px;
	margin: 0 auto;
	position: relative;
	
}

header {
	position: relative;
	height: 300px;
}

header .logo {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	max-width: 600px;
	bottom: 10%;
	background: url(../img/logo.png) no-repeat center center / contain;
}

header .logo-mobile {
	display: none;
	padding: 40px 0 70px;
}

header .logo-mobile img{
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 80%;
}

section.content {
	width: 100%;
}

footer {
	position: absolute;
	bottom: 0;
	left: 10px;
	font-size: 16px;
	text-transform: uppercase;
}

@media (max-width: 1024px) {
	body {
		font-size: 20px;
		line-height: 26px;
		letter-spacing: 1px;
	}
	
	h1 {
		font-size: 20px;
		line-height: 26px;
	}
	
	header .logo {
		width: 100%;
	}
	
	a.button {
		font-size: 16px;
	}
	
	#page {
		width: 75%;
	}
	
	section.content {
		width: 100%;
	}
	
	footer {
		font-size: 14px;
	}
}

@media (max-width: 580px) {

	#page {
		width: 100%;
		padding: 30px;
	}

	header {
		height: auto;
	}

	header .logo {
		display: none;
	}
	
	header .logo-mobile {
		display: block;
	}
	
	footer {
		left: 30px;
		bottom: 10px;
	}
	
}
