 /*Transitions Animations*/

a, h1, h2, h3, p  {
     -moz-transition: all .2s ease-in;
     -webkit-transition: all .2s ease-in;
     transition: all .2s ease-in;
}


body {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background-color: #000;
	background: url(../_img/BG.jpg) no-repeat center center fixed; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
  	padding-top: 100px;
}

body.home {
	color:#fff;
}
h1, h2, h3 {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px #000;
}

.hero-unit {
	background-color: rgba(0, 0, 0, 0.85);
	box-shadow: 0px 0px 20px #000;
	border-radius: 15px;
}

/* Form Styles */

label {
	font-size: 2em;

}

input, textarea {
	width: 96%;
}
select {
	width: 100%;
}
textarea {
	height: 75px;
}

.formThanks {
	display: none;
}

/*Media Queries*/
@media screen and (max-width: 1200px) { 
	.hero-unit {
		padding:30px;
	}
}

@media screen and (max-width: 724px) { 
	.hero-unit {
		padding:20px;
	}
}
@media screen and (max-width: 480px) { 
	body {
		padding:0px;
		margin: 0px;
	}
	.hero-unit {
		width:100%;
		padding:0px;
		padding-bottom: 15px;
	}
	.container {
		width:100%;
		margin: 0px;
		padding: 0px;
	}
	.thumb {
		border-radius: 0px;
	}
	h1, h2, h3, p {
		margin: 15px;
	}
	.hero-unit h1 {
		font-size: 54px;
	}
	p {
		font-size: 18px;
	}
	.btn.btn-navbar{
		margin-right: 25px;
	}
	.navbar .brand {
		padding-left: 35px;
	}
	input, textarea {
	width: 82%;
	margin-left:20px;
	}
	select {
	width: 85%;
	margin-left:20px;
	}	
}









