/*
.c-home-hero-video {
	height: 80vh;
	max-height: 80vh;
	overflow: hidden;
	position: relative;
}

.c-home-hero-video__wrap-bg {
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.c-home-hero-video__wrap-bg > *:first-child {
	object-fit: cover;
}

.c-home-hero-video__center-overlay {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
*/
.c-home-hero-video__wrap-full {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	display: none;
}
.c-home-hero-video__wrap-full.has-video {
	display: block;
}
.c-home-hero-video__full {
	overflow: hidden;
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.c-home-hero-video__full::before {
	content: '';
	display: block;
	padding-top: 56%; /* 16:9 */
	width: 100%;
}
.c-home-hero-video__full > iframe {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	
	width: 100%;
	height: 100%;
}
.c-home-hero-video__close {
	margin: 0;
    padding: 0;
    background: none;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
}
.c-home-hero-video__close-image {
	width: 100%;
	height: auto;
}

.c-banner.has-video {
	display: none;
}
