html {
	overflow-y: scroll; 
}

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

.main-page {
	background-image: url(../imgs/hero-splash2.jpg);
	font-family: 'Muli', sans-serif !important;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: black;
}

.other-page {
	background-color: black;
}

.sitelink a {
	color: #fff;
	text-decoration: underline;
}

/*menu*/
.menu-top {
	background-color: black;
	color: white;
	min-height: 50px;
	display: inline;
}

.mobile-nav {
	display: none;
}

li a {
	color: white;
}

.lead-text {
	padding-top: 10px;
}

.lead-text h1, .lead-text h2 {
	display: inline;
}

.lead-text h2 {
	padding-left: 10px;
}

.home, .about {
	margin-top: 20%;
	width: 100%;
	position: absolute;
}

.home-content, .about-content, .demo-content {
	text-align: center;
	color: white;
	width: 50%;
	background-color: black;
	padding: 20px 20px;
}
.gallery {
	margin-top: 80px;
	width: 100%;
	position: absolute;
}

.demo-reel {
	margin-top: 80px;
	width: 100%;
	position: absolute;
}

.demo-content {
	position: relative;
	width: 70%;
}

.demo-content .close-btn {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	padding: 15px;
}

.demo-content .close-btn:hover {
	cursor: pointer;
	text-decoration: underline;
}

.gallery-content {
	text-align: center;
	color: white;
	width: 70%;
	background-color: black;
	padding: 20px 20px;
}

#photogallery a {
	padding: 5px;
	display: inline-block;
}

.home-content .btn-section {
	padding-top: 20px;
}

.home-content i {
	display: block;
	font-size: 30px;
}

.contact {
	margin-top: 15%;
	width: 100%;
	position: absolute;
}
.contact-content {
	color: white;
	width: 50%;
	background-color: black;
	padding: 20px 20px;
}

.link-btn {
	background-color: white;
	width: 200px;
	height: 80px;
	color: black;
	text-decoration: none;
}

.link-btn:hover {
	background-color: orange;
	text-decoration: none;
	color: white;
}

.hide-info {
	display: none;
}

.resume {
	margin-top: 60px;
	width: 100%;
	position: absolute;
}

.resume-content {
	color: white;
	width: 80%;
	background-color: black;
	padding: 20px 20px;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*overides*/

.progress {
	border-radius: 0;
	height: 10px;
	width: 60%;
	background-color: rgba(255,255,255,.2);
}

/*media queries*/
@media only screen and (max-width: 768px) {
	.menu-top {
		display: none;
	}

	.mobile-nav {
		display: block;
		position: absolute;
		padding-top: 10px;
		width: 100%;
		background-color: black;
		color: white;
	}

	.mobile-nav .mobile-icons li {
		display: inline;
		padding: 20px;
	}

	.home-content, .resume-content, .about-content, .contact-content {
		width: 80%;
	}
	.gallery, .demo-reel {
		margin-top: 15%;
	}
	.gallery-content, .demo-content {
		width: 100%;
	}
}

@media only screen and (max-width: 992px) {
	.lead-text h2 {
		display: none;
	}
}