﻿/* =============================================== *\
	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-hero nome1{
	font-family: 'Roboto', sans-serif;
	font-family: 'Titillium Web', sans-serif;
	font-weight: lighter;
	list-style: none;
	font-size: 1.8em;
	display: inline;
	display: inline-block;
	padding-left: 40px;
	color: #FFF;
	float:left;
	/*background-image: url('image/squarearrow.png');
	background-repeat: no-repeat;
	background-position: left;
	margin-bottom: 10;
	margin-top: 10;*/
	
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	padding:30px;
	max-width:40%;
	width:150;
	height:26;
	border-color: #888;
	border-style: solid;
	border-width: 1;
	color: #F1F2F4;
	
	/*CENTRALIZA NA VERTICAL E HORIZONTAL*/
	
	display: table;	
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;	
	-ms-align-items: center;
	-webkit-align-items: center;	
	-ms-justify-content: center;
	-webkit-justify-content: center;	
	align-items: center;
	justify-content: center;
	



}
.video-hero nome2{
	font-family: 'Roboto', sans-serif;
	font-family: 'Titillium Web', sans-serif;
	font-weight: lighter;
	list-style: none;
	font-size: 2.8em;
	display: inline;
	display: inline-block;
	padding-right: 40px;
	color: #FFF;
	/*background-image: url('image/squarearror.png');
	background-repeat: no-repeat;
	background-position: right;
	margin-bottom: 10;
	margin-top: 10;*/
}


.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
 */
.video-bg.demo-video {
	background-image: url(files/carro.jpg);
}
/**
 * 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: 600px; /* Feel free to set a height in your own way */
}
.video-hero--content {
	position: relative;
	text-align: center;
	margin-top: 10%;
	color: #FFF;
	text-shadow: 0 0 5px rgba(0,0,0,0.4);
}

/* =============================================== *\
	OTHER STUFF - no need to copy this
\* =============================================== */
html,
body {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #666;
}
a {
	text-decoration: none;
	color: #a46497;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.page-width {
	width: 100%; /*92%;*/
	max-width: 100%;/*960px;*/
	margin: 0 auto;
}
#container {
	width: 100%; /*960px;*/
	margin: 100px auto;
	background: rgba(255,255,255,0.6);
	position: relative;
	z-index: 1;
}
#header {
	background: #2c2d33;
	padding: 2em 0;
}
#header a {
	color: #FFF;
}
.title {
	display: block;
	font-weight: bold;
	font-size: 18px;
}
.subtitle {
	display: block;
	font-weight: normal;
	font-size: 15px;
	color: #959699;
}
a:hover .subtitle {
	color: #FFF;
}
#site-title {
	float: left;
	margin: 0;
}
#menu {
	float: right;
	list-style: none;
	margin: 0;
	padding: 0;
}
#menu li {
	margin: 0;
	padding: 0 15px;
	display: inline-block;
}
.video-hero--content h2 {	
	font-size: 44px;
	margin: 0 0 10px;
	color:#E70001;
}
.video-hero--content p {
	font-family: 'Open Sans Condensed',Trebuchet MS,Tahoma,Arial,Verdana, sans-serif;
	font-size: 19px;
	font-weight: 100;
	font-size: 20px;
	margin: 0;
}
#content {
	padding: 40px 0;
}
