@charset "UTF-8";
/* CSS Document */
html,
html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #ceb4a3;
	font-family: 'Merriweather', serif;
	font-weight: 100;
}

a {list-style-type: none;}
ul {margin: 0 20px;}
ul li {float: right; list-style-type: none; font-size: 12pt;}

body {
	background-color: #301d0f;
}


/*Header*/

.header {
	background-color: #22493b;
	width: 100%;
	height: 80px;
	color: #fff;
	padding: 10px 0 0 20px;
	font-weight: 100;
}
.header h2 {
	color: #fff;
	width: 400px;
}
.header h5 {
	font-family: 'Merriweather Sans';
	font-size: 8pt;
	text-transform: uppercase; 
	width: 300px;
	letter-spacing: 1px;
}

.logo {
	background-image: url(../images/A&E-logo.png);
	width: 300px;
	height: 64px;
	float: left;
	padding-left: 20px;
}

.header nav {
	font-family: 'Merriweather Sans';
	text-transform: uppercase; 
}
.nav {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	width: auto;
	float: right;
	margin-top: 20px;
}
.nav ul {
	overflow: hidden;
}
.nav ul li a {
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Merriweather Sans';
	padding: 16px;
	height: 35px;
	font-size: 10pt;
}
.nav a:hover {
	background-color: #000;
}

/*Hero*/
.hero {
	width: 100%;
	height: 200px;
	background-image: url(../images/AboutPage-headerImage.jpg);
	background-size: cover;
	padding: 20px;
	text-align: center;
}
.hero h1 {
	font-size: 24pt;
	color: #fff;
	text-shadow: 10px 6px 6px #444;
	padding-top: 70px;
}
.pageHeadline {
	max-width: 800px;
	text-align: center;
	display: block;
	margin: 32px auto;
	padding: 20px 40px 0;
	}

.ourStory {
	display: block;
	margin: 40px auto;
	width: 70%;
}

.storeInterior {
	display: block;
	margin: 20px auto;
	width: 70%;
}
.storeExterior {
	display: block;
	margin: 20px auto 40px;
	width: 70%;
}


/*footer*/

.footer {
	clear: both;
	background-color: #22493b;
	height: 30	0px;
	padding: 20px 32px;
	margin: 0 auto;
	width: 100%;
}
#hours {
	display: block;
	text-align: center;
	font-family: 'Merriweather Sans';
}
.footerPhoneNumber {
	margin: 0 auto;
	display: block;
	max-width: 380px;
	margin-top: 20px;
}
.footerPhoneNumber h1 {
	text-align: center;	
	margin: 0 20px 40px 20px;
	font-size: 42pt;
}
.footerPhoneNumber h3 {
	text-align: left;
	float: left;
}
.footer hr {
	clear: both;
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, #22493b, #ceb4a3, #22493b);
	margin: auto 0;
}
.footer .logo {
	margin-top: -10px;
}
#footerLogo {
	display: block;
	float: left;
	width: 36	0px;
	margin-top: 20px;
}
.footer h2 {
	width: 400px;
	color: #fff;
}
.footer h5 {
	font-family: 'Merriweather Sans';
	font-size: 9pt;
	text-transform: uppercase; 
	width: 400px;
	letter-spacing: 1px;
	display: block;
	margin: 0 auto;
}
.footer nav {
	display: block;
	width: 300px;
	margin: 20px auto 0;
}
.directionBox {
	display: block;
	margin: 20px auto;
	text-align: center;
}
.directionBox h2 {
	width: auto;
}



/* small screens */
@media all and (max-width: 700px) {
	.header{
		height: 120px;
	}
	.nav {
		display: block;
		margin: 0 auto;
		clear: both;
		padding: 0 0 10px;
	}
	.nav ul {
		margin-top: 0px;
	}
	.footer h5 {
		display: block;
		margin: 0 auto;
	}
