* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	background: #fff;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	width: 100%;
}

.hero-animation-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #fff;
	overflow: hidden;
}

#videoContainer {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

#whiteBackground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 1;
}

#video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

#oSVG {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* Fixed white cover on right side - hides seam when videoContainer moves left */
#rightCover {
	position: absolute;
	top: 0;
	right: 0;
	width: 25vw;
	height: 100%;
	background: #fff;
	z-index: 4;
	pointer-events: none;
	opacity: 0;
}

#blackOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	z-index: 5;
}

#mnicomText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
	height: auto;
}

#textRevealOverlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	height: 200px;
	opacity: 0;
	pointer-events: none;
}

#greyOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	z-index: 10;
}
