body, html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

#home-hero-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 600px;
	background: url('../assets/homebg.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin-bottom: 100px;
	z-index: 0;
	text-align: center;
}

#home-hero {
	position: absolute;
	width: 100%;
	height: 100%;
	min-height: 600px;
	z-index: 1;
	background-color: rgba(23, 173, 173, 0.75);
}

#home-logo {
	width: 30px;
	height: auto;
	position: absolute;
	top: 75px;
	left: calc(50% - 15px);
}

#home-text-wrap {
	width: 75%;
	max-width: 500px;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
	position: relative;
	top: 37.5%;
}

p.big-center {
	font-size: 25px;
	line-height: 37px;
	font-family: 'Work Sans', sans-serif;
	color: #000;
	font-weight: 300;
	letter-spacing: -0.25px;
}

a.home-link {
	color: #000;
	font-weight: 300;
	border-bottom: 2px solid rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	cursor: pointer;
}

a.home-link:hover {
	color: rgba(0, 0, 0, 0.7);
	transition: all 0.3s ease;
}

#home-hero:after {
	content: url(../assets/scroll.svg);
	display: block;
	margin: 0 auto;
	position: absolute;
	top: calc(100% - 60px);
	left: calc(50% - 60px);
	width: 120px;
	height: 64px;
}


@media screen and (max-width: 600px) {
	
	#home-hero-wrap {
		background: url('../assets/homebg-mobile.jpg');
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		height: 450px;
		min-height: 450px;
		margin-bottom: 60px;
	}
	
	#home-hero {
		height: 450px;
		min-height: 450px;
	}
	
	#home-logo {
		width: 30px;
		height: auto;
		position: absolute;
		top: 40px;
		left: calc(50% - 15px);
	}
	
	#home-text-wrap {
		width: 85%;
		max-width: 450px;
		top: 40%;
	}
	
	p.big-center {
		font-size: 21px;
		line-height: 30px;
	}
}

@media screen and (max-width: 400px) {
	
	#home-text-wrap {
		top: 38%;
	}
	
	p.big-center {
		font-size: 18px;
		line-height: 26px;
		font-weight: 400;
	}
	
	a.home-link {
		font-weight: 400;
	}
	
	#home-hero:after {
		content: url(../assets/scroll.svg);
		display: block;
		margin: 0 auto;
		position: absolute;
		top: calc(100% - 50px);
		left: calc(50% - 50px);
		width: 100px;
		height: 53px;
	}
}





