section.m28_header_unterseite {
	height: 1080px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}

section.m28_header_unterseite .m28_logo svg {
	width: 271px;
}

section.m28_header_unterseite .m28_logo {
	display: flex;
	justify-content: center;
	margin-bottom: 134px;
}

section.m28_header_unterseite .m28_content {
	max-height: 100%;
}

section.m28_header_unterseite .m28_item img {
	height: 1080px;
	object-fit: cover;
	border-radius: 0 0 10px 10px;
}

section.m28_header_unterseite .m28_arrow_container_main svg {
	fill: #fff;
	width: 9px;
	transition: fill .4s;
}

section.m28_header_unterseite .m28_arrow_container {
	position: absolute;
	top: calc(50% - 73px);
	z-index: 3;
	width: 45px;
	height: 45px;
	background: rgba(247, 243, 241, .2);
	border-radius: 10px;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background	.4s;
	cursor: pointer;
}

section.m28_header_unterseite .m28_arrow_container:hover {
	background: rgba(247, 243, 241, 1);
}

section.m28_header_unterseite .m28_arrow_container:hover svg {
	fill: #d15d23;
}

section.m28_header_unterseite .m28_prev_arrow_container {
	left: 160px;
}

section.m28_header_unterseite .m28_next_arrow_container {
	right: 160px;
}

section.m28_header_unterseite svg.m28_prev_arrow {
	transform: rotate(90deg);
}

section.m28_header_unterseite svg.m28_next_arrow {
	transform: rotate(-90deg);
}

section.m28_header_unterseite .m28_overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
	z-index: 2;
	border-radius: 0 0 10px 10px;
}

section.m28_header_unterseite .m28_dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 142px;
}

section.m28_header_unterseite .m28_dots .slick-dots {
	display: flex;
	gap: 12px;
	width: auto;
	position: relative;
	bottom: unset;
}

section.m28_header_unterseite .m28_dots .slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
}

section.m28_header_unterseite .m28_dots .m28_dots_dot {
	width: 9px;
	height: 7px;
	background: rgba(255, 255, 255, .5);
	transition: width .4s;
	position: relative;
	border-radius: 50px;
}

section.m28_header_unterseite .m28_dots .slick-active .m28_dots_dot {
	width: 28px;
}

section.m28_header_unterseite .m28_dots .m28_active_dot {
	height: 7px;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	transition: width .4s;
	border-radius: 50px;
}

section.m28_header_unterseite .m28_dots .slick-active .m28_active_dot {
	width: 100%;
	transition: width 3.6s;
}

@media screen and (max-width: 1450px) {
	section.m28_header_unterseite {
		height: 640px;
	}
	
	section.m28_header_unterseite .m28_item img {
		height: 640px;
	}
}

@media screen and (max-width: 1199px) {	
	section.m28_header_unterseite .m28_prev_arrow_container {
		left: 42px;
	}
	
	section.m28_header_unterseite .m28_next_arrow_container {
		right: 42px;
	}
}

@media screen and (max-width: 575px) {
	section.m28_header_unterseite {
		height: 540px;
	}
	
	section.m28_header_unterseite .m28_item img {
		height: 540px;
	}
	
	section.m28_header_unterseite .m28_dots {
		bottom: 42px;
	}
	
	section.m28_header_unterseite .m28_arrow_container {
		top: 50%;
	}
}

@media screen and (max-width: 450px) {
	section.m28_header_unterseite .m28_arrow_container {
		top: 55px;
		transform: none
	}
	
	section.m28_header_unterseite .m28_next_arrow_container {
		right: 25px;
	}
	
	section.m28_header_unterseite .m28_prev_arrow_container {
		left: unset;
		right: calc(25px + 45px + 10px);
	}
}