.hero-stage {
    display: block;
    position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: none;
	overflow: hidden;
}

/* Normal slide in inactive state */
.hero-slide {
    transition-property: opacity, z-index;
	transition-duration: 0ms;
	transition-function: linear;
	transition-delay: 500ms, 0ms;
    display: block;
    position: absolute;
	width: 100%;
	height: 100%;
    top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    background-size: cover;
	background-position: center;
    opacity: 0;
	z-index: 1;
}

/* Active slide */
.hero-slide.hero-active {
	transition-property: opacity, z-index;
	transition-duration: 500ms, 0ms;
	transition-function: linear;
	transition-delay: 0ms;
	opacity: 1;
	z-index: 3;
}

/* Slide activated by clicking next/prev navigation button.
 * May have, for instance, faster transition time, or a completely differen effect */
.hero-slide.hero-activated {
	transition-property: opacity, z-index;
	transition-duration: 250ms, 0ms;
	transition-function: linear;
	transition-delay: 0ms;
	opacity: 1;
	z-index: 3;
}

.hero-slide.hero-deactivated {
	transition-property: opacity, z-index;
	transition-duration: 250ms, 0ms;
	transition-function: linear;
	transition-delay: 0ms;
	opacity: 0.0001;
	z-index: 1;
}

/* Navigation buttons */
.hero-next,
.hero-prev {
	transition: 150ms linear all;
	position: absolute;
	top: 50%;
	border-radius: 100px;
	margin-top: -10px;
	background-color: rgba(0,0,0,.65);
	color: #fff;
	text-align: center;
	cursor: pointer;
	opacity: .5;
}
.hero-next:hover,
.hero-next:active,
.hero-prev:hover,
.hero-prev:active {
	opacity: 1;
}
.hero-next {
	right: 25px; z-index: 10;
}
.hero-prev {
	left: 25px; z-index: 10;
}