/*
|-----------------------------------------------------------------------------------------------------------
| HOMEPAGE SLIDESHOW SECTION
|-----------------------------------------------------------------------------------------------------------
*/
.header-slideshow {
    border-bottom: 5px solid white;
}
.header-slideshow .home-header {margin-bottom: 0;}
.header-slideshow .controls {
	position: absolute;
    bottom: 70px;
    right: 7%;
    pointer-events: none;
    z-index: 2;
    display: flex;
}
.header-slideshow .controls .slick-arrow {
    font-size: 66px;
    font-weight: bold;
    color: white;
    pointer-events:all;
    padding: 15px;
    cursor: pointer;
}
.header-slideshow .item img {
    display: block;
    width:100%;
}

.header-slideshow .item {
    position: relative;
    overflow: hidden;
}
.header-slideshow .item > a {display: block;}

.header-slideshow .item .play-btn {
	position: absolute;
	top: 40px;
	right: 7%;
	font-size: 66px;
	color: white;
	z-index: 3;
}

.header-slideshow .item video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	min-width: 100%;
	width: auto;
	min-height: 100%;
	height: auto;
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease-in;
}

.header-slideshow .item video.loaded { opacity: 1; }

.header-slideshow .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.05) 35%);
    z-index: 2;
}

.header-slideshow .item .content {
    position: absolute;
    bottom: 40px;
    left: 7%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 475px;
    z-index: 3;
}
.header-slideshow .item .content a:hover {text-decoration: none;}
.header-slideshow .item .content h2 {
    font-family: 'Lulo Clean';
    font-size: 30px;
    line-height: 36px;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    margin: 0 0 10px;
}

.header-slideshow .item .content h1 {
    font-family: 'Lulo Clean Bold';
    font-size: 75px;
    line-height: 80px;
    color: white;
    margin: 0 0 20px;
}

.header-slideshow .item .content a.see-more {
    align-self: flex-start;
}

@media (max-width: 1024px) {
	.header-slideshow .item .play-btn {
		bottom: 25px;
		right: 3%;
		font-size: 50px
	}
    .header-slideshow .item .content {
        left: 3%;
        bottom: 25px;
    }
    .header-slideshow .item .content h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .header-slideshow .item .content h1 {
        font-size: 56px;
        line-height: 62px;
    }
}

@media (max-width: 640px) {
	.header-slideshow .controls {
		bottom: 40px;
	}
	.header-slideshow .controls .slick-arrow {
		font-size: 40px;
	}
    .header-slideshow .item .content {
        width: 70%;
        max-width: none;
    }
    .header-slideshow .item .content h2 {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 5px;
    }
    .header-slideshow .item .content h1 {
        font-size: 36px;
        line-height: 40px;
        margin: 0 0 10px;
    }
}
