@CHARSET "ISO-8859-1";
body {
	font-family: Arial;
}
.video-container {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.video-container video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.background-overlay {
	background: rgb(0, 0, 0); /* Fallback for older browsers without RGBA-support */
    background: rgba(0, 0, 0, 0.4);
	z-index: 20;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right: 0;
}
.center-content {
	margin: 0 auto;
	margin-top:200px;
	text-align: center;
}
.btnGoToWebsite {
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	background: transparent;
}
.btnGoToWebsite:hover {
	border: 3px solid #202f79;
	color: #202f79;
}
.margin-top-20 {
	margin-top: 20px;
}
.margin-top-200 {
	margin-top: 200px;
}
.btn-xl {
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 0px;
}
.btn-xxl {
    padding: 15px 30px;
    font-size: 30px;
    border-radius: 0px;
	width:440px !important;
}

/* FOR SMALLER SCREENS */
@media screen and (max-width: 1024px) {
	.btn-xxl {
	    padding: 10px 10px;
	    font-size: 18px;
		width:260px !important;
	}
	#img-logo {
		width: 260px;
	}
	.center-content {
		margin-top: 50px;
	}
	.margin-top-200 {
		margin-top: 20px;
	}
}