body.debug {
	/* visibility: visible; */
}

.heroheader-overlay{
	display: block;
	position: absolute;
	z-index: 1;
	top:0;
	right:0;
	bottom:0;
	left:0;
	text-decoration: none!important;
	text-align: center;
	cursor: pointer;
}

.heroheader-overlay-inner{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}


.heroheader-overlay-text{
	display: block;
	width: 600px;
	
/* 	max-width: 100%; */
	max-width: 60%;
	padding: 1.5em 0 1em 0;
	margin: auto;
}

.heroheader-overlay-icon{
	display: inline-block;
	vertical-align: top;
	line-height: 0;
	font-size: 8em;
	width: 1em;
	height: 1em;
	-webkit-transition: -webkit-transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
}

.heroheader-overlay-icon:before{
	display: block;
	content:'';
	width:100%;
	height:100%;
	background-image: url("../images/icon-play.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
}

.heroheader-overlay:hover .heroheader-overlay-icon {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}


@media screen and (min-width: 600px) and (max-width:1199px) {
	.heroheader-overlay-icon{
		font-size: 9em;
		font-size: calc( 112px + (154 - 112) * ((100vw - 600px) / (1199 - 600)) );
	}
}

@media screen and (min-width: 1200px){
	.heroheader-overlay-icon{
		font-size: 11em;
	}
}