@charset "UTF-8";
/* CSS Document */

.video-player {
	z-index: 1;
}

.video-player video {
	background-color: #000;
}

.video-block {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
}

.video-text {
	width: 640px;
	margin: 150px auto 0;
	text-shadow: 0px 0px 4px #000;
}

.video-text h1 {
	font-size: 40px;
	color: #fff;
	text-align: center;
}

.video-text p {
	font-size: 25px;
	color: #ddd;
	text-align: center;
	display: inline-block;
}

.video-buttons-container {
	width: 100%;
	margin: 0;
}

.video-buttons {
	width: 500px;
	margin: 16px auto 0;
	text-shadow: none;
}

.video-buttons a {
	display: block;
	padding: 14px;
	margin: 4px;
	font-size: 18px;
	color: #fff;
	border: 0;
	border-radius: 9px;
}

.video-buttons a.left {
	background-color: rgba(255,129,0,0.90);
	float: left;
}

	.video-buttons a.left:hover {
	background-color: #D16A00;
	}
	
.video-buttons a.right {
	background-color: rgba(68,68,68,0.90);
	float: right;
}

	.video-buttons a.right:hover {
		background-color: #222;
	}
	
@media screen and (max-width:999px) {
	
	.video-player video {
		display: none;
	}
	
	.video-poster {
		background-image: url(/images/Web_Video.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		width: 100%;
		height: 450px;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	
	.video-text {
		width: 80%;
		margin: 100px auto 0;
	}
	
	.video-text h1 {
		font-size: 25px;
	}
	
	.video-text p {
		font-size: 18px;
	}
	
	.video-buttons {
		width: 100%;
		margin: 16px auto 0;
		text-align: center;
	}
	
	.video-buttons a {
		padding: 14px;
		font-size: 18px;
	}
	
	.video-buttons a.left {
		float: none;
	}
	
	.video-buttons a.right {
		float: none;
	}
}