/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* *::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
} */

body {
	background-repeat: repeat-x;
	background-attachment: fixed;
	background-position: center bottom;
	background-color: #31415a;
	background-image: url('../img/1280.png');
	min-width: 320px;
}

#container {
	height: 100%;
	margin: 0 auto;
	text-align: center;
	//background: rgba(0,0,0,0.3);
}

@media screen and (max-width: 759px) {
	#container {
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	#container {
		width: 768px;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	#container {
		width: 992px;
	}
}

@media screen and (min-width: 1200px) {
	#container {
		width: 1200px;
	}
}

#banner {
	width: 100%;
	height: 25%;
	margin-bottom: 20px;
	min-height: 180px;
	background-repeat: no-repeat;
	background-position: center top;
}

@media screen and (max-width: 767px) {
	#banner {
		background-size: 100%;
		min-height: 250px;
		background-position: center center;
		background-image: url('../img/banner3.jpg');
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	#banner {
		background-size: 768px 100%;
		max-height: 240px;
		background-image: url('../img/banner2.jpg');
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	#banner {
		background-size: 992px 100%;
		min-height: 180px;
		max-height: 240px;
		background-image: url('../img/banner2.jpg');
	}
}

@media screen and (min-width: 1200px) {
	#banner {
		margin-top: -47px;
		background-size: 100% 100%;
		min-height: 210px;
		max-height: 220px;
		background-image: url('../img/banner.png');
	}
}

#banner-xs {
	width: 100%;
	margin-bottom: 20px;
}

#video {
	margin: 0 auto;
	display: block;
	width: auto;
	max-width: 100%;
	height: 56%;
	background-color: #212c4a;
}

@media screen and (max-width: 767px) {
	#video {
		width: 100%;
		height: 55%;
	}
}

#terms {
	display: inline-block;
	background-color: #4a5b77;
	margin-top: 20px;
	color: white;
	font-family: Verdana;
	font-size: 15px;
	
	padding: 10px 60px;
	margin-bottom: 20px;
}

#terms a {
	color: #212c4a;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	#terms {
		width: 100%;
		padding: 10px 0;
	}
}

.visible-xs {
	display: none;
}

.hidden-xs {
	dislay: block;
}

@media screen and (max-width: 767px) {
	.visible-xs {
		display: block;
	}

	.hidden-xs {
		display: none;
	}
}

#form {
	display: none;
}