.home_slider_background { z-index: -1 }
.home_slider_background,
.home_slider_overlay,
.home_slider_background .slider_background_image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	z-index: 1;
	overflow: hidden;
}
.home_slider_overlay {
	z-index: 2;
    background-color: #121416;
    opacity: .6;
}
.home_slider_background .slider_background_image {
    background-repeat: no-repeat;
	background-position: center;
    background-size: cover;
	opacity: 0;
	transition: transform 10s, opacity .3s;
}
.home_slider_background .slider_background_image.current {
	transform: scale(1.15, 1.15);
	z-index: 1;
	opacity: 1;
}

.home_slider_wrap {
	flex: 1;
	display: flex;
	height: 100%;
	position: relative;
	z-index: 3;
}
.home_slider_wrap .slider_description {
	position: absolute;
	opacity: 0;
	left: 55px;
	top: 50%;
	transform: translateY(-50%);
	width: 60%;
	transition: opacity .3s, left .1s;
	pointer-events: none;
}

.home_slider_wrap .slider_description.current {
	opacity: 1;
	left: 15%;
	z-index: 4;
	pointer-events: auto;
}
.home_slider_wrap .slider_description h3 {
	color: #fff;
	font-size: 3em;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1.2em;
	margin: 0;
}
.home_slider_wrap .slider_description p {
	padding-top: 15px;
	font-size: 1.2em;
	font-weight: 200;
	color: #fff;
	opacity: .75;
} 
.home_slider_wrap .slider_description .more {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffc600;
    border: none;
    margin-top: 35px;
    letter-spacing: 2px;
    font-weight: 600;
	width: fit-content;
}
.home_slider_wrap .slider_description .more:after {
    content: '';
    width: 90px;
    height: 60px;
    background-image: url(/static/images/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
	background-position-x: -25px;
    margin-left: 10px;
	transition: .3s;
}
.home_slider_wrap .slider_description .more:hover:after { background-position-x: 0 }
body { overflow: hidden }
#home {
	overflow: hidden;
	height: 100%;
}
#home .header,
#home .footer {
	background-color: transparent;
	z-index: 4;
}
#home .footer { background-image: linear-gradient(1deg, rgba(28, 29, 34, 0.5) 0%, rgba(28, 29, 34, 0) 100%) }
#home .header { background-image: linear-gradient(180deg, rgba(28, 29, 34, 0.5) 0%, rgba(28, 29, 34, 0) 100%) }