body {
	margin: 0;
	padding: 0;
	color: #4B4B4A;
	font-family: 'Source Sans Pro', sans-serif;
	background-color: #e5e5e5
}

.wrapper {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

.top-bar {
	background-image: url(images/bg_header.png);
}

header .logo {
	height: 120px;
}

header .contact {
	position: absolute;
	right: 10px;
	top: 15px;
	font-size: 38px;
	text-shadow: -1px -1px 1px white, 1px -1px 1px white, 1px 1px 1px white, -1px 1px 1px white;
	text-align: right;
	font-weight: bold;
	display: block;
	width: 100%;
}

header nav {
	background-image: -webkit-linear-gradient(top, #585858, #3d3d3d);
	margin-top: 5px;
}

header nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

header nav li {
	display: inline-block;
	margin-right: -4px;
}

header nav li a {
	display: block;
	padding: 10px;
	padding-right: 15px;
	padding-left: 15px;
	color: white;
	border-right: 1px solid #585858;
}

header nav li a:hover {
	background-image: -webkit-linear-gradient(top, #3d3d3d,#585858);
	color: white;
	text-decoration: none;
}

section {
	background-color: white;
	padding: 20px;
	margin-top: 10px;
}

h1 {
	color: #9e9e9e;
	text-align: center;
	text-shadow: 2px 2px 1px #333;
	font-family: 'Varela Round';
	font-size: 42px;
	margin: 10px;
	margin-bottom: 20px;
}

.testimonial img {
	max-width: 300px;
	display: block;
	margin: auto;
}

img {
	max-width: 100%;
}

.carousel-inner {
	height: 100%;
}

.carousel {
	height: 350px;
}

.carousel .item {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

figure {
	margin-top: 20px;
	position: relative;
	margin-bottom: 20px;
}

figure:hover figcaption {
	padding-top: 50px;
	padding-bottom: 50px;
}

figure img {
	width: 100%;
}

figcaption {
	
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
	background-color: rgba(10,10,10,0.6);
	padding: 15px;
	text-align: center;
	transition: padding .5s;
}

.alert {
	display: none;
	margin-top: 10px;
}

footer {
	margin-top: 10px;
	padding: 25px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(30,30,30,0.8); 
	color: white;
}

footer h2 {
	margin-top: 0;
}

footer nav ul {
	list-style: none;
	padding: 0;
}

footer li {
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
}

footer li a {
	color: inherit;
}

footer .right-side {
	text-align: right;
}

.email-address-large {
	font-size: 24pt;
}

footer .credit {
	text-align: center;
	font-size: 11pt;
}

footer .credit a {
	color: inherit;
}

@media (max-width: 650px) {
	header .contact {
		position: static;
	}

	footer nav li {
		display: block;
	}
}