
/* ############################################################
	091 - INLINE-INFOSLIDER
############################################################ */

/* Slider */
.mdl091-slider,
.mdl091-item,
.mdl091-image {
	width: 100%;
	margin: 0;
	padding: 0;
}
.mdl091-slider {
	width: calc(100% + 50px);
	margin-left: -25px;
	margin-bottom: 0;
}
	/* Bildbox */
	.mdl091-image {
		height: 0;
		padding-bottom: calc(100% / (5 / 3));
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/* Textbox */
	.mdl091-text {
		z-index: 2;
		position: relative;
		padding-top: 12px;
		padding-left: 25px;
		padding-right: 25px;
	}
		.mdl091-text h2 {
			margin-bottom: 0;
			font-family: "SohoGothicBold";
			font-size: 1rem; /* 16px */
			line-height: 1.5rem; /* 24px */
		}
	/* Button */
	.mdl091-button {
		position: relative;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		min-width: 98px;
		height: 34px;
		margin-top: 15px;
		padding-left: 13px;
		padding-right: 13px;
		background-color: var(--main-color-2);
		font-size: 0.875rem; /* 14px */
		line-height: 1.375rem; /* 22px */
		color: var(--main-color-white);
	}
@media (min-width: 1020px) {
	.mdl091-slider {
		width: calc(100% + (135px + 30px));
		margin-left: -30px;
	}
		/* Bildbox */
		.mdl091-image {
			height: 100vh;
			padding-bottom: 0;
		}
			.mdl091-image-shadow-box {
				position: absolute;
				top: 44.44444444%;
				right: 0;
				bottom: 0;
				left: 0;
				background-image: -webkit-linear-gradient(bottom, rgba(28,63,105,0.4) 0, transparent 100%);
				background-image: -o-linear-gradient(bottom, rgba(28,63,105,0.4) 0, transparent 100%);
				background-image: linear-gradient(to top, rgba(28,63,105,0.4) 0, transparent 100%);
			}
		/* Textbox */
		.mdl091-text {
			z-index: 2;
			position: absolute;
			right: 135px;
			bottom: 85px;
			left: 30px;
			padding: 0;
		}
			.mdl091-text h2 {
				font-size: 2.8125rem; /* 45px */
				line-height: 3.75rem; /* 60px */
				color: var(--main-color-white);
			}
		/* Button */
		.mdl091-button {
			min-width: 158px;
			height: 55px;
			margin-top: 30px;
			padding-left: 24px;
			padding-right: 24px;
			font-size: 1.375rem; /* 22px */
			line-height: 2rem; /* 32px */
			-o-transition: color 0.3s ease, background 0.3s ease;
			-ms-transition: color 0.3s ease, background 0.3s ease;
			-moz-transition: color 0.3s ease, background 0.3s ease;
			-webkit-transition: color 0.3s ease, background 0.3s ease;
			transition: color 0.3s ease, background 0.3s ease;
		}
		.mdl091-button:hover {
			background-color: var(--main-color-1);
			color: var(--main-color-2);
		}
}
@media (min-width: 1440px) {
	.mdl091-slider {
		width: calc(100% + (165px + 30px));
	}
		/* Textbox */
		.mdl091-text {
			right: 165px;
		}
}


/* Navigation */
.mdl091-slick-prev,
.mdl091-slick-next {
	z-index: 3;
	position: absolute;
	display: block;
	top: calc((100vw / (5 / 3)) - 56px);
	width: 52px;
	height: 17px;
	padding: 0;
	border: none;
	outline: none;
	font-size: 0; /* um Text (Previous/Next) zu verstecken */
	background: none;
}
.mdl091-slick-prev {
	right: 97px;
}
.mdl091-slick-next {
	right: 25px;
}
	.mdl091-slick-prev svg,
	.mdl091-slick-next svg {
		display: block;
		width: 52px;
		height: auto;
		fill: var(--main-color-white);
	}
	.mdl091-slick-prev svg {
		-o-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
@media (min-width: 1020px) {
	.mdl091-slick-prev,
	.mdl091-slick-next {
		top: auto;
		bottom: 85px;
		width: 75px;
		height: 24px;
	}
	.mdl091-slick-prev {
		right: 240px;
	}
	.mdl091-slick-next {
		right: 135px;
	}
		.mdl091-slick-prev svg,
		.mdl091-slick-next svg {
			width: 75px;
			-o-transition: fill 0.3s ease;
			-ms-transition: fill 0.3s ease;
			-moz-transition: fill 0.3s ease;
			-webkit-transition: fill 0.3s ease;
			transition: fill 0.3s ease;
		}
		.mdl091-slick-prev:hover svg,
		.mdl091-slick-next:hover svg {
			fill: var(--main-color-1);
		}
}
@media (min-width: 1440px) {
	.mdl091-slick-prev {
		right: 270px;
	}
	.mdl091-slick-next {
		right: 165px;
	}
}

