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

* {
	box-sizing: border-box;
}

body, html {
	font-family: Helvetica, "Myriad Pro", "DejaVu Sans Condensed", Arial, "sans-serif";
	margin: 0;
}

.header-parent {
	height: 150px;
	width: 700px;
	margin: auto;
	display: table;
	font-size: 40px;
	color: #8b2722;
	text-align: center;
}

.header-child {
	display: table-cell;
	vertical-align: middle;
}

.hero {
	background-image: url("images/hero.png");
    height: 470px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	padding-top: 75px;
}


.hero-text {
	width: 700px;
	margin:auto;
	color: white;
}

.hero-text h1 {
	letter-spacing: 2.5px;
	font-size: 24px;
	margin-bottom: 25px;
}

.description {
	border-left: thick solid white;
	padding-left: 25px;
	width: 420px;
	line-height: 28px;
	font-weight: 100;
	letter-spacing: .5px;
}

#main {
	width: 700px;
	margin: auto;
	text-align: center;
}

#main h3{
	color: #8b2722;
	letter-spacing: 2px;
	font-size: 24px;
	margin-bottom: 35px;
}

#tagline{
	text-align: center;
	font-size: 26px;
	color: #8b2722;
	letter-spacing: 1px;
	font-style: italic;
	font-weight: 100;
	padding-top: 100px;
}

.audio{
	margin-top: 100px;
}

.audio audio {
	margin-bottom: 20px;
}

.contact{
	margin-top: 80px;
	margin-bottom: 150px;
}

.footer{
	width: 100%;
	height: 100px;
	padding-top: 25px;
	background-color: #8b2722;
}

.vc{
	width: 55px;
	margin: auto;
}

@media only screen and (max-width:800px){
	
	.header-parent {
		width: 85%;
		font-size: 34px;
	}
	
	.hero {
		background-image: url("images/bg_mobile.png");
		padding: 40px 0px 80px;
		height: auto;
		overflow: hidden;
	}
	.hero-text {
		width: 85%;
	}
	.hero-text h1 {
		text-align: center;
		font-size: 20px;
	}
	.description {
		margin: auto;
		width: inherit;
		font-size: 12px;
		border-left: none;
		padding-left: 0px;
		text-align: center;
	}
	#main {
		width: 85%;
	}
	#main h3 {
		font-size: 20px;
	}
	#main h4 {
		font-size: 14px;
	}
	#tagline {
		font-size: 18px;
	}
}

@media only screen and (max-width:400px){
	.header-parent {
		font-size: 25px;
	}
	.hero-text h1 {
		font-size: 16px;
	}
	#main h4 {
		font-size: 12px;
	}
	.description {
		font-size: 12px;
		width: 100%;
	}
	#main h3 {
		font-size: 16px;
	}
	#tagline{
		padding-top: 75px;
	}
	.audio {
		margin-top: 75px;
	}
	.audio audio {
		width: 100%;
	}
	.contact {
		margin: 55px 0px 100px 0px;
	}

}