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

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

body, html {
	color: #0d0d0d;
	min-height: 100%;
	font-family: century-gothic, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.backgroundImage {
	width: 100%;
	height: 650px;
	background-image: url("images/background_image.png");
	background-position: center;
	background-size: cover;
}

.header {
	width: 700px;
	margin: auto;
	position: relative;
	top: -275px;
}

.header h1 {
	color: #3c106e;
	font-size: 58px;
	letter-spacing: 3px;
}

.header h2 {
	font-weight: 100;
	font-size: 38px;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.header h3 {
	font-style: italic;
	font-weight: 300;
	font-size: 26px;
}

.main {
	width: 700px;
	margin: auto;
	position: relative;
	top: -200px;
	overflow: hidden;
}

.main h3 {
	color: #3c106e;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.main p {
	font-weight: 500;
	line-height: 25px;
}

.description {
	width: 350px;
	margin-right: 50px;
	padding-bottom: 50px;
	float: left;
}

.demo {
	line-height: 30px;
	float: right;
}

audio {
	margin: 5px 0px 15px 0px;
}

.contact {
	clear: left;
}

.phoneIcon {
	float: left;
}

.emailIcon {
	float: left;
}

.contact h4{
	padding-top: 5px;
	margin-left: 50px;
}

.vcLogo {
	width: 50px;
	margin: auto;
}

.bottomBar {
	width: 100%;
	height: 30px;
	margin-top: 10px;
	background: linear-gradient(to right, #3c106e, #d100f0);
	overflow: hidden;
}


@media only screen and (max-width:800px){
	
	.backgroundImage {
		height: 400px;
	}
	
	.header {
		width: 80%;
		top: -70px;
		text-align: center;
	}
	
	.main {
		width: 80%;
		text-align: center;
		top: 0px;
	}
	
	.description {
		float: none;
		width: 80%;
		margin: auto;
	}
	
	.demo {
		padding-bottom: 50px;
		float: none;
	}
	
	audio {
		width: 100%;
	}
	
	.phoneIcon, .emailIcon {
		float: none;
	}
	
	.contact {
		padding-bottom: 100px;
	}
	
	.contact h4 {
		margin-left: 0px;
	}
}

@media only screen and (max-width: 550px){
	
	.backgroundImage {
		height: 200px;
	}
	
	.header {
		top: -20px;
	}
	
	.header h1 {
		font-size: 40px;
	}
	
	.header h2 {
		font-size: 25px;
	}
	
	.header h3 {
		font-size: 20px;
	}
	
	.main {
		top: 50px;
		padding-bottom: 100px;
	}
	
	.description p {
		font-size: 12px;
		line-height: 20px;
	}
	
}