/* Table of Contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- General Styling
- Navigation
- Typography
- Buttons
- Media Queries
*/


/* General Styling
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body{
	background: #fff;
	background-image: linear-gradient(to right, rgba(255,255,200,0.3) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,200,0.3) 100%), url(../img/brickwall.png);
}

.row{
	max-width: 80rem;
}

.banner-section{
	background: url(../img/banner-small.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

.body-section{
	padding: 15px 0;
}

.footer-section{
	background: #222 url(../img/broken_noise.png);
	color: #fff;
	padding: 15px 0;
}

.title{
	text-align: center;
}

.title h1{
	font-family: "Cinzel";
	font-size: 30px;
	line-height: 30px;
	padding: 10px 0;
	margin: 0;
}

.title a{
	color: #eb2965;
}

.title a:hover{
	opacity: .75;
}

.logo{
	text-align: center;
}

.logo a:hover{
	opacity: .75;
}

.caption{
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.75);
	border-radius: 4px;
	margin: 50px 0 50px 0;
}

.caption h1{
	color: #fff;
	font-size: 3rem;
	line-height: 1.2;
}

.caption p{
	font-size: 1.25rem;
}

.info{
	text-align: center;
}

.testimonials{
	text-align: center;
}

.body-section img{
	float: right;
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin-left: 20px;
}

.copyright p{
	text-align: center;
	font-size: 0.875rem;
}

.footer-section i{
	margin-right: 5px;
}

.sidebar{
	text-align: center;
}


/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.nav{
	display: none;
}

.tinynav{
	display: block;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body{
	font-family: "Roboto";
	color: #222;
}
  
h1, h2, h3, h4, h5, h6{
	font-family: "Quicksand";
	color: #eb2965;
}

h1{font-size: 3rem;}
h2{font-size: 2.5rem;}
h3{font-size: 2rem;}

p{
	margin-bottom: 0;
}

hr{
	border-top: 1px solid #bada55;
	margin: 10px 0;
}

strong{
	color: #eb2965;
}

blockquote{
	color: #444;
	font-size: 1.2rem;
	border: 0;
}

blockquote cite{
	color: #999;
	font-size: 1rem;
}

blockquote i{
	color: #ccc;
	margin: 0 5px;
}

a{
	color: #1eaedb;
	text-decoration: none;
}

a:hover{
	color: #eb2965;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.av-btn{
	border-radius: 4px;
	color: #ffffff;
	background: #1eaedb linear-gradient(to bottom, #1eaedb, #3498db);
	padding: 15px 30px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.875rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.av-btn:hover {
	color: #ffffff;
	background: #1eaedb linear-gradient(to bottom, #1eaedb, #1eaedb);
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Medium screens, 641px and up */
@media only screen and (min-width: 40.063em) {
	
	/* General Styling */
	.header-section{
		height: auto;
		padding: 10px 0 0 0;
	}
	
	.banner-section{
		background: url(../img/banner-large.jpg) no-repeat center center;
	}
	
	.title h1{
		font-size: 30px;
		line-height: 40px;
		padding: 0;
	}
	
	.caption{
		padding-bottom: 10px;
		margin: 150px 0;
	}
	
	.caption h1{
		color: #fff;
		font-size: 3.5rem;
		line-height: 1.5;
	}

	.caption p{
		font-size: 1.5rem;
	}
	
	.body-section .row{
		padding: 30px 0;
	}
	
	.footer-section .row{
		padding: 30px 0;
	}
	
	/* Navigation */
	.nav{
		display: block;
	}
	
	.tinynav{
		display: none;
	}
	
	.navigation ul{
		list-style: none;
		text-align: center;
		padding: 0;
		margin: 0;
	}

	.navigation ul li{
		display: inline-block;
	}

	.navigation ul li a{
		display: block;
		text-decoration: none;
		text-transform: uppercase;
		color: #999;
		padding: 15px 30px;
	}

	.navigation ul li a:hover{
		color: #222;
	}

	.nav-selected a{
		color: #eb2965 !important;
	}

	/* Sub menus */
	.navigation li ul{
		background: #fff;
		position: absolute;
		display: none;
		padding: 0;
		margin: 0;
	}

	.navigation li:hover ul{
		display: block;
		z-index: 100;
	}

	.navigation li ul li{
		display: block;
		line-height: 30px;
		height: 30px;
	}
}

/* Large screens, 1025px and up */
@media only screen and (min-width: 64.063em) {

	/* General Styling */
	.caption h1{
		color: #fff;
		font-size: 4rem;
	}
}