/*
 Table Of Contents
 
 1.) Eric Meyer's Global CSS Reset
 2.) Global Typography
 3.) Custom Style
==================================================*/

/*=================================================
 1.) Eric Meyer's Global CSS Reset
==================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '/';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
address {
	font-style:normal;
}
img, iframe, object {
	max-width:100%;
}
img {
	height:auto;
}
*, *:after, *:before {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*=================================================
2.) Global Styles
==================================================*/
html, body {
	font-family: 'Roboto', sans-serif;
	font-size:15px;
	line-height: 25px;
	color:#fff;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	text-align:center;
	height:100%;
}
::selection {
 color: #fff;
 background: #000
}
::-webkit-selection {
 color: #fff;
 background: #000
}
::-moz-selection {
 color: #fff;
 background: #000
}
a {
	text-decoration:none;
	transition: all ease-in 0.5s;
	-webkit-transition: all ease-in 0.5s;
}
h1, input, .primary-content p {
	font-family:'Roboto', sans-serif;
}
h1, h2 {
	font-weight:300;
}
h2 {
	font-family: 'Roboto', sans-serif;
	font-size:30px
}
input {
	background-color:transparent;
	border:none;
	font-size:20px;
	line-height:1;
	font-weight:300;
	color:#000;
	display:inline-block;
	padding:0px 10px;
	display:block;
	float:left;
}
input[type="text"] {
	width:80%;
	text-align:left;
}
input[type="submit"] {
	text-transform:uppercase;
	width:20%;
	text-align:right;
}
form > div {
	width:90%;
	margin:0 auto;
	background-color:#fff;
	border-radius:5px;
	box-shadow:1px 1px 4px #333;
	height:42px;
	padding:11px 0px;
}
video {
	background: url(../video/christmas_snow.jpg) center top no-repeat;
	background-size: cover;
	bottom: 0;
	height: auto;
	min-height: 100%;
	min-width: 100%;
	position: fixed;
	right: 0;
	width: auto;
	z-index: -100;
}
/*=================================================
3.) Custom Style
==================================================*/
#visible-xs {
	background:none;
}
#wrapper {
	min-height:100%;
	padding-bottom:72px;
}
#wrapper > div {
	max-width:630px;
	width:100%;
	margin:0px auto;
	padding-top:36px;
}
.primary-content p {
	font-size:20px;
	line-height:30px;
	font-weight:300;
	padding:30px 0px;
}
.secondry-content {
	margin-top:72px;
}
.secondry-content .fa {
	font-size:72px;
}
.secondry-content p {
	padding:12px 0px;
	margin: 0 20px;
}
footer {
	height:72px;
	margin-top:-72px;
}
footer .fa {
	font-size:27px;
}
footer span {
	display:block;
}
.flexslider {
	overflow:hidden
}
a { color:#FFF;}

@media all and (min-width:768px) {
	 .secondry-content p {
		 padding:12px 72px;
	 }
	 input[type="text"] {
		 width:80%;
	 }
	 #visible-xs {
	 	display:none;
	 }
}
@media all and (max-device-height:640px) {
	 #wrapper {
		 margin-bottom:0px;
	 }
	 footer {
		 margin-top:0px;
	 }
}
@media all and (max-width:767px) {
	 video source {
		 display:none;
	 }
	 #visible-xs {
		 background:url(../video/fbn.jpg) center center no-repeat;
		 background-size: cover;
		 position:fixed;
		 left:0px;
		 right:0px;
		 top:0px;
		 bottom:-72px;
		 z-index:-1
	 }
}
