/* =============================================== *\
	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
 */
.video-bg.demo-video {
	background-image: url(files/sketching-mock-up.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: 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);
}

/* =============================================== *\
	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;
	color: #EFEFEF;
}
a {
	text-decoration: none;
color: #fff;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.page-width {
	width: 92%;
	max-width: 960px;
	margin: 0 auto;
}
#container {
	/*width: 960px;*/
	width: 100%;
	margin: 30px auto;
	/*background: rgba(255,255,255,0.6);*/
	background: rgba(0,0,0,0.3);
	position: relative;
	z-index: 1;
padding:10px 0 0px;
}
#header {
	background: #2c2d33;
	padding: 2em 0;
}
#header a {
	color: #FFF;
}
.title {
	display: block;
	font-weight: bold;
	font-size: 68px;
margin-top:90px;
}
.subtitle {
	display: block;

	font-weight: normal;
	font-size: 25px;
	/*color: #a0a0a0;*/
}
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: 34px;
	margin: 0 0 10px;
}
.video-hero--content p {
	font-size: 20px;
	margin: 0;
}
#content {
	padding: 40px 0;
}
.contacts {
margin-top:100px;
display: block;
text-align:right;
font-size:18px;
}
.links {
margin-top:40px;
display: block;
text-align:right;
font-size:16px;
}
.links a{
border-bottom:1px solid #aaa;
margin-left:20px;
}
.credits-links {
margin-top:20px;
display: block;
text-align:right;
font-size:14px;
}
.credits {
margin-top:100px;
display: block;
text-align:right;
font-size:14px;
}
.credits-links a{
border-bottom:1px solid #aaa;
margin-left:20px;
}
.payform {
opacity: 0.8;
width:500px;
margin:20px auto;
background:#FFF;
padding:20px 50px;
border-radius:20px;
}
.element {
margin:10px 0;
font-size:20px;
}
.element label {
width:150px;
display:inline-block;
color:#555;
}
.element input{
height:24px;
font-size:20px;
}
#alfa-payment-button {
margin-top:40px;
}
.service {
margin-top:20px;
margin-left:40px;
font-size:16px;
}