@font-face {      
	font-family: "Pitch Sans";
	font-weight: 400 700;
	font-style: normal;
	src:	
			url("/fonts/pitch-sans-web-bold.woff2") format("woff2"),
			url("/fonts/pitch-sans-regular.woff2") format("woff2"),
			url("/fonts/pitch-sans-web-bold.woff") format("woff"),
			url("/fonts/pitch-sans-web-bold.eot") format("eot");
}

/*Global Styles*/

*{
	box-sizing: border-box;
}

:root {
	--badhaus-yellow: #eeb999;
	--lasserhaus-green: #A8B79B;
	--schlachthof-orange: #EF7742;
}

html,
body {
	margin: 0;
	padding: 0;
}

/*body.popup-shown {
	backdrop-filter: blur(0px); /*workaround, if we do not set this on samsung display it does not work on popup*//*
}*/
body {
	background: white;
	width: 2160px;
	height: 3840px;
	font-family: "Pitch Sans";
	font-weight: 700; 
	position: relative;
}

.fuz-transition-overlay {
	position: absolute;
	background-color: black;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
}

a {
	color: inherit;
	text-decoration: none;
}

.fuz-top-bar {
	height: 166px;
	width: 100%;
	font-size: 128px;
}

.marquee {
  height: 166px;
  width: 2160px;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 166px;
  position: absolute;
  overflow: hidden;
  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
	text-align: center;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

.fuz-main {
	width: 100%;
	height: 3488px;
}

.fuz-bottom-bar {
	height: 186px;
	max-height: 186px;
	width: 100%;
}

/*Welcome Page*/

.fuz-welcome-main {
	background-color: black;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.fuz-welcome-main-heading {
	font-size: 350px;
	text-transform: uppercase;
	margin-bottom: 300px;
}

.fuz-welcome-main-description {
	font-size: 128px;
	text-transform: uppercase;
	text-align: center;
	padding: 56px 40px;
}

.fuz-welcome-main-lang-buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 80px;
	margin-bottom: 220px;
}

.fuz-welcome-main-lang-button {
	background-color: white;
	color: black;
	padding: 16px 32px;
	font-size: 128px;
	line-height: 156px;
	text-transform: uppercase;
}

.fuz-welcome-bottom-bar {
	box-sizing: border-box;
}

.fuz-welcome-bottom-bar a {
	display: block;
}

.fuz-welcome-bottom-bar-wrapper  {
	display: flex;
	width: 100%;
	padding: 16px 0;
	justify-content: center;
	align-items: center;
	gap: 24px;
	box-sizing: border-box;
	height: 186px;
}

.fuz-welcome-bottom-bar-text {
	font-size: 128px;
	line-height: 186px;
}

/*Countdown Popup*/

.fuz-countdown-popup {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20000000;
	/*backdrop-filter: blur(10px);*/
	background: rgb(255,255,255,0.8);
}

.fuz-countdown-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.75;
	z-index: 200;
}

.fuz-countdown-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 75%;
	z-index: 201;
	padding: 300px 160px;
	background-color: black;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 80px;
}

.fuz-countdown-popup-content-heading {
	font-size: 96px;
	text-transform: uppercase; 
}

.fuz-countdown-popup-content-countdown {
	font-size: 256px;
	text-transform: uppercase; 
}

.fuz-countdown-popup-content-info {
	font-size: 72px;
	text-transform: uppercase; 
}


/*Home Pages*/

.fuz-wifi-popup {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 90;
}

.fuz-wifi-popup-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: black;
	opacity: 0.3;
	z-index: 91;
}

.fuz-wifi-popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 92;
	background-color: black;
	width: 1800px;
	height: 2800px;
	padding: 200px 245px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.fuz-wifi-popup-content-close-button {
	position: absolute;
	width: 110px;
	height: auto;
	top: 88px;
	right: 88px;
}

.fuz-wifi-popup-content-icon {
	margin-bottom: 232px;
}

.fuz-wifi-popup-content-icon svg {
	width: 505px;
	height: auto;
}

.fuz-wifi-popup-content-heading {
	font-size: 250px;
	text-transform: uppercase;
	text-align: center;
	line-height: 0.9em;
	color: white;
	margin-bottom: 160px;
}

.fuz-wifi-popup-content-info {
	background-color: #C0421C;
	color: white;
	font-size: 96px;
	line-height: 1em;
	padding: 16px 32px;
	margin-bottom: 160px;
}

.fuz-wifi-popup-content-text {
	text-align: center;
	color: white;
	font-size: 96px;
	line-height: 1em;
	margin-bottom: 160px;
}

.fuz-wifi-popup-content-confirm-button {
	font-size: 128px;
	text-transform: uppercase;
	background-color: white;
	line-height: normal;
	padding: 16px 32px;
	
}

.fuz-home-main {
	display: flex;
	flex-direction: column;
}

.fuz-home-main-intro-section {
	width: 100%;
	height: 166px;
	background-color: black;
}

.fuz-home-main-intro-section h1 {
	color: white;
	font-size: 128px;
	line-height: 166px;
	text-align: center;
	margin: 0;
}

.fuz-home-main-hotel-section {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
}

.fuz-home-main-hotel {
	width: 100%;
	flex-grow: 1;
	background-size: cover;
	background-position: center;
	position: relative;
	height: calc( 100% / 3);
	display: flex;
	justify-content: center;
	align-items: center;
}

.fuz-home-main-hotel svg {
	position: relative;
	z-index: 50;
}

.fuz-home-main-hotel:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.3;
}

.fuz-home-main-hotel-badhaus {
	background-image: url('/assets/img/badhaus-bg.jpg');
	border-bottom: 8px solid white;
}

.fuz-home-main-hotel-badhaus svg {
	height: 730px;
	width: auto;
}

.fuz-home-main-hotel-lasserhaus {
	background-image: url('/assets/img/lasserhaus-bg.jpg');
	border-bottom: 8px solid white;
}

.fuz-home-main-hotel-lasserhaus svg {
	height: 341px;
	width: auto;
}

.fuz-home-main-hotel-schlachthof {
	background-image: url('/assets/img/schlachthof-bg.jpg');
}

.fuz-home-main-hotel-schlachthof svg {
	height: 98px;
	width: auto;
}

/*Home Bottom Bar*/

.fuz-home-bottom-bar {
	background-color: black;
	padding: 56px 160px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.fuz-home-bottom-bar a {
	display: flex;
	align-items: center;
	gap: 40px;
}

.fuz-home-bottom-bar-home-button-text {
	color: white;
	font-size: 96px;
	line-height: 96px;
	text-transform: uppercase;
}


/*Hotel Pages*/

.fuz-hotel-main {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.fuz-hotel-main-video-section {
	min-height: 1833px;
}
.fuz-hotel-main-video-section,
.fuz-hotel-main-maps-section,
.fuz-hotel-main-contact-section,
.fuz-hotel-main-website-section {
	flex-grow: 1;
}

.fuz-hotel-main-video-section img,
.fuz-hotel-main-map-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fuz-hotel-main-contact-section {
	display: flex;
	flex-direction: row;
	height: 592px;
	justify-content: space-between;
}

.fuz-hotel-main-contact-googlemaps-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 80px;
	padding-left: 196px;
}


.fuz-hotel-main-contact-googlemaps-section-qr img {
	height: 496px;
	width: auto;
}

.fuz-hotel-main-contact-googlemaps-section-text {
	font-size: 96px;
	line-height: 1em;
}

.fuz-hotel-main-contact-reception-section {
	height: 100%;
	width: 534px;
	background-color: #1D1D1B;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 70px;
}

.fuz-hotel-main-contact-reception-section-text {
	color: white;
	font-size: 80px;
	line-height: 1em;
	text-transform: uppercase;
}

.fuz-hotel-main-website-section {
	width: 100%;
	height: 177px;
}

.fuz-hotel-main-website-section {
	display: flex;
	justify-content: center;
	align-items: center;
}

.fuz-badhaus-main-website-section {
	background-color: var(--badhaus-yellow);
}

.fuz-lasserhaus-main-website-section {
	background-color: var(--lasserhaus-green);
}

.fuz-schlachthof-main-website-section {
	background-color: var(--schlachthof-orange);
}

.fuz-hotel-main-website-section-text {
	text-transform: uppercase;
	font-size: 96px;
	line-height: normal;
}

.fuz-hotel-bottom-bar {
	background-color: black;
	padding: 56px 160px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
	font-size: 96px;
	line-height: 96px;
	text-transform: uppercase;
}

.fuz-hotel-bottom-bar-home-button,
.fuz-hotel-bottom-bar-depot-button
{
	display: flex;
	align-items: center;
	gap: 40px;
}

.fuz-hotel-bottom-bar-depot-button svg {
	transform: rotate(180deg);
}

/*Hotel Pages Call Popup*/

.fuz-call-popup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	/*backdrop-filter: blur(10px);*/
	background: rgb(255,255,255,0.8);
	display: none;
}

.fuz-call-popup-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.fuz-call-active .fuz-call-popup {
	display: flex;
}

.fuz-call-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-color: black;
	opacity: 0.75;
}

.fuz-call-popup-content {
	background-color: black;
	padding: 300px 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 160px;
	flex-direction: column;
	position: relative;
	z-index: 850;
}

.fuz-call-popup-content-icon svg {
	animation-name: ring;
	animation-iteration-count: infinite;
	animation-duration: 2s;
}

@keyframes ring {
	0% {
		transform: rotate(0deg);
	}
	2% {
		transform: rotate(-5deg);
	}
	4% {
		transform: rotate(5deg);
	}
	6% {
		transform: rotate(-5deg);
	}
	8% {
		transform: rotate(5deg);
	}
	10% {
		transform: rotate(-5deg);
	}
	12% {
		transform: rotate(5deg);
	}
	14% {
		transform: rotate(-5deg);
	}
	16% {
		transform: rotate(5deg);
	}
	18% {
		transform: rotate(-5deg);
	}
	20% {
		transform: rotate(5deg);
	}
	22% {
		transform: rotate(-5deg);
	}
	24% {
		transform: rotate(5deg);
	}
	26% {
		transform: rotate(-5deg);
	}
	28% {
		transform: rotate(5deg);
	}
	30% {
		transform: rotate(-5deg);
	}
	32% {
		transform: rotate(5deg);
	}
	34% {
		transform: rotate(-5deg);
	}
	36% {
		transform: rotate(5deg);
	}
	38% {
		transform: rotate(-5deg);
	}
	40% {
		transform: rotate(5deg);
	}
	42% {
		transform: rotate(-5deg);
	}
	44% {
		transform: rotate(5deg);
	}
	46% {
		transform: rotate(-5deg);
	}
	48% {
		transform: rotate(5deg);
	}
	50% {
		transform: rotate(0deg);
	}
}

.fuz-call-popup-content-main {
	display: flex;
	gap: 40px;
	/*align-items: last baseline;*/
}

.fuz-call-popup-content-main-text {
	color: white;
	text-transform: uppercase;
	font-size: 128px;
}

.fuz-call-popup-content-main-dots {
	width: 140px;
	position: relative;
	transition: opacity 0.2s ease-in-out;
	margin-bottom: 30px;
}

.fuz-call-popup-content-main-dot {
	height: 20px;
	width: 20px;
	background-color: white;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	
}

.fuz-call-popup-content-main-dot-1 {
	left: 0;
	animation-name: dot-1;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

.fuz-call-popup-content-main-dot-2 {
	left: 60px;
	animation-name: dot-2;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

.fuz-call-popup-content-main-dot-3 {
	left: 120px;
	animation-name: dot-3;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes dot-1 {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	95% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes dot-2 {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	95% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes dot-3 {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
	35% {
		opacity: 1;
	}
	95% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fuz-call-popup-content-cancel-button {
	background-color: white;
	color: black;
	font-size: 80px;
	padding: 16px 40px;
}


/*Depot Pages*/

.fuz-depot-icons-section {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 122px;
	margin-top: 300px;
	margin-bottom: 300px;
}

.fuz-depot-img-section {
	display: flex;
	justify-content: center;
}

.fuz-depot-img-section img {
	width: 1797px;
}

.fuz-depot-content-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 190px;
	gap: 80px;
	margin-top: 300px;
}

.fuz-depot-content-section-text {
	font-size: 180px;
	text-align: center;
	line-height: 1em;
}

.fuz-depot-content-section-text-it,
.fuz-depot-content-section-text-de {
	font-size: 128px;
}