/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
  tab-size: 4; /* 3 */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

:root {
  --primary-color: #86b63c;
  --secondary-color: #fff;
  --highlight-color: #f100fe;
  --link-color: #000;
  --black: #121425;
  --black-hsl: 233.6842105263, 34.5454545455%, 10.7843137255%;
  --top-bar-height: 11rem;
  --top-bar-button-size: 5.4em;
  --global-max-width: 1440px;
}

html {
  max-width: 100vw;
  height: 100%;
}

body {
  background: var(--black);
  font-family: Verdana, sans-serif;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3 {
  margin: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  color: var(--link-color);
}

address {
  font-size: 1em;
  font-style: normal;
}

ol li {
  margin-block-start: 1em;
  margin-block-end: 1em;
}
ol li::marker {
  color: white;
}

figure {
  margin: 0;
}

.strong {
  color: white;
  font-weight: 600;
}

.pink {
  color: var(--highlight-color);
}

.uppercase {
  text-transform: uppercase;
}

.hide-for-small {
  display: none;
}
@media (min-width: 992px) {
  .hide-for-small {
    display: block;
  }
}

.show-for-small-only {
  display: block;
}
@media (min-width: 992px) {
  .show-for-small-only {
    display: none;
  }
}

.hide-for-small-inline {
  display: none;
}
@media (min-width: 992px) {
  .hide-for-small-inline {
    display: inline;
  }
}

.show-for-small-only-inline {
  display: inline;
}
@media (min-width: 992px) {
  .show-for-small-only-inline {
    display: none;
  }
}

@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana Italic.ttf") format("ttf");
  font-weight: 400;
  font-style: italic;
  font-stretch: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana Bold.ttf") format("ttf");
  font-weight: 600;
  font-style: italic;
  font-stretch: normal;
}
@font-face {
  font-family: "Verdana";
  src: url("../fonts/Verdana Bold Italic.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}
.svg-sprite-container {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

.icon {
  height: 1em;
  width: 1em;
}
.icon.black {
  fill: var(--black);
}
.icon.white {
  fill: white;
}
.icon.primary {
  fill: var(--primary-color);
}
.icon.rotated {
  transform: rotateZ(15deg);
}
.icon.bg-primary {
  background-color: var(--primary-color);
}
.icon.huge {
  height: 13rem;
  width: 6rem;
}

#svg-db [id$=text],
#svg-sbahn [id$=text],
#svg-parken [id$=text] {
  fill: black;
}
#svg-db [id$=backdrop],
#svg-sbahn [id$=backdrop],
#svg-parken [id$=backdrop] {
  fill: var(--primary-color);
}

.button {
  --link-color: white;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.6em 0.8em 0.5em 0.4em;
  font-size: 1.4em;
  font-weight: 600;
  text-align: center;
  color: white;
  background-color: var(--black);
  border-radius: 0.1em;
  transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center center;
  transform-style: preserve-3d;
}
.button::before, .button::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center center;
}
.button::before {
  opacity: 1;
  box-shadow: 0 0 0.5em 0.4em var(--primary-color);
  transform: scale(1) translate3D(0, 0, -1px);
}
.button::after {
  top: -4px;
  left: -4px;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  opacity: 0;
  border-radius: 0.1em;
  border: 4px solid var(--primary-color);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 50ms;
}
.button:hover {
  text-decoration: none;
  transform: scale(0.99);
}
.button:hover::before {
  opacity: 0;
  transform: scaleY(0.8) scaleX(0.9) translate3D(0, 0, -1px);
}
.button:hover::after {
  opacity: 1;
}
.button .icon {
  height: 1.6em;
  width: 1.5em;
  margin: -0.2em 0.4em -0.1em 0.2em;
}
.button.big {
  font-size: 2.3em;
}
.button-container {
  margin-top: 2em;
}
.button-container .button {
  display: inline-flex;
}
.button-container.centered {
  text-align: center;
}

.simple-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem 1.75rem 0.5rem 0.1rem;
  font-size: 1.75rem;
  font-weight: 600;
}
.simple-button .icon {
  display: inline-block;
  padding: 0.1em 0;
  width: 1.7em;
  height: 2.2em;
  margin-right: 0.5em;
}
.simple-button.primary {
  background-color: var(--primary-color);
}
.simple-button.inverted {
  background-color: var(--black);
  color: var(--primary-color);
}
.simple-button:hover {
  text-decoration: none;
}

.divider {
  position: relative;
  display: flex;
  border: 0;
  font-size: 3rem;
  height: 1em;
  background-color: var(--primary-color);
  margin: 0;
  overflow: visible;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
  max-width: 100% !important;
  transform-origin: center center;
  transform-style: preserve-3d;
  transform: rotateZ(0deg) scaleX(1.2);
  transition: all 600ms ease-out;
}
@media (min-width: 1200px) {
  .divider {
    font-size: 4rem;
  }
}
.divider::before, .divider::after {
  content: " ";
  display: table;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 1em;
  width: 100%;
  background-color: var(--primary-color);
  opacity: 0.5;
  transform-origin: center center;
  transition: all 600ms ease-out;
}
.divider::before {
  transform: rotateZ(0deg) translate3D(0, 0, -1px) scaleY(1.2) scaleX(1.2);
}
.divider::after {
  transform: rotateZ(0deg) translate3D(0, 0, -2px) scaleY(1.2) scaleX(1.2);
}
.divider.active {
  transform: rotateZ(-2deg) translateZ(-1px) scaleX(1.2);
}
.divider.active::before {
  transform: rotateZ(4deg) translate3D(0, 0.1em, -1px) scaleY(1.2) scaleX(1.2);
}
.divider.active::after {
  transform: rotateZ(5deg) translate3D(0, 0.12em, -2px) scaleY(1.5) scaleX(1.5);
}
.divider.flipped::before {
  transform: rotateZ(0deg) translate3D(0, 0, -1px) scaleY(1.2) scaleX(1.2);
}
.divider.flipped::after {
  transform: rotateZ(0deg) translate3D(0, 0, -2px) scaleY(1.2) scaleX(1.2);
}
.divider.flipped.active {
  transform: rotateZ(2deg) translateZ(3rem) scaleX(1.2);
}
.divider.flipped.active::before {
  transform: rotateZ(-4deg) translate3D(0, 0.1em, 3px) scaleY(1.2) scaleX(1.2);
}
.divider.flipped.active::after {
  transform: rotateZ(-5deg) translate3D(0, 0.12em, 2px) scaleY(1.5) scaleX(1.5);
}
.inverted .divider {
  box-shadow: none;
}
.divider.pullup {
  margin-top: -0.3em;
}
.divider.big {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .divider.big {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .divider.big {
    font-size: 7rem;
  }
}
.divider.image-backdrop.image-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 200%;
  margin-top: calc((33.3333333333% - 8rem) / 2);
  max-width: 200% !important;
  margin-left: -50%;
}

img.circle {
  border-radius: 100%;
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 767px) {
  img.circle {
    width: 100%;
  }
}

.language-switcher {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: auto;
}
@media (min-width: 767px) {
  .language-switcher {
    right: 1rem;
    left: auto;
  }
}
.language-switcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
}
.language-switcher li a {
  display: inline-block;
  position: relative;
}
.language-switcher li a::before, .language-switcher li a::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: center center;
}
.language-switcher li a::before {
  opacity: 0;
  box-shadow: 0 0 0.4em 0.2em var(--primary-color);
  transform: scale(1) translate3D(0, 0, -1px);
}
.language-switcher li a::after {
  top: -2px;
  left: -2px;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  opacity: 0;
  border-radius: 0.1em;
  border: 2px solid var(--primary-color);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 50ms;
}
.language-switcher li a:hover {
  text-decoration: none;
  transform: scale(0.99);
}
.language-switcher li a:hover::before {
  opacity: 1;
}
.language-switcher li a.active::after {
  opacity: 1;
}
.language-switcher li a.active:hover::before {
  opacity: 0;
}
.language-switcher li + li {
  margin-left: 0.5rem;
}
.language-switcher img {
  display: block;
  height: 1.5rem;
  width: auto;
}
@media (min-width: 767px) {
  .language-switcher img {
    height: 2.5rem;
  }
}

.row {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  row-gap: var(--section-grid-gap);
}
.row.base-1 > * {
  width: 100%;
}
.row.base-2 > * {
  width: 50%;
}
.row.base-3 > * {
  width: 33.33333%;
}
.row.base-4 > * {
  width: 25%;
}
@media (min-width: 767px) {
  .row.small-4 > * {
    width: 25%;
  }
  .row.small-2 > * {
    width: 50%;
  }
  .row.small-3 > * {
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .row.medium-4 > * {
    width: 25%;
  }
  .row.medium-2 > * {
    width: 50%;
  }
  .row.medium-3 > * {
    width: 33.33333%;
  }
}
@media (min-width: 1200px) {
  .row.large-4 > * {
    width: 25%;
  }
  .row.large-2 > * {
    width: 50%;
  }
  .row.large-3 > * {
    width: 33.33333%;
  }
}
.row.wrapped {
  flex-wrap: wrap;
}
.row.centered {
  justify-content: center;
}
.row.last-centered > *:last-child {
  margin-left: auto;
  margin-right: auto;
}
.row.collapsed > * {
  padding-left: 0;
  padding-right: 0;
}

body > main {
  position: relative;
  z-index: 1;
}

@media (min-width: 767px) {
  .main .content {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .main .content {
    max-width: calc(var(--global-max-width) * 0.8);
  }
}
.main .content.centered {
  margin-left: auto;
  margin-right: auto;
}

body {
  --top-bar-height: 5rem;
  --top-bar-button-size: 3em;
  --online-booking-notice-width: calc(100px + 1vw * 10);
}
@media (min-width: 767px) {
  body {
    --top-bar-height: 6rem;
    --top-bar-button-size: 4em;
    --online-booking-notice-width: 200px;
  }
}
@media (min-width: 992px) {
  body {
    --top-bar-height: 6rem;
    --top-bar-button-size: 4em;
  }
}
@media (min-width: 1200px) {
  body {
    --top-bar-height: 8rem;
  }
}
@media (min-width: 1500px) {
  body {
    --online-booking-notice-width: 250px;
  }
}

#concept,
#pricing,
#coupon,
#rent-whole-place,
#birthday,
#directions,
#opening-hours,
#faq {
  scroll-margin: calc(var(--top-bar-height) + var(--online-booking-notice-width) * 0.3);
}

.nav.main {
  --button-size: var(--top-bar-button-size);
  --button-height: var(--button-size);
  --button-width: var(--button-size);
  --navigation-bottom-color: var(--primary-color);
  position: relative;
  z-index: 10;
  height: var(--top-bar-height);
  padding: 2rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
  position: sticky;
  top: 0;
  border-bottom: 2px solid var(--navigation-bottom-color);
}
@media (min-width: 767px) {
  .nav.main {
    padding: 2rem;
  }
}
.nav.main .logo-container {
  height: calc(100% + 2rem);
  text-align: center;
}
.nav.main .logo-container .logo {
  height: 100%;
  width: auto;
}
.nav.main .buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  max-height: var(--button-size);
}
.nav.main .simple-button {
  display: none;
}
@media (min-width: 767px) {
  .nav.main .simple-button {
    display: flex;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .nav.main .simple-button {
    font-size: 1.75rem;
  }
}
.nav.main .online-booking-notice {
  display: block;
  position: absolute;
  top: calc(var(--top-bar-height) * 0.6);
  left: 40vw;
}
@media (min-width: 767px) {
  .nav.main .online-booking-notice {
    left: 27vw;
  }
}
@media (min-width: 992px) {
  .nav.main .online-booking-notice {
    left: 20vw;
  }
}
@media (min-width: 1500px) {
  .nav.main .online-booking-notice {
    left: 20vw;
  }
}
.nav.main .online-booking-notice img {
  width: var(--online-booking-notice-width);
  height: auto;
}
@media (min-width: 767px) {
  .nav.main .online-booking-notice img {
    left: 27vw;
    width: var(--online-booking-notice-width);
  }
}
@media (min-width: 992px) {
  .nav.main .online-booking-notice img {
    left: 20vw;
    opacity: 1;
  }
}
@media (min-width: 1500px) {
  .nav.main .online-booking-notice img {
    left: 20vw;
    width: var(--online-booking-notice-width);
  }
}

.social-media a {
  margin-right: 1em;
}

.social-media .icon,
.nav-toggle .icon {
  width: var(--button-width);
  height: var(--button-height);
}

.nav-toggle {
  max-height: var(--button-size);
}
@media (min-width: 767px) {
  .nav-toggle {
    margin-right: 1em;
  }
}
.nav-toggle .hamburger {
  margin-right: 0;
  padding: 0.5em 0.5em;
}
@media (min-width: 767px) {
  .nav-toggle .hamburger {
    padding: 0.75em 0.5em;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 70vh;
  padding: 4rem 1rem;
  background: url(/assets/img/hero.jpg) center center no-repeat;
  background-size: cover;
  z-index: 20;
}
@media (min-width: 992px) {
  .hero {
    padding: 4rem 6rem 8rem;
    justify-content: center;
  }
}
.hero .subheading {
  font-size: 1.5em;
  padding: 0.4em 0.8em;
  background-color: white;
  color: var(--black);
}
@media (min-width: 767px) {
  .hero .subheading {
    font-size: 1.75em;
  }
}
.hero hgroup {
  width: auto;
  align-items: center;
  justify-content: center;
  align-content: center;
  max-width: 100%;
}

.hero h1 {
  font-size: 2.4em;
  line-height: 2em;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 0;
  color: var(--primary-color);
  background-color: transparent;
  padding: 0.3em 0;
}
@media (min-width: 992px) {
  .hero h1 {
    padding: 0.3em 2.3em;
    font-size: 3.5em;
  }
}
.hero h1 .black {
  display: inline-flex;
  margin-left: -0.5em;
  padding: 0 1em 0;
  flex-grow: 0;
  background-color: var(--black);
}
@media (min-width: 992px) {
  .hero h1 .black {
    margin-left: -1em;
  }
}
.hero h1 > * + * {
  margin: 0.2em -1em 0 0;
}

footer {
  --footer-elements-gap: 2rem;
  padding: 3rem 2rem 4rem;
  background-color: var(--primary-color);
  color: var(--black);
  font-size: 0.6rem;
}
@media (min-width: 992px) {
  footer {
    --footer-elements-gap: 3rem;
    padding: 3rem 6rem 8rem;
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 3rem 6rem 8rem;
    font-size: 1rem;
  }
}
footer > * + * {
  margin-top: var(--footer-elements-gap);
}
footer .row {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2rem;
}
footer .row.first {
  flex-wrap: wrap-reverse;
}
footer .row.bottom {
  align-items: center;
}
footer .row > * {
  flex-grow: 1;
}
footer .divider {
  margin-top: -5rem;
  box-shadow: none;
  z-index: -1;
}
footer h1 {
  font-size: 1.5em;
}
footer p {
  font-size: 1.2em;
}
footer .contact {
  font-weight: bold;
  font-size: 1.5em;
}
@media (min-width: 767px) {
  footer .contact {
    text-align: right;
  }
}
footer .social-media {
  text-align: center;
}
@media (min-width: 767px) {
  footer .social-media {
    text-align: left;
  }
}
footer .social-media .icon {
  width: 5.4em;
  height: 5.4em;
  margin-right: 0.75em;
}
footer .logo-container {
  text-align: center;
}
footer .simple-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6em;
  display: flex;
  flex-direction: row;
  column-gap: 1em;
  justify-content: center;
}
@media (min-width: 767px) {
  footer .simple-nav {
    display: block;
    text-align: right;
  }
}

.opening-hours__list .days, .opening-hours__list .hours {
  margin: 0;
  flex-grow: 1;
}
.opening-hours__list .days {
  text-align: left;
}
.opening-hours__list .hours {
  text-align: right;
  white-space: nowrap;
}

.opening-hours {
  position: relative;
}
@media (min-width: 1200px) {
  .opening-hours .description {
    padding-right: 8rem;
  }
}
.opening-hours .online-booking-notice {
  position: absolute;
  top: 0;
  right: 5vw;
  display: none;
}
@media (min-width: 992px) {
  .opening-hours .online-booking-notice {
    display: block;
  }
}
.opening-hours .online-booking-notice img {
  width: calc(100px + 10vw);
  height: auto;
}
@media (min-width: 767px) {
  .opening-hours .online-booking-notice img {
    width: 200px;
  }
}
@media (min-width: 1500px) {
  .opening-hours .online-booking-notice img {
    width: 250px;
  }
}
@media (min-width: 1500px) {
  .opening-hours .online-booking-notice img {
    width: 250px;
  }
}

.accordion .accordion-item {
  border-bottom: 2px solid var(--black);
  background: var(--primary-color);
  color: var(--black);
}

.accordion summary {
  position: relative;
  display: block;
  width: 100%;
  padding: 1em 2.5em 1em 1.5em;
  font-size: 1em;
  font-weight: 600;
  border: none;
  outline: none;
}

.accordion summary:hover,
.accordion summary:focus {
  cursor: pointer;
}

.accordion summary:hover::after,
.accordion summary:focus::after {
  cursor: pointer;
  border: 1px solid #03b5d2;
}

.accordion summary .icon {
  display: inline-block;
  position: absolute;
  top: 0.7em;
  right: 0.5em;
  width: 1em;
  height: 1em;
  font-size: 1.4em;
  border: 0.07em solid;
  border-radius: 100%;
}

.accordion summary .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 0.4em;
  left: 0.15em;
  width: 0.6em;
  height: 0.07em;
  background: currentColor;
}

.accordion summary .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 0.15em;
  left: 0.42em;
  width: 0.07em;
  height: 0.6em;
  background: currentColor;
}

.accordion-item details summary {
  transition: all 200ms linear;
  will-change: margin-bottom;
  margin-bottom: 10;
}

.accordion details[open] summary {
  color: var(--black);
  margin-bottom: 1px;
}

.accordion details[open] .icon::after {
  width: 0;
}

.accordion details[open] > .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  padding: 0 1.5em 1em;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 0.9em;
  margin: 0;
}

section,
article {
  --section-grid-gap: 2rem;
  --section-elements-gap: 3rem;
  padding: 1em 2em 4em;
  font-size: 0.6rem;
}
@media (min-width: 767px) {
  section,
  article {
    font-size: 0.7rem;
    padding: 1em 4em 8em;
  }
}
@media (min-width: 1500px) {
  section,
  article {
    --section-elements-gap: 5rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 1700px) {
  section,
  article {
    --section-grid-gap: 4rem;
    font-size: 0.8rem;
    padding: 1em 6em 8em;
  }
}
section > *,
article > * {
  max-width: var(--global-max-width);
  margin-left: auto;
  margin-right: auto;
}
section > * + *,
article > * + * {
  margin-top: var(--section-elements-gap);
}
section hgroup,
article hgroup {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 767px) {
  section hgroup,
  article hgroup {
    width: 70%;
  }
  section hgroup.wider,
  article hgroup.wider {
    width: 90%;
  }
}
@media (min-width: 992px) {
  section hgroup,
  article hgroup {
    width: 60%;
  }
  section hgroup.wider,
  article hgroup.wider {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  section hgroup,
  article hgroup {
    width: 40%;
  }
  section hgroup.wider,
  article hgroup.wider {
    width: 60%;
  }
}
@media (min-width: 1500px) {
  section hgroup,
  article hgroup {
    width: 30%;
  }
  section hgroup.wider,
  article hgroup.wider {
    width: 60%;
  }
}
@media (min-width: 1700px) {
  section hgroup,
  article hgroup {
    width: 30%;
  }
  section hgroup.wider,
  article hgroup.wider {
    width: 40%;
  }
}
section h1,
article h1 {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3em 1.5em;
  max-width: 100%;
  font-size: 2.5em;
  color: var(--black);
  background-color: var(--primary-color);
  align-items: center;
  white-space: nowrap;
}
@media (min-width: 767px) {
  section h1,
  article h1 {
    font-size: 3em;
    padding-left: 2.3em;
    padding-right: 2.3em;
  }
}
section h1.compact,
article h1.compact {
  padding-left: 1em;
  padding-right: 1em;
}
section h1.inverted,
article h1.inverted {
  color: var(--primary-color);
  background-color: var(--black);
}
section h1 .icon,
article h1 .icon {
  flex-shrink: 0;
  height: 1.5em;
  margin-left: -0.7em;
  margin-right: 0.7em;
}
section h2,
article h2 {
  display: inline-flex;
  align-self: flex-end;
  margin-left: 4.5em;
  padding: 0.3em 0.8em;
  font-size: 1.2em;
  background-color: white;
  color: var(--black);
  white-space: nowrap;
}
@media (min-width: 767px) {
  section h2,
  article h2 {
    font-size: 1.7em;
  }
}
section h1 + h2,
article h1 + h2 {
  margin-top: 0.5em;
}
@media (min-width: 767px) {
  section .wider h1,
  article .wider h1 {
    padding: 0.3em 1.8em;
    font-size: 3.4em;
  }
  section .wider h2,
  article .wider h2 {
    font-size: 1.75em;
  }
}
section p, section address, section ol, section .accordion,
article p,
article address,
article ol,
article .accordion {
  font-size: 1.6em;
  overflow-wrap: break-word;
  hyphens: manual;
}
section .circle + *,
article .circle + * {
  margin-top: 2em;
}
section h3,
article h3 {
  color: white;
  font-size: 1.9em;
}
section strong,
article strong {
  display: block;
  margin-bottom: 1em;
  font-size: 1.2em;
  font-weight: 600;
  color: white;
}
section em,
article em {
  color: white;
  font-weight: 600;
  font-style: normal;
}
section small,
article small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
}
section > .row,
article > .row {
  margin-left: calc(-1 * var(--section-grid-gap));
  margin-right: calc(-1 * var(--section-grid-gap));
  flex-wrap: wrap;
}
@media (min-width: 767px) {
  section > .row,
  article > .row {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(1440px + var(--section-grid-gap) * 2);
  }
}
section > .row > *,
article > .row > * {
  padding-left: var(--section-grid-gap);
  padding-right: var(--section-grid-gap);
}
section hr,
article hr {
  border: 2px solid white;
}
section .has-image-backdrop,
article .has-image-backdrop {
  position: relative;
}

section.inverted {
  margin-bottom: 10em;
  position: relative;
  background-color: var(--primary-color);
  z-index: 1;
}
section.inverted .divider:first-child {
  margin-top: -0.5em;
  z-index: -1;
}
section.inverted .divider:last-child {
  position: absolute;
  bottom: -1.7rem;
  width: 100%;
  z-index: 0;
}
section.inverted hgroup {
  margin-top: -5rem;
}
@media (min-width: 1200px) {
  section.inverted hgroup {
    margin-top: -8rem;
  }
}
section.inverted h1 {
  padding: 0.5em 1.1em;
  font-size: 2.5em;
  align-self: center;
  background-color: white;
  color: var(--black);
  z-index: 2;
}
@media (min-width: 767px) {
  section.inverted h1 {
    font-size: 3.5em;
  }
}
section.inverted p {
  color: var(--black);
}

main > :last-child {
  padding-bottom: 12em;
}

.coupon h1 {
  padding: 0.3em 2em;
}
@media (min-width: 767px) {
  .coupon h1 {
    padding-right: 3.6em;
    padding-left: 3.6em;
  }
}
.coupon .row {
  margin-top: 7em;
  flex-wrap: wrap-reverse;
}
@media (min-width: 767px) {
  .coupon .row p {
    padding-top: 3em;
  }
}
.coupon .icon.big {
  min-height: 18vh;
}
@media (min-width: 767px) {
  .coupon .icon.big {
    min-height: 19vh;
  }
}
@media (min-width: 992px) {
  .coupon .icon.big {
    min-height: 25vh;
  }
}
@media (min-width: 992px) {
  .coupon .icon.big {
    min-height: 30vh;
  }
}

.cta-teaser {
  text-align: center;
  padding-bottom: 10em;
}
.cta-teaser .column {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .cta-teaser .column {
    width: 60%;
  }
}
.cta-teaser .button {
  margin-top: 3rem;
  align-self: center;
}
.cta-teaser.special hgroup {
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
}
@media (min-width: 992px) {
  .cta-teaser.special hgroup {
    margin-top: -1;
  }
}
@media (min-width: 1500px) {
  .cta-teaser.special hgroup {
    margin-top: -3.5rem;
  }
}
.cta-teaser.special h1 {
  align-self: center;
  font-size: 2rem;
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 0.5em;
}
@media (min-width: 1500px) {
  .cta-teaser.special h1 {
    font-size: 3.5rem;
  }
}

.directions__infos {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: var(--section-elements-gap);
  text-align: center;
}
.directions__infos li > * + * {
  margin-top: var(--section-grid-gap);
}
.directions__infos li .logo {
  width: auto;
  height: 8em;
}
.directions__infos .icon {
  display: inline-block;
  min-width: 8em;
  height: 8em;
}
.directions__infos address {
  font-weight: 600;
}

.map .divider {
  z-index: -1;
}
.map .divider:first-child {
  margin-bottom: -0.5em;
}
.map .divider:last-child {
  margin-top: -0.5em;
}
.map .full-width {
  width: 100vw;
  height: 60vh;
}

.pricing {
  --section-elements-gap: 2em;
  margin-top: 6em;
  padding-bottom: 2em;
}
@media (min-width: 767px) {
  .pricing {
    --section-elements-gap: 3em;
    margin-top: 8em;
    padding-bottom: 4em;
  }
}

.pricing-group {
  margin-top: 0;
  text-align: left;
}
@media (min-width: 767px) {
  .pricing-group {
    text-align: center;
  }
}
.pricing-group .heading strong {
  margin-bottom: 0.3em;
}
@media (max-width: 767px) {
  .pricing-group .heading strong {
    font-size: 1em;
  }
}

.pricing-group__categories {
  margin: 0;
  padding: 0;
  list-style: none;
  --section-grid-gap: 0.5em;
  flex-wrap: wrap;
  margin-top: 3em;
  text-align: left;
  color: var(--black);
}
@media (min-width: 767px) {
  .pricing-group__categories {
    --section-grid-gap: 3em;
    margin-top: 0;
    text-align: center;
  }
}
.pricing-group__categories .category {
  font-weight: 600;
  font-size: 2.3em;
}
@media (min-width: 767px) {
  .pricing-group__categories .category {
    display: block;
    font-size: 3em;
  }
}
.pricing-group__categories .price {
  font-size: 2.3em;
  margin-left: 0.2em;
}
@media (min-width: 767px) {
  .pricing-group__categories .price {
    margin-left: 0;
  }
}
.pricing-group__categories .second-round {
  margin-top: 0.5em;
}
@media (min-width: 767px) {
  .pricing-group__categories .second-round {
    margin-top: 1em;
  }
}
.pricing-group__categories .second-round .category {
  font-size: 0.9em;
}
.pricing-group__categories .second-round .price {
  font-size: 0.9em;
}
@media (min-width: 767px) {
  .pricing-group__categories .second-round .category {
    font-size: 1.3em;
  }
  .pricing-group__categories .second-round .price {
    font-size: 1em;
  }
}

.hero + .divider {
  margin-top: -0.5em;
}

.main .content {
  text-align: left;
}
@media (min-width: 992px) {
  .main .content {
    text-align: center;
  }
}

main > section {
  min-height: 20rem;
}

main > .divider + * {
  padding-top: 5em;
}

.map {
  margin-bottom: 5rem;
}

.map-placeholder {
  width: 110%;
  height: auto;
  margin: 0 -2rem 0;
}

.booking .planyo-iframe.hide-for-small {
  min-height: 293px;
  width: 100%;
}
.booking .planyo-iframe.show-for-small-only {
  min-height: 70vh;
  width: 100%;
}

@media (min-width: 767px) {
  .callout > * {
    flex: 0 1 content;
    align-self: stretch;
  }
}
.callout .icon {
  margin-right: 2em;
}
.callout .image-container {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.callout .image-container img {
  max-width: 90%;
  height: auto;
}

.birthday .column {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .birthday .column {
    width: 60%;
  }
}
.birthday .button {
  display: inline-flex;
  align-self: center;
}

.faq.faq h1 {
  white-space: normal;
  font-size: 2.7em;
}

main > .divider + .gallery {
  padding-top: 6rem;
}
@media (min-width: 992px) {
  main > .divider + .gallery {
    padding-top: 10rem;
  }
}

.gallery hgroup {
  position: relative;
  z-index: 1;
}
.gallery h1 {
  align-self: center;
  z-index: 2;
}
.gallery h1 .icon.big {
  --icon-scale: 3.1;
  transform: translateY(-0.35em) rotateZ(-7deg) scale(var(--icon-scale));
  width: 1.5em;
  height: 1em;
  padding: 0.1em 0.1em;
  margin-right: calc(0.8em * var(--icon-scale));
}
.gallery h2 {
  z-index: 3;
  font-size: 0.9em;
}

.room-plan {
  --section-elements-gap: 5rem;
  min-height: auto;
  padding-bottom: 0;
}
@media (min-width: 767px) {
  .room-plan {
    --section-elements-gap: 7rem;
  }
}
.room-plan .divider {
  font-size: 2rem;
}
@media (min-width: 1200px) {
  .room-plan .divider {
    font-size: 7rem;
  }
}

.room-plan svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  margin-right: auto;
  margin-bottom: var(--section-elements-gap);
  margin-left: auto;
}

svg #roomplan [id*=divs] {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}
svg #roomplan [id^=room] #bg {
  transition: all 400ms ease-out;
}
svg #roomplan #tracks {
  opacity: 1;
}
svg #roomplan #tracks rect,
svg #roomplan #tracks polygon,
svg #roomplan #tracks path {
  transition: all 400ms ease-out;
}
svg #roomplan #tracks rect:hover,
svg #roomplan #tracks polygon:hover,
svg #roomplan #tracks path:hover {
  opacity: 1;
}

.gallery-entry + .divider {
  z-index: 10;
}

.gallery-entry.gallery-entry {
  --global-max-width: 100%;
  margin-bottom: -1rem;
  padding: 0;
  z-index: auto;
  background-color: transparent;
  min-height: auto;
}
.gallery-entry figure, .gallery-entry img {
  margin: 0;
  width: 100%;
}
.gallery-entry img {
  height: auto;
  width: 150vw;
  margin-left: -25vw;
}
@media (min-width: 767px) {
  .gallery-entry img {
    width: auto;
    margin-left: auto;
  }
}
@media (min-width: 1500px) {
  .gallery-entry img {
    width: 100%;
  }
}
.gallery-entry hgroup {
  position: absolute;
  top: 3rem;
  z-index: 20;
  width: 100%;
}
.gallery-entry hgroup h1 {
  display: flex;
  background-color: var(--black);
  color: var(--primary-color);
  font-size: 2em;
}
@media (min-width: 992px) {
  .gallery-entry hgroup h1 {
    font-size: 3.5em;
  }
}
.gallery-entry:nth-of-type(even) h1 {
  align-self: flex-start;
}
.gallery-entry:nth-of-type(even) h2 {
  align-self: flex-start;
}
.gallery-entry:nth-of-type(odd) h1 {
  align-self: flex-end;
}

.single .content {
  --link-color: var(--secondary-color);
  text-align: left;
}

/*# sourceMappingURL=style.css.map */
