.fullWidthCTABanner {
	align-items: center;
	display: flex;
	height: auto;
	min-height: 650px;
	overflow: hidden;
	position: relative;
	padding: 40px 0;
}

.fullWidthCTABanner .backgroundImage,
.fullWidthCTABanner .backgroundImage.mobileOnly {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.fullWidthCTABanner .backgroundImage:after {
	background-color: rgba(19, 23, 25, .3);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.fullWidthCTABanner .backgroundImage.mobileOnly { display: none; }

.fullWidthCTABanner h2 {
	color: #FFFFFF;
	margin-bottom: 40px;
	max-width: 768px;
}

.fullWidthCTABanner h2 {
	font-size: 47px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 56px;
	max-width: 100%;
}

.fullWidthCTABanner p {
	color: #FFFFFF;
	font-size: 15px;
	line-height: 24px;
	max-width: 40%;
}

.fullWidthCTABanner p a { color: #FF0000; }

.fullWidthCTABanner .imageCaption {
	align-items: center;
	bottom: 25px;
	display: flex;
	right: 25px;
	position: absolute;
}

.fullWidthCTABanner .imageCaption .imageCaptionIcon {
	background-image: url('../img/copyright.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	height: 25px;
	order: 2;
	width: 25px;
}

.fullWidthCTABanner .imageCaption .imageCaptionText {
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	order: 1;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	padding-right: 10px;
	pointer-events: none;
}

.fullWidthCTABanner .imageCaption .imageCaptionIcon:hover + .imageCaptionText,
.fullWidthCTABanner .imageCaption .imageCaptionText:hover {
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 991.98px) {
	.fullWidthCTABanner h2 p {
	  color: #131719;
	  text-align: left;
	  font-size: 26px;
	  line-height: 32px;
	}

	.fullWidthCTABanner {
		height: auto;
		min-height: auto;
		padding-bottom: 30px;
		padding-top: calc(70vw + 25px) !important;
	}

	.fullWidthCTABanner .backgroundImage { display: none; }

	.fullWidthCTABanner .backgroundImage.mobileOnly {
		display: block;
		height: 70vw;
	}

	.fullWidthCTABanner .backgroundImage.posLeft { background-position: left; }
	.fullWidthCTABanner .backgroundImage.posCenter { background-position: center; }
	.fullWidthCTABanner .backgroundImage.posRight { background-position: right; }

	.fullWidthCTABanner .col-12 { text-align: center; }

	.fullWidthCTABanner h2 {
		color: #131719;
		margin-bottom: 20px;
		text-align: left;
	}

	.fullWidthCTABanner p {
		color: #616161;
		max-width: 100%;
		text-align: left;
		font-size: 14px;
	}

	.fullWidthCTABanner .CTAButton { margin: 0 auto; }

	.fullWidthCTABanner .imageCaption {
		bottom: auto;
		top: calc(70vw - 45px);
	}
}

/* Slider */

.fullWidthCTABannerSlider {
	position: relative;
}

.fullWidthCTABannerSlider .fullWidthCTABanner {
	display: flex !important;
	min-height: 650px !important;
}

.fullWidthCTABannerSlider .fullWidthCTABanner .imageCaption {
	bottom: 20px;
	left: 20px;
	right: auto;
}

.fullWidthCTABannerSlider .fullWidthCTABanner .imageCaption .imageCaptionIcon {
	order: 1;
}

.fullWidthCTABannerSlider .fullWidthCTABanner .imageCaption .imageCaptionText {
	order: 2;
	padding-left: 10px;
	padding-right: 0;
}

.fullWidthCTABannerSlider .slick-slide > div:not(.backgroundImage) {
	height: auto;
}

.fullWidthCTABannerSlider .sliderSlides.multiple + .slideControls {
	display: flex;
}

.fullWidthCTABannerSlider .slideControls {
	bottom: 1px;
	display: none;
	position: absolute;
	right: 1px;
}

.fullWidthCTABannerSlider .sliderSlides.multiple + .slideControls { display: flex; }

.fullWidthCTABannerSlider .slideControls .slidePrev,
.fullWidthCTABannerSlider .slideControls .slideNext {
	align-items: center;
	background-image: linear-gradient(to right, #FF0000 0 50%, #131719 50% 100%);
	background-image: -ms-linear-gradient(right, #131719 0, #131719 50%, #FF0000 50%, #FF0000 100%);
	background-image: -moz-linear-gradient(right, #131719 0, #131719 50%, #FF0000 50%, #FF0000 100%);
	background-position: 100%;
	background-size: 200%;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	font-size: 21px;
	height: 52px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 0;
	position: relative;
	transition: background-position .3s ease-in-out;
	width: 52px;
}

.fullWidthCTABannerSlider .slideControls .slidePrev { background-position: -100%; }
.fullWidthCTABannerSlider .sliderSlides .slick-dots { opacity: 0; }

.fullWidthCTABannerSlider .slideControls .slidePrev:hover,
.fullWidthCTABannerSlider .slideControls .slideNext:hover { background-position: 0; }

.fullWidthCTABannerSlider .slideControls .slidePrev { margin-right: 2px; }

.fullWidthCTABannerSlider .slideControls .slidePrev:after,
.fullWidthCTABannerSlider .slideControls .slideNext:after {
	left: 50%;
	position: absolute;
	top: 24px;
	transform: translateX(-50%);
}

.fullWidthCTABannerSlider .slideControls .slidePrev:after { content: "<"; }
.fullWidthCTABannerSlider .slideControls .slideNext:after { content: ">"; }
.fullWidthCTABannerSlider .sliderSlides .slick-dots { display: none; }
.fullWidthCTABannerSlider .slick-dotted.slick-slider {
	margin-bottom: 0px;
}
