.header-slide-container {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 101;
}

.header-slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 220px;
	left: -50px;
	opacity: 0;
	height: 350px;
	width: 55%;
	transform: scale(1.2);
	transition: opacity 3s ease;
	z-index: 101;
}

.header-slide.active {
	animation: grow 3s linear forwards;
	opacity: 1;
}

@keyframes grow {
	0%, 20% {
		transform: scale(1);
	}
	
	75%, 100% {
		transform: scale(1.2);
	}
}

.controls-header-container {
	position: absolute;
	top: 50%;
	left: 10px;
	display: none;
	flex-direction: column;
	transform: translateY(-50%);
	z-index: 101;
}

.control-header {
	background-color: #fff;
	cursor: pointer;
	opacity: 0.5;
	margin: 6px;
	height: 40px;
	width: 5px;
	transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.control-header.active, .control-header:hover {
	background-color: #fff;
	opacity: 1;
	transform: scale(1.2);
}