/* =============================================== *\
	HTML5 VIDEO BACKGROUND
	This is the important part
	It can be used for a 'hero' section or a
	full-screen background
\* =============================================== */
/* This first class is not necessary for full-screen backgrounds */
.video-hero {
	position: relative;
	overflow: hidden;
}
.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    	background-size: cover;
}
.video-bg video {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    	transform: translate(-50%,-50%);
}
	/**
	 * For full-screen video backgrounds, add the
	 * .video-bg--fullscreen class to .video-bg div
	 */
	.video-bg--fullscreen {
		position: fixed;
	}
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	pointer-events: none; /* Allows right click menu on the video */
	background: rgba(0,0,0,0.5); /* You can play with the opacity */
}
/**
 * This part should be set separately for each video
 * if there are multiple videos in your site.
 * I.e. '.demo-video' is the name of the video
 */
/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */
.js .video-bg video {
	opacity: 0;
	-webkit-transition: opacity .8s linear;
	   -moz-transition: opacity .8s linear;
	    	transition: opacity .8s linear;
}
.js .video-bg video.is-playing {
	opacity: 1;
}

/* =============================================== *\
	HTML5 VIDEO HERO
	You don't need to copy this, but you might
	draw some inspiration from it
\* =============================================== */
.video-hero {
	height: 480px; /* Feel free to set a height in your own way */
}
.video-hero--content {
	position: relative;
	text-align: center;
	margin-top: 190px;
	color: #FFF;
	text-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.gradient {
    /*background-image:url('http://getrenui.com/images/brokenaxe.jpg');*/
	background: rgba(0,152,240,1);
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,152,240,1) 0%, rgba(3,109,166,1) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0,152,240,1)), color-stop(100%, rgba(3,109,166,1)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,152,240,1) 0%, rgba(3,109,166,1) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(0,152,240,1) 0%, rgba(3,109,166,1) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(0,152,240,1) 0%, rgba(3,109,166,1) 100%);
	background: radial-gradient(ellipse at center, rgba(0,152,240,1) 0%, rgba(3,109,166,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0098f0', endColorstr='#036da6', GradientType=1 );

}
@media only screen 
and (min-width : 20px)
and (max-width : 767px)
{
	.spacer-x3 {
		padding: 60px 0;
	}
	.phone-width-f {
		width: 90% !important;
	}
	.width-70p {
		width: 60% !important;
	}
}
