/* //////////////////////////////////// ALLGEMEIN //////////////////////////////////// */
html {
	box-sizing: border-box;
	background-color: #ECE5DF;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
}

html,
body {
	overflow-x: hidden;
}

body{
	font-family: "dm-sans", sans-serif;
	font-weight: 200;
	font-style: normal;
	color: #665F52;
	margin: 0px;
	line-height: 1.5;
	font-size: 22px;
	scroll-behavior: smooth;
}
h1 {
	font-family: "dm-serif-display", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 45px;
	margin: 0 auto 20px;	
	line-height: 1.1;
	color:#91A767;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
h2 {
	font-family: "dm-serif-display", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 45px;
	margin: 0 auto 20px;	
	line-height: 1.1;
	color:#91A767;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
@media screen and (max-width: 550px) {
	h1 {
		font-size: 55px;
	}
	h2 {
		font-size: 43px;
	}
}
@media screen and (max-width: 450px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 30px;
	}
}
h3, h4, h5, h6 {
	font-family: "dm-sans", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 25px;
	margin: 0 auto 15px;	
	line-height: 1.5;
	color:#787D6E;
	text-transform: uppercase;
}
div p{
	margin: 0px 0px 15px 0px;
}
div p:last-child, p:last-child{
	margin: 0 auto;
}
img, svg, video{
	max-width: 100%;
	height:auto;
}
a{
	color: #AF9241;
	text-decoration: none;
}
a:active, a:hover {
	color: #39501E;
}
ul{
	padding-left: 20px;
	margin: 0 auto 15px;
}
.no_scroll{
	height: 100vh;
	overflow: hidden;
}
.textcenter{
	text-align: center;
}

.w1280 {
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
}
.w900 {
    max-width: 900px;
	padding-left: 20px;
    padding-right: 20px;
}
.margin_oben {
    margin-top: 120px;
}
.margin_unten {
    margin-bottom: 120px;
}


/* //////////////////////////////////// HEADER //////////////////////////////////// */

.site_header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	width: 100%;
	height: 90px;
	background-color: #787D6E;
	color: #ECE5DF;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.site_header.scrolled {
	border-bottom-color: #ECE5DF;
}

.site_header_inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 90px;
	padding: 0 100px;
}

.header_left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.header_center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header_booking_link{
	color: #ECE5DF;
	text-transform: uppercase;
	font-size: 18px;
	font-weight:600;
	line-height: 1;
	letter-spacing: 1.8px;
	text-decoration: none;
}

.header_languages a {
	color: #ECE5DF;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1.8px;
	text-decoration: none;
}

.header_booking_link:hover,
.header_languages a:hover,
.header_languages a.active {
	color: #91A767;
	text-decoration: none;
}

.header_logo,
.menu_overlay_logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_logo img,
.menu_overlay_logo img {
	display: block;
	width: auto;
	height: 58px;
	max-width: 350px;
	object-fit: contain;
}

.header_languages {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-right: 80px;
}

.menu_open_btn,
.menu_close_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 30px;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
}

.menu_open_btn img,
.menu_close_btn img {
	display: block;
	width: auto;
	height: 34px;
	object-fit: contain;
}


/* //////////////////////////////////// MENU OVERLAY //////////////////////////////////// */

.menu_overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100vh;
	background-image: url("../images/bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: translateY(-100%);
	transition: transform 0.65s ease;
	overflow-y: auto;
	pointer-events: none;
}

.menu_overlay.open {
	transform: translateY(0);
	pointer-events: auto;
}

.menu_overlay_header {
	width: 100%;
	height: 90px;
	color: #ECE5DF;
	background: transparent;
}

.menu_overlay_header_inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 90px;
	padding: 0 100px;
}

.menu_overlay_left,
.menu_overlay_center,
.menu_overlay_right {
	display: flex;
	align-items: center;
}

.menu_overlay_left {
	justify-content: flex-start;
}

.menu_overlay_center {
	justify-content: center;
}

.menu_overlay_right {
	justify-content: flex-end;
}

.menu_overlay_content {
	min-height: calc(100vh - 90px);
	padding: 120px 0 100px;
	display: flex;
	align-items: center;
}

.menu_overlay_content .w1280 {
	width: 100%;
}

.menu_overlay_grid {
	display: grid;
	grid-template-columns: 30% 70%;
	align-items: center;
	gap: 70px;
}

.overlay_nav ul {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.overlay_nav li {
	margin: 0;
	padding: 0;
}

.overlay_nav a {
	display: inline-block;
	font-family: "dm-serif-display", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 25px;
	line-height: 1.15;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #91A767;
	text-decoration: none;
	transition: color 0.3s ease;
}

.overlay_nav a:hover,
.overlay_nav a.active {
	color: #665F52;
	text-decoration: none;
}

.overlay_menu_image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.overlay_menu_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* Abstand wegen fixed Header */
.page_wrapper {
	padding-top: 90px;
}


@media screen and (max-width: 1000px) {
	.site_header_inner,
	.menu_overlay_header_inner {
		padding: 0 40px;
	}

	.header_languages {
		margin-right: 10px;
		gap: 10px;
	}

	.menu_overlay_grid {
		grid-template-columns: 1fr;
	}

	.overlay_menu_image {
		display: none;
	}

	.overlay_nav ul {
		align-items: center;
		text-align: center;
	}

	.overlay_nav a {
		text-align: center;
	}
}

@media screen and (max-width: 700px) {
	.site_header_inner,
	.menu_overlay_header_inner {
		padding: 0 20px;
	}

	.header_booking_link {
		font-size: 13px;
		letter-spacing: 1.2px;
	}

	

	.header_logo img,
	.menu_overlay_logo img {
		height: 58px;
		max-width: 250px;
	}

	.menu_overlay_content {
		min-height: calc(100vh - 90px);
		padding: 100px 0 80px;
		display: flex;
		align-items: center;
	}

	.overlay_nav ul {
		gap: 38px;
	}

	.overlay_nav a {
		font-size: 24px;
	}
}

@media screen and (max-width: 480px) {
	.header_booking_link {
		font-size: 12px;
	}

	.header_logo img,
	.menu_overlay_logo img {
		height: 58px;
		max-width: 200px;
	}

	.menu_open_btn,
	.menu_close_btn {
		width: 34px;
		height: 26px;
	}

	.menu_open_btn img,
	.menu_close_btn img {
		width: 34px;
		height: 26px;
	}
}
@media screen and (max-width: 400px) {
	.header_logo img,
	.menu_overlay_logo img {
		height: 48px;
		max-width: 150px;
	}
	.header_languages {
		margin-left: 10px;
	}
}


/* //////////////////////////////////// FOOTER //////////////////////////////////// */

.w1280,
.w900 {
	margin-left: auto;
	margin-right: auto;
}

.site_footer a {
	text-decoration: none;
	transition: color 0.3s ease;
}

.site_footer a:hover {
	color: #91A767;
	text-decoration: none;
}

.footer_main {
	padding: 100px 0;
}

.footer_main h2 {
	text-align: left;
	margin-left: 0;
	margin-bottom: 55px;
}

.footer_main_grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 90px;
	align-items: center;
}

.footer_kontakt {
	font-size: 20px;
	line-height: 1.5;
	color: #665F52;
	font-weight:400;
}

.footer_adresse {
}

.footer_kontaktzeile {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}

.footer_kontaktzeile span:not(:last-child)::after {
	content: "|";
	display: inline-block;
	margin: 0 10px;
	color: #665F52;
}

.footer_kontaktzeile a {
	color: #665F52;
}

.footer_logos {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	width: auto;
	justify-self: end;
}

.footer_logos a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 175px;
	height: 130px;
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
	text-decoration: none;
}

.footer_logos a:hover,
.footer_logos a:focus,
.footer_logos a:active,
.footer_logos a:visited {
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
	text-decoration: none;
}

.footer_logos img {
	display: block;
	max-width: 175px;
	max-height: 130px;
	width: auto;
	height: auto;
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
}

.footer_sub {
	background-color: #787D6E;
	color: #ECE5DF;
	padding: 40px 0;
}

.footer_sub_inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.8px;
}

.footer_sub_inner span:not(:last-child)::after {
	content: "|";
	display: inline-block;
	margin: 0 10px;
	color: #ECE5DF;
}

.footer_sub a {
	color: #ECE5DF;
}

.footer_sub a:hover {
	color: #91A767;
	text-decoration: none;
}
@media screen and (max-width: 1120px) {
	.footer_logos a {
		justify-content: right;
		width: 150px;
		height: 120px;
	}
	.footer_logos img {
		max-width: 150px;
		max-height: 120px;
	}
	.footer_kontakt {
		font-size: 18px;
	}
}
@media screen and (max-width: 1000px) {
	.footer_main {
		padding: 70px 0;
	}

	.footer_main h2 {
		text-align: center;
		margin-left: auto;
	}

	.footer_main_grid {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
	}

	.footer_kontaktzeile {
		justify-content: center;
	}

	.footer_logos {
		justify-content: center;
		width: 100%;
	}
	.footer_logos a {
		justify-content: center;
	}
}

@media screen and (max-width: 550px) {
	.footer_kontaktzeile {
		flex-direction: column;
		gap: 8px;
	}

	.footer_kontaktzeile span:not(:last-child)::after {
		display: none;
	}

	.footer_logos {
		flex-direction: column;
		gap: 30px;
	}

	.footer_sub_inner {
		flex-direction: column;
		gap: 8px;
	}

	.footer_sub_inner span:not(:last-child)::after {
		display: none;
	}
}



/* //////////////////////////////////// CF7 ANFRAGE FORMULAR //////////////////////////////////// */

.cf7_anfrage {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	color: #665F52;
}

.cf7_anfrage h3 {
	margin: 0 auto 30px;
	font-family: "dm-sans", sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
}

.cf7_anfrage h3:not(:first-child) {
	margin-top: 55px;
}

.cf7_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 30px;
}

.cf7_full {
	width: 100%;
	margin-top: 24px;
}

.cf7_field_wrap {
	width: 100%;
}

.cf7_field_wrap label {
	display: block;
	margin: 0 0 8px;
	font-family: "dm-sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #91A767;
}

.cf7_field,
.cf7_anfrage input[type="text"],
.cf7_anfrage input[type="email"],
.cf7_anfrage input[type="tel"],
.cf7_anfrage select,
.cf7_anfrage textarea {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 12px 15px 10px;
	border: 1px solid #91A767;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
	outline: none;
	font-family: "dm-sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: #665F52;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	appearance: none;
}

.cf7_anfrage textarea {
	height: 150px;
	resize: vertical;
}

.cf7_anfrage select {
	background-image: linear-gradient(45deg, transparent 50%, #91A767 50%), linear-gradient(135deg, #91A767 50%, transparent 50%);
	background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.cf7_field:focus,
.cf7_anfrage input[type="text"]:focus,
.cf7_anfrage input[type="email"]:focus,
.cf7_anfrage input[type="tel"]:focus,
.cf7_anfrage select:focus,
.cf7_anfrage textarea:focus {
	border-color: #665F52;
	background-color: rgba(255,255,255,0.18);
}

.cf7_field::placeholder,
.cf7_anfrage input::placeholder,
.cf7_anfrage textarea::placeholder {
	color: #8F8679;
	opacity: 1;
}

.cf7_privacy {
	margin-top: 30px;
	font-family: "dm-sans", sans-serif;
	font-size: 17px;
	line-height: 1.4;
	color: #665F52;
	text-align: center;
}

.cf7_privacy .wpcf7-list-item {
	margin: 0;
}

.cf7_privacy label {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}

.cf7_privacy input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: #91A767;
}

.cf7_submit_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 40px;
}

.cf7_submit_wrap .block_link_line {
	width: 80px;
	height: 1px;
	background-color: #91A767;
}

.cf7_submit_wrap .wpcf7-submit,
.cf7_submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 12px 25px 10px;
	border: 1px solid #91A767;
	border-radius: 0;
	background-color: #91A767;
	color: #fff;
	font-family: "dm-sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.cf7_submit_wrap .wpcf7-submit:hover,
.cf7_submit:hover {
	background-color: #8F8679;
	border-color: #8F8679;
	color: #fff;
	transform: translateY(-2px);
}

.cf7_anfrage .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 14px;
	color: #91A767;
}

.cf7_anfrage .wpcf7-response-output {
	margin: 30px 0 0;
	padding: 15px 20px;
	border: 1px solid #91A767;
	color: #665F52;
	text-align: center;
}
/* Contact Form 7 Spinner ausblenden */

.cf7_anfrage .wpcf7-spinner {
	display: none !important;
}
.cf7_submit_wrap .wpcf7-spinner {
	margin: 0 !important;
	width: 0 !important;
	height: 0 !important;
}
.cf7_anfrage {
	margin: 40px 0; 
}


/* //////////////////////////////////// BLOCK 1 Slider Home //////////////////////////////////// */

.block_1 {
	width: 100%;
	height: calc(100vh - 90px);
	background-color: #787D6E;
	overflow: hidden;
}

.block_1_inner {
	position: relative;
	width: 90%;
	height: 100%;
	margin: 0 auto;
}

.block_1_slider,
.block_1_slider .slick-list,
.block_1_slider .slick-track,
.block_1_slide {
	height: 100%;
}

.block_1_slide {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.block_1_slide::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	height: 55%;
	background: linear-gradient(
		to top,
		rgba(102, 95, 82, 0.5) 0%,
		rgba(102, 95, 82, 0.42) 18%,
		rgba(102, 95, 82, 0.28) 38%,
		rgba(102, 95, 82, 0.12) 65%,
		rgba(102, 95, 82, 0) 100%
	);
	pointer-events: none;
}

.block_1_slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_1_slide_text {
	position: absolute;
	left: 50%;
	bottom: 150px;
	z-index: 3;
	width: calc(100% - 80px);
	max-width: 900px;
	transform: translateX(-50%);
	font-family: "dm-sans", sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #ECE5DF;
	margin: 0;
	font-size: 20px;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.block_1_arrows {
	position: absolute;
	left: 50%;
	bottom: 40px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transform: translateX(-50%);
}

.block_1_prev,
.block_1_next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: none;
	box-shadow: none;
	cursor: pointer;
	background: transparent;
}

.block_1_prev:hover,
.block_1_next:hover {
	background: transparent;
}

.block_1_prev img,
.block_1_next img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

@media screen and (max-width: 700px) {
	.block_1_slide_text {
		bottom: 125px;
		width: calc(100% - 40px);
		font-size: 17px;
		letter-spacing: 1.4px;
	}

	.block_1_arrows {
		bottom: 35px;
	}

	.block_1_inner {
		width: calc(100% - 40px);
	}
}



/* //////////////////////////////////// BLOCK 2 Slider //////////////////////////////////// */

.block_2 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.block_2_big {
	height: calc(100vh - 90px);
}

.block_2_small {
	height: 70vh;
}

.block_2_slider,
.block_2_slider .slick-list,
.block_2_slider .slick-track,
.block_2_slide {
	height: 100%;
}

.block_2_slide {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.block_2_slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_2_arrows {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 10px;
}

.block_2_prev,
.block_2_next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: none;
	box-shadow: none;
	cursor: pointer;
	background: transparent;
}

.block_2_prev:hover,
.block_2_next:hover {
}

.block_2_prev img,
.block_2_next img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

@media screen and (max-width: 700px) {
	.block_2_big {
		height: calc(100vh - 90px);
	}

	.block_2_small {
		height: 60vh;
	}

	.block_2_arrows {
		right: 20px;
		bottom: 20px;
	}

	.block_2_prev,
	.block_2_next {
		width: 42px;
		height: 42px;
	}
}




/* //////////////////////////////////// BLOCK 3 Bild / Titel / Text / Link //////////////////////////////////// */

.block_3 {
	width: 100%;
}

.block_3_obertitel {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 60px;
	text-align: center;
}

.block_3_obertitel h1,
.block_3_obertitel h2 {
	margin: 0 auto;
	color: #91A767;
}

.block_3_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	width: 100%;
	gap: 0;
}

.block_3.block_3_reverse .block_3_bild_wrap {
	order: 2;
}

.block_3.block_3_reverse .block_3_text_wrap {
	order: 1;
}

.block_3_bild_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.block_3_bild {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.block_3_bild img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_3_text_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 80px 40px;
	color: #665F52;
}

.block_3_text {
	width: 100%;
	max-width: 450px;
}

.block_3_text h3 {
	margin: 0 0 25px;
	color: #787D6E;
}

.block_3_content {
	color: #665F52;
}

.block_3_content p,
.block_3_content li {
	color: #665F52;
}

.block_3_link_wrap {
	margin-top: 35px;
}

.block_3_button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 14px 30px 12px;
	border-radius: 999px;
	background-image: url("../images/bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #665F52;
	font-family: "dm-serif-display", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1.5px;
	text-decoration: none;
	transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.block_3_button::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -80%;
	width: 55%;
	height: 200%;
	background: linear-gradient(
		120deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.15) 35%,
		rgba(255,255,255,0.85) 50%,
		rgba(255,255,255,0.15) 65%,
		rgba(255,255,255,0) 100%
	);
	transform: rotate(20deg);
	transition: left 0.65s ease;
	pointer-events: none;
}

.block_3_button::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(102,95,82,0.25);
	pointer-events: none;
}

.block_3_button:hover {
	color: #665F52;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(102,95,82,0.22);
}

.block_3_button:hover::before {
	left: 130%;
}

@media screen and (max-width: 800px) {
	.block_3_obertitel {
		margin-bottom: 40px;
	}

	.block_3_grid {
		grid-template-columns: 1fr;
	}

	.block_3.block_3_reverse .block_3_bild_wrap,
	.block_3.block_3_reverse .block_3_text_wrap {
		order: initial;
	}

	.block_3_bild_wrap {
		order: 1;
	}

	.block_3_text_wrap {
		order: 2;
		padding: 60px 25px 0;
		text-align: center;
	}

	.block_3_text {
		max-width: 450px;
		margin: 0 auto;
	}

	.block_3_link_wrap {
		display: flex;
		justify-content: center;
	}
}




/* //////////////////////////////////// BLOCK 4 Bild / Titel / Text / Hintergrund //////////////////////////////////// */

.block_4 {
	width: 100%;
}

.block_4_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	width: 100%;
}

.block_4_bild {
	width: 100%;
	min-height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.block_4_bild img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_4.block_4_reverse .block_4_bild {
	order: 2;
}

.block_4.block_4_reverse .block_4_text_wrap {
	order: 1;
}

.block_4_text_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 80px 40px;
	background-image: url("../images/bg_d.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ECE5DF;
}

.block_4_text {
	width: 100%;
	max-width: 450px;
	text-align: center;
}

.block_4_text h3 {
	margin: 0 0 150px;
	color: #ECE5DF;
}

.block_4_content {
	color: #ECE5DF;
}

.block_4_content p,
.block_4_content li {
	color: #ECE5DF;
}

.block_4_content a {
	color: #ECE5DF;
	text-decoration: underline;
}

.block_4_content a:hover {
	color: #91A767;
	text-decoration: none;
}

@media screen and (max-width: 800px) {
	@media screen and (max-width: 800px) {
	.block_4_grid {
		grid-template-columns: 1fr;
	}

	.block_4.block_4_reverse .block_4_bild,
	.block_4.block_4_reverse .block_4_text_wrap {
		order: initial;
	}

	.block_4_bild {
		order: 1;
		aspect-ratio: 1 / 1;
		min-height: auto;
	}

	.block_4_text_wrap {
		order: 2;
		padding: 50px 25px;
		text-align: center;
	}

	.block_4_text {
		max-width: 450px;
		margin: 0 auto;
	}
	.block_4_text h3 {
	margin: 0 0 50px;
	}
}
}




/* //////////////////////////////////// BLOCK 5 Titel / Link / 2 Bilder //////////////////////////////////// */

.block_5 {
	width: 100%;
}

.block_5_grid {
	display: grid;
	grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
	gap: 80px;
	align-items: start;
}

.block_5_left,
.block_5_right {
	width: 100%;
}

.block_5_left h2 {
	margin: 0 0 35px;
	text-align: left;
}

.block_5_link_wrap {
	margin-bottom: 100px;
}

.block_5_image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.block_5_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_5_image_1 {
	margin-top: 0;
}

.block_5_image_2 {
	margin-top: 0;
}

@media screen and (max-width: 800px) {
	.block_5_grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.block_5_left h2 {
		text-align: center;
	}

	.block_5_link_wrap {
		display: flex;
		justify-content: center;
		margin-bottom: 60px;
	}

	.block_5_right {
		order: 2;
	}

	.block_5_left {
		order: 1;
	}
}




/* //////////////////////////////////// BLOCK 6 Galerie //////////////////////////////////// */

.block_6 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.block_6_slider_wrap {
	position: relative;
	width: 100%;
	overflow: visible;
}

.block_6_slider {
	position: relative;
	width: 100%;
	overflow: visible;
}

.block_6_slider .slick-list {
	overflow: visible;
}

.block_6_slider .slick-track {
	display: flex;
	align-items: center;
}

.block_6_slide {
	padding: 0 35px;
}

.block_6_image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.block_6_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.block_6_arrows {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -70px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.block_6_prev,
.block_6_next {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: none;
	box-shadow: none;
	cursor: pointer;
	background: transparent;
	pointer-events: auto;
}

.block_6_prev {
	right: calc(50% + 35px);
	transform: translateX(50%);
}

.block_6_next {
	left: calc(50% + 35px);
	transform: translateX(-50%);
}

.block_6_prev img,
.block_6_next img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.block_6_prev:hover,
.block_6_next:hover {
	background: transparent;
}

.block_6.has_arrows {
	padding-bottom: 100px;
}

@media screen and (max-width: 900px) {
	.block_6_slide {
		padding: 0 20px;
	}

	.block_6_prev {
		right: calc(50% + 20px);
	}

	.block_6_next {
		left: calc(50% + 20px);
	}
}

@media screen and (max-width: 650px) {
	.block_6_slider .slick-list {
		overflow: hidden;
	}

	.block_6_slide {
		padding: 0 10px;
	}

	.block_6_prev {
		right: calc(50% + 10px);
	}

	.block_6_next {
		left: calc(50% + 10px);
	}
}



/* //////////////////////////////////// BLOCK 7 Preise //////////////////////////////////// */

.block_7 {
	width: 100%;
}

.block_7 h2 {
	margin: 0 auto 60px;
	text-align: center;
}

.block_7_price_table {
	display: grid;
	grid-template-columns: repeat(var(--block-7-cols), minmax(0, 1fr));
	width: 100%;
	border-top: 1px solid #665F52;
	border-left: 1px solid #665F52;
}

.block_7_price_col {
	display: grid;
	grid-template-rows: repeat(5, auto);
	min-width: 0;
}

.block_7_cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	padding: 15px;
	border-right: 1px solid #665F52;
	border-bottom: 1px solid #665F52;
	text-align: center;
	color: #665F52;
}

.block_7_date {
	min-height: 70px;
	font-weight: 600;
}

.block_7_label {
	margin-bottom: 5px;
}

.block_7_price {
	font-weight: 600;
	font-family: "dm-serif-display", sans-serif;
	font-size:26px;
}

.block_7_text_zusatz {
	margin: 20px auto 80px;
	text-align: center;
	color: #665F52;
}

.block_7_text_zusatz p,
.block_7_text_zusatz li {
	color: #665F52;
}

.block_7_kindertitel {
	margin: 0 auto 20px;
	text-align: center;
	color: #665F52;
}

.block_7_kinder_table {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	border-top: 1px solid #665F52;
	border-left: 1px solid #665F52;
}

.block_7_kinder_cell {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	padding: 15px;
	border-right: 1px solid #665F52;
	border-bottom: 1px solid #665F52;
	text-align: center;
	color: #665F52;
}

.block_7_kinder_cell p,
.block_7_kinder_cell li {
	color: #665F52;
}

@media screen and (max-width: 800px) {
	.block_7 h2 {
		margin-bottom: 40px;
	}

	.block_7_price_table {
		grid-template-columns: 1fr;
		border-top: none;
	}

	.block_7_price_col {
		border-top: 1px solid #665F52;
	}

	.block_7_price_col:not(:last-child) {
		margin-bottom: 30px;
	}

	.block_7_cell {
		min-height: auto;
		padding: 18px 15px;
	}

	.block_7_kinder_table {
		grid-template-columns: 1fr;
		border-top: none;
	}

	.block_7_kinder_cell {
		min-height: auto;
		padding: 20px 15px;
		border-top: 1px solid #665F52;
	}

	.block_7_kinder_cell:not(:last-child) {
		border-bottom: none;
	}
}




/* //////////////////////////////////// BLOCK 8 Accordeon //////////////////////////////////// */

.block_8 {
	width: 100%;
}

.block_8 h2 {
	margin: 0 0 60px;
	text-align: left;
}

.block_8_accordeon {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.block_8_item {
	margin-bottom: 40px;
}

.block_8_item:last-child {
	margin-bottom: 0;
}

.block_8_toggle {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
	box-shadow: none;
	text-align: left;
	cursor: pointer;
}

.block_8_toggle h3 {
	margin: 0;
	font-family: "dm-sans", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 25px;
	line-height: 1.2;
	color: #665F52;
}

.block_8_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
}

.block_8_icon img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 0.35s ease;
}

.block_8_item.open .block_8_icon img {
	transform: rotate(45deg);
}

.block_8_content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s ease;
}

.block_8_content_inner {
	padding-top: 10px;
	padding-left: 40px;
	color: #665F52;
}

.block_8_content_inner p,
.block_8_content_inner li {
	color: #665F52;
}

.block_8_link_wrap {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

@media screen and (max-width: 700px) {
	.block_8 h2 {
		margin-bottom: 40px;
	}

	.block_8_accordeon {
		max-width: 100%;
	}

	.block_8_toggle {
		gap: 14px;
	}

	.block_8_toggle h3 {
		font-size: 22px;
	}

	.block_8_content_inner {
		padding-left: 36px;
	}
}




/* //////////////////////////////////// BLOCK 9 Code //////////////////////////////////// */

.block_9 {
	width: 100%;
}