/*
Theme Name:		Rosenacker
Theme URI: 		http://miggroup.ch
Version: 		1.04
Author: 		miggroup
Author URI: 	http://miggroup.ch
*/

@import "https://use.typekit.net/vqm0qzz.css";


body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

html, body {
	font-size: 15px;
	line-height: 130% !important;
	color: #444
}

@media (min-width: 1200px) {
	html, body {
		font-size: 14px !important;
		line-height: 130% !important
	}
}

@media (min-width: 1400px) {
	html, body {
		font-size: 16px !important;
		line-height: 130% !important
	}
}

.main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(112, 177, 177, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 14.667em;
	opacity: 0;
	pointer-events: none;
}

.main-menu nav,
.main-menu nav a,
.main-menu nav a:hover,
.main-menu nav a:visited {
	color: #fff !important;
	background: transparent !important;
}

/* Nav Toggle Button */
.nav-toggle {
	position: fixed;
	top: 2.333em;
	right: 2.333em;
	z-index: 999999999;
	width: 2.5em;
	height: 2em;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5em;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
	transform-origin: center;
}

body.nav-open .nav-toggle span:first-child {
	transform: translateY(0.35em) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
	transform: translateY(-0.35em) rotate(-45deg);
}

.is-scrolling .nav-toggle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4em;
	height: 4em;
	background: var(--wp--preset--color--primary);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

body.nav-open .nav-toggle::before {
	display: none;
}

body.nav-open .main-menu {
	opacity: 1;
	pointer-events: auto;
}

@keyframes rotate-slow {
	from { transform: translate(-65%, -50%) rotate(0deg); }
	to { transform: translate(-65%, -50%) rotate(360deg); }
}

@keyframes rotate-slow-reverse {
	from { transform: translate(50%, 50%) rotate(0deg); }
	to { transform: translate(50%, 50%) rotate(-360deg); }
}

.main-menu::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 120vh;
	height: 120vh;
	background: url(assets/images/footer-icon.svg) no-repeat center;
	background-size: contain;
	animation: rotate-slow 60s linear infinite;
	pointer-events: none;
}

.main-menu::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 120vh;
	height: 120vh;
	background: url(assets/images/footer-icon.svg) no-repeat center;
	background-size: contain;
	animation: rotate-slow-reverse 60s linear infinite;
	pointer-events: none;
}


/*
 * Text and navigation link styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */


strong {
	font-weight: 600;
}

.wp-site-blocks > .entry-content {
	/* padding: 5.75rem 0 */
}

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25ch;
}

a:hover,
a:focus {
	text-decoration-style: dashed;
}

a:active {
	text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
	text-decoration: underline;
	text-decoration-style: solid;
}

/*
 * Search and File Block button styles.
 * Necessary until the following issues are resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/36444
 * https://github.com/WordPress/gutenberg/issues/27760
 */

.wp-block-search__button,
.wp-block-file .wp-block-file__button {
	background-color: var(--wp--preset--color--primary);
	border-radius: 0;
	border: none;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--font-size--medium);
	padding: calc(.667em + 2px) calc(1.333em + 2px);
}

/*
 * Button hover styles.
 * Necessary until the following issue is resolved in Gutenberg:
 * https://github.com/WordPress/gutenberg/issues/27075
 */

.wp-block-search__button:hover,
.wp-block-file .wp-block-file__button:hover,
.wp-block-button__link:hover {
	opacity: 0.90;
}


.wp-block-buttons {
	gap: 0.5rem !important;
	text-transform: uppercase;
	font-weight: 600 !important;
}

.wp-block-buttons a {
	font-weight: 600 !important;
}

/*
 * Alignment styles.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {

}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align="full"] {

	width: 100%;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {

	width: inherit;
}

/*
 * Responsive menu container padding.
 * This ensures the responsive container inherits the same
 * spacing defined above. This behavior may be built into
 * the Block Editor in the future.
 */

.wp-block-navigation__responsive-container.is-menu-open {
	/* background: url(assets/images/header-bg.png?v=2) no-repeat center 80%, center;
	background-size: auto 170%; */
	background: rgba(0,0,0,0.85) !important;
	margin-left: 0;
	padding-top: var(--wp--custom--spacing--outer);
	padding-bottom: var(--wp--custom--spacing--large);
	padding-right: var(--wp--custom--spacing--outer);
	padding-left: var(--wp--custom--spacing--outer);
}

@media (max-width: 599px) {
	.wp-block-navigation__responsive-container.is-menu-open {
		margin-left: 0;
	}
}



/* THEME */

html, body {
	overflow-x: hidden;
}

header nav {
	position: fixed !important;
	z-index: 99;
	left: 50%;
	top: calc(7.333em + 50vh);
	transform: translate(-50%, -50%);
	padding: 1.5rem;
	color: #fff;
	text-align: center;
}

	.is-scrolling header nav {
		color: var(--wp--preset--color--secondary) !important
	}

	header .wp-block-navigation__responsive-container-close svg,
	header .wp-block-navigation__responsive-container-open svg {
		width: 2rem;
		height: 2rem;
	}

	.wp-block-navigation__responsive-container-close {
		background: #fff;
		color: #000;
		position: fixed;
		top: 0;
		right: 0rem;
		padding: 1.5rem;
	}

	.wp-block-navigation__responsive-container,
	.wp-block-group.has-primary-background-color {
		font-family: var(--wp--preset--font-family--headlines)
		/* background: url(assets/images/nav.png) no-repeat center;
		background-size: cover; */
	}

	.wp-block-navigation__responsive-container.is-menu-open {
		flex-direction: row;
		align-items: center;
	}

	header nav ul {
		display: block !important;
	}

	header nav ul li {
		font-size: 1.8rem;
		line-height: 120%;
		text-align: left !important;
	}

		@media (min-width: 600px) {
			header nav ul li {
				font-size: 2.7rem;
				line-height: 120%;
			}
		}

	header nav .wp-block-navigation__container li a {
		text-decoration: none !important;
		padding: 0 1em !important;
		display: block !important;
		color: #fff !important;
		margin: 0 auto;
		font-weight: 500;
		font-size: 1.8rem !important;
		line-height: 4.333rem !important;
		text-transform: uppercase;
	}


	header nav ul li.current-menu-item a {
		font-weight: bold;
		color: #fff !important;
	}

	/* header nav ul li:nth-child(1) { transform: translateX(-35%); }
	header nav ul li:nth-child(2) { transform: translateX(-25%); }
	header nav ul li:nth-child(3) { transform: translateX(-20%); }
	header nav ul li:nth-child(4) { transform: translateX(-5%); }
	header nav ul li:nth-child(5) { transform: translateX(0); } */


header .wp-block-site-logo {
	z-index: 99999999;
	position: absolute;
	left: 50%;
	top: 2.333em;
	transform: translateX(-50%);
}

header .wp-block-site-logo img {
	width: 170px !important;
	height: auto !important;
}

header .wp-block-cover {
	width: 100vw !important
}

h1,
h2,
h3,
h4 {
	word-break: normal;

}

h4 {
	font-weight: bold;
	margin-bottom: 0.5em !important
}

@media (min-width: 900px) {
	h1,
	h2,
	.wp-block-navigation__container li a {
		font-size: 3.2rem !important;
		line-height: 120% !important;
	}
}

@media (min-width: 1400px) {
	.wp-block-navigation__container li a {
		font-size: 4rem !important;
		line-height: 120% !important;
	}
}




* > h1:first-child,
* > h2:first-child,
* > h3:first-child,
* > h4:first-child {
	margin-top: 0;
}

h4 + h2 {
	margin-top: 0rem !important
}

@media (max-width: 600px) {
	h1, h2 {
		font-size: 2rem;
		line-height: 120%;
	}

	h3 {
		font-size: 1.4rem;
		line-height: 120%;
	}
}

h2 {
	box-sizing: border-box;
	margin-bottom: 0.8em !important
}

h4 {
	position: relative;
}




.wp-site-blocks ul {
	margin: 0
}

.wp-block-group > * {
	z-index: 2;
	position: relative;
}

.has-medium-font-size { font-size: 1.27rem !important; line-height: 120% !important; }

.entry-content > .wp-block-group,
.entry-content > .wp-block-cover {
	margin: 0 auto !important
}

.entry-content > .wp-block-cover:first-child {
	min-height: 5rem !important;
	overflow: visible;
}

.home .entry-content > .wp-block-cover:first-child {
	height: 100vh;
}

@media (max-width: 599px) {
	.entry-content > .wp-block-cover:first-child {
		height: 60vh;
	}
}

.entry-content > .wp-block-cover {
	min-height: 50vh !important;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.entry-content > .wp-block-group {
	padding-top: 5rem;
	padding-bottom: 5rem
}

@media (max-width: 600px) {
	.entry-content > .wp-block-group {
		padding-top: 2em;
		padding-bottom: 2em;
	}
}


.pull-up {
	position: absolute;
	width: 100%;
	left: 0;
	transform: translateY(-100%);
	z-index: 9
}

footer {
	background: #eaeae1;
	color: #000;
	width: 100%;
	position: relative;
	overflow: visible;
	z-index: 9;
}

footer::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 460px;
	height: 460px;
	background: url(assets/images/footer-icon.svg) no-repeat center;
	background-size: contain;
	transform: translate(50%, -53%);
	pointer-events: none;
}

footer > .wp-block-group {
	padding-top: 5rem;
	padding-bottom: 5rem;
	padding-left: 2.375em;
	padding-right: 2.375em;
	max-width: calc(78rem + 4.75em);
	margin: 0 auto;
}



footer .is-layout-flex {
	gap: 4em !important;
	align-items: stretch;
}

@media (max-width: 1200px) {
	footer .is-layout-flex {
		justify-content: center !important;
	}

	footer .is-layout-flex > *:first-child {
		width: 100% !important;
	}

	footer .is-layout-flex > *:first-child > *:first-child {
		text-align: center;
	}

	footer > .wp-block-group > .is-layout-flex > * {
		border-right: none !important;
		padding-right: 1em !important;
		padding-left: 1em !important;
	}
}

footer .is-layout-flex .is-layout-flex {
	gap: 1em !important;
}

footer > .wp-block-group > .is-layout-flex > * {
	width: fit-content;
	padding-right: 2.67em;
	border-right: 1px solid #fff;
}

footer > .wp-block-group > .is-layout-flex > *:last-child {
	border-right: none;
}

footer > .wp-block-group > .is-layout-flex > *:last-child figure {
	transform: scale(1.75);
	transform-origin: top left;
}


footer p {
	white-space: nowrap;
}

footer .wp-block-image {
	max-width: 10rem;
}


footer .wp-block-image.size-full {
	max-width: 12rem;
}

footer > .wp-block-group > .wp-block-group {
	gap: 7em;
}

@media (max-width: 781px) {
	footer .is-layout-flow > .alignright {
		float: left;
		margin-left: 0 !important
	}
}

@media (max-width: 600px) {
	footer > .wp-block-group > .wp-block-group {
		display: block;
	}

	footer .wp-block-image.size-full {
		margin-bottom: 5em;
	}

	footer > .wp-block-group > .is-layout-flex > * {
		margin-bottom: 2em;
	}
}

.wp-block-image.alignfull {
	width: 100% !important;
}


ul.wp-block-post-template {
	border-bottom: 2px solid var(--wp--preset--color--primary);
}

ul.wp-block-post-template li {
	margin: 0
}


.wohnungs-item {
	display: flex;
	flex-flow: row wrap;
	font-size: 1em;
	line-height: 120%;
	padding: 0.4em 0;
}

	.wohnungs-item.header {
		font-weight: bold;
		text-transform: uppercase;
		background: var(--wp--preset--color--primary);
		color: #fff;
		position: relative;
	}

	.wohnungs-item.header > * {
		white-space: nowrap;
	}

	.wohnungs-item > * {
		box-sizing: border-box;
		flex:1;
		padding: 0.2rem 0.5rem;
		text-align: right;
	}

	.wohnungs-item > .field-nr,
	.wohnungs-item > .field-geschoss {
		text-align: left;
	}


	@media (min-width: 600px) {
		.wohnungs-item > * {
			flex: 2;
			padding: 0.25rem;
			width: auto;
		}

		.wohnungs-item > .field-nr,
		.wohnungs-item > .field-details,
		.wohnungs-item > .field-zimmer {
			flex: 1
		}

		.wohnungs-item > .field-nr {
			flex: 0.5;
		}

		.field-bruttomiete {
			/* display: none; */
		}
	}

	@media (max-width: 599px) {
		.field-etage,
		.field-balkon,
		.field-keller,
		.field-nettomiete,
		.field-hk-nk,
		.field-status {
			display: none;
		}

		.wohnungs-item > * {
			flex: 2;
		}

		.field-nr,
		.field-details {
			flex: 1;
		}

		.field-flache {
			flex: 3;
		}
	}

	.field-nr {
		width: 3em !important;
		flex: unset !important;
		padding-right: 1em;
	}

	.field-nr img {
		position: absolute;
	}

	.field-art {
		width: 5em !important;
		flex: unset;
	}

	.field-zimmer {
		width: 5em !important;
		flex: unset !important;
	}

	ul.wp-block-post-template li:nth-child(even) {
		background: #EAEFEF;
	}

	.wohnungs-item a {
		color: inherit !important;
	}

	a.contact-button {
		word-break: keep-all;
		text-decoration: none;
		background-color: var(--wp--preset--color--secondary);
		padding: 0.35em 0.5em;
		color: #fff !important;
	}


.wp-block-query {
	margin-top: 0 !important;
	margin-bottom: 3rem !important
}




#slider-flache,
#slider-zimmer,
#slider-miete {
	margin-top: 2.5rem
}

.noUi-horizontal {
	height: 0.25rem !important;
	border-radius: 0 !important;
	border: 0 !important;
	box-shadow: none !important
}

.noUi-tooltip {
	background: none !important;
	border: 0 !important;
	color: #006978;
	padding: 0
}

.noUi-connect {
	background: #006978;
	border-radius: 0 !important;
}


.noUi-handle {
	width: 0.25rem !important;
	height: 1rem !important;
	background: #006978;
	border: 0;
	border-radius: 0 !important;
	box-shadow: none !important;
	right: -0.125rem !important;
}

	.noUi-handle::before,
	.noUi-handle::after {
		display: none;
	}


	.noUi-handle-lower .noUi-tooltip {
		left: 0;
		transform: translate(0, 0);
		margin-left: -0.2rem;
	}

	.noUi-handle-upper .noUi-tooltip {
		left: 0;
		transform: translate(-100%, 0);
		margin-left: 0.3rem;
	}


form.wpcf7-form {
	max-width: 40rem;
	color: var(--wp--preset--color--secondary)
}

	form.wpcf7-form input[type='text'],
	form.wpcf7-form input[type='email'],
	form.wpcf7-form input[type='submit'],
	form.wpcf7-form textarea,
	form.wpcf7-form select {
		apperance: none;
		-webkit-apperance: none;
		border:0;
		background: rgba(175, 158, 126, 0.2);
		font: inherit;
		margin: 0 0 0.5rem 0;
		padding: 0.5rem 0.5rem 1rem 0.5rem;
		outline: none;
		width: 100%;
		border: 2px solid #fff;
		box-sizing: border-box;
		font-weight: bold;
	}

		form.wpcf7-form input[type='text']:focus,
		form.wpcf7-form input[type='email']:focus,
		form.wpcf7-form textarea:focus,
		form.wpcf7-form select:focus {
			border: 2px solid var(--wp--preset--color--secondary);
		}

	form.wpcf7-form *::placeholder {
		color: var(--wp--preset--color--secondary);
	}

	form.wpcf7-form select {
		color: var(--wp--preset--color--secondary);
	}

	form.wpcf7-form textarea {
		height: 6rem
	}

	.interested-in .wpcf7-checkbox {
		display: flex;
		flex-flow: row wrap;
	}

		.interested-in .wpcf7-checkbox > * {
			width: 100%;
			margin: 0;
		}

	form.wpcf7-form input[type='submit'] {
		background: var(--wp--preset--color--secondary);
		border-color: var(--wp--preset--color--secondary);
		color: #fff;
		text-transform: uppercase;
		font-weight: bold;
		margin-top: 1rem
	}


.stoerer {
	position: absolute;
	width: 12em;
	height: 12em;
	top: 2em;
	left: 50%;
	transform: translateX(-50%);
	margin-left: calc(39rem - 1.5em) !important;
	border-radius: 100%;
	border-radius: 999px !important;
	overflow: hidden;
}

	@media (max-width: 81rem) {
		.stoerer {
			left: auto;
			right: 1.5em;
			margin-left: 0 !important;
			transform: none;
		}
	}

	@media (max-width: 900px) {
		.stoerer {
			right: -2.5em;
			top: 7em !important;
		}
	}

	@media (max-width: 600px) {
		.stoerer {
			top: 4rem;
		}
	}

	/* @media (min-width: 600px) {
		.stoerer {
			width: 10rem;
			height: 10rem;
			right: 4rem;
		}
	} */

	.stoerer a {
		border-radius: 999px !important;
	}
	.stoerer img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 999px !important;
	}
	}


:where(.wp-site-blocks) > * {
	margin-block-start: 0 !important;
}

.entry-content {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}

.current-page–wohnungsuebersicht .entry-content > .wp-block-group:first-child > h2:first-child {
	padding-bottom: 0;
}

.current-page–wohnungsuebersicht .entry-content > .wp-block-group:first-child > h2:first-child:last-child {
	margin-bottom: 0 !important;
}

.current-page–wohnungsuebersicht .entry-content > .wp-block-group:first-child > h2:first-child::before {
	transform: translateY(-1em) scaleY(3);
}

.wp-block-template-part {
	margin-top: 0
}


footer,
footer a,
footer p,
footer h1,
footer h2,
footer h3,
footer h4 {
	color: #000 !important;
}

footer h4 {
	font-weight: 500;
	font-size: 1.33em;
	line-height: 1.76em;
	color: #70b0b1 !important;
}

footer h4 + figure.wp-block-image {
	padding: 0;
	margin-left: 0 !important;
}

footer h4 + figure.wp-block-image img {
	height: 35px;
	width: auto;
}

footer a {
	text-decoration: none;
}




.building-map.fixed {
	position: fixed;
	top: 0;
	z-index: 9999
}

.building-map img {
	width: 80%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	object-position: bottom center;
}

.map-placeholder {
	margin-top: 0 !important;
}

.map-placeholder.set {
	margin: 15px auto !important;
}

	@media (max-width: 781px) {
		.building-map.fixed {
			background: #fff;
			margin-left: -1.5rem;
			width: 100vw !important;
			box-shadow: 0 0 1rem rgba(0,0,0,0.2);
		}

		.building-map img {
			max-width: 200px;
			height: auto;
			margin: 15px auto;
			display: block;
		}
	}




#interactive-map {
	width: 100%;
	height: 50vw;
	min-height: 400px;
}


.wp-block-media-text__content {
	padding: 2rem !important;
}


.wp-block-media-text__content > * {
	max-width: 25rem;
}

.wp-block-media-text__content h2 em {
	font-style: normal;
}

	@media (min-width: 600px) {
		.wp-block-media-text__content h2 em {
			margin-left: -6.2rem;
			position: relative !important
		}
	}

.is-position-top-right .wp-block-cover__inner-container {
	width: 80% !important;
	max-width: 78rem !important;
	margin: 0 auto !important;
	/* width: 55% !important; */
}

.is-position-top-right .wp-block-cover__inner-container > * {
	padding-left: 45%;
}

	@media (max-width: 599px) {
		.is-position-top-right .wp-block-cover__inner-container > * {
			padding-left: 0;
		}
	}



.is-map {
	position: relative;
}
.is-map img {
	position: absolute;
	top: -5rem;
	right: 0;
	width: 64%;
	z-index: -1
}

	@media (max-width: 599px) {
		.is-map img {
			position: relative;
			width: 100%;
			margin-bottom: -6rem
		}
	}


	.is-style-inset {
		padding-left: 20%;
	}

	@media (max-width: 599px) {
		.is-style-inset {
			padding-left: 10%;
		}
	}


.wp-block-image.alignright {
	width: 50%;
	margin-bottom: 2rem
}

@media (max-width: 599px) {
	.wp-block-image.alignright {
		width: 100%;
	}
}

.wp-block-image.alignright img {
	width: 100%;
	height: auto;
}


.footer-logo {
	width: 11rem;
}

.footer-logo img {
	width: 100%;
	height: auto;
}


.wp-block-navigation-item__content {
	text-align: center;
}

.home .wp-block-cover {
	overflow: hidden;
	z-index: 3;
}

.main-claim {
	z-index: 2;
}
.group-wohnungen {
	position: relative;
}

.group-wohnungen:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(assets/images/corner-3.png) no-repeat bottom right;
	background-size: contain;
	position: absolute;

	right: -9rem;
	bottom: -2rem;

	pointer-events: none;
	display: none;
}

	.group-wohnungen:before {
		width: 600px;
		height: 100%;
		left: 50%;
		right: auto;
		margin-left: calc(50vw - 600px);
	}


.group-baubeschrieb {
	z-index: 9;
	position: relative;
}

.home .wp-block-cover h1 {
	z-index: 9;
	margin: 0 !important;
	max-width: 10em;
	font-size: 2.5rem !important;
	line-height: 120% !important;
	opacity: 0;
	transition: all 0.6s ease-out;
}

	@media (min-width: 800px) {
		.home .wp-block-cover h1 {
			font-size: 4rem !important;
			line-height: 120% !important;
		}
	}

	@media (min-width: 1000px) {
		.home .wp-block-cover h1 {
			font-size: 5rem !important;
			line-height: 120% !important;
		}
	}



	.home .wp-block-cover h1:nth-child(1) { transform: translateX(20%); transition-delay: 0.2s; }
	.home .wp-block-cover h1:nth-child(2) { transform: translateX(0%); transition-delay: 0.4s; }
	.home .wp-block-cover h1:nth-child(3) { transform: translateX(40%); transition-delay: 0.6s; }

	.home.has-loaded .wp-block-cover h1:nth-child(1) { transform: translateX(0); opacity: 1}
	.home.has-loaded .wp-block-cover h1:nth-child(2) { transform: translateX(20%); opacity: 1 }
	.home.has-loaded .wp-block-cover h1:nth-child(3) { transform: translateX(12%); opacity: 1 }


@media (min-width: 782px) {
	.lageplan {
		transform: translateY(-14rem);
	}
}


.lb-nav {
	display: none !important;
}

img.lb-image {
	cursor: pointer;
}


.wp-block-query + .wp-block-buttons {
	margin-bottom: 3em;
	margin-top: -2em !important;
}

.wp-block-cover h2 {
	text-transform: uppercase !important;
	font-weight: 500 !important;
	font-size: 1.6875em !important;
	line-height: 1.11em !important;
	margin-bottom: 0 !important;
}

body.home .entry-content > .wp-block-cover:first-child::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(to bottom, rgba(85, 98, 98, 1), rgba(85, 98, 98, 0));
	pointer-events: none;
	z-index: 1;
}

@media (max-width: 500px) {
	body.home .entry-content > .wp-block-cover:first-child::before {
		height: 60%;
	}
}

body.home .entry-content > .wp-block-cover:first-child::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	pointer-events: none;
	z-index: 1;
}

.entry-content > .wp-block-cover:first-child .wp-block-cover__inner-container {
	z-index: 2;
	position: relative;
}

.is-style-lead {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2rem;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.is-style-lead {
		font-size: 1.4rem;
		margin-top: 2em;
	}
}

.is-style-sublead {
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4rem;
}

@media (max-width: 500px) {
	.is-style-sublead br {
		display: none;
	}
}

.wp-block-column > .wp-block-group.has-background {
	padding: 3.33em 8em 5.66em 4em !important;
}

@media (max-width: 500px) {
	.wp-block-column > .wp-block-group.has-background {
		padding: 2em 1em !important;
	}
}

.wp-block-columns.is-style-pull-together {
	position: relative;
	display: block;
}

.wp-block-columns.is-style-pull-together > .wp-block-column:first-child {
	width: calc(50% + 2.67em);
	padding-top: 3.33em;
}

.wp-block-columns.is-style-pull-together > .wp-block-column:last-child {
	width: calc(50% + 2.67em);
	position: absolute;
	right: 0;
	top: 0;
}

.wp-block-columns.is-style-pull-together > .wp-block-column {
	will-change: transform;
}

@media (max-width: 800px) {
	.wp-block-columns.is-style-pull-together {
		display: flex;
		flex-direction: column-reverse;
	}

	.wp-block-columns.is-style-pull-together > .wp-block-column:first-child,
	.wp-block-columns.is-style-pull-together > .wp-block-column:last-child {
		width: 100%;
		position: static;
		transform: none !important;
		will-change: auto;
	}

	.wp-block-columns.is-style-pull-together > .wp-block-column:first-child {
		padding-top: 0;
	}

	.wp-block-spacer[style*="height:3em"] {
		display: none;
	}
}

body.home .wp-block-cover .has-background-dim {
	display: none !important;
}

.entry-content > .wp-block-cover:not(:first-child) {
	height: 50vw;
	max-height: 80vh;
}

.map-holder {
	padding-top: 0 !important;
	z-index: 9;
	background: transparent !important;
}

.map-holder .wp-block-group.has-background {
	margin-top: -6.67em;
}

@media (max-width: 600px) {
	.map-holder .wp-block-group.has-background {
		margin-top: -1.5em;
		margin-left: -2.375em;
		margin-right: -2.375em;
		padding: 2em 2.375em !important;
	}
}

.map-svg {
	position: absolute;
	right: 50%;
	width: 55vw;
}

.map-svg img {
	width: 100%;
	height: auto;
}

@media (max-width: 782px) {
	.map-svg {
		display: none;
	}
}

.wp-block-cover.is-style-strip {
	height: 35vw !important;
}

.wp-block-columns.is-style-flat {
	gap: 4.67em;
}

.wp-block-gallery.slider {
	display: block;
}

.slider-holder .slider {
	display: block;
	overflow: visible;
}

.slider-holder .slider .flickity-viewport {
	overflow: visible;
}

.slider-holder .slider:not(.is-interacted) .wp-block-image:last-child {
	opacity: 0;
}

.slider-holder .slider .wp-block-image {
	width: 45vw;
	margin-right: 1em;
}

@media (max-width: 600px) {
	.slider-holder .slider .wp-block-image {
		width: 90vw;
	}
}

.slider-holder .slider .wp-block-image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.slider-holder .slider .wp-element-caption {
	display: none;
}

.slider-holder .flickity-page-dots {
	text-align: center;
	bottom: -2em;
}

.slider-holder .flickity-page-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 0;
	background: #a8c25d;
	opacity: 0.4;
	margin: 0 0.25em;
}

.slider-holder .flickity-page-dots .dot.is-selected {
	opacity: 1;
}
