@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900);

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

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

body {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 300;
	background: #676767;
}

body, p, h1, h2, h3 {
	margin: 0;
	padding: 0;
}

p, h1, h2 {
	text-shadow: 0 0 5px rgba(0, 0, 0, .6);
	width: 100%;
	margin-top: 20px;
}

h1, h2 {
	font-size: 55px;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1;
}

h1 {
	margin-bottom: 10px;
}

h2 { margin-bottom: 20px; }
h3 { font-size: 2.5em; color: #000; padding: 20px 0px 20px 0px; margin: 0px; }
h4 { font-size: 1.5em; color: #000; padding: 0px; text-align: left; margin: 0px; }
li { color: #000; text-align: left; font-size: 1.2em; line-height: 1.5; font-weight: 500; }

p {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: 0;
	letter-spacing: .02rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
p:last-child {
	margin-bottom: 0;
}
p.p--credits {
	font-size: 14px;
	font-size: .9rem;
}
p strong {
	display: inline-block;
	margin-bottom: 2px;
}
.pB { color: #000; text-align: left; text-shadow: none; }

a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
a.a--no-weight {
	font-style: italic;
	font-weight: 300;
}

.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;
	position: relative;
	width: 100%;
}
.container--big {
	height: 75vh;
}
.container--full {
	height: 60vh;
}
.container--small {
	height: 40vh;
}
.container .content {
	background: rgba(255, 255, 255, .85);
	border-radius: 0px;
	color: #fff;
	margin: 0 auto;
	padding: 0px;
	text-align: center;
	width: 100%;
	height: 100%;
	box-shadow: 0px 6px 6px 2px rgba(0, 0, 0, 0.25);
}

.innerContainer { width: 100%; max-width: 1200px; margin: auto; }
.masterSection { width: 100%; max-width: 600px; margin: auto; vertical-align: middle; }
.leftSection { width: 50%; float: left; }
.rightSection { width: 50%; float: left; }
.leftSection3 { width: 33%; float: left; }
.middleSection3 { width: 33%; float: left; }
.rightSection3 { width: 33%; float: left; }
.leftSection ul li, .rightSection ul li { color: #FFF; }

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	/* can be put in a seperate class for better control */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* --------------------------- */
	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%;
}

.bg1 { background-image: url("https://cdn2.webdamdb.com/v1_1280_2WevqT5ubpY2.png"); }
#bg3 { background-image: url("https://cdn2.webdamdb.com/v1_1280_Qg5WQNB7lEf9.jpg"); }
#bg4 { background-image: url("https://cdn2.webdamdb.com/v1_1280_MrKQ23vNGWH5.jpg"); }
#bg5 { background-image: url("https://cdn2.webdamdb.com/1280_gBR0sZrGFUU5.jpg"); }
#bg6 { background-image: url("https://cdn2.webdamdb.com/v1_1280_AdN2T57S2HO6.jpg"); }
#bg7 { background-image: url("https://cdn2.webdamdb.com/v1_1280_EIYfPo3VRvM5.png"); }

.show-on-mobile--inline {
	display: none;
}

.arrow {
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
	bottom: -64px;
	bottom: -4rem;
	left: calc(50% - 19px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: opacity 250ms ease-in-out;
	width: 38px;
}
.arrow--hide {
	opacity: 0;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}
@media screen and (max-width: 640px) {
	.hide-on-mobile { display: none; }
	.show-on-mobile--inline { display: inline; }
	.leftSection,.leftSection3,.middleSection3,.rightSection3,.rightSection { width: 100%; }
}
