/* global styling for slices and their contents */
.module.slice .fitimage, .module.full_slice {
	height: 767px;
	overflow: hidden;
}

@media (max-width: 767px) {
	.module.slice .fitimage, .module.full_slice, .module.full_slice .fitimage {
		height: 376px;
		overflow: hidden;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.module.slice .fitimage, .module.full_slice, .module.slice, .module.full_slice .fitimage {
		height: 500px;
		overflow: hidden;
	}

	body.cozy .module_image_text_teaser_slices .content_slides,
	body.cozy .module.slice .fitimage,
	body.cozy .module.full_slice,
	body.cozy .module.slice,
	body.cozy .module.full_slice .fitimage {
		height: 750px;
	}
}

body.cozy .module_image_text_teaser_slices .content_text > div {
	width: 100%;
}

/* === SLICE BACKGROUND COLOR === */
.module.slice .slice_bg_darkblue {
	background-color: #222652;
}

.module.slice .slice_bg_lightblue {
	background-color: #5e6188;
}

.module.slice .slice_bg_white {
	background-color: #fff;
}

.module.slice .slice_bg_black {
	background-color: #000;
}

.module.slice .slice_bg_pink {
	background-color: #e73d60;
}

.module.slice .slice_bg_darkgrey {
	background-color: #808080;
}

.module.slice .slice_bg_lightgrey {
	background-color: #f2f2f2;
}

.module.slice .slice_bg_gold {
	background-color: #D4AF37;
}

/* === /SLICE BACKGROUND COLOR === */
/* === */
/* === SLICE TYPOGRAPHY ELEMENTS === */
.module.slice .cta {
	margin-top: 41px;
}

.module.slice .text_container p:last-child {
	margin-bottom: 0;
}

.module.slice .slice_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.module.slice .headline {
	margin-bottom: 0;
	margin-top: 0;
}

.module.slice .headline_container {
	margin-bottom: 36px;
}

.module.slice .headline_container + .logo_container {
	margin-top: 29px;
}

.module.slice .headline_container + a.cta {
	margin-top: 0;
}

.module.slice .topline {
	margin-bottom: 14px;
	margin-top: 0;
}

@media (max-width: 768px) {
	.module.slice .slice_text_content {
		min-height: 300px;
		padding: 40px 0;
	}

	.module.slice .topline {
		margin-bottom: 29px;
	}

	.module.slice .headline_container {
		margin-bottom: 23px;
	}

	.module.slice .cta {
		margin-top: 31px;
	}
}

@media (max-width: 767px) {
	.module.slice .text_content {
		text-align: center;
	}
}

.module.slice .slice_text_content .topline {
	margin-top: 0;
	margin-bottom: 12px;
}

.module.slice .slice_text_content .headline {
	margin-top: 0;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

.module.slice .slice_text_content .headline_container {
	margin-bottom: 35px;
}

.module.slice .slice_text_content .cta {
	margin-top: 40px;
}

/* === /SLICE TYPOGRAPHY ELEMENTS === */
/* SLIDER ARROWS */
.module.slice .arrow_container_top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.module.slice .arrow_container {
	position: absolute;
	left: 0;
	right: 0;
	height: 100%;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.module.slice .arrow_container_bot {
}

.module.slice .slider-arrow {
	position: absolute;
	height: 60px;
	width: 60px;
	outline: none;
	cursor: pointer;
	z-index: 5;
	border: 1px solid transparent;
	background: #fff;
	transition: all .5s;
	-webkit-transition: all .5s;
}

@media (min-width: 768px) and (max-width: 1200px) {
	.module.slice .slider-arrow {
		height: 40px;
		width: 40px;
	}
}

.module.slice .slider-arrow:hover {
	background: transparent;
	border: 2px solid #fff;
}

.module.slice .slider-arrow i {
	transition: all .5s;
	-webkit-transition: all .5s;
}

.module.slice .slider-arrow:hover i {
	color: #fff;
}

.module.slice .slider-prev {
	bottom: 70px;
}

.module.slice .slider-next {
	top: 70px;
}

.module.slice .arrow_container .slider-prev {
	bottom: auto;
}

.module.slice .arrow_container .slider-next {
	top: auto;
	right: 15px;
}

@media (max-width: 767px) {
	.module.slice .arrow_container, .module.slice .arrow_container_top, .module.slice .arrow_container_bot {
		display: none;
	}
}
/* /SLIDER ARROWS */