html {
	background: url(../Intergraph-HQ-Cinemagraph-Still.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/**********************************
 * - Video Player
 **********************************/
#video-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
#video-bg > video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* 1. No object-fit support: */
@media (min-aspect-ratio: 16/9) {
	#video-bg > video { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
	#video-bg > video { width: 300%; left: -100%; }
}
/* 2. If supporting object-fit, overriding (1): */
@supports (object-fit: cover) {
	#video-bg > video {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 1080px) {
	video {
		display: none;
	}
}

/**********************************
 * - Callout
 **********************************/
#callout {
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	width: 100%;
}

.side {
	float: left;
	width: 50%;
}

@media screen and (max-width: 1400px) {
	.side {
		width: 65%;
	}
}

@media screen and (max-width: 1080px) {
	.side {
		width: 100%;
	}
}

/**********************************
 * - Announcement
 **********************************/
.announcement-section {
	margin-bottom: 30px;
}

.announcement-section h1 {
	font-family: 'Roboto', sans-serif, helvetica, arial;
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 1400px) {
	.announcement-section h1 {
		font-size: 54px;
	}
}

@media screen and (max-width: 768px) {
	.announcement-section h1 {
		font-size: 42px;
	}
}

@media screen and (max-width: 480px) {
	.announcement-section {
		margin-bottom: 0px;
		padding: 20px;
	}

	.announcement-section h1 {
		font-size: 36px;
	}
}

/**********************************
 * - Buttons
 **********************************/
.btn-section {
	width: 55%;
	margin: 0 auto;
	margin-bottom: 20px;
}

a.btn {
	display: block;
	width: auto;
	text-align: center;
	color: #fff;
	text-indent: 0;
	text-decoration: none;
	padding: 7px 5px;
	font-size: 22px;
	font-family: 'Roboto', sans-serif, helvetica, arial;
	font-weight: 300;
	letter-spacing: 1px;
	height: auto;
	background: rgba(255,255,255,0);
	border: 1px solid #fff;
	border-radius: 5px;
}
a:hover.btn {
	color: #fff;
	text-indent: 0;
	text-decoration:none;
	height: auto;
	background: rgba(255,255,255,.25);
	border: 1px solid #fff;
}

@media screen and (max-width: 1400px) {
	.btn-section {
		width: 60%;
	}

	a.btn {
		font-size: 22px;
	}
}

@media screen and (max-width: 1080px) {
	a.btn {
		padding: 20px 2px;
		font-size: 20px;
	}
}

@media screen and (max-width: 768px) {
	.btn-section {
		width: 70%;
	}
}

@media screen and (max-width: 480px) {
	.btn-section {
		width: 80%;
	}
}

/**********************************
 * - Images
 **********************************/
.img-section {
	width: 40%;
	margin: 0 auto;
}

.img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1080px) {
	.img-section {
		width: 60%;
	}
}

@media screen and (max-width: 480px) {
	.img-section {
		width: 75%;
	}
}

/**********************************
 * - Animations
 **********************************/
.first {
	-vendor-animation-duration: 1s;
	-webkit-animation-delay: 4s;
	margin-bottom: 10px;
}

.second {
	-vendor-animation-duration: 1s;
	-webkit-animation-delay: 5s;
	margin: 0;
}

#ppm .btn-section, #si .btn-section {
	-vendor-animation-duration: 1s;
	-webkit-animation-delay: 6s;
}

#ppm .img-section, #si .img-section {
	-vendor-animation-duration: 1s;
	-webkit-animation-delay: 7s;
}