.custom_header_slideshow_homepage {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	height: 600px;
	overflow: hidden;
	opacity: 0;
}
.custom_header_slideshow_homepage.fadein {
	opacity: 1;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.custom_header_slideshow_homepage .arrow {
	position: absolute;
	bottom: 75px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.custom_header_slideshow_homepage .arrow.nextSlide {
	right: 30px;
	background-image: url("/includes/public/assets/SVG-Assets/Header Slideshow/right-arrow.svg");
}
.custom_header_slideshow_homepage .arrow.prevSlide {
	right: 100px;
	background-image: url("/includes/public/assets/SVG-Assets/Header Slideshow/left-arrow.svg");
}

.custom_header_slideshow_homepage .slide { position: relative; }
.custom_header_slideshow_homepage .slide img {
	position: relative;
	left: 50%;
	width: auto;
	max-width: initial;
	height: 600px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.custom_header_slideshow_homepage .slide .text {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 15px 30px;
	border-top-left-radius: 8px;
	background-color: rgba(0, 0, 0, 0.4);
}
.custom_header_slideshow_homepage .slide .text .content a,
.custom_header_slideshow_homepage .slide .text .content span {
	display: inline-block;
	width: 100%;
	font-family: "ff-good-headline-web-pro-con", sans-serif;
	font-size: 30px;
	color: #fefefe;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.custom_header_slideshow_homepage .slide .text .content a:after {
	content: "›";
	display: inline-block;
	margin-left: 0;
	font-size: 30px;
}

@media only screen and (max-width: 1024px) {
	.custom_header_slideshow_homepage .slide .text .content a { font-size: 23px; }
	.custom_header_slideshow_homepage .slide .text .content a:after { font-size: 23px; }
}

@media only screen and (max-width: 640px) {
	.custom_header_slideshow_homepage { height: 400px; }

	.custom_header_slideshow_homepage .arrow {
		bottom: 60px;
		width: 34px;
		height: 34px;
	}
	.custom_header_slideshow_homepage .arrow.nextSlide {
		right: 20px;
		background-image: url("/includes/public/assets/SVG-Assets/Header Slideshow/right-arrow-mobile.svg");
	}
	.custom_header_slideshow_homepage .arrow.prevSlide {
		right: 60px;
		background-image: url("/includes/public/assets/SVG-Assets/Header Slideshow/left-arrow-mobile.svg");
	}

	.custom_header_slideshow_homepage .slide img { height: 400px; }
	.custom_header_slideshow_homepage .slide .text { left: 0; padding: 6px 30px; border-top-left-radius: 0; width: 100%; text-align: center; }
	.custom_header_slideshow_homepage .slide .text .content a { font-size: 18px; }
	.custom_header_slideshow_homepage .slide .text .content a:after { font-size: 18px; }
}