@charset "UTF-8";
/* CSS Document */


* {
	box-sizing: border-box;
	margin: 0;
}

body, html {
	color: #2c2c2c;
	text-align: center;
	font-family: open-sans, sans-serif;
	font-weight: 400;
	min-height: 100%;
}

.heroTextParent {
	color: white;
	height: 400px;
	width: 810px;
	margin: auto;
	display: table;
}

#heroTextChild {
	display: table-cell;
	vertical-align: middle;
}

.heroTextParent h1 {
	font-family: interstate-compressed, Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-weight: 700;
	font-size: 90px;
	letter-spacing: 3px;
}

.heroTextParent h2 {
	font-weight: 400;
	font-size: 35px;
}

.heroTextParent h3 {
	font-weight: 600;
	font-size: 35px;
}

.heroImage {
	background-image: url("images/hero.jpg");
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	background-color: #2986a7;
}

.main {
	width: 810px;
	margin: auto;
	overflow: hidden;
	padding-bottom: 100px;
	position: relative;
	top: -144px;
}

#title {
	background-color: #f0f0f0;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-family: interstate-compressed, Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
	font-weight: 700;
	font-size: 30px;
	letter-spacing: 2px;
	color: #2986a7;
}

.description {
	width: 250px;
	height: 460px;
	float: left;
	background-color: white;
	box-shadow: 7px 7px 25px 4px rgba(0, 0, 0, 0.2); 
}

.description p {
	text-align: left;
	margin-right: 30px;
	margin-left: 30px;
}

.demo {
	width: 250px;
	float: left;
	box-shadow: 7px 7px 25px 4px rgba(0, 0, 0, 0.2); 
	margin: 0px 30px 0px 30px;
	padding-bottom: 40px;
	font-weight: 800;
	background-color: white;
}

audio {
	width: 80%;
	margin: 5px 0px 10px 0px
}

.contact {
	width: 250px;
	height: 460px;
	float: left;
	font-weight: 600;
	background-color: white;
	box-shadow: 7px 7px 25px 4px rgba(0, 0, 0, 0.2); 
}

.footer {
	height: 80px;
	width: 100%;
	background-color: #64a0ba;
	padding-top: 15px;
	position: fixed;
	bottom: 0;
}


@media only screen and (max-width:900px){
	
	.heroTextParent {
		width: 80%;
	}
	
	.main {
		width: auto;
	}
	
	.description {
		float: none;
		margin: auto;
		padding-bottom: 50px;
		width: 80%;
		height: auto;
	}
	
	.demo {
		float: none;
		margin: auto;
		margin-top: 50px;
		width: 80%;
	}
	audio {
		margin: 15px 0px 25px 0px;
	}
	
	.contact {
		float: none;
		margin: auto;
		margin-top: 50px;
		width: 80%;
		height: auto;
		padding-bottom: 50px;
	}

}

@media only screen and (max-width:500px){
	
	.heroImage {
		height: 300px;
	}
	
	.heroTextParent {
		height: 300px;
	}
	
	.heroTextParent h1 {
		font-size: 50px;
	}
	
	.heroTextParent h2{
		font-size: 20px;
	}
	
	.heroTextParent h3{
		font-size: 20px;
	}
	
	.main {
		position: static;
		padding-top: 50px;
		margin-bottom:  150px;
	}
	
	.main h3 {
		font-size: 30px;
	}
	
	#title {
		font-size: 30px;
	}

}