:root {
	--userWidth: 980px;
	--userHeight: 1028px;

	--navHeightStr: 100px;
	--navHeightInt: 100;
	
	--userWidthStr: 100px;
	--userWidthInt: 100;
}

* {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}


.wrapper {
	width: var(--userWidthStr);
	margin: auto;
}

.nav {
	background-color: #333;
	overflow: hidden;
	position: relative;

	min-height: 100px;
	width: 100%;
	
	margin: auto;
}

.nav a{
  	color: #f1f1f1;
  	text-decoration: none;
  	font-size: 18px;
	
	float: none;
	
	display:inline-block;
	padding: 0 20px;
	margin: 0 -2.7px;
	margin-top: 2.5%;
}

.nav a:hover {
	color: #83DFFF;
}

.nav .icon {
	display: none;
}

@media screen and (max-width: 600px) {
	.nav a:not(:first-child) {display: none;}
	.nav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.nav.responsive {
		position: relative;
		padding-bottom: 18px;
	}
	.nav.responsive a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.nav.responsive a {
		float: none;
		display: block;
		text-align: center;
	}
}



#startBannerDiv {
	margin: 0 auto;
	position: relative;
	
	height: 650px;
	width: 100%;

}

#startBanner {
	height: 650px;
	width: 100%;

}

#startBannerHeading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	background: rgba(0, 0, 0, 0.5);
	color: #f1f1f1;
	width: 100%;
}

#startBannerHeading h1 {
	font-size: 60px;
}

#startBannerHeading p {
	font-size: 25px;
}