.header-video {
    position: absolute;
    top:-120px;
    left: 0;
    max-height: 720px;
	z-index: 0;
	overflow: hidden;
}
.header-video:before {
	content:"";
	background: rgba(0,0,0,0.2);
	height:100%;
	width: 100%;
	display: block;
	position: absolute;
	top:0;
	left:0;
	z-index: 1;
}

.header-video iframe,
.header-video video {
	position: absolute;
    top:0;
	bottom: 0;
	left: 0;
	right: 0;
}

.header-video iframe {
	height: 100%;
	width: 100%;
}

.header-video video {
	width: 100%;
}

.header-video__teaser-video {
	width: 100%;
	height: auto; 
}

.header-video__media {
	width: 100%;
	max-width: none;
	height: auto;
}

/* Triggers */
.header-video__play-trigger {
	color: #fff !important;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	line-height: 50px;
	vertical-align: middle;
	background: rgba(0,0,0,0.3);
	height:50px;
	width: 54px;
	position: absolute;
	z-index: 5;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: background .2s;
	-moz-transition: background .2s;
	transition: background .2s;
}
	
.header-video__play-trigger:hover {
	background: rgba(0,0,0,0.6);
}

.header-video__close-trigger {
	color: #000;
	font-weight: bold;
	text-align: center;
	text-decoration: none !important;
	line-height: 1;
	vertical-align: middle;
	background: #fff;
	height:30px;
	width: 30px;
	position: absolute;
	z-index: 99;
	right: 30px;
	top: 30px;
	-webkit-transition: background .2s;
	-moz-transition: background .2s;
	transition: background .2s;	
	border: none;
	cursor: pointer;
}
.header-video__close-trigger:hover {
	background: red;
}