html, body {
	height: 100%;
	width: 100%;
}

*, :after, :before {
    box-sizing: border-box;
}

body {
	font-family: Helvetica, Arial, sans-serif; 
	font-weight: 300;
	color: #00003b;
	font-size: 16px;
	line-height: 1.2em;
	background: #ddd;
	margin: 0;
	padding: 0;
}

header {
	background-color: #252525;
	color: whitesmoke;
	padding: 50px 0;
}

.content {
	max-width: 1170px;
	margin: 0 auto;
}

#pagewrap { 
	width: 100%; 
	padding: 0px; 
	margin: 0 auto; 
}

section {
	width: 100%;
	padding: 0;
	margin: 0;
	min-height: 400px;	
}

.container {
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 15px;
	position: relative;
	width: 100%;
}

.container--big {
	height: 175vh;
}
.container--full {
	height: 100vh;
}
.container--small {
	height: 40vh;
}
.container .content {
	background: rgba(0, 0, 0, .75);
	border-radius: 8px;
	color: #fff;
	margin: 0 auto;
	padding: 30px 35px;
	text-align: center;
}

footer {
	background-color: #00003b;
	color: whitesmoke;
	padding: 30px 0;
}

/* Parallax Styles */
.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}

.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;

	/* BG behaviour */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}