.ganis_header_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	pointer-events: none;
}

.ganis_header,
.ganis_menu_overlay {
	pointer-events: auto;
}

.ganis_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.ganis_header_inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 60px 70px 0 70px;
	min-height: 140px;
}

.ganis_header_left,
.ganis_header_center,
.ganis_header_right {
	display: flex;
	align-items: flex-start;
}

.ganis_header_center {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translateX(-50%);
	justify-content: center;
	width: 280px;
}

.ganis_logo_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.ganis_logo {
	display: block;
	width: 100%;
	height: auto;
}

.ganis_logo--hero {
	height: 270px;
}

.ganis_logo--fixed {
	height: 70px;
}

.ganis_logo--overlay {
	height: 70px;
}

.ganis_menu_toggle,
.ganis_menu_close {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ganis_menu_toggle:hover,
.ganis_menu_close:hover {
	transform: translateY(-2px);
}

.ganis_menu_icon img,
.ganis_menu_close img {
	display: block;
	width: 40px;
	height: auto;
}

.ganis_header--hero .ganis_menu_text {
	color: #ffffff;
}

.ganis_header--fixed .ganis_menu_text {
	color: #5F5652;
}

.ganis_booking_wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	padding-left: 34px;
}

.ganis_booking_btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 5px 30px 5px 45px;
	background: #71705A;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: sofia-pro, sans-serif;
	font-size: 14px;
	border-radius: 999px;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.3s ease, box-shadow 0.35s ease, background 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.ganis_booking_btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #8B8A71 0%, #5F5652 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: -1;
}

.ganis_booking_btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
	z-index: 1;
}

.ganis_booking_btn_text {
	position: relative;
	z-index: 2;
}

.ganis_booking_btn:hover {
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
	background: #5F5652;
	color:#ffffff;
}

.ganis_booking_btn:hover::before {
	opacity: 1;
}

.ganis_booking_btn:hover::after {
	left: 140%;
}

.ganis_info_toggle {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 70px;
	height: 70px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 4;
	transition: transform 0.3s ease;
}

.ganis_info_toggle img {
	display: block;
	width: 70px;
	height: 70px;
}

.ganis_info_toggle:hover {
	transform: translateY(-50%) scale(1.08);
}

.ganis_info_popup {
	position: absolute;
	top: calc(100% + 18px);
	right: 0;
	width: 420px;
	max-width: 90vw;
	background: #D7CFC5;
	color: #5F5652;
	padding: 20px 30px;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
	z-index: 9;
}

.ganis_booking_wrap.ganis_info_open .ganis_info_popup {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ganis_info_popup_corner {
	position: absolute;
	top: -18px;
	right: 170px;
	width: 30px;
	height: auto;
	transform: none;
}

.ganis_info_popup_corner img {
	display: block;
	width: 100%;
	height: auto;
}

.ganis_info_popup_content {
	font-family: sofia-pro, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	text-align: left;
}

.ganis_info_popup_content ul,
.ganis_info_popup_content ol {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ganis_info_popup_content ul li,
.ganis_info_popup_content ol li {
	position: relative;
	list-style: none !important;
	padding-left: 30px !important;
}

.ganis_info_popup_content ul li:last-child,
.ganis_info_popup_content ol li:last-child {
	margin-bottom: 0;
}

.ganis_info_popup_content ul li::before,
.ganis_info_popup_content ol li::before {
	content: "" !important;
	position: absolute;
	top: 4px;
	left: 0;
	width: 16px;
	height: 16px;
	background: url("../images/svg/check.svg") no-repeat center center !important;
	background-size: contain !important;
	display: block !important;
}


/* ========================================
   STANDORT HEADER / BUTTONS
======================================== */

.ganis_logo--hero-alm {
	height: 270px;
}

.ganis_logo--fixed-alm {
	height: 64px;
}

.ganis_logo--hero-gardone {
	height: 270px;
}

.ganis_logo--fixed-gardone {
	height: 66px;
}

.ganis_logo--hero-ehc {
	height: 270px;
}

.ganis_logo--fixed-ehc {
	height: 62px;
}

/* gemeinsame Basis für Standort-Buttons */
.alm_booking_btn,
.gardone_booking_btn,
.ehc_booking_btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 5px 30px 5px 45px;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: sofia-pro, sans-serif;
	font-size: 14px;
	border-radius: 999px;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.3s ease, box-shadow 0.35s ease, background 0.35s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.alm_booking_btn::before,
.gardone_booking_btn::before,
.ehc_booking_btn::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: -1;
}

.alm_booking_btn::after,
.gardone_booking_btn::after,
.ehc_booking_btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
	z-index: 1;
}

.alm_booking_btn:hover,
.gardone_booking_btn:hover,
.ehc_booking_btn:hover {
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
	color: #ffffff;
}

.alm_booking_btn:hover::before,
.gardone_booking_btn:hover::before,
.ehc_booking_btn:hover::before {
	opacity: 1;
}

.alm_booking_btn:hover::after,
.gardone_booking_btn:hover::after,
.ehc_booking_btn:hover::after {
	left: 140%;
}

.alm_booking_btn_text,
.gardone_booking_btn_text,
.ehc_booking_btn_text {
	position: relative;
	z-index: 2;
}

/* ALM */
.alm_booking_btn {
	background: #0098AD;
}

.alm_booking_btn::before {
	background: linear-gradient(135deg, #46B9C9 0%, #0098AD 100%);
}

.alm_booking_btn:hover {
	background: #0098AD;
}

/* GARDONE */
.gardone_booking_btn {
	background: #AE9847;
}

.gardone_booking_btn::before {
	background: linear-gradient(135deg, #D0BB74 0%, #AE9847 100%);
}

.gardone_booking_btn:hover {
	background: #AE9847;
}

/* EHC */
.ehc_booking_btn {
	background: #798B60;
}

.ehc_booking_btn::before {
	background: linear-gradient(135deg, #9CAF83 0%, #798B60 100%);
}

.ehc_booking_btn:hover {
	background: #798B60;
}

/* overlay-button dieselbe Farbe wie der jeweilige Standort */
.alm_booking_btn.ganis_booking_btn--overlay,
.gardone_booking_btn.ganis_booking_btn--overlay,
.ehc_booking_btn.ganis_booking_btn--overlay {
	padding-left: 34px;
}

/* Header Center je Standort gezielt ansprechbar */
.ganis_header--hero.standort-alm .ganis_header_center,
.ganis_header--fixed.standort-alm .ganis_header_center,
.ganis_header_wrap.standort-alm .ganis_header_center {
	width: 520px;
}

.ganis_header--hero.standort-gardone .ganis_header_center,
.ganis_header--fixed.standort-gardone .ganis_header_center,
.ganis_header_wrap.standort-gardone .ganis_header_center {
	width: 520px;
}

.ganis_header--hero.standort-ehc .ganis_header_center,
.ganis_header--fixed.standort-ehc .ganis_header_center,
.ganis_header_wrap.standort-ehc .ganis_header_center {
	width: 520px;
}

/* optionale Font-/Farb-Grundlage über Body-Klasse */
body.standort-alm {
	--ganis-standort-accent: #0098AD;
}

body.standort-gardone {
	--ganis-standort-accent: #AE9847;
}

body.standort-ehc {
	--ganis-standort-accent: #798B60;
}

body.standort-ganis {
	--ganis-standort-accent: #5F5652;
}

@media screen and (max-width: 991px) {
	.ganis_logo--hero-alm,
	.ganis_logo--hero-gardone,
	.ganis_logo--hero-ehc {
		height: 180px;
	}

	.ganis_logo--fixed-alm,
	.ganis_logo--fixed-gardone,
	.ganis_logo--fixed-ehc {
		height: 56px;
	}
}

@media screen and (max-width: 767px) {
	.ganis_logo--hero-alm,
	.ganis_logo--hero-gardone,
	.ganis_logo--hero-ehc {
		height: 135px;
	}

	.ganis_logo--fixed-alm,
	.ganis_logo--fixed-gardone,
	.ganis_logo--fixed-ehc {
		height: 48px;
	}

	.alm_booking_btn,
	.gardone_booking_btn,
	.ehc_booking_btn {
		min-height: 52px;
		padding: 5px 22px 5px 34px;
		font-size: 13px;
	}
}



.ganis_header--fixed {
	position: fixed;
	top: 0;
	left: 0;
	height: 100px;
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ganis_header--fixed .ganis_header_inner {
	align-items: center;
	padding-top: 0;
	min-height: 100px;
	height: 100px;
}

.ganis_header--fixed .ganis_header_center {
	top: 50%;
	transform: translate(-50%, -50%);
}

body.ganis_scrolled .ganis_header--hero {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-40px);
}

body.ganis_scrolled .ganis_header--fixed {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ganis_menu_overlay {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.45s ease;
	z-index: 10000;
}

.ganis_menu_overlay_bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ganis_menu_overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
}

.ganis_menu_overlay_inner {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 60px 70px 50px 70px;
	display: flex;
	flex-direction: column;
	overflow: scroll;
}

body.ganis_menu_open {
	overflow: hidden;
}

body.ganis_menu_open .ganis_menu_overlay {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ganis_menu_overlay_header {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	min-height: 120px;
}

.ganis_menu_overlay_left,
.ganis_menu_overlay_center,
.ganis_menu_overlay_right {
	display: flex;
	align-items: flex-start;
}

.ganis_menu_overlay_center {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	justify-content: center;
	width: 280px;
}

.ganis_menu_overlay_right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.ganis_lang_switch {
	display: flex;
	align-items: center;
	gap: 30px;
}

.ganis_lang_link {
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: sofia-pro, sans-serif;
	font-size: 16px;
	letter-spacing: 0.12em;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ganis_lang_link:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

.ganis_booking_btn--overlay {
	padding-left: 34px;
	background: #71705A;
}

.ganis_menu_overlay_content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0 120px 0;
}

.ganis_menu_grid {
	width: 100%;
	max-width: 1400px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 50px;
	align-items: stretch;
}

.ganis_menu_block {
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.ganis_menu_parent {
	font-family: Aurora, serif;
	font-size: 34px;
	line-height: 1.1;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 10px;
	transition: opacity 0.3s ease;
}

@media (max-width: 1200px){
	.ganis_menu_parent {
		font-size: 28px;
	}
}

.ganis_menu_block.is-active .ganis_menu_parent {
	color: #D7CFC5;
}

.ganis_menu_line {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
}

.ganis_menu_children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ganis_menu_child {
	margin-bottom: 12px;
}

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

.ganis_menu_child a {
	position: relative;
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1.4;
	padding-left: 0;
	transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.ganis_menu_child a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 1px;
	background: #ffffff;
	transition: width 0.3s ease;
}

.ganis_menu_child a:hover {
	transform: translateX(6px);
	opacity: 0.55;
}

.ganis_menu_child a:hover::after {
	width: 100%;
}

.ganis_menu_child.is-active a,
.ganis_menu_block.is-active .ganis_menu_child.is-active a {
	color: #D7CFC5;
}

.ganis_menu_child.is-active a::after {
	width: 100%;
	background: #D7CFC5;
}

.ganis_menu_overlay_bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.ganis_bottom_icon_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.ganis_bottom_icon_link img {
	display: block;
	height: 70px;
}

.ganis_bottom_icon_link:hover {
	transform: translateY(-4px) scale(1.04);
	opacity: 0.92;
}


.ganis_menu_overlay .ganis_info_toggle,
.ganis_menu_overlay .ganis_info_popup {
	display: none !important;
}

.ganis_menu_overlay .ganis_booking_wrap {
	padding-left: 0;
}


/* Floating SVG */
.rotating-svg-wrap { 
	display: inline-block;
	position: fixed;
	z-index: 99;
	bottom: 70px;
	right: 70px;
	width: 200px;
	cursor: pointer;
}
.rotating-svg { 
	display: inline-block; 
	transform-origin: 50% 50%; 
	will-change: transform; 
}
.rotating-svg svg { 
	display:block; 
	width:100%; 
	height:auto; 
}
.rotating-svg-icon{
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;

}
.rotating-svg-icon svg{
	display: block;
	width: 90px;
	height: auto;
	margin-bottom: 20px;
}
@media (max-width: 600px){
	.rotating-svg-wrap { 
		position: absolute;
		bottom: 120px;
		right: 35px;
		width: 150px;
	}
	.rotating-svg-icon{
		top: 35px;
		left: 35px;
		width: 80px;
		height: 80px;
	}
	.rotating-svg-icon svg{
		display: block;
		width: 70px;
		height: auto;
		margin-bottom: 20px;
	}
}

/* Panel */
.rotating-panel{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	background: #F3F0ED;
	transform: translateY(110%);
	transition: transform 450ms cubic-bezier(.2,.9,.2,1);
	will-change: transform;
}
.rotating-panel.is-open{ transform: translateY(0); }

.rotating-panel-inner{
	position: relative;
	width: 100%;
	padding: 70px 70px 60px 70px;
	box-sizing: border-box;
}

/* Close Button */
.rotating-panel-close{
	position: absolute;
	right: 70px;
	top: -22.5px;
	width: 45px;
	height: 45px;
	border-radius: 999px;
	background: #5F5652;
	border: 0;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 260ms ease;
}
.rotating-panel-close-ico{
	width: 29px;
	height: 29px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rotating-panel-close-ico svg{
	width: 29px;
	height: 29px;
	display: block;
}
.rotating-panel-close:hover{ transform: rotate(-90deg); }

/* Grid 4 columns + separator lines */
.rotating-panel-grid{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}
.rotating-panel-col{
	position: relative;
	padding: 10px 30px 0 30px;
	text-align: center;
	transition: transform 260ms ease;
}
.rotating-panel-col:not(:last-child)::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #5F5652;
}

/* Logo */
.rotating-panel-logo{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	text-decoration: none;
}
.rotating-panel-logo img{
	max-width: 220px;
	width: 100%;
	height: auto;
	display: block;
	transition: transform 320ms cubic-bezier(.2,.9,.2,1);
}

/* Button (mit „Buchen“-Effekt, Farben passend zu #D7CFC5 / #5F5652) */
.rotating-panel-btn{
	position: relative;
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 26px;
	min-height: 40px;
	font-size:13px;
	background: #D7CFC5;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 999px;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.3s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.rotating-panel-btn::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #D7CFC5 0%, #5F5652 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 0;
}
.rotating-panel-btn::after{
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 70%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
	transform: skewX(-25deg);
	transition: left 0.6s ease;
	z-index: 1;
}
/* Hover */
.rotating-panel-btn:hover{
	background: #5F5652;
	color:#ffffff;
	transform: translateY(-1px);
}
.rotating-panel-btn{
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color:#fff;
}

/* Hintergrund-Layer */
.rotating-panel-btn::before{ z-index: 0; }
.rotating-panel-btn::after{ z-index: 1; }

/* Text über allem */
.rotating-panel-btn-text{
	position: relative;
	z-index: 2;
}

/* Schrift bleibt auch bei hover/visited weiß */
.rotating-panel-btn{
	color:#5F5652!important;
}
.rotating-panel-btn:visited,
.rotating-panel-btn:hover,
.rotating-panel-btn:focus,
.rotating-panel-btn:active{
	color:#ffffff !important;
}
.rotating-panel-btn:hover::before{ opacity: 1; }
.rotating-panel-btn:hover::after{ left: 140%; }

/* Hover on whole column */
.rotating-panel-col:hover .rotating-panel-logo img{ transform: translateY(-2px) scale(1.03); }
.rotating-panel-col:hover .rotating-panel-btn{ transform: translateY(-1px); filter: brightness(0.95); }

/* Responsive */
@media (max-width: 900px){
	.rotating-panel-inner{ padding: 60px 25px 40px 25px; }
	.rotating-panel-close{ right: 25px; }
	.rotating-panel-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
	.rotating-panel-col:not(:last-child)::after{ display:none; }
	.rotating-panel-col{ padding: 10px 15px 20px 15px; }
}
@media (max-width: 520px){
	.rotating-panel-grid{ grid-template-columns: 1fr; }
}




.ganis_header_wrap--lp {
	position: relative;
	z-index: 10001;
}

.ganis_header--lp {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10001;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	background: rgba(255, 255, 255, 0.96);
	overflow: visible;
}

.ganis_header--lp .ganis_header_inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 70px;
	min-height: 100px;
	height: 100px;
}

.ganis_header--lp .ganis_header_left,
.ganis_header--lp .ganis_header_center,
.ganis_header--lp .ganis_header_right {
	display: flex;
	align-items: center;
}

.ganis_header--lp .ganis_header_left {
	flex: 0 0 auto;
}

.ganis_header_center--lp {
	position: static;
	left: auto;
	top: auto;
	transform: none !important;
	width: auto;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 40px;
}

.ganis_header--lp .ganis_header_center_nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	width: 100%;
}

.ganis_header--lp .ganis_header_right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.ganis_header--lp .lp_menupunkte {
	display: block;
}

.ganis_header--lp .lp_nav-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ganis_header--lp .lp_menu-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ganis_header--lp .lpmenulink {
	display: inline-block;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #5F5652;
	transition: opacity 0.3s ease;
}

.ganis_header--lp .lpmenulink:hover {
	opacity: 0.7;
}

.ganis_header--lp .ganis_lang_switch--lp {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	flex: 0 0 auto;
}

.ganis_header--lp .ganis_lang_link--lp {
	display: inline-block;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
	text-decoration: none;
	color: #5F5652;
	transition: opacity 0.3s ease;
}

.ganis_header--lp .ganis_lang_link--lp:hover {
	opacity: 0.7;
	transform: none;
}

.ganis_header--lp .ganis_menu_toggle--lp {
	display: none;
}

.ganis_header--lp .ganis_booking_wrap {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	padding-left: 34px;
	z-index: 20;
}

.ganis_header--lp .ganis_info_toggle {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 70px;
	height: 70px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 4;
	transition: transform 0.3s ease;
}

.ganis_header--lp .ganis_info_toggle img {
	display: block;
	width: 70px;
	height: 70px;
}

.ganis_header--lp .ganis_info_toggle:hover {
	transform: translateY(-50%) scale(1.08);
}

.ganis_header--lp .ganis_info_popup {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	left: auto;
	z-index: 30;
}

.ganis_lp_dropdown {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	z-index: 15;
}

.ganis_header--lp.is-open .ganis_lp_dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ganis_lp_dropdown_inner {
	padding: 26px 30px;
}

.ganis_lp_dropdown_menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.ganis_lp_dropdown_item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ganis_lp_dropdown_link {
	display: inline-block;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	color: #5F5652;
	transition: opacity 0.3s ease;
}

.ganis_lp_dropdown_link:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1300px) {
	.ganis_header--lp .ganis_header_inner {
		padding: 0 30px;
	}

	.ganis_header_center--lp {
		padding-right: 30px;
	}

	.ganis_header--lp .ganis_header_center_nav {
		gap: 22px;
	}

	.ganis_header--lp .lp_nav-menu {
		gap: 22px;
	}

	.ganis_header--lp .ganis_lang_switch--lp {
		gap: 22px;
	}

	.ganis_header--lp .lpmenulink,
	.ganis_header--lp .ganis_lang_link--lp {
		font-size: 16px;
	}
}

@media screen and (max-width: 1150px) {
	.ganis_header_center--lp {
		position: absolute;
		right: 260px;
		left: auto;
		top: 50%;
		width: auto;
		flex: 0 0 auto;
		padding-right: 0;
		transform: translateY(-50%) !important;
		justify-content: flex-end;
	}

	.ganis_header--lp .lp_menupunkte {
		display: none;
	}

	.ganis_header--lp .ganis_menu_toggle--lp {
		display: inline-flex;
		align-items: center;
	}

	.ganis_header--lp .ganis_header_center_nav {
		justify-content: flex-end;
		gap: 30px;
		width: auto;
	}

	.ganis_header--lp .ganis_lang_switch--lp {
		display: flex;
	}

	.ganis_header--lp .ganis_menu_toggle--lp .ganis_menu_text {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.ganis_header--lp .ganis_header_inner {
		padding: 0 22px;
		min-height: 86px;
		height: 86px;
	}

	.ganis_lp_dropdown {
		top: 86px;
	}

	.ganis_lp_dropdown_inner {
		padding: 22px;
	}
}

@media screen and (max-width: 600px) {
	.ganis_header--lp .ganis_info_toggle,
	.ganis_header--lp .ganis_info_popup {
		display: none !important;
	}

	.ganis_header_center--lp {
		right: 22px;
	}

	.ganis_header--lp .ganis_header_right {
		position: absolute;
		top: 86px;
		left: 0;
		width: 100%;
		justify-content: stretch;
		z-index: 14;
	}

	.ganis_header--lp .ganis_booking_wrap {
		display: block;
		width: 100%;
		padding-left: 0;
	}

	.ganis_header--lp .ganis_booking_btn {
		display: flex;
		width: 100%;
		min-height: 54px;
		border-radius: 0;
		padding: 14px 20px;
		justify-content: center;
		text-align: center;
		box-shadow: none;
	}

	.ganis_lp_dropdown {
		top: 86px;
		z-index: 16;
	}

	body.single-lp .main_wrapper,
	body.single-update .main_wrapper {
		padding-top: 140px;
	}
}





.ganis-footer-wrap {
	width: 100%;
	position: relative;
	z-index: 99;
}

.ganis-footer-main {
	width: 100%;
	background: #5F5652;
	color: #fff;
	padding: 100px 100px 70px 100px;
}

.ganis-footer-inner {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.ganis-footer-title {
	margin: 0 0 55px 0;
	color: #fff;
	font-size: 42px;
	line-height: 1.15;
	font-weight: 400;
	text-align: center;
}

.ganis-footer-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	align-items: stretch;
	margin-bottom: 55px;
}

.ganis-footer-col {
	min-width: 0;
}

.ganis-footer-col-left {
	text-align: left;
}

.ganis-footer-col-center {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ganis-footer-col-right {
	text-align: right;
	display: flex;
	justify-content: flex-end;
}

.ganis-footer-nav,
.ganis-footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ganis-footer-nav li {
	margin: 0;
	padding: 0;
}

.ganis-footer-nav li:last-child {
	margin-bottom: 0;
}

.ganis-footer-nav a,
.ganis-footer-address,
.ganis-footer-address p,
.ganis-footer-address a {
	color: #fff;
	font-size: 18px;
	line-height: 1.55;
	text-decoration: none;
}

.ganis-footer-nav a:hover,
.ganis-footer-address a:hover {
	opacity: 0.8;
}

.ganis-footer-address > *:first-child {
	margin-top: 0;
}

.ganis-footer-address > *:last-child {
	margin-bottom: 0;
}

.ganis-footer-center-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 100%;
}

.ganis-footer-contact-item a {
	color: #fff;
	font-size: 24px;
	line-height: 1.3;
	text-decoration: none;
}

.ganis-footer-contact-item a:hover {
	opacity: 0.8;
}

.ganis-footer-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 10px;
}

.ganis-footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	text-decoration: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.ganis-footer-socials a:hover {
	transform: translateY(-2px);
	opacity: 0.8;
}

.ganis-footer-socials img {
	width: 30px;
	height: 30px;
	display: block;
}

.ganis-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
}

.ganis-footer-bottom-item {
	color: #fff;
	text-decoration: none;
}

.ganis-footer-bottom-item:hover {
	color:#fff!important;
	opacity: 0.7;
}

.ganis-footer-sep {
	color: #fff;
	line-height: 1;
}

.ganis-subfooter-logos {
	width: 100%;
	background: #fff;
	padding: 30px 0;
	overflow: hidden;
	position: relative;
}

.ganis-subfooter-track {
	display: flex;
	align-items: center;
	width: fit-content;
	min-width: 200%;
	animation: ganis-footer-logo-marquee 45s linear infinite;
	will-change: transform;
}

.ganis-subfooter-track:hover {
	animation-play-state: paused;
}

.ganis-subfooter-group {
	display: flex;
	align-items: center;
	gap: 60px;
	flex: 0 0 auto;
	padding-right: 60px;
}

.ganis-subfooter-logo-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.ganis-subfooter-logo-item img {
	display: block;
	width: auto;
	height: 30px;
	max-width: none;
	max-height: 30px;
}

@keyframes ganis-footer-logo-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 1199px) {
	.ganis-footer-main {
		padding: 80px 60px 60px 60px;
	}

	.ganis-footer-title {
		font-size: 36px;
	}

	.ganis-footer-columns {
		gap: 35px;
	}

	.ganis-footer-contact-item a {
		font-size: 22px;
	}
}

@media screen and (max-width: 900px) {
	.ganis-footer-main {
		padding: 70px 30px 50px 30px;
	}

	.ganis-footer-title {
		text-align: center;
		margin-bottom: 40px;
	}

	.ganis-footer-columns {
		grid-template-columns: 1fr;
		gap: 35px;
		margin-bottom: 40px;
	}

	.ganis-footer-col-left,
	.ganis-footer-col-center,
	.ganis-footer-col-right,
	.ganis-footer-address,
	.ganis-footer-nav,
	.ganis-footer-nav li,
	.ganis-footer-nav a {
		text-align: center;
		justify-content: center;
	}

	.ganis-footer-col-right {
		justify-content: center;
	}

	.ganis-footer-address,
	.ganis-footer-address p,
	.ganis-footer-address a,
	.ganis-footer-nav a {
		font-size: 18px;
	}

	.ganis-footer-contact-item a {
		font-size: 22px;
	}

	.ganis-footer-bottom {
		justify-content: center;
		text-align: center;
	}

	.ganis-subfooter-group {
		gap: 40px;
		padding-right: 40px;
	}

	.ganis-subfooter-track {
		animation-duration: 38s;
	}
}

@media screen and (max-width: 640px) {
	.ganis-footer-main {
		padding: 60px 20px 45px 20px;
	}

	.ganis-footer-title {
		font-size: 30px;
	}

	.ganis-footer-nav a,
	.ganis-footer-address,
	.ganis-footer-address p,
	.ganis-footer-address a {
		font-size: 17px;
	}

	.ganis-footer-contact-item a {
		font-size: 20px;
	}

	.ganis-footer-bottom {
		font-size: 12px;
		gap: 10px;
	}

	.ganis-subfooter-logos {
		padding: 35px 0;
	}

	.ganis-subfooter-group {
		gap: 30px;
		padding-right: 30px;
	}

	.ganis-subfooter-logo-item img {
		height: 40px;
		max-height: 40px;
	}

	.ganis-subfooter-track {
		animation-duration: 32s;
	}
}


.ganis-footer-main--lp {
	padding-top: 60px;
	padding-bottom: 60px;
}

.ganis-footer-inner--lp {
	display: flex;
	justify-content: center;
	text-align: center;
}

.ganis-footer-center-inner--lp {
	max-width: 700px;
	margin: 0 auto;
	align-items: center;
}

.ganis-footer-address--lp {
	margin-top: 20px;
	text-align: center;
}

.ganis-footer-bottom--lp {
	justify-content: center;
}



/* ========================================
   LAYOUT BASICS
======================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

.fullwidth {
	width: 100%;
	position: relative;
}

.w1600,
.w1280,
.w1024,
.w960,
.w800,
.w750,
.w600 {
	width: 100%;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.w1600 { max-width: 2000px; }
.w1280 { max-width: 1280px; }
.w1024 { max-width: 1024px; }
.w960  { max-width: 960px; }
.w800  { max-width: 800px; }
.w750  { max-width: 750px; }
.w600  { max-width: 600px; }


/* ========================================
   STANDARD BLOCK SPACING
   Klassen bitte an deine ACF-Radiobutton-Werte anpassen,
   falls sie anders heißen
======================================== */

.margin_oben{
	padding-top: 120px;
}
.margin_unten{
	padding-bottom: 120px;
}
.padding_oben{
	padding-top: 120px;
}
.padding_unten{
	margin-bottom: 120px;
	padding-bottom: 0;
}

/* ========================================
   BLOCK BASIS
======================================== */

.ganis-block__inner--left {
	text-align: left;
}

.ganis-block__buttonwrap {
	margin-top: 0;
	line-height: 1;
}


/* ========================================
   BLOCK 1 / VERSION 1
======================================== */

.ganis-block--v1 .ganis-block__title--v1{
	margin: 0 0 35px;
	font-family: sofia-pro, sans-serif;
	font-size: 21px;
	line-height: 1.35;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5F5652;
}

.ganis-block--v39 .ganis-block__title--v39 {
	margin: 0 0 35px;
	font-family: sofia-pro, sans-serif;
	font-size: 28px;
	line-height: 1.35;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5F5652;
}

.ganis-block--v1 .ganis-block__text--v1 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	color: #5F5652;
}

.ganis-block--v1 .ganis-block__text--v1 > *:first-child {
	margin-top: 0;
}

.ganis-block--v1 .ganis-block__text--v1 > *:last-child {
	margin-bottom: 0;
}

.ganis-block--v1 .ganis-block__text--v1 p {
	margin: 0 0 20px;
}

.ganis-block--v1 .ganis-block__text--v1 strong,
.ganis-block--v1 .ganis-block__text--v1 b {
	font-family: "Aurora Semibold", serif;
	font-weight: 400;
}


/* ========================================
   RESPONSIVE
======================================== */

@media screen and (max-width: 991px) {
	.abstand-oben {
		padding-top: 90px;
	}

	.abstand-unten {
		padding-bottom: 90px;
	}

	.abstand-beide {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.ganis-block--v1 .ganis-block__title--v1 {
		font-size: 19px;
		margin-bottom: 28px;
	}

	.ganis-block--v1 .ganis-block__text--v1 {
		font-size: 32px;
		margin-bottom: 28px;
	}
}

@media screen and (max-width: 767px) {
	.w1280,
	.w1024,
	.w960,
	.w800,
	.w750,
	.w600 {
		padding-left: 22px;
		padding-right: 22px;
	}

	.abstand-oben {
		padding-top: 70px;
	}

	.abstand-unten {
		padding-bottom: 70px;
	}

	.abstand-beide {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.ganis-block--v1 .ganis-block__title--v1 {
		font-size: 17px;
		line-height: 1.35;
		letter-spacing: 0.11em;
		margin-bottom: 22px;
	}

	.ganis-block--v1 .ganis-block__text--v1 {
		font-size: 24px;
		line-height: 1.25;
		margin-bottom: 24px;
	}

	.ganis-block--v1 .ganis-block__text--v1 p {
		margin-bottom: 16px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block--v1 .ganis-block__title--v1 {
		font-size: 15px;
	}

	.ganis-block--v1 .ganis-block__text--v1 {
		font-size: 21px;
	}
}


.ganis-block__inner--center {
	text-align: center;
}

.ganis-block--v2 .ganis-block__title--v2 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-block--v2 .ganis-block__text--v2 {
	margin: 0 0 35px;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 200;
	color: #5F5652;
}

.ganis-block--v2 .ganis-block__text--v2 > *:first-child {
	margin-top: 0;
}

.ganis-block--v2 .ganis-block__text--v2 > *:last-child {
	margin-bottom: 0;
}

.ganis-block--v2 .ganis-block__text--v2 p {
	margin: 0 0 18px;
}

.ganis-block--v2 .ganis-block__buttonwrap--v2 {
	margin: 0 0 35px;
	line-height: 1;
}

.ganis-block--v2 .ganis-block__buttonwrap--v2:last-child {
	margin-bottom: 0;
}

.ganis-toggle-btn {
	cursor: pointer;
	border: 0;
}
.ganis-block--v2 .ganis-toggle-btn.rotating-panel-btn {
	display: inline-flex;
	width: auto;
	max-width: 100%;
}

.ganis-block__moretext[hidden] {
	display: none !important;
}

.ganis-block--v2 .ganis-block__text--v2-more {
	margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
	.ganis-block--v2 .ganis-block__title--v2 {
		font-size: 32px;
		margin-bottom: 28px;
	}

	.ganis-block--v2 .ganis-block__text--v2 {
		font-size: 20px;
		margin-bottom: 28px;
	}

	.ganis-block--v2 .ganis-block__buttonwrap--v2,
	.ganis-block--v2 .ganis-block__text--v2-more {
		margin-bottom: 28px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v2 .ganis-block__title--v2 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 22px;
	}

	.ganis-block--v2 .ganis-block__text--v2 {
		font-size: 18px;
		line-height: 1.45;
		margin-bottom: 22px;
	}

	.ganis-block--v2 .ganis-block__buttonwrap--v2,
	.ganis-block--v2 .ganis-block__text--v2-more {
		margin-bottom: 22px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block--v2 .ganis-block__title--v2 {
		font-size: 22px;
	}

	.ganis-block--v2 .ganis-block__text--v2 {
		font-size: 17px;
	}
}


.ganis-block--v3 .ganis-block__title--v3 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-block--v3 .ganis-block__text--v3 {
	margin: 0;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 200;
	color: #5F5652;
}

.ganis-block--v3 .ganis-block__text--v3 > *:first-child {
	margin-top: 0;
}

.ganis-block--v3 .ganis-block__text--v3 > *:last-child {
	margin-bottom: 0;
}

.ganis-block--v3 .ganis-block__text--v3 p {
	margin: 0 0 18px;
}

@media screen and (max-width: 991px) {
	.ganis-block--v3 .ganis-block__title--v3 {
		font-size: 32px;
		margin-bottom: 28px;
	}

	.ganis-block--v3 .ganis-block__text--v3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v3 .ganis-block__title--v3 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 22px;
	}

	.ganis-block--v3 .ganis-block__text--v3 {
		font-size: 18px;
		line-height: 1.45;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block--v3 .ganis-block__title--v3 {
		font-size: 22px;
	}

	.ganis-block--v3 .ganis-block__text--v3 {
		font-size: 17px;
	}
}


.ganis-block--v4 .ganis-block__title--v4 {
	margin: 0;
	font-family: "Aurora Regular", serif;
	font-size: 47px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	color: #9B1636;
}

@media screen and (max-width: 991px) {
	.ganis-block--v4 .ganis-block__title--v4 {
		font-size: 38px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v4 .ganis-block__title--v4 {
		font-size: 30px;
		line-height: 1.25;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block--v4 .ganis-block__title--v4 {
		font-size: 24px;
	}
}




.ganis-block--v5 .w1280 {
	max-width: 1280px;
}

.ganis-iconslider {
	width: 100%;
}

.ganis-iconslider .slick-list {
	overflow: hidden;
}

.ganis-iconslider .slick-track {
	display: flex !important;
	align-items: flex-start;
}

.ganis-iconslider .slick-slide {
	height: inherit !important;
	padding: 0 75px;
}

.ganis-iconslider .slick-slide > div {
	height: 100%;
}

.ganis-iconslider__item {
	text-align: center;
}

.ganis-iconslider__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
}

.ganis-iconslider__link--static {
	cursor: default;
}

.ganis-iconslider__iconwrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
}

.ganis-iconslider__icon {
	display: block;
	width: auto;
	height: 70px;
	max-width: 100%;
}

.ganis-iconslider__text {
	margin-top: 20px;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.4;
	color: #5F5652;
}

@media screen and (max-width: 1100px) {
	.ganis-iconslider .slick-slide {
		padding: 0 45px;
	}
}

@media screen and (max-width: 800px) {
	.ganis-iconslider .slick-slide {
		padding: 0 30px;
	}

	.ganis-iconslider__text {
		font-size: 20px;
	}
}

@media screen and (max-width: 500px) {
	.ganis-iconslider .slick-slide {
		padding: 0 15px;
	}

	.ganis-iconslider__icon {
		height: 60px;
	}

	.ganis-iconslider__text {
		font-size: 18px;
	}
}


.ganis-buttons-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 20px;
}

.ganis-buttons-grid__item {
	display: flex;
	justify-content: center;
	flex: 0 0 auto;
}


.fullwidth[id]::before {
	content: "";
	display: block;
	height: 150px;
	margin-top: -150px;
	visibility: hidden;
	pointer-events: none;
}



.ganis-block__moretext {
	display: none;
}

.ganis-block__moretext.is-open {
	display: block;
}

.ganis-block--v2 .ganis-toggle-btn.rotating-panel-btn,
.ganis-block--v7 .ganis-toggle-btn.rotating-panel-btn {
	display: inline-flex;
	width: auto;
	max-width: 100%;
	flex: 0 0 auto;
	cursor: pointer;
	border: 0;
	appearance: none;
	-webkit-appearance: none;
}

.ganis-block--v7 {
	position: relative;
	background-color: #EFECEA;
}

.ganis-block--v7 .w800,
.ganis-block--v7 .ganis-v7-media-wrap,
.ganis-block--v7 .ganis-block__bg-bottom {
	position: relative;
	z-index: 2;
}

.ganis-block--v7 .ganis-block__title--v7 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-block--v7 .ganis-block__text--v7 {
	margin: 0 0 35px;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 200;
	color: #5F5652;
}

.ganis-block--v7 .ganis-block__text--v7 > *:first-child {
	margin-top: 0;
}

.ganis-block--v7 .ganis-block__text--v7 > *:last-child {
	margin-bottom: 0;
}

.ganis-block--v7 .ganis-block__text--v7 p {
	margin: 0 0 18px;
}

.ganis-block--v7 .ganis-block__buttonwrap--v7 {
	margin: 0 0 35px;
	line-height: 1;
}

.ganis-block--v7 .ganis-block__text--v7-more {
	margin-bottom: 0;
}

.ganis-v7-media-wrap {
	max-width: 1600px;
	margin: 90px auto 0;
	padding-left: 40px;
	padding-right: 40px;
}

.ganis-v7-media {
	display: flex;
	align-items: flex-start;
	gap: 110px;
}

.ganis-v7-media__left {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 90px;
}

.ganis-v7-media__right {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
}

.ganis-v7-media__ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ganis-v7-media__ratio--43 {
	aspect-ratio: 4 / 3;
}

.ganis-v7-media__ratio--34 {
	aspect-ratio: 8 / 9;
}

.ganis-v7-media__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-block--v7 .ganis-block__bg-bottom {
	margin-top: -300px;
	height: 300px;
	background-color: #ffffff;
	z-index: 1;
}

@media screen and (max-width: 1400px) {
	.ganis-v7-media {
		gap: 70px;
	}

	.ganis-v7-media__left {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
	}

	.ganis-v7-media__right {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}
}

@media screen and (max-width: 991px) {
	.ganis-block--v7 .ganis-block__title--v7 {
		font-size: 32px;
		margin-bottom: 28px;
	}

	.ganis-block--v7 .ganis-block__text--v7 {
		font-size: 20px;
		margin-bottom: 28px;
	}

	.ganis-block--v7 .ganis-block__buttonwrap--v7 {
		margin-bottom: 28px;
	}

	.ganis-v7-media-wrap {
		margin-top: 70px;
		padding-left: 30px;
		padding-right: 30px;
	}

	.ganis-v7-media {
		gap: 40px;
	}

	.ganis-v7-media__left {
		flex-basis: calc((100% - 40px) * 0.6);
		max-width: calc((100% - 40px) * 0.6);
		margin-top: 50px;
	}

	.ganis-v7-media__right {
		flex-basis: calc((100% - 40px) * 0.4);
		max-width: calc((100% - 40px) * 0.4);
	}

	.ganis-block--v7 .ganis-block__bg-bottom {
		margin-top: -90px;
		height: 90px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v7 .ganis-block__title--v7 {
		font-size: 26px;
		margin-bottom: 22px;
	}

	.ganis-block--v7 .ganis-block__text--v7 {
		font-size: 18px;
		line-height: 1.45;
		margin-bottom: 22px;
	}

	.ganis-block--v7 .ganis-block__buttonwrap--v7 {
		margin-bottom: 22px;
	}

	.ganis-v7-media-wrap {
		margin-top: 50px;
		padding-left: 22px;
		padding-right: 22px;
	}

	.ganis-block--v7 .ganis-block__bg-bottom {
		margin-top: -70px;
		height: 70px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block--v7 .ganis-block__title--v7 {
		font-size: 22px;
	}

	.ganis-block--v7 .ganis-block__text--v7 {
		font-size: 17px;
	}
}



.ganis-block--v8 {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.ganis-block--v8-70 {
	height: 80vh;
}

.ganis-v8-slider,
.ganis-block--v8 .slick-list,
.ganis-block--v8 .slick-track,
.ganis-v8-slide,
.ganis-block--v8 .slick-slide,
.ganis-block--v8 .slick-slide > div {
	height: 100%;
}

.ganis-v8-slide {
	position: relative;
	overflow: hidden;
}

.ganis-v8-slide__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-v8-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.ganis-block--v8 .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	z-index: 4;
	cursor: pointer;
}

.ganis-block--v8 .slick-prev {
	left: 30px;
	background-image: url('../images/svg/prev.svg');
}

.ganis-block--v8 .slick-next {
	right: 30px;
	background-image: url('../images/svg/next.svg');
}

.ganis-block--v8 .slick-prev::before,
.ganis-block--v8 .slick-next::before {
	display: none;
	content: none;
}

@media screen and (max-width: 991px) {
	.ganis-block--v8 .slick-prev {
		left: 20px;
	}

	.ganis-block--v8 .slick-next {
		right: 20px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v8 .slick-prev,
	.ganis-block--v8 .slick-next {
		width: 24px;
		height: 24px;
		background-size: 24px 24px;
	}

	.ganis-block--v8 .slick-prev {
		left: 15px;
	}

	.ganis-block--v8 .slick-next {
		right: 15px;
	}
}



.ganis-block--v9 {
	position: relative;
}

.ganis-v9-imagewrap {
	position: relative;
	height: 70vh;
	min-height: 420px;
	overflow: hidden;
}

.ganis-v9-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-v9-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.ganis-v9-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 22px;
}

.ganis-v9-text {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Aurora Regular", serif;
	font-size: 68px;
	line-height: 1.1;
	font-weight: 400;
	color: #ffffff;
}

.ganis-v9-text > *:first-child {
	margin-top: 0;
}

.ganis-v9-text > *:last-child {
	margin-bottom: 0;
}

.ganis-v9-text p {
	margin: 0;
}

.ganis-v9-buttonwrap {
	margin-top: 70px;
	line-height: 1;
}

@media screen and (max-width: 1200px) {
	.ganis-v9-text {
		font-size: 54px;
	}
}

@media screen and (max-width: 991px) {
	.ganis-v9-imagewrap {
		min-height: 360px;
	}

	.ganis-v9-text {
		font-size: 42px;
	}

	.ganis-v9-buttonwrap {
		margin-top: 50px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v9-imagewrap {
		height: 70vh;
		min-height: 300px;
	}

	.ganis-v9-text {
		font-size: 30px;
		line-height: 1.15;
	}

	.ganis-v9-buttonwrap {
		margin-top: 35px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-v9-text {
		font-size: 24px;
	}
}




.ganis-v10-wrap {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.ganis-v10-grid {
	display: flex;
	align-items: flex-start;
	gap: 110px;
}

.ganis-v10-left {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
	min-width: 0;
}

.ganis-v10-right {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 110px;
}

.ganis-v10-media {
	position: relative;
	width: 100%;
}

.ganis-v10-media--top {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.ganis-v10-media--bottom {
	width: 100%;
}

.ganis-v10-icon {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
	z-index: 3;
	line-height: 1;
}

.ganis-v10-icon__img {
	display: block;
	width: 160px;
	height: auto;
	max-width: 160px;
}

.ganis-v10-ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ganis-v10-ratio--main {
	aspect-ratio: 1 / 1;
}

.ganis-v10-ratio--top {
	aspect-ratio: 8 / 9;
}

.ganis-v10-ratio--bottom {
	aspect-ratio: 4 / 3;
}

.ganis-v10-img,
.ganis-v10-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1100px) {
	.ganis-v10-grid {
		gap: 70px;
	}

	.ganis-v10-left {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}

	.ganis-v10-right {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
		gap: 70px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v10-wrap {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ganis-v10-grid {
		display: block;
	}

	.ganis-v10-left,
	.ganis-v10-right {
		width: 100%;
		max-width: 100%;
	}

	.ganis-v10-left {
		flex: none;
		margin-top: 0;
		margin-bottom: 40px;
	}

	.ganis-v10-right {
		flex: none;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
		width: 100%;
		max-width: 100%;
	}

	.ganis-v10-media--top,
	.ganis-v10-media--bottom {
		margin: 0;
	}

	.ganis-v10-media--top {
		flex: 0 0 calc((100% - 40px) * 0.4);
		max-width: calc((100% - 40px) * 0.4);
		width: calc((100% - 40px) * 0.4);
	}

	.ganis-v10-media--bottom {
		flex: 0 0 calc((100% - 40px) * 0.6);
		max-width: calc((100% - 40px) * 0.6);
		width: calc((100% - 40px) * 0.6);
	}

	.ganis-v10-ratio--main {
		aspect-ratio: 4 / 3;
	}

	.ganis-v10-ratio--top {
		aspect-ratio: 8 / 9;
	}

	.ganis-v10-ratio--bottom {
		aspect-ratio: 4 / 3;
	}

	.ganis-v10-icon {
		transform: translate(20%, -20%);
	}

	.ganis-v10-icon__img {
		max-width: 90px;
	}
}



.ganis-v11-wrap {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.ganis-v11-grid {
	display: flex;
	align-items: flex-start;
	gap: 110px;
}

.ganis-v11-item {
	min-width: 0;
}

.ganis-v11-media {
	position: relative;
	overflow: visible;
}

.ganis-v11-linkwrap {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}

.ganis-v11-ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ganis-v11-img,
.ganis-v11-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ganis-v11-linkwrap:hover .ganis-v11-img,
.ganis-v11-linkwrap:hover .ganis-v11-video {
	transform: scale(1.05);
}

.ganis-v11-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 70%);
	display: flex;
	align-items: flex-end;
	padding: 30px;
	pointer-events: none;
}

.ganis-v11-description {
	width: 100%;
	padding-bottom: 40px;
	font-family: sofia-pro, sans-serif;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 400;
	color: #ffffff;
}

.ganis-v11-description > *:first-child {
	margin-top: 0;
}

.ganis-v11-description > *:last-child {
	margin-bottom: 0;
}

.ganis-v11-description p {
	margin: 0;
}

.ganis-v11-decoration {
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translate(18%, 28%);
	z-index: 4;
	line-height: 1;
}

.ganis-v11-decoration__img {
	display: block;
	width: auto;
	height: auto;
	max-width: 220px;
}

.ganis-v11-grid.variante1 .ganis-v11-item--left {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
}

.ganis-v11-grid.variante1 .ganis-v11-item--right {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
}

.ganis-v11-grid.variante1 .ganis-v11-ratio--left {
	aspect-ratio: 4 / 3;
}

.ganis-v11-grid.variante1 .ganis-v11-ratio--right {
	aspect-ratio: 8 / 9;
}

.ganis-v11-grid.variante2 .ganis-v11-item--left {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
	margin-top: 0;
}

.ganis-v11-grid.variante2 .ganis-v11-item--right {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
}

.ganis-v11-grid.variante2 .ganis-v11-ratio--left {
	aspect-ratio: 8 / 9;
}

.ganis-v11-grid.variante2 .ganis-v11-ratio--right {
	aspect-ratio: 4 / 3;
}

@media screen and (max-width: 1200px) {
	.ganis-v11-grid {
		gap: 70px;
	}

	.ganis-v11-grid.variante1 .ganis-v11-item--left {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}

	.ganis-v11-grid.variante1 .ganis-v11-item--right {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v11-grid.variante2 .ganis-v11-item--left {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v11-grid.variante2 .ganis-v11-item--right {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v11-wrap {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ganis-v11-grid {
		display: block;
	}

	.ganis-v11-item--left,
	.ganis-v11-item--right {
		width: 100%;
		max-width: 100%;
	}

	.ganis-v11-grid.variante1 .ganis-v11-item--left,
	.ganis-v11-grid.variante1 .ganis-v11-item--right,
	.ganis-v11-grid.variante2 .ganis-v11-item--left,
	.ganis-v11-grid.variante2 .ganis-v11-item--right {
		max-width: 100%;
		flex: none;
		margin-top: 0;
	}

	.ganis-v11-item--left {
		margin-bottom: 40px;
	}

	.ganis-v11-grid.variante1 .ganis-v11-ratio--left,
	.ganis-v11-grid.variante2 .ganis-v11-ratio--right {
		aspect-ratio: 4 / 3;
	}

	.ganis-v11-grid.variante1 .ganis-v11-ratio--right,
	.ganis-v11-grid.variante2 .ganis-v11-ratio--left {
		aspect-ratio: 8 / 9;
	}

	.ganis-v11-overlay {
		padding: 20px;
	}

	.ganis-v11-description {
		padding-bottom: 20px;
		font-size: 26px;
	}

	.ganis-v11-decoration {
		transform: translate(12%, 18%);
	}

	.ganis-v11-decoration__img {
		max-width: 120px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-v11-description {
		font-size: 22px;
	}
}




.ganis-block--v12 {
	background-color: #5F5652;
	padding: 50px;
}

.ganis-block--v12 .w800 {
	max-width: 800px;
}

.ganis-block__title--v12 {
	margin: 0 0 40px;
	font-family: "Aurora Regular", serif;
	font-size: 60px;
	line-height: 1.1;
	font-weight: 400;
	text-align: center;
	color: #ffffff;
}

.ganis-v12-sliderwrap {
	position: relative;
}

.ganis-v12-slide__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.ganis-v12-slide__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-v12-slide__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.ganis-v12-slide__link {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
}

.ganis-v12-slide__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px;
	pointer-events: none;
}

.ganis-v12-slide__title {
	max-width: 90%;
	font-family: sofia-pro, sans-serif;
	font-size: 36px;
	line-height: 1.2;
	font-weight: 400;
	color: #ffffff;
}

.ganis-v12-slide__title > *:first-child {
	margin-top: 0;
}

.ganis-v12-slide__title > *:last-child {
	margin-bottom: 0;
}

.ganis-v12-slide__title p {
	margin: 0;
}

.ganis-v12-bottomnav {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.ganis-v12-arrow {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	cursor: pointer;
	margin-top: 18px;
}

.ganis-v12-arrow--prev {
	background-image: url('../images/svg/prev.svg');
}

.ganis-v12-arrow--next {
	background-image: url('../images/svg/next.svg');
}

.ganis-v12-arrow.slick-disabled {
	opacity: 0.35;
	pointer-events: none;
}

@media screen and (max-width: 991px) {
	.ganis-block--v12 {
		padding: 40px 30px;
	}

	.ganis-block__title--v12 {
		font-size: 46px;
	}

	.ganis-v12-slide__title {
		font-size: 30px;
	}

	.ganis-v12-arrow {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
		background-size: 52px 52px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block--v12 {
		padding: 30px 22px;
	}

	.ganis-block__title--v12 {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.ganis-v12-slide__content {
		padding: 20px;
	}

	.ganis-v12-slide__title {
		font-size: 24px;
	}

	.ganis-v12-bottomnav {
		gap: 18px;
		flex-wrap: nowrap;
	}

	.ganis-v12-arrow {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
		background-size: 44px 44px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block__title--v12 {
		font-size: 28px;
	}

	.ganis-v12-slide__title {
		font-size: 20px;
	}

	.ganis-v12-bottomnav {
		gap: 12px;
	}
}




.ganis-block--v13 {
	position: relative;
	padding-bottom: 70px;
}

.ganis-v13-bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60%;
	background-color: #EFECEA;
	z-index: 0;
}

.ganis-block--v13 .w1024 {
	position: relative;
	z-index: 1;
}

.ganis-block__title--v13 {
	margin: 0 0 40px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-v13-slider {
	position: relative;
}

.ganis-v13-slider .slick-list {
	overflow: hidden;
}

.ganis-v13-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.ganis-v13-slide {
	display: flex !important;
	align-items: stretch;
}

.ganis-v13-slide__imagecol {
	flex: 0 0 45%;
	max-width: 45%;
	padding-bottom: 60px;
}

.ganis-v13-slide__contentcol {
	flex: 0 0 55%;
	max-width: 55%;
}

.ganis-v13-slide__imagewrap {
	position: relative;
}

.ganis-v13-linkwrap {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
}

.ganis-v13-slide__ratio {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
}

.ganis-v13-slide__imageinner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ganis-v13-slide__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-v13-slide__icon {
	position: absolute;
	left: 50px;
	bottom: -70px;
	z-index: 10;
	line-height: 1;
	pointer-events: none;
}

.ganis-v13-slide__iconimg {
	display: block;
	width: 180px;
	height: auto;
	max-width: none;
}

.ganis-v13-slide__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	padding: 40px 0 40px 50px;
}

.ganis-v13-slide__title {
	margin: 0 0 25px;
	font-family: sofia-pro, sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-v13-slide__title > *:first-child {
	margin-top: 0;
}

.ganis-v13-slide__title > *:last-child {
	margin-bottom: 0;
}

.ganis-v13-slide__title p {
	margin: 0;
}

.ganis-v13-slide__text {
	font-family: sofia-pro, sans-serif;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 300;
	color: #5F5652;
}

.ganis-v13-slide__text > *:first-child {
	margin-top: 0;
}

.ganis-v13-slide__text > *:last-child {
	margin-bottom: 0;
}

.ganis-v13-slide__text p {
	margin: 0 0 16px;
}

.ganis-v13-nav {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.ganis-v13-arrow {
	width: 30px;
	height: 30px;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	cursor: pointer;
}

.ganis-v13-arrow--prev {
	background-image: url('../images/svg/prev_b.svg');
}

.ganis-v13-arrow--next {
	background-image: url('../images/svg/next_b.svg');
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v13 {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.ganis-v13-slide__imagecol {
		padding-bottom: 45px;
	}

	.ganis-v13-slide__content {
		padding-left: 35px;
	}

	.ganis-v13-slide__title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.ganis-v13-slide__text {
		font-size: 18px;
	}

	.ganis-v13-slide__icon {
		left: 30px;
		bottom: -25px;
	}

	.ganis-v13-slide__iconimg {
		width: 140px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v13-bg {
		height: 58%;
	}

	.ganis-v13-slide {
		display: block !important;
	}

	.ganis-v13-slide__imagecol,
	.ganis-v13-slide__contentcol {
		width: 100%;
		max-width: 100%;
		flex: none;
	}

	.ganis-v13-slide__imagecol {
		padding-bottom: 35px;
	}

	.ganis-v13-slide__content {
		padding: 35px 0 0;
	}

	.ganis-v13-slide__title {
		font-size: 24px;
	}

	.ganis-v13-slide__text {
		font-size: 17px;
	}

	.ganis-v13-slide__icon {
		left: 20px;
		bottom: -20px;
	}

	.ganis-v13-slide__iconimg {
		width: 120px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-v13-slide__title {
		font-size: 22px;
	}
}




.ganis-block__title--v22 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	color: #5F5652;
}

.ganis-block__code--v22 > *:first-child {
	margin-top: 0;
}

.ganis-block__code--v22 > *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v22 {
		font-size: 32px;
		margin-bottom: 28px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block__title--v22 {
		font-size: 26px;
		margin-bottom: 22px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block__title--v22 {
		font-size: 22px;
	}
}



.ganis-icontrenner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ganis-icontrenner__iconwrap {
	line-height: 1;
}

.ganis-icontrenner__icon {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
}

.ganis-icontrenner__link {
	display: inline-block;
	margin-top: 25px;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	color: #5F5652;
	transition: opacity 0.3s ease;
}

.ganis-icontrenner__link:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.ganis-icontrenner__link {
		font-size: 16px;
		margin-top: 20px;
	}
}



.ganis-icontrenner {
	display: flex;
	justify-content: center;
	text-align: center;
}

.ganis-icontrenner__wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.ganis-icontrenner__inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.ganis-icontrenner__iconwrap {
	line-height: 1;
	flex: 0 0 auto;
}

.ganis-icontrenner__icon {
	display: block;
	width: auto;
	height: 50px;
	max-width: none;
}

.ganis-icontrenner__linktext {
	font-family: sofia-pro, sans-serif;
	font-size: 25px;
	line-height: 1.1;
	font-weight: 400;
	text-transform: uppercase;
	color: #5F5652;
	transition: opacity 0.3s ease;
}

.ganis-icontrenner__line {
	width: 100%;
	height: 1px;
	background-color: #5F5652;
	margin-top: 20px;
}

.ganis-icontrenner__wrap:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.ganis-icontrenner__inner {
		gap: 20px;
	}

	.ganis-icontrenner__icon {
		height: 42px;
	}

	.ganis-icontrenner__linktext {
		font-size: 22px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-icontrenner__inner {
		flex-direction: column;
		gap: 16px;
	}

	.ganis-icontrenner__linktext {
		font-size: 18px;
	}
}


.ganis-v24-sliderwrap {
	position: relative;
}

.ganis-v24-slide__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.ganis-v24-slide__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ganis-v24-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	cursor: pointer;
	z-index: 3;
}

.ganis-v24-arrow--prev {
	left: 40px;
	background-image: url('../images/svg/prev.svg');
}

.ganis-v24-arrow--next {
	right: 40px;
	background-image: url('../images/svg/next.svg');
}

@media screen and (max-width: 767px) {
	.ganis-v24-arrow {
		width: 28px;
		height: 28px;
		background-size: 28px 28px;
	}

	.ganis-v24-arrow--prev {
		left: 20px;
	}

	.ganis-v24-arrow--next {
		right: 20px;
	}
}



.ganis-block__title--v26 {
	margin: 0 0 35px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
	text-align: center;
}

.ganis-block__textouter--v26 {
	margin-bottom: 35px;
}

.ganis-block__text--v26 > *:first-child {
	margin-top: 0;
}

.ganis-block__text--v26 > *:last-child {
	margin-bottom: 0;
}

.ganis-v26-gallerywrap {
	width: 100%;
	overflow: hidden;
}

.ganis-v26-gallery {
	width: 100%;
}

.ganis-v26-gallery__item {
	padding: 0 2.5px;
}

.ganis-v26-gallery__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ganis-v26-gallery__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	height: auto;
	object-fit: cover;
	object-position: center center;
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v26 {
		font-size: 32px;
		margin-bottom: 28px;
	}

	.ganis-block__textouter--v26 {
		margin-bottom: 28px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block__title--v26 {
		font-size: 26px;
		margin-bottom: 22px;
	}

	.ganis-block__textouter--v26 {
		margin-bottom: 22px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-block__title--v26 {
		font-size: 22px;
	}
}


.ganis-follow {
	display: flex;
	justify-content: center;
}

.ganis-follow__inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	text-align: left;
}

.ganis-follow__text {
	font-family: sofia-pro, sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	text-transform: uppercase;
	color: #5F5652;
}

.ganis-follow__text > *:first-child {
	margin-top: 0;
}

.ganis-follow__text > *:last-child {
	margin-bottom: 0;
}

.ganis-follow__icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex: 0 0 auto;
}

.ganis-follow__iconlink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ganis-follow__iconlink:hover {
	opacity: 0.7;
	transform: translateY(-2px);
}

.ganis-follow__icon {
	display: block;
	width: 40px;
	height: 40px;
}

@media screen and (max-width: 767px) {
	.ganis-follow__inner {
		flex-direction: column;
		gap: 18px;
		text-align: center;
	}

	.ganis-follow__text {
		font-size: 22px;
	}

	.ganis-follow__icons {
		gap: 16px;
	}

	.ganis-follow__icon {
		width: 34px;
		height: 34px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-follow__text {
		font-size: 18px;
	}
}


.ganis-block__title--v30 {
	margin: 0 0 25px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
	text-align: left;
}

.ganis-block__text--v30 {
	margin: 0 0 40px;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 300;
	color: #5F5652;
	text-align: left;
}

.ganis-block__text--v30 > *:first-child {
	margin-top: 0;
}

.ganis-block__text--v30 > *:last-child {
	margin-bottom: 0;
}

.ganis-accordion {
	border-top: 1px solid #5F5652;
	border-bottom: 1px solid #5F5652;
}

.ganis-accordion__item {
	border-top: 1px solid #5F5652;
}

.ganis-accordion__item:first-child {
	border-top: 0;
}

.ganis-accordion__button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 26px 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.ganis-accordion__title {
	display: block;
	font-family: sofia-pro, sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	color: #5F5652;
}

.ganis-accordion__icon {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
}

.ganis-accordion__icon::before,
.ganis-accordion__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 22px;
	height: 1px;
	background-color: #5F5652;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.ganis-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ganis-accordion__button[aria-expanded="true"] .ganis-accordion__icon::after {
	opacity: 0;
}

.ganis-accordion__panel {
	display: none;
	padding: 0 0 30px;
}

.ganis-accordion__panel.is-open {
	display: block;
}

.ganis-accordion__panelinner {
	font-family: sofia-pro, sans-serif;
	font-size: 20px;
	line-height: 1.6;
	font-weight: 300;
	color: #5F5652;
	padding-right: 50px;
}

.ganis-accordion__panelinner > *:first-child {
	margin-top: 0;
}

.ganis-accordion__panelinner > *:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v30 {
		font-size: 32px;
	}

	.ganis-block__text--v30 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.ganis-accordion__button {
		padding: 22px 0;
	}

	.ganis-accordion__title {
		font-size: 24px;
	}

	.ganis-accordion__panelinner {
		font-size: 18px;
		padding-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block__title--v30 {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.ganis-block__text--v30 {
		font-size: 18px;
		margin-bottom: 25px;
	}

	.ganis-accordion__button {
		gap: 20px;
		padding: 18px 0;
	}

	.ganis-accordion__title {
		font-size: 20px;
	}

	.ganis-accordion__icon {
		flex-basis: 24px;
		width: 24px;
		height: 24px;
	}

	.ganis-accordion__icon::before,
	.ganis-accordion__icon::after {
		width: 18px;
	}

	.ganis-accordion__panel {
		padding-bottom: 24px;
	}

	.ganis-accordion__panelinner {
		font-size: 17px;
	}
}



.ganis-downloads-grid {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	justify-content: center;
	column-gap: 50px;
	row-gap: 35px;
}

.ganis-downloads-grid__item {
	display: flex;
	justify-content: center;
}

.ganis-downloads-grid__item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	justify-self: center;
}

.ganis-downloadlink {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.ganis-downloadlink__inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.ganis-downloadlink__iconwrap {
	line-height: 1;
	flex: 0 0 auto;
}

.ganis-downloadlink__icon {
	display: block;
	width: auto;
	height: 50px;
	max-width: none;
}

.ganis-downloadlink__text {
	font-family: sofia-pro, sans-serif;
	font-size: 25px;
	line-height: 1.1;
	font-weight: 400;
	text-transform: uppercase;
	color: #5F5652;
}

.ganis-downloadlink__line {
	width: 100%;
	height: 1px;
	background-color: #5F5652;
	margin-top: 20px;
}

.ganis-downloadlink:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.ganis-downloads-grid {
		grid-template-columns: 1fr;
		row-gap: 25px;
	}

	.ganis-downloads-grid__item,
	.ganis-downloads-grid__item:last-child:nth-child(odd) {
		grid-column: auto;
		justify-self: center;
	}

	.ganis-downloadlink__inner {
		gap: 20px;
	}

	.ganis-downloadlink__icon {
		height: 42px;
	}

	.ganis-downloadlink__text {
		font-size: 22px;
	}
}

@media screen and (max-width: 479px) {
	.ganis-downloadlink__inner {
		flex-direction: column;
		gap: 16px;
	}

	.ganis-downloadlink__text {
		font-size: 18px;
		text-align: center;
	}
}



.ganis-block--v36 {
	position: relative;
}

.ganis-v36-stage {
	position: relative;
	width: 100%;
	height: 100vh;
}

.ganis-v36-video-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
}

.ganis-v36-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ganis-v36-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

@media screen and (max-width: 767px) {
	.ganis-v36-stage {
		height: 100svh;
	}
}



.ganis-block--v37 {
	background: #d7cfc6;
}

.ganis-block__title--v37 {
	margin: 0 0 40px;
	font-family: sofia-pro, sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}

.ganis-v37-sliderwrap {
	position: relative;
}

.ganis-v37-slide {
	padding: 0 10px;
}

.ganis-v37-box {
	background: #f3f0ed;
	padding: 20px;
	height: auto;
}

.ganis-v37-bewertungstitel {
	margin: 0 0 12px;
	font-family: sofia-pro, sans-serif;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	color: #635752;
	text-align: left;
}

.ganis-v37-bewertung {
	margin: 0 0 14px;
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1.55;
	font-weight: 400;
	color: #635752;
	text-align: left;
}

.ganis-v37-bewertung > *:first-child {
	margin-top: 0;
}

.ganis-v37-bewertung > *:last-child {
	margin-bottom: 0;
}

.ganis-v37-name {
	font-family: sofia-pro, sans-serif;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
	font-style: italic;
	color: #635752;
	text-align: left;
}

.ganis-v37-line {
	width: 100%;
	height: 1px;
	background: #635752;
	margin: 10px 0;
}

.ganis-v37-portal {
	text-align: right;
	line-height: 1;
}

.ganis-v37-portal a {
	display: inline-block;
	transition: opacity 0.3s ease;
}

.ganis-v37-portal a:hover {
	opacity: 0.7;
}

.ganis-v37-portal img {
	display: block;
	max-height: 32px;
	width: auto;
	margin-left: auto;
}

.ganis-v37-nav {
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.ganis-v37-arrow {
	width: 40px;
	height: 40px;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 40px 40px;
	cursor: pointer;
}

.ganis-v37-arrow--prev {
	background-image: url('../images/svg/prev_b.svg');
}

.ganis-v37-arrow--next {
	background-image: url('../images/svg/next_b.svg');
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v37 {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.ganis-v37-bewertungstitel {
		font-size: 20px;
	}

	.ganis-v37-bewertung,
	.ganis-v37-name {
		font-size: 17px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block__title--v37 {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.ganis-v37-slide {
		padding: 0;
	}

	.ganis-v37-bewertungstitel {
		font-size: 18px;
	}

	.ganis-v37-bewertung,
	.ganis-v37-name {
		font-size: 16px;
	}

	.ganis-v37-arrow {
		width: 34px;
		height: 34px;
		background-size: 34px 34px;
	}
}



.ganis-block--v14 {
	background-color: #71705A;
	padding: 120px 0;
}

.ganis-v14-wrap {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.ganis-v14-grid {
	display: flex;
	align-items: flex-start;
	gap: 110px;
}

.ganis-v14-item {
	min-width: 0;
}

.ganis-v14-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ganis-v14-card__media {
	position: relative;
	overflow: visible;
}

.ganis-v14-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ganis-v14-card:hover .ganis-v14-card__img {
	transform: scale(1.05);
}

.ganis-v14-card__content {
	padding-top: 20px;
	text-align: left;
}

.ganis-v14-card__title {
	margin: 0;
	font-family: sofia-pro, sans-serif;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 400;
	color: #ffffff;
}

.ganis-v14-card__badge {
	position: absolute;
	left: 40px;
	top: -30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.ganis-v14-card__badge--angebot {
	background-color: #D9CA65;
}

.ganis-v14-card__badge--story {
	background-color: #D7CFC5;
}

.ganis-v14-card__badgeicon {
	display: block;
	width: 40px;
	height: 40px;
}
.ganis-v14-card__badge {
	position: absolute;
	left: 40px;
	top: -30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	background-color: #D7CFC5;
	overflow: hidden;
}

.ganis-v14-card__badge--angebot {
	background-color: #D9CA65;
}

.ganis-v14-card__badge--story {
	background-color: #D7CFC5;
}

.ganis-v14-card__badgeicon {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.ganis-v14-grid.variante1 .ganis-v14-item--left {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
}

.ganis-v14-grid.variante1 .ganis-v14-item--right {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
}

.ganis-v14-grid.variante1 .ganis-v14-item--left .ganis-v14-card__media {
	aspect-ratio: 4 / 3;
}

.ganis-v14-grid.variante1 .ganis-v14-item--right .ganis-v14-card__media {
	aspect-ratio: 8 / 9;
}

.ganis-v14-grid.variante2 .ganis-v14-item--left {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
	margin-top: 0;
}

.ganis-v14-grid.variante2 .ganis-v14-item--right {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
}

.ganis-v14-grid.variante2 .ganis-v14-item--left .ganis-v14-card__media {
	aspect-ratio: 8 / 9;
}

.ganis-v14-grid.variante2 .ganis-v14-item--right .ganis-v14-card__media {
	aspect-ratio: 4 / 3;
}

.ganis-v14-grid--single {
	justify-content: center;
}

.ganis-v14-grid--single .ganis-v14-item--left,
.ganis-v14-grid--single .ganis-v14-item--right {
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 0;
}

.ganis-v14-grid--single .ganis-v14-card__badge {
	display: none;
}

@media screen and (max-width: 1200px) {
	.ganis-v14-grid {
		gap: 70px;
	}

	.ganis-v14-grid.variante1 .ganis-v14-item--left {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}

	.ganis-v14-grid.variante1 .ganis-v14-item--right {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v14-grid.variante2 .ganis-v14-item--left {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v14-grid.variante2 .ganis-v14-item--right {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v14-wrap {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ganis-v14-grid {
		display: block;
	}

	.ganis-v14-item--left,
	.ganis-v14-item--right,
	.ganis-v14-grid.variante1 .ganis-v14-item--left,
	.ganis-v14-grid.variante1 .ganis-v14-item--right,
	.ganis-v14-grid.variante2 .ganis-v14-item--left,
	.ganis-v14-grid.variante2 .ganis-v14-item--right {
		width: 100%;
		max-width: 100%;
		flex: none;
		margin-top: 0;
	}

	.ganis-v14-item--left {
		margin-bottom: 40px;
	}

	.ganis-v14-grid.variante1 .ganis-v14-item--left .ganis-v14-card__media,
	.ganis-v14-grid.variante2 .ganis-v14-item--right .ganis-v14-card__media {
		aspect-ratio: 4 / 3;
	}

	.ganis-v14-grid.variante1 .ganis-v14-item--right .ganis-v14-card__media,
	.ganis-v14-grid.variante2 .ganis-v14-item--left .ganis-v14-card__media {
		aspect-ratio: 8 / 9;
	}

	.ganis-v14-card__title {
		font-size: 24px;
	}

	.ganis-v14-card__badge {
		left: 20px;
		top: -20px;
	}
}





.ganis-v43-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	justify-content: center;
}

.ganis-v43-item {
	min-width: 0;
}

.ganis-v43-item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	justify-self: center;
	width: calc((100% - 40px) / 2);
}

.ganis-v43-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ganis-v43-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ganis-v43-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.ganis-v43-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.ganis-v43-card__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.ganis-v43-card__play img {
	display: block;
	width: 64px;
	height: 64px;
}

.ganis-v43-card__title {
	margin-top: 18px;
	font-family: sofia-pro, sans-serif;
	font-size: 20px;
	line-height: 1.25;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
}

.ganis-video-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.ganis-video-overlay[hidden] {
	display: none;
}

.ganis-video-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.ganis-video-overlay__inner {
	position: relative;
	z-index: 2;
	width: 90vw;
	max-width: 1600px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.ganis-video-overlay__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0 0 20px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.ganis-video-overlay__close img {
	display: block;
	width: 40px;
	height: 40px;
}

.ganis-video-overlay__framewrap {
	width: 100%;
	max-height: calc(90vh - 60px);
}

.ganis-video-overlay__ratio {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: calc(90vh - 60px);
	margin: 0 auto;
}

.ganis-video-overlay__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

body.ganis-video-open {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.ganis-v43-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ganis-v43-item:last-child:nth-child(odd) {
		grid-column: auto;
		justify-self: stretch;
		width: 100%;
	}

	.ganis-v43-card__play img {
		width: 52px;
		height: 52px;
	}

	.ganis-video-overlay {
		padding: 22px;
	}

	.ganis-video-overlay__inner {
		width: 90vw;
	}

	.ganis-video-overlay__close {
		margin-bottom: 14px;
	}
}



.ganis-v44-wrap {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

.ganis-v44-grid {
	display: flex;
	align-items: flex-start;
	gap: 110px;
	margin-bottom: 40px;
}

.ganis-v44-grid:last-child {
	margin-bottom: 0;
}

.ganis-v44-item {
	min-width: 0;
}

.ganis-v44-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ganis-v44-card__media {
	position: relative;
	overflow: hidden;
}

.ganis-v44-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ganis-v44-card:hover .ganis-v44-card__img {
	transform: scale(1.05);
}

.ganis-v44-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 70%);
	display: flex;
	align-items: flex-end;
	padding: 30px;
	pointer-events: none;
}

.ganis-v44-description {
	width: 100%;
	padding-bottom: 40px;
	font-family: sofia-pro, sans-serif;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 400;
	color: #ffffff;
}

.ganis-v44-description > *:first-child {
	margin-top: 0;
}

.ganis-v44-description > *:last-child {
	margin-bottom: 0;
}

.ganis-v44-description p {
	margin: 0;
}

.ganis-v44-grid.variante2 .ganis-v44-item--left {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
	margin-top: 0;
}

.ganis-v44-grid.variante2 .ganis-v44-item--right {
	flex: 0 0 calc((100% - 110px) * 0.6);
	max-width: calc((100% - 110px) * 0.6);
	margin-top: 120px;
}

.ganis-v44-grid.variante2 .ganis-v44-item--left .ganis-v44-card__media {
	aspect-ratio: 8 / 9;
}

.ganis-v44-grid.variante2 .ganis-v44-item--right .ganis-v44-card__media {
	aspect-ratio: 4 / 3;
}

.ganis-v44-grid--single {
	justify-content: flex-start;
}

.ganis-v44-grid--single .ganis-v44-item--left {
	flex: 0 0 calc((100% - 110px) * 0.4);
	max-width: calc((100% - 110px) * 0.4);
}

@media screen and (max-width: 1200px) {
	.ganis-v44-grid {
		gap: 70px;
	}

	.ganis-v44-grid.variante2 .ganis-v44-item--left {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v44-grid.variante2 .ganis-v44-item--right {
		flex-basis: calc((100% - 70px) * 0.6);
		max-width: calc((100% - 70px) * 0.6);
		margin-top: 90px;
	}

	.ganis-v44-grid--single .ganis-v44-item--left {
		flex-basis: calc((100% - 70px) * 0.4);
		max-width: calc((100% - 70px) * 0.4);
	}

	.ganis-v44-description {
		font-size: 32px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-v44-wrap {
		padding-left: 22px;
		padding-right: 22px;
	}

	.ganis-v44-grid {
		display: block;
		margin-bottom: 40px;
	}

	.ganis-v44-item--left,
	.ganis-v44-item--right,
	.ganis-v44-grid.variante2 .ganis-v44-item--left,
	.ganis-v44-grid.variante2 .ganis-v44-item--right,
	.ganis-v44-grid--single .ganis-v44-item--left {
		width: 100%;
		max-width: 100%;
		flex: none;
		margin-top: 0;
	}

	.ganis-v44-item--left {
		margin-bottom: 40px;
	}

	.ganis-v44-grid.variante2 .ganis-v44-item--left .ganis-v44-card__media {
		aspect-ratio: 4 / 3;
	}

	.ganis-v44-grid.variante2 .ganis-v44-item--right .ganis-v44-card__media {
		aspect-ratio: 4 / 3;
	}

	.ganis-v44-overlay {
		padding: 20px;
	}

	.ganis-v44-description {
		padding-bottom: 20px;
		font-size: 24px;
	}
}


.ganis-block__title--v34 {
	margin: 0 0 40px;
	font-family: "Aurora Regular", serif;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	text-align: center;
	color: #5F5652;
}

.ganis-v34-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 50px;
	align-items: start;
}

.ganis-v34-media {
	min-width: 0;
}

.ganis-v34-media__img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.ganis-v34-listwrap {
	min-width: 0;
}

.ganis-v34-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ganis-v34-list__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #5F5652;
}

.ganis-v34-list__icon {
	flex: 0 0 20px;
	line-height: 1;
	padding-top: 4px;
}

.ganis-v34-list__icon img {
	display: block;
	width: 20px;
	height: 20px;
}

.ganis-v34-list__text {
	display: block;
	font-family: sofia-pro, sans-serif;
	font-size: 20px;
	line-height: 1.45;
	font-weight: 300;
	color: #5F5652;
}

@media screen and (max-width: 991px) {
	.ganis-block__title--v34 {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.ganis-v34-grid {
		gap: 35px;
	}

	.ganis-v34-list__text {
		font-size: 18px;
	}
}

@media screen and (max-width: 767px) {
	.ganis-block__title--v34 {
		font-size: 26px;
		margin-bottom: 24px;
	}

	.ganis-v34-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ganis-v34-list__text {
		font-size: 17px;
	}
}



.ganis-tabs-nav.tab {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 35px;
}

.ganis-tabs-nav.tab .tablinks {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	cursor: pointer;
}

.ganis-tabs-nav.tab .tablinks.active {
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
	background: #5F5652;
	color: #ffffff!important;
}

.ganis-tabs-nav.tab .tablinks.active::before {
	opacity: 1;
}

.ganis-tabs-nav.tab .tablinks.active::after {
	left: 140%;
}

@media screen and (max-width: 767px) {
	.ganis-tabs-nav.tab {
		gap: 12px;
		margin-bottom: 25px;
	}
}


.beige{
	background-color: #EFECEA;
}



.ganis-mobilebar {
	display: none;
}

@media screen and (max-width: 980px) {
	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--fixed {
		display: none !important;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateY(0) !important;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero .ganis_header_left,
	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero .ganis_header_right {
		display: none !important;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero .ganis_header_inner {
		min-height: 110px;
		padding: 20px 22px 0;
		justify-content: center;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero .ganis_header_center {
		display: flex !important;
		position: absolute;
		left: 50%;
		top: 60px;
		transform: translateX(-50%);
		width: 280px;
		justify-content: center;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_header--hero .ganis_logo--hero {
		width: auto;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis-mobilebar {
		display: grid;
	}

	.ganis-mobilebar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10020;
		height: 60px;
		display: grid;
		grid-template-columns: 60px 60px 60px 60px minmax(0, 1fr);
		background: #d7cfc6;
	}

	.ganis-mobilebar__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 60px;
		text-decoration: none;
		border-right: 1px solid #635752;
		background: #d7cfc6;
		padding: 0;
		margin: 0;
		border-left: 0;
		border-top: 0;
		border-bottom: 0;
		cursor: pointer;
	}

	.ganis-mobilebar__item--icon img {
		display: block;
		width: 46px;
		height: 46px;
	}

	.ganis-mobilebar__icon--menu img {
		display: block;
		width: 28px;
		height: 28px;
	}

	.ganis-mobilebar__icon--close img {
		display: block;
		width: 24px;
		height: 24px;
	}

	.ganis-mobilebar__item--booking {
		background: #747159;
		color: #ffffff;
		font-family: sofia-pro, sans-serif;
		font-size: 14px;
		line-height: 1;
		font-weight: 400;
		text-transform: uppercase;
		text-align: center;
		padding: 0 12px;
		border-right: 0;
	}

	.ganis-mobilebar__item--booking span {
		display: block;
		position: relative;
		top: 1px;
	}

	.ganis-mobilebar__item--disabled {
		pointer-events: none;
		opacity: 0.5;
	}

	.ganis-mobilebar__menu {
		appearance: none;
		-webkit-appearance: none;
	}

	.ganis-mobilebar__icon {
		position: absolute;
		inset: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.25s ease;
	}

	.ganis-mobilebar__icon--close {
		opacity: 0;
		pointer-events: none;
	}

	body.ganis_menu_open .ganis-mobilebar__icon--menu {
		opacity: 0;
		pointer-events: none;
	}

	body.ganis_menu_open .ganis-mobilebar__icon--close {
		opacity: 1;
		pointer-events: auto;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .ganis_menu_overlay {
		transform: translateY(100%);
		opacity: 0;
		visibility: hidden;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update).ganis_menu_open .ganis_menu_overlay {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.ganis_menu_overlay_inner {
		padding: 30px 22px 120px 22px;
	}

	.ganis_menu_overlay_header {
		min-height: 80px;
	}

	.ganis_menu_overlay_center,
	.ganis_menu_overlay_right {
		display: none;
	}

	.ganis_menu_overlay_left {
		width: 100%;
		justify-content: flex-end;
	}

	.ganis_menu_overlay_content {
		flex: 1;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding: 20px 0 30px 0;
	}

	.ganis_menu_grid {
		width: 100%;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ganis_menu_block {
		min-height: 0;
	}

	.ganis_menu_parent {
		font-size: 28px;
	}

	.ganis_menu_child a {
		font-size: 18px;
	}

	.ganis_menu_overlay_bottom {
		position: static;
		transform: none;
		padding-bottom: 0;
		margin-top: 10px;
		flex-wrap: wrap;
	}

	body:not(.single-lp):not(.single-update):not(.post-type-archive-update) .page_wrapper {
		padding-bottom: 60px;
	}
}

@media screen and (max-width: 420px) {
	.ganis-mobilebar {
		grid-template-columns: 60px 60px 60px 60px minmax(80px, 1fr);
	}

	.ganis-mobilebar__item--booking {
		font-size: 12px;
		padding: 0 8px;
	}
}



@media screen and (max-width: 980px) {
	.ganis_menu_overlay_content {
		flex: 1;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		padding: 20px 0 30px 0;
	}

	.ganis_menu_grid {
		width: 100%;
		max-width: 700px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 18px;
	}

	.ganis_menu_block {
		width: 100%;
		min-height: 0;
		display: block;
		text-align: left;
	}

	.ganis_menu_parent {
		position: relative;
		display: block;
		width: 100%;
		margin: 0 0 10px;
		padding: 0;
		font-size: 28px;
		line-height: 1.1;
		text-align: left;
		cursor: pointer;
	}

	.ganis_menu_line {
		margin-bottom: 0;
	}

	.ganis_menu_children {
		display: none;
		margin: 0;
		padding: 18px 0 8px;
	}

	.ganis_menu_block.is-open .ganis_menu_children {
		display: block;
	}

	.ganis_menu_child {
		margin-bottom: 10px;
		text-align: left;
	}

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

	.ganis_menu_child a {
		display: inline-block;
		font-size: 18px;
		line-height: 1.4;
		padding-left: 0;
		transform: none !important;
		text-align: left;
	}

	.ganis_menu_child a::after {
		display: none;
	}
}

.ganis_menu_block.is-active .ganis_menu_parent {
	color: #D7CFC5;
}

.ganis_menu_child.is-active a {
	color: #D7CFC5;
}

.ganis_menu_child.is-active a::after {
	width: 100%;
	background: none;
}
@media screen and (max-width: 980px) {
	.ganis_menu_block.is-active .ganis_menu_parent {
		color: #D7CFC5;
	}

	.ganis_menu_child.is-active a {
		color: #D7CFC5;
	}
}




/* ========================================
   STANDORT TYPO OVERRIDES
   ALM / GARDONE / EHC
======================================== */

body.standort-alm h1,
body.standort-gardone h1,
body.standort-ehc h1 {
	font-family: sofia-pro, sans-serif;
	font-weight: 400;
}

body.standort-alm h3,
body.standort-gardone h3,
body.standort-ehc h3 {
	font-family: sofia-pro, sans-serif;
	font-size: 21px;
	line-height: 1.25;
	font-weight: 400;
	text-transform: uppercase;
}

/* Blocktexte / Titel, die bisher Aurora verwenden */
body.standort-alm .ganis-block--v1 .ganis-block__text--v1,
body.standort-gardone .ganis-block--v1 .ganis-block__text--v1,
body.standort-ehc .ganis-block--v1 .ganis-block__text--v1,

body.standort-alm .ganis-block--v2 .ganis-block__title--v2,
body.standort-gardone .ganis-block--v2 .ganis-block__title--v2,
body.standort-ehc .ganis-block--v2 .ganis-block__title--v2,

body.standort-alm .ganis-block--v3 .ganis-block__title--v3,
body.standort-gardone .ganis-block--v3 .ganis-block__title--v3,
body.standort-ehc .ganis-block--v3 .ganis-block__title--v3,

body.standort-alm .ganis-block--v4 .ganis-block__title--v4,
body.standort-gardone .ganis-block--v4 .ganis-block__title--v4,
body.standort-ehc .ganis-block--v4 .ganis-block__title--v4,

body.standort-alm .ganis-block--v7 .ganis-block__title--v7,
body.standort-gardone .ganis-block--v7 .ganis-block__title--v7,
body.standort-ehc .ganis-block--v7 .ganis-block__title--v7,

body.standort-alm .ganis-v9-text,
body.standort-gardone .ganis-v9-text,
body.standort-ehc .ganis-v9-text,

body.standort-alm .ganis-block__title--v12,
body.standort-gardone .ganis-block__title--v12,
body.standort-ehc .ganis-block__title--v12,

body.standort-alm .ganis-block__title--v13,
body.standort-gardone .ganis-block__title--v13,
body.standort-ehc .ganis-block__title--v13,

body.standort-alm .ganis-block__title--v22,
body.standort-gardone .ganis-block__title--v22,
body.standort-ehc .ganis-block__title--v22,

body.standort-alm .ganis-block__title--v30,
body.standort-gardone .ganis-block__title--v30,
body.standort-ehc .ganis-block__title--v30,

body.standort-alm .ganis-block__title--v34,
body.standort-gardone .ganis-block__title--v34,
body.standort-ehc .ganis-block__title--v34 {
	font-family: sofia-pro, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}
body.standort-alm .ganis-block--v1 .ganis-block__text--v1,
body.standort-gardone .ganis-block--v1 .ganis-block__text--v1,
body.standort-ehc .ganis-block--v1 .ganis-block__text--v1,
body.standort-alm .ganis-block--v4 .ganis-block__title--v4,
body.standort-gardone .ganis-block--v4 .ganis-block__title--v4,
body.standort-ehc .ganis-block--v4 .ganis-block__title--v4 {
	text-transform:inherit;
}

/* Aurora strong/bold in v1 ebenfalls auf Sofia umstellen */
body.standort-alm .ganis-block--v1 .ganis-block__text--v1 strong,
body.standort-alm .ganis-block--v1 .ganis-block__text--v1 b,
body.standort-gardone .ganis-block--v1 .ganis-block__text--v1 strong,
body.standort-gardone .ganis-block--v1 .ganis-block__text--v1 b,
body.standort-ehc .ganis-block--v1 .ganis-block__text--v1 strong,
body.standort-ehc .ganis-block--v1 .ganis-block__text--v1 b {
	font-family: sofia-pro, sans-serif;
	font-weight: 600;
}

/* v1 Textfarbe je Standort = Headerbutton-Farbe */
body.standort-alm .ganis-block--v1 .ganis-block__text--v1 {
	color: #0098AD;
}

body.standort-gardone .ganis-block--v1 .ganis-block__text--v1 {
	color: #AE9847;
}

body.standort-ehc .ganis-block--v1 .ganis-block__text--v1 {
	color: #798B60;
}

/* optionale Farbanpassung auch für die Aurora-Blocktitel */
body.standort-alm .ganis-block--v2 .ganis-block__title--v2,
body.standort-alm .ganis-block--v3 .ganis-block__title--v3,
body.standort-alm .ganis-block--v13 .ganis-block__title--v13,
body.standort-alm .ganis-block__title--v22,
body.standort-alm .ganis-block__title--v30,
body.standort-alm .ganis-block__title--v34 {
	color: #0098AD;
}

body.standort-gardone .ganis-block--v2 .ganis-block__title--v2,
body.standort-gardone .ganis-block--v3 .ganis-block__title--v3,
body.standort-gardone .ganis-block--v13 .ganis-block__title--v13,
body.standort-gardone .ganis-block__title--v22,
body.standort-gardone .ganis-block__title--v30,
body.standort-gardone .ganis-block__title--v34 {
	color: #AE9847;
}

body.standort-ehc .ganis-block--v2 .ganis-block__title--v2,
body.standort-ehc .ganis-block--v3 .ganis-block__title--v3,
body.standort-ehc .ganis-block--v13 .ganis-block__title--v13,
body.standort-ehc .ganis-block__title--v22,
body.standort-ehc .ganis-block__title--v30,
body.standort-ehc .ganis-block__title--v34 {
	color: #798B60;
}

/* ========================================
   EHC SUBNAV UNTER FIXED HEADER
======================================== */

.ganis-ehc-subnav-wrap {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	z-index: 10001;
	background: #798B60;
	opacity: 0;
	visibility: hidden;
	pointer-events: auto;
	transform: translateY(calc(-100% - 100px));
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

body.ganis_scrolled .ganis-ehc-subnav-wrap {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

body.ganis_menu_open .ganis-ehc-subnav-wrap {
	opacity: 0;
	visibility: hidden;
	transform: translateY(calc(-100% - 100px));
}

.ganis-ehc-subnav {
	width: 100%;
	padding: 10px 30px;
	pointer-events: auto;
}

.ganis-ehc-subnav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.ganis-ehc-subnav__list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ganis-ehc-subnav__list a {
	position: relative;
	display: inline-block;
	font-family: sofia-pro, sans-serif;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.ganis-ehc-subnav__list a::after {
	display: none;
	content: none;
}

.ganis-ehc-subnav__list a:hover {
	opacity: 0.8;
	transform: translateY(-2px);
	color: #D7CFC5;
}

.ganis-ehc-subnav__list .current-menu-item > a,
.ganis-ehc-subnav__list .current_page_item > a {
	color: #D7CFC5;
	opacity: 1;
}

body.standort-ehc.ganis_scrolled .main_wrapper {
	padding-top: 44px;
}

@media screen and (max-width: 980px) {
	.ganis-ehc-subnav-wrap {
		display: none;
	}
}


/* ========================================
   ROTATING PANEL RESPONSIVE SLIDER
======================================== */

.rotating-panel-grid {
	overflow: visible;
}

@media (max-width: 1100px) {
	.rotating-panel-slider-wrap {
		padding-left: 28px;
		padding-right: 28px;
	}

	.rotating-panel-nav {
		display: block;
	}

	.rotating-panel-grid.js-rotating-panel-slider {
		display: flex;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 10px;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.rotating-panel-grid.js-rotating-panel-slider::-webkit-scrollbar {
		display: none;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col {
		flex: 0 0 50%;
		max-width: 50%;
		min-width: 50%;
		scroll-snap-align: start;
		padding: 10px 30px 20px 30px;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col::after {
		display: block;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:nth-child(2)::after,
	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:nth-child(4)::after {
		display: none !important;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:only-child {
		flex: 0 0 100%;
		max-width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 700px) {
	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col {
		flex: 0 0 85%;
		max-width: 85%;
		min-width: 85%;
	}
}

@media (max-width: 520px) {
	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col {
		flex: 0 0 88%;
		max-width: 88%;
		min-width: 88%;
		padding: 10px 12px 20px 12px;
	}

	.rotating-panel-logo img {
		max-width: 180px;
	}

	.rotating-panel-btn {
		font-size: 12px;
		padding: 10px 20px;
	}
}

/* ========================================
   ROTATING PANEL RESPONSIVE SLIDER
======================================== */

.rotating-panel-slider-wrap {
	position: relative;
}

.rotating-panel-grid {
	overflow: visible;
}

.rotating-panel-grid .rotating-panel-col:only-child {
	margin-left: auto;
	margin-right: auto;
}

.rotating-panel-nav {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 0;
	padding: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	cursor: pointer;
	z-index: 5;
}

.rotating-panel-nav--prev {
	left: -15px;
	background-image: url('../images/svg/prev_b.svg');
}

.rotating-panel-nav--next {
	right: -15px;
	background-image: url('../images/svg/next_b.svg');
}

.rotating-panel-nav.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

@media (max-width: 1100px) {
	.rotating-panel-slider-wrap {
		padding-left: 28px;
		padding-right: 28px;
	}

	.rotating-panel-nav {
		display: block;
	}

	.rotating-panel-grid.js-rotating-panel-slider {
		display: flex;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 10px;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.rotating-panel-grid.js-rotating-panel-slider::-webkit-scrollbar {
		display: none;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col {
		flex: 0 0 50%;
		max-width: 50%;
		min-width: 50%;
		scroll-snap-align: start;
		padding: 10px 30px 20px 30px;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:not(:last-child)::after {
		display: block;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:only-child {
		flex: 0 0 100%;
		max-width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 700px) {
	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col {
		flex: 0 0 100%;
		max-width: 100%;
		min-width: 100%;
		padding: 10px 12px 20px 12px;
	}

	.rotating-panel-grid.js-rotating-panel-slider .rotating-panel-col:not(:last-child)::after {
		display: none;
	}

	.rotating-panel-nav--prev {
		left: -2px;
	}

	.rotating-panel-nav--next {
		right: -2px;
	}
}

@media (max-width: 520px) {
	.rotating-panel-logo img {
		max-width: 180px;
	}

	.rotating-panel-btn {
		font-size: 12px;
		padding: 10px 20px;
	}
}

@media (max-width: 980px) {
	.rotating-panel {
	bottom: 60px;
	}
}


/* ========================================
   STANDORT FARBE statt #9B1636
   nur im Inhaltsbereich, keine Menüs
======================================== */

body.standort-alm {
	--ganis-standort-special: #0098AD;
}

body.standort-gardone {
	--ganis-standort-special: #AE9847;
}

body.standort-ehc {
	--ganis-standort-special: #798B60;
}

body.standort-alm .ganis-block__text--v1 a,
body.standort-alm .ganis-block__text--v2 a,
body.standort-alm .ganis-block__text--v3 a,
body.standort-alm .ganis-block__text--v7 a,
body.standort-alm .ganis-block__text--v26 a,
body.standort-alm .ganis-block__text--v30 a,
body.standort-alm .ganis-v13-slide__text a,
body.standort-alm .ganis-v34-list__text a,

body.standort-gardone .ganis-block__text--v1 a,
body.standort-gardone .ganis-block__text--v2 a,
body.standort-gardone .ganis-block__text--v3 a,
body.standort-gardone .ganis-block__text--v7 a,
body.standort-gardone .ganis-block__text--v26 a,
body.standort-gardone .ganis-block__text--v30 a,
body.standort-gardone .ganis-v13-slide__text a,
body.standort-gardone .ganis-v34-list__text a,

body.standort-ehc .ganis-block__text--v1 a,
body.standort-ehc .ganis-block__text--v2 a,
body.standort-ehc .ganis-block__text--v3 a,
body.standort-ehc .ganis-block__text--v7 a,
body.standort-ehc .ganis-block__text--v26 a,
body.standort-ehc .ganis-block__text--v30 a,
body.standort-ehc .ganis-v13-slide__text a,
body.standort-ehc .ganis-v34-list__text a {
	color: var(--ganis-standort-special);
}

/* Block 4 */
body.standort-alm .ganis-block--v4 .ganis-block__title--v4,
body.standort-gardone .ganis-block--v4 .ganis-block__title--v4,
body.standort-ehc .ganis-block--v4 .ganis-block__title--v4 {
	color: var(--ganis-standort-special);
}



/* ========================================
   EHC MOBILE MENU ÜBER MOBILEBAR
======================================== */

.ganis-ehc-mobilemenu {
	display: none;
}

@media screen and (max-width: 980px) {
	body.standort-ehc .ganis-ehc-subnav-wrap {
		display: none !important;
	}

	body.standort-ehc .ganis-ehc-mobilemenu {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 60px;
		z-index: 10021;
		display: block;
		background: #798B60;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__toggle {
		position: relative;
		width: 100%;
		min-height: 44px;
		padding: 10px 22px;
		border: 0;
		background: #798B60;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		cursor: pointer;
	}

	body.standort-ehc .ganis-ehc-mobilemenu.is-open .ganis-ehc-mobilemenu__toggle {
		border-bottom: 1px solid #ffffff;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__title {
		font-family: sofia-pro, sans-serif;
		font-size: 15px;
		line-height: 1.2;
		font-weight: 400;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #ffffff;
		text-align: center;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__icon {
		position: absolute;
		right: 22px;
		top: 50%;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__icon img {
		display: block;
		width: 18px;
		height: 18px;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__icon--open {
		opacity: 0;
		pointer-events: none;
	}

	body.standort-ehc .ganis-ehc-mobilemenu.is-open .ganis-ehc-mobilemenu__icon--closed {
		opacity: 0;
		pointer-events: none;
	}

	body.standort-ehc .ganis-ehc-mobilemenu.is-open .ganis-ehc-mobilemenu__icon--open {
		opacity: 1;
		pointer-events: auto;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__panel {
		max-height: 0;
		overflow: hidden;
		background: #798B60;
		transition: max-height 0.35s ease;
	}

	body.standort-ehc .ganis-ehc-mobilemenu.is-open .ganis-ehc-mobilemenu__panel {
		max-height: 420px;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__list {
		list-style: none;
		margin: 0;
		padding: 18px 22px 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__list li {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__list a {
		display: inline-block;
		font-family: sofia-pro, sans-serif;
		font-size: 16px;
		line-height: 1.2;
		font-weight: 400;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		text-decoration: none;
		color: #ffffff;
		transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__list a:hover {
		opacity: 0.8;
		transform: translateY(-2px);
		color: #D7CFC5;
	}

	body.standort-ehc .ganis-ehc-mobilemenu__list .current-menu-item > a,
	body.standort-ehc .ganis-ehc-mobilemenu__list .current_page_item > a {
		color: #D7CFC5;
		opacity: 1;
	}

	body.standort-ehc .page_wrapper {
		padding-bottom: 104px;
	}
}


@media screen and (max-width: 980px) {
	#cookie-law-info-bar {
		inset: auto 15px 115px auto!important;
	}
}