.slider-holder {
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  padding: 0 var(--default-spacing);
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.slider-holder.top-padding {
  padding-top: var(--default-spacing);
  height: calc(var(--content-height) - var(--default-spacing));
}
.slider-holder.bottom-padding {
  padding-bottom: var(--default-spacing);
  height: calc(var(--content-height) - var(--default-spacing));
}
.slider-holder.bottom-padding.top-padding {
  padding-bottom: var(--default-spacing);
  padding-top: var(--default-spacing);
  height: var(--content-height);
}

.images-slider {
  position: relative;
  padding: 1rem;
}
.images-slider .slick-track .slide > div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider {
  width: 100%;
  height: 100%;
}
.slider .slick-slide > div {
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-dots {
  bottom: var(--default-spacing);
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 0.25rem;
  margin: 0 0.25rem;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0.25;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--white);
}

.arrows {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
}

.arrow {
  position: absolute;
  left: var(--default-spacing);
  top: 0;
  width: 20%;
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  background-color: var(--white);
  cursor: pointer;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  opacity: 0;
  transition: opacity 0.2s;
}
.arrow span {
  position: absolute;
  left: 4rem;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid var(--white);
  border-width: 0 0 0.2rem 0.2rem;
  transition: all 0.2s;
}
.arrow:hover {
  opacity: 1;
}
.arrow:hover span {
  left: 2.5rem;
}

.top-padding .arrow {
  top: var(--default-spacing);
}

.arrow-next {
  left: auto;
  right: var(--default-spacing);
  transform: rotate(180deg);
}

.isXS .slider-holder,
.isSM .slider-holder,
.isMD.isPortrait .slider-holder {
  height: auto !important;
  padding-bottom: calc(2 * var(--default-spacing)) !important;
}
.isXS .slider,
.isSM .slider,
.isMD.isPortrait .slider {
  height: unset;
}
.isXS .slider .slick-slide > div,
.isSM .slider .slick-slide > div,
.isMD.isPortrait .slider .slick-slide > div {
  height: auto;
  padding-top: 50%;
}
.isXS .slick-dots,
.isSM .slick-dots,
.isMD.isPortrait .slick-dots {
  bottom: calc(-1 * var(--default-spacing) - 0.125rem);
}
.isXS .arrows,
.isSM .arrows,
.isMD.isPortrait .arrows {
  display: none;
}

@font-face {
  font-family: "MaisonNeue-Light";
  src: url("../assets/fonts/MaisonNeueWEB-Light.woff2") format("woff2"), url("../assets/fonts/MaisonNeueWEB-Light.woff") format("woff"), url("../assets/fonts/MaisonNeue-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MaisonNeue-Medium";
  src: url("../assets/fonts/MaisonNeueWEB-Medium.woff2") format("woff2"), url("../assets/fonts/MaisonNeueWEB-Medium.woff") format("woff"), url("../assets/fonts/MaisonNeue-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Orleans-Light";
  src: url("../assets/fonts/Orleans-Light.woff2") format("woff2"), url("../assets/fonts/Orleans-Light.woff") format("woff"), url("../assets/fonts/Orleans-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.no-select, .c-hamburger, .inquiry-modal-close, .availability-close {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 3;
  height: 7rem;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: var(--green);
  z-index: 1;
  transition: all 0.4s;
}

.apply, .isTeaser .learn-more {
  position: fixed;
  left: var(--default-spacing);
  top: calc(var(--header-height) / 2);
  transform: translate(0, -50%);
  display: inline-block;
  line-height: calc(2rem - 2px);
  border: 1px solid var(--white);
  border-radius: 1.5rem;
  padding: 0 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 2;
}

.logo {
  width: 14rem;
  max-width: 14rem;
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) / 2);
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
.logo img {
  width: 14rem;
  max-width: 14rem;
  display: block;
}

.header-links {
  position: fixed;
  z-index: 2;
  right: calc(var(--default-spacing) + 1.25rem);
  top: calc(var(--header-height) / 2);
  transform: translate(0, -50%);
}
.header-links a {
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  margin-right: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: translate(0, -100%);
  background-color: var(--green);
  transition: transform 0.4s 0.1s, opacity 0.4s 0.1s, visibility 0s 0.5s, z-index 0s 0.5s;
}

.c-hamburger, .inquiry-modal-close, .availability-close {
  position: fixed;
  z-index: 2;
  right: var(--default-spacing);
  top: calc(var(--header-height) / 2);
  transform: translate(0, -50%);
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 1.25rem;
  height: 19px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.c-hamburger:focus, .inquiry-modal-close:focus, .availability-close:focus {
  outline: none;
}
.c-hamburger span, .inquiry-modal-close span, .availability-close span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
}
.c-hamburger span::before, .inquiry-modal-close span::before, .availability-close span::before, .c-hamburger span::after, .inquiry-modal-close span::after, .availability-close span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  content: "";
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.c-hamburger span::before, .inquiry-modal-close span::before, .availability-close span::before {
  top: -5px;
  transition-property: top, transform;
}
.c-hamburger span::after, .inquiry-modal-close span::after, .availability-close span::after {
  bottom: -5px;
  transition-property: bottom, transform;
}

.c-hamburger.is-active span, .is-active.inquiry-modal-close span, .is-active.availability-close span {
  background: none;
}
.c-hamburger.is-active span::before, .is-active.inquiry-modal-close span::before, .is-active.availability-close span::before {
  background-color: var(--white);
  top: 0 !important;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.c-hamburger.is-active span::after, .is-active.inquiry-modal-close span::after, .is-active.availability-close span::after {
  background-color: var(--white);
  bottom: 0 !important;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.nav-active nav {
  z-index: 1;
  transition: opacity 0.4s 0.1s;
  opacity: 1;
  visibility: visible;
}
.nav-active nav li {
  top: 0;
  opacity: 1;
}
.nav-active nav li:nth-child(1) {
  transition: opacity 0.4s 0s, top 0.4s 0s;
}
.nav-active nav li:nth-child(2) {
  transition: opacity 0.4s 0.15s, top 0.4s 0.15s;
}
.nav-active nav li:nth-child(3) {
  transition: opacity 0.4s 0.3s, top 0.4s 0.3s;
}
.nav-active nav li:nth-child(4) {
  transition: opacity 0.4s 0.45s, top 0.4s 0.45s;
}
.nav-active nav li:nth-child(5) {
  transition: opacity 0.4s 0.6s, top 0.4s 0.6s;
}
.nav-active nav li:nth-child(6) {
  transition: opacity 0.4s 0.75s, top 0.4s 0.75s;
}
.nav-active nav li:nth-child(7) {
  transition: opacity 0.4s 0.9s, top 0.4s 0.9s;
}
.nav-active nav li:nth-child(8) {
  transition: opacity 0.4s 1.05s, top 0.4s 1.05s;
}
.nav-active nav li:nth-child(9) {
  transition: opacity 0.4s 1.2s, top 0.4s 1.2s;
}
.nav-active nav li:nth-child(10) {
  transition: opacity 0.4s 1.35s, top 0.4s 1.35s;
}
.nav-active .nav-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translate(0, 0);
  transition: transform 0.4s 0.1s, opacity 0.4s 0.1s, visibility 0s, z-index 0s;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  color: var(--white);
  opacity: 0;
  transition: transform 0s;
}
nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: calc(var(--header-height) + var(--default-spacing)) 1rem 1rem 1rem;
  align-items: center;
  justify-content: center;
}
nav li {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  list-style: none;
  line-height: 1;
  padding: 0.5rem 0;
  padding-right: 0;
  position: relative;
  top: 2rem;
  opacity: 0;
}
nav li a {
  color: var(--white);
  text-decoration: none;
  font-size: 2.8rem;
  font-family: "Orleans-Light", serif;
}
nav li.is-active a {
  color: var(--white);
  pointer-events: none;
  cursor: default;
  text-decoration: underline;
}
nav li:hover a {
  color: var(--white);
}

.isXS header {
  height: 10rem;
}
.isXS .logo {
  width: 14rem;
  max-width: 14rem;
  position: fixed;
  left: 50%;
  top: calc((var(--header-height) - 3rem) / 2);
  transform: translate(-50%, -50%);
}
.isXS .logo img {
  width: 14rem;
  max-width: 14rem;
  display: block;
}
.isXS .header-links {
  position: fixed;
  right: 0;
  top: calc(var(--header-height) - 3rem);
  transform: translate(0, 0);
  background-color: var(--green);
  width: 100%;
  display: flex;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.isXS .header-links a {
  flex: 0 0 50%;
  text-align: center;
  border-right: 1px solid var(--gray);
  line-height: 3rem;
  margin-right: 0;
  font-size: 1rem;
}
.isXS .header-links a:last-of-type {
  border-right: none;
}
.isXS .c-hamburger, .isXS .inquiry-modal-close, .isXS .availability-close {
  top: calc((var(--header-height) - 3rem) / 2);
}
.isXS .c-hamburger span::before, .isXS .inquiry-modal-close span::before, .isXS .availability-close span::before {
  top: -3px;
}
.isXS .c-hamburger span::after, .isXS .inquiry-modal-close span::after, .isXS .availability-close span::after {
  bottom: -3px;
}
.isXS .apply, .isXS .isTeaser .learn-more, .isTeaser .isXS .learn-more {
  top: unset !important;
  transform: translate(0, 0);
  bottom: var(--default-spacing);
  background-color: var(--green);
  line-height: calc(3rem - 2px);
  font-size: 1rem;
}
.isXS nav li a {
  font-size: 2.25rem;
}

.isMD header:not(.overlay-active)::before,
.isLG header:not(.overlay-active)::before {
  height: 0;
  opacity: 0;
}

.isTeaser header {
  height: 5rem;
}
.isTeaser .header-links {
  right: var(--default-spacing);
}
.isTeaser .header-links a {
  margin: 0;
}
.isTeaser .header-links .link-apply {
  display: none;
}
.isTeaser.isXS header {
  height: 8rem;
}
.isTeaser.isXS:not(.no-header-links) .apply, .isTeaser.isXS:not(.no-header-links) .learn-more {
  display: none;
}
.isTeaser.isXS .logo {
  top: calc((var(--header-height) - 3rem) / 2);
}
.isTeaser.isXS .header-links {
  top: calc(var(--header-height) - 3rem);
  right: 0;
}
.isTeaser.isXS .header-links .link-apply {
  display: inline-block;
}
.isTeaser.isXS .c-hamburger, .isTeaser.isXS .inquiry-modal-close, .isTeaser.isXS .availability-close {
  top: calc((var(--header-height) - 3rem) / 2);
}
.isTeaser.isXS.no-header-links header {
  height: 5rem;
}
.isTeaser.isXS.no-header-links .logo {
  top: 2.5rem;
}
.footer {
  width: 100%;
  background-color: var(--green);
  padding: var(--default-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}
.footer > img {
  width: 2rem;
  height: 2rem;
}
.footer-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  gap: 0.5rem;
  flex-direction: row;
  flex-basis: 25%;
}
.footer-left img {
  display: block;
  max-height: 3rem;
  max-width: 8rem;
}
.footer-center {
  flex-basis: 50%;
  text-align: center;
}
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 0.5rem;
  flex-basis: 25%;
}
.footer-right > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: row;
}
.footer-right img {
  width: 1.25rem;
}
.footer-right a {
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
}

.isSM .footer,
.isXS .footer {
  flex-direction: column;
  gap: 1rem;
}
.isSM .footer-left, .isSM .footer-right, .isSM .footer-center,
.isXS .footer-left,
.isXS .footer-right,
.isXS .footer-center {
  justify-content: center;
  margin-right: unset;
  margin-left: unset;
  flex-basis: 100%;
}
.isSM .footer-center,
.isXS .footer-center {
  order: 1;
}
.isSM .footer-left,
.isXS .footer-left {
  order: 2;
}
.isSM .footer-right,
.isXS .footer-right {
  order: 3;
}
.isSM .footer-right a,
.isXS .footer-right a {
  text-transform: none;
  text-decoration: underline;
}

.isXS .footer {
  padding: calc(2 * var(--default-spacing)) var(--default-spacing);
}
.isXS .footer-left, .isXS .footer-right, .isXS .footer-center {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1rem;
}
.isXS .footer-left {
  gap: 1rem;
}
.isXS .footer-right {
  gap: 1.5rem;
}
.isXS .footer-right img {
  width: 2rem;
}

.availability-block {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--default-spacing);
  color: var(--green);
  z-index: -1;
  visibility: hidden;
}
.availability-block h2 {
  color: var(--green);
  margin-bottom: calc(3 * var(--default-spacing));
  text-align: center;
}
.availability-block a {
  color: var(--green);
  text-decoration: none;
}
.availability-block span[data-sort-by] {
  position: relative;
  display: inline-block;
  padding-right: 1rem;
  cursor: pointer;
  color: var(--gray);
}
.availability-block span[data-sort-by]::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-width: 5.2px 3px 0 3px;
  border-color: var(--gray) transparent transparent transparent;
  border-style: solid;
  opacity: 0;
}
.availability-block span[data-sort-by].isAscending::after {
  opacity: 1;
}
.availability-block span[data-sort-by].isDescending::after {
  opacity: 1;
  border-width: 0 3px 5.2px 3px;
  border-color: transparent transparent var(--gray) transparent;
}

.availability-table-holder .mCSB_scrollTools {
  width: 4px;
  background-color: #e5e5e5;
  border-radius: 0;
  border-radius: 2px;
}
.availability-table-holder .mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  border-radius: 2px;
  background-color: #b7b7b7;
}
.availability-table-holder .mCSB_inside > .mCSB_container {
  margin-right: 0;
}
.availability-table-holder .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}
.availability-table-holder .mCSB_dragger_bar {
  display: none !important;
}

.availability-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
}

.availability-content {
  width: 50rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(4 * var(--default-spacing));
  position: relative;
  background-color: var(--gray-light);
  opacity: 0;
  transform: translate(0, 10%);
  transition: all 0.4s ease;
  max-height: calc(100vh - 2 * var(--default-spacing));
}

.availability-close {
  top: var(--default-spacing) !important;
  right: var(--default-spacing);
  transform: translate(0, 0);
}
.availability-close span {
  background: none;
}
.availability-close span::before {
  background-color: var(--green);
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.availability-close span::after {
  background-color: var(--green);
  bottom: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.availability-active .availability-block {
  z-index: 2;
  visibility: visible;
}
.availability-active .availability-content {
  transform: translate(0, 0);
  opacity: 1;
  z-index: 1;
}
.availability-active .availability-overlay {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.4s 0.1s, z-index 0s;
  cursor: pointer;
}

.table-body {
  overflow-y: auto;
  margin-right: -10px;
  padding-right: 10px;
}

.large-table .table-header,
.large-table .table-body .table-row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--green);
  align-items: center;
}
.large-table .table-header > div,
.large-table .table-body .table-row > div {
  padding: 0.5rem;
  font-size: 0.8rem;
  display: inline-block;
  text-transform: uppercase;
  min-width: 0;
}
.large-table .table-header > div,
.large-table .table-body .table-row > div {
  flex: 0 0 15%;
}
.large-table .table-header > div:nth-of-type(3),
.large-table .table-body .table-row > div:nth-of-type(3) {
  flex: 0 0 12.5%;
}
.large-table .table-header > div:nth-of-type(4),
.large-table .table-body .table-row > div:nth-of-type(4) {
  flex: 0 0 17.5%;
}
.large-table .table-header > div:nth-of-type(7),
.large-table .table-body .table-row > div:nth-of-type(7) {
  flex: 0 0 10%;
  text-align: right;
}
.large-table .table-header > div:nth-of-type(7) span,
.large-table .table-body .table-row > div:nth-of-type(7) span {
  padding-right: 0;
}
.large-table .table-header {
  color: var(--gray);
}
.large-table .table-header span {
  padding-right: 1rem;
}
.large-table .table-header [data-sort-by] {
  cursor: pointer;
}
.large-table .table-body {
  max-height: calc(100vh - 22 * var(--default-spacing));
}

.small-table .table-header {
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--green);
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  font-size: 1rem;
  color: var(--gray);
}
.small-table .table-header > div {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20%;
  text-transform: uppercase;
}
.small-table .table-header > div:nth-of-type(1) {
  flex-basis: 15%;
}
.small-table .table-header > div:nth-of-type(2) {
  flex-basis: 25%;
}
.small-table .table-header > div:nth-of-type(3) {
  flex-basis: 25%;
}
.small-table .table-header > div:last-of-type {
  flex-basis: 35%;
  text-align: right;
}
.small-table .table-header span {
  position: relative;
  display: inline-block;
}
.small-table .table-header span[data-sort-by] {
  padding-right: 1rem;
}
.small-table .table-header span[data-sort-by]::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-width: 5.2px 3px 0 3px;
  border-color: var(--gray) transparent transparent transparent;
  border-style: solid;
  opacity: 1;
}
.small-table .table-header span[data-sort-by].isAscending::after {
  border-color: var(--green) transparent transparent transparent;
  opacity: 1;
}
.small-table .table-header span[data-sort-by].isDescending::after {
  opacity: 1;
  border-width: 0 3px 5.2px 3px;
  border-color: transparent transparent var(--green) transparent;
}
.small-table .table-row {
  cursor: pointer;
  padding: 1rem 0;
  border-bottom: 1px solid var(--green);
  position: relative;
  font-family: "MaisonNeue-Light", serif;
}
.small-table .table-row .main {
  display: flex;
  align-items: flex-end;
  width: 100%;
  font-size: 1rem;
}
.small-table .table-row .main > span {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20%;
}
.small-table .table-row .main > span:last-of-type {
  flex-basis: 40%;
  text-align: right;
}
.small-table .table-row .additional {
  height: 0;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: height 0.5s ease;
  font-size: 1rem;
}
.small-table .table-row.isActive .additional {
  height: 4rem;
}
.small-table .table-row.isActive .additional a {
  text-decoration: underline;
  color: var(--green);
}

.apply-btn {
  position: relative;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--green);
  float: right;
}
.apply-btn:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 0.5rem;
  background-color: var(--green);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.apply-btn:after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2px;
  background-color: var(--green);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.isXS .availability-block {
  align-items: flex-start;
  padding-top: calc(var(--header-height) + var(--default-spacing));
  transform: translate(0, -100%);
  background-color: var(--gray-light);
  transition: transform 0.4s ease, visibility 0s 0.4s;
  z-index: 0;
  visibility: hidden;
}
.isXS .availability-content {
  padding: 0;
  padding-top: var(--default-spacing);
  transform: translate(0, 0);
  opacity: 1;
}
.isXS .availability-content h2 {
  margin-bottom: calc(2 * var(--default-spacing));
}
.isXS .availability-overlay,
.isXS .availability-close {
  display: none;
}
.isXS .large-table {
  display: none;
}
.isXS .table-body {
  max-height: calc(100vh - 24 * var(--default-spacing));
}
.isXS .availability-active .availability-block {
  transform: translate(0, 0);
  transition: transform 0.4s ease, visibility 0s 0s;
  visibility: visible;
}

.isSM .small-table,
.isMD .small-table,
.isLG .small-table {
  display: none;
}

.discount-table-1-holder,
.discount-table-2-holder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.discount-table-1-holder.is-active,
.discount-table-2-holder.is-active {
  display: flex;
}

.switcher-holder {
  background-color: var(--white);
  padding: var(--default-spacing);
}

.switcher {
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
  width: 8rem;
}

.switch-label {
  height: calc(2rem + 2px);
  width: 100%;
  background-color: var(--green);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--green);
}

.toggle {
  height: 2rem;
  position: absolute;
  width: 50%;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 100px;
}

.names {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  user-select: none;
}

.names p {
  flex: 0 0 50%;
  transition: color 0.4s;
  align-items: center;
  margin: 0;
}

.opt1 {
  color: var(--green);
}

.opt2 {
  color: var(--white);
}

/* -------- Switch Styles ------------*/
[type=checkbox] {
  display: none;
}

/* Toggle */
[type=checkbox]:checked + .switch-label .toggle {
  transform: translateX(100%);
}

[type=checkbox]:checked + .switch-label .opt1 {
  color: var(--white);
}

[type=checkbox]:checked + .switch-label .opt2 {
  color: var(--green);
}

.tab-container {
  display: none;
  position: relative;
  margin-top: calc(2 * var(--default-spacing));
}
.tab-container.is-active {
  display: flex;
}

.tab-button {
  background: none;
  border: none;
  padding: 0.5rem 0;
  width: 8rem;
  cursor: pointer;
  transition: opacity 0.3s;
  border-bottom: 1px solid var(--gray);
  text-transform: uppercase;
}

.tab-button.is-active {
  opacity: 1;
}

.line {
  position: absolute;
  width: 33.33333333%;
  height: 3px;
  bottom: 0;
  background-color: var(--green);
  transition: transform 0.3s;
}

.inquiry-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--default-spacing);
  color: var(--green);
  z-index: -1;
  visibility: hidden;
}

.inquiry-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
}

.inquiry-modal-content {
  width: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(3 * var(--default-spacing)) calc(2 * var(--default-spacing));
  position: relative;
  background-color: var(--gray-light);
  opacity: 0;
  transform: translate(0, 10%);
  transition: all 0.4s ease;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
}
.inquiry-modal-content h2 {
  margin-bottom: var(--default-spacing);
  text-align: center;
}
.inquiry-modal-content p {
  line-height: 1;
}
.inquiry-modal-content a {
  display: inline-block;
  line-height: calc(2rem - 2px);
  border: 1px solid var(--white);
  border-radius: 1.5rem;
  padding: 0 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: calc(2 * var(--default-spacing));
}

.inquiry-modal-close {
  top: var(--default-spacing) !important;
  right: var(--default-spacing);
  transform: translate(0, 0);
}
.inquiry-modal-close span {
  background: none;
}
.inquiry-modal-close span::before {
  background-color: var(--white);
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
.inquiry-modal-close span::after {
  background-color: var(--white);
  bottom: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

.inquiry-modal-active .inquiry-modal {
  z-index: 2;
  visibility: visible;
}
.inquiry-modal-active .inquiry-modal-content {
  transform: translate(0, 0);
  opacity: 1;
  z-index: 1;
}
.inquiry-modal-active .inquiry-modal-overlay {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.4s 0.1s, z-index 0s;
  cursor: pointer;
}

.inquiry-bar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  height: 2rem;
  background-color: var(--gray-light);
  color: var(--green);
  text-align: center;
  line-height: 1rem;
  padding: 0 var(--default-spacing);
  font-size: 0.8rem;
  display: none;
  align-items: center;
}
.inquiry-bar span {
  display: inline-block;
  font-family: "MaisonNeue-Medium", serif;
  font-weight: 700;
}
.inquiry-bar a {
  color: var(--green);
  text-decoration: underline;
}

.inquiry-bar-active .inquiry-bar {
  display: flex;
  justify-content: center;
}
.inquiry-bar-active .apply,
.inquiry-bar-active .logo,
.inquiry-bar-active .header-links,
.inquiry-bar-active .c-hamburger,
.inquiry-bar-active .inquiry-modal-close {
  top: calc(var(--header-height) / 2 + 1rem);
}

.isXS .inquiry-bar-active {
  font-size: 0.7rem;
}
.isXS .inquiry-bar-active .logo,
.isXS .inquiry-bar-active .c-hamburger,
.isXS .inquiry-bar-active .inquiry-modal-close {
  top: calc((var(--header-height) - 1rem) / 2);
}
.isXS .inquiry-bar-active .header-links {
  top: calc(var(--header-height) - 3rem);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero-overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-image img {
  display: none;
}
.hero-text {
  height: 100vh;
  width: 100%;
  padding: var(--default-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.hero-text > div {
  width: 35rem;
  max-width: 100%;
}
.hero-text p,
.hero-text h2 {
  position: relative;
  transform: translate(0 10vh);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s, opacity 0.6s ease 0.2s;
  opacity: 0;
}
.hero-text h2 {
  transition-delay: 0.2s;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: var(--default-spacing);
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 0.8rem;
  z-index: 1;
}

.isLoaded .hero-text p,
.isLoaded .hero-text h2 {
  opacity: 1;
  transform: translate(0 0);
}

.isXS .hero-image {
  overflow-x: auto;
}
.isXS .hero-image img {
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: 100vh;
  object-fit: cover;
}
.isXS .hero-video {
  overflow-x: auto;
}
.isXS .hero-video video {
  display: block;
  width: auto;
  height: 100%;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
.isXS .hero.is-touched .hero-overlay,
.isXS .hero.is-touched .hero-text,
.isXS .hero.is-touched .scroll-down {
  opacity: 0 !important;
  transition: opacity 0.2s 0.2s;
}

.isSM .hero.is-large-image,
.isMD .hero.is-large-image,
.isLG .hero.is-large-image {
  height: auto;
}
.isSM .hero.is-large-image .hero-image,
.isMD .hero.is-large-image .hero-image,
.isLG .hero.is-large-image .hero-image {
  position: relative;
}
.isSM .hero.is-large-image .hero-image img,
.isMD .hero.is-large-image .hero-image img,
.isLG .hero.is-large-image .hero-image img {
  display: block;
  width: 100%;
}
.isSM .hero.is-large-image .hero-text,
.isMD .hero.is-large-image .hero-text,
.isLG .hero.is-large-image .hero-text {
  position: absolute;
  left: 0;
  top: 0;
}

.isTeaser .hero-text > div {
  width: 40rem;
}

.main-links {
  background-color: var(--green);
  padding: 0 var(--default-spacing) var(--default-spacing) var(--default-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.main-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.main-links ul li {
  padding: 0.5rem;
  list-style: none;
}
.main-links ul a {
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  text-decoration: none;
  line-height: 2rem;
  display: block;
}

.isXS .main-links {
  display: none;
}

.coreography-main {
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: var(--default-spacing);
  padding: var(--default-spacing);
  position: relative;
  z-index: 1;
}
.coreography-main .coreography-static {
  background-color: var(--green);
}
.coreography-main .coreography-static .no-bottom-padding {
  padding-bottom: 0;
}
.coreography-main .coreography-static > div {
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.coreography-main .coreography-animated {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--default-spacing);
  background-color: var(--green);
}
.coreography-main .coreography-animated .coreography-item {
  position: relative;
  height: calc(var(--content-height) - 2 * var(--default-spacing));
}
.coreography-main .coreography-animated .coreography-item.text-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coreography-main .coreography-animated .coreography-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1;
}
.coreography-main .coreography-animated .coreography-item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1;
}
.coreography-main .coreography-animated .coreography-item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2;
}
.coreography-main .coreography-animated .coreography-item .isImage {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}
.coreography-main .coreography-animated .coreography-item .isText {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.coreography-main .coreography-animated .coreography-item .isText > div {
  max-width: 38rem;
  text-align: center;
}
.coreography-main .coreography-animated.taxt-right .coreography-item:nth-child(1) {
  grid-column: 2/3;
  grid-row: 1;
}
.coreography-main .coreography-animated.taxt-right .coreography-item:nth-child(2) {
  grid-column: 1/2;
  grid-row: 1;
}
.coreography-main .coreography-animated.taxt-right .coreography-item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2;
}
.coreography-main.coreography-teaser .coreography-animated {
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.coreography-main.coreography-teaser .coreography-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1;
}
.coreography-main.coreography-teaser .coreography-item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1;
}
.coreography-main.coreography-teaser .coreography-item:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2;
}
.coreography-main.coreography-teaser .coreography-item:nth-child(4) {
  grid-column: 2/3;
  grid-row: 3;
}

.coreography-large-image {
  display: flex;
  gap: var(--default-spacing);
  padding: var(--default-spacing);
  background-color: var(--green);
}
.coreography-large-image > div {
  flex: 1;
  height: calc(2 * var(--content-height) - 2 * var(--default-spacing));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.coreography-large-image > div img {
  display: none;
}
.coreography-large-image .isText {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  opacity: 0;
  transform: translate(0, -500%);
}
.coreography-large-image .isText > div {
  max-width: 38rem;
  text-align: center;
}

.isXS .coreography-main,
.isSM.isPortrait .coreography-main,
.isMD.isPortrait .coreography-main {
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: var(--default-spacing);
  padding: var(--default-spacing);
  position: relative;
  z-index: 1;
}
.isXS .coreography-main .coreography-static .no-bottom-padding,
.isSM.isPortrait .coreography-main .coreography-static .no-bottom-padding,
.isMD.isPortrait .coreography-main .coreography-static .no-bottom-padding {
  padding-bottom: 0;
}
.isXS .coreography-main .coreography-static > div,
.isSM.isPortrait .coreography-main .coreography-static > div,
.isMD.isPortrait .coreography-main .coreography-static > div {
  height: auto;
  padding-top: 50%;
}
.isXS .coreography-main .coreography-animated,
.isSM.isPortrait .coreography-main .coreography-animated,
.isMD.isPortrait .coreography-main .coreography-animated {
  display: flex;
  flex-direction: column;
  gap: var(--default-spacing);
}
.isXS .coreography-main .coreography-animated .coreography-item,
.isSM.isPortrait .coreography-main .coreography-animated .coreography-item,
.isMD.isPortrait .coreography-main .coreography-animated .coreography-item {
  position: relative;
  height: auto;
}
.isXS .coreography-main .coreography-animated .coreography-item .isImage,
.isSM.isPortrait .coreography-main .coreography-animated .coreography-item .isImage,
.isMD.isPortrait .coreography-main .coreography-animated .coreography-item .isImage {
  height: auto;
  padding-top: 50%;
}
.isXS .coreography-main .coreography-animated .coreography-item .isText,
.isSM.isPortrait .coreography-main .coreography-animated .coreography-item .isText,
.isMD.isPortrait .coreography-main .coreography-animated .coreography-item .isText {
  opacity: 1;
  transform: translate(0, 0);
  height: auto;
  padding: calc(2 * var(--default-spacing)) 0;
}
.isXS .coreography-large-image,
.isSM.isPortrait .coreography-large-image,
.isMD.isPortrait .coreography-large-image {
  flex-direction: column;
}
.isXS .coreography-large-image .isImage,
.isSM.isPortrait .coreography-large-image .isImage,
.isMD.isPortrait .coreography-large-image .isImage {
  height: auto;
  background-image: none;
}
.isXS .coreography-large-image .isImage img,
.isSM.isPortrait .coreography-large-image .isImage img,
.isMD.isPortrait .coreography-large-image .isImage img {
  display: block;
  max-width: 100%;
  height: auto;
}
.isXS .coreography-large-image .isText,
.isSM.isPortrait .coreography-large-image .isText,
.isMD.isPortrait .coreography-large-image .isText {
  opacity: 1;
  transform: translate(0, 0);
  height: auto;
  padding: calc(2 * var(--default-spacing)) 0;
}

.anchor-link {
  position: absolute;
  top: calc(-1 * var(--header-height));
}

.text-block {
  width: 100%;
  background-color: var(--green);
  padding: var(--default-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.text-block > div {
  max-width: 55rem;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.text-block > div h2,
.text-block > div p {
  margin: 0;
}
.text-block.isGray {
  background-color: var(--gray-light);
}
.text-block.isGray h2,
.text-block.isGray p {
  color: var(--green);
}
.text-block.isGreen {
  background-color: var(--green);
}
.text-block.isGreen h2,
.text-block.isGreen p {
  color: var(--white);
}
.text-block p + h2,
.text-block p + p {
  margin-top: 0.5rem;
}
.text-block h2 + p {
  margin-top: 1rem;
}
.text-block .items-with-icons {
  display: flex;
  gap: var(--default-spacing);
  flex-wrap: wrap;
  width: 36rem;
  margin-top: calc(2 * var(--default-spacing));
  justify-content: space-between;
}
.text-block .items-with-icons > div {
  flex-basis: calc(35% - var(--default-spacing) / 2);
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: calc(var(--default-spacing) / 2);
}
.text-block .items-with-icons > div img {
  flex-basis: 1.75rem;
  flex-grow: 0;
  flex-shrink: 0;
  width: 1.75rem;
  max-width: 1.75rem;
}
.text-block .items-with-icons > div span {
  color: var(--green);
  white-space: nowrap;
}
.text-block .three-columns {
  display: flex;
  flex-direction: row;
  gap: var(--default-spacing);
  margin-top: calc(2 * var(--default-spacing));
}
.text-block .three-columns div {
  flex-basis: calc(33.33% - var(--default-spacing) / 2);
}
.text-block .three-columns p {
  margin: 0;
  text-align: center;
}

.image-block {
  padding: var(--default-spacing);
  background-color: var(--green);
}
.image-block > div {
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.image-block > div img {
  display: none;
}
.image-block.no-bottom-padding {
  padding-bottom: 0;
}
.image-block.no-bottom-padding > div {
  height: calc(var(--content-height) - var(--default-spacing));
}

.lottery-counter {
  background-color: var(--gray-light);
  padding: var(--default-spacing);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--content-height);
}
.lottery-counter h2 {
  color: var(--green);
  text-align: center;
  margin: 0;
}
.lottery-counter .counter {
  display: flex;
  flex-direction: row;
  gap: calc(2 * var(--default-spacing));
  text-align: center;
  margin: calc(2 * var(--default-spacing)) 0;
}
.lottery-counter .counter-item {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 4rem;
}
.lottery-counter .counter-item:not(:last-of-type) .counter-value::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--default-spacing));
  top: 25%;
  height: 75%;
  width: 1px;
  background-color: var(--gray);
}
.lottery-counter .counter span {
  display: block;
  color: var(--green);
}
.lottery-counter .counter span.counter-value {
  position: relative;
  font-family: "Orleans-Light", serif;
  color: var(--green);
  margin: 0;
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  width: 100%;
  display: block;
}
.lottery-counter .counter span.counter-label {
  text-transform: uppercase;
}
.lottery-counter .apply-for-lottery {
  display: inline-block;
  line-height: calc(2rem - 2px);
  border: 1px solid var(--green);
  background-color: var(--green);
  border-radius: 1.5rem;
  padding: 0 2.25rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
}

.discount {
  position: relative;
  background-color: var(--gray-light);
  padding: calc(6 * var(--default-spacing)) var(--default-spacing) calc(4 * var(--default-spacing)) var(--default-spacing);
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  min-height: var(--content-height);
}
.discount h2 {
  text-align: center;
  font-family: "Orleans-Light", serif;
  color: var(--green);
}
.discount h3 {
  color: var(--green);
  margin-bottom: calc(var(--default-spacing) / 2);
  margin-top: var(--default-spacing);
  text-align: center;
  font-size: 1rem;
}
.discount-bottom-text {
  color: var(--green);
  font-size: 0.8rem;
  text-align: center;
  max-width: 70rem;
  margin-top: calc(2 * var(--default-spacing));
}
.discount-bottom-image {
  margin-top: calc(2 * var(--default-spacing));
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.discount-bottom-image.is-active {
  display: block;
  opacity: 1;
}
.discount-bottom-image img {
  width: 100%;
  max-width: 60rem;
}
.discount-table {
  color: var(--green);
  width: 100%;
  margin-top: calc(2 * var(--default-spacing));
  max-width: 70rem;
}
.discount-table-header {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--green);
}
.discount-table-header-left {
  flex-basis: 55%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
}
.discount-table-header-left > span {
  flex-grow: 0;
  flex-shrink: 0;
}
.discount-table-header-left > span:nth-of-type(1) {
  flex-basis: 45%;
}
.discount-table-header-left > span:nth-of-type(2) {
  flex-basis: 30%;
}
.discount-table-header-left > span:nth-of-type(3) {
  flex-basis: 25%;
}
.discount-table-header-right {
  flex-basis: 45%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.discount-table-header-right > span {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 9rem;
}
.discount-table-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--green);
  align-items: center;
}
.discount-table-row > div {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 45%;
}
.discount-table-row > div:first-of-type {
  flex-basis: 55%;
}
.discount-table-left {
  display: flex;
  flex-direction: row;
}
.discount-table-left > span {
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 2.8rem;
  font-family: "Orleans-Light", serif;
}
.discount-table-left > span:nth-of-type(1) {
  flex-basis: 45%;
}
.discount-table-left > span:nth-of-type(2) {
  flex-basis: 30%;
}
.discount-table-left > span:nth-of-type(3) {
  flex-basis: 25%;
}
.discount-table-right {
  display: flex;
  flex-direction: column;
}
.discount-table-right > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--default-spacing) 0;
}
.discount-table-right > div:not(:last-of-type) {
  border-bottom: 1px solid var(--green);
}
.discount-table-right > div > span {
  flex-basis: 9rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.discount-table-small {
  display: none;
  color: var(--green);
  width: 100%;
  max-width: 40rem;
  margin-top: calc(2 * var(--default-spacing));
}
.discount-table-small-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid var(--green);
}
.discount-table-small-row {
  padding: calc(var(--default-spacing) / 2) 0;
}
.discount-table-small-row:not(:last-of-type) {
  border-bottom: 1px solid var(--green);
}
.discount-table-small-top, .discount-table-small-bottom > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.discount-table-small-top {
  font-size: 2.25rem;
  font-family: "Orleans-Light", serif;
  margin-bottom: calc(var(--default-spacing) / 2);
}
.discount-table-small-bottom > div:not(:last-of-type) {
  margin-bottom: calc(var(--default-spacing) / 2);
}

.isXS .text-block {
  padding: calc(3 * var(--default-spacing)) var(--default-spacing);
}
.isXS .text-block > div {
  min-height: unset;
}
.isXS .text-block .items-with-icons {
  width: auto;
  max-width: 100%;
  padding: 0;
  margin-top: calc(2 * var(--default-spacing));
}
.isXS .text-block .items-with-icons > div {
  flex-basis: calc(50% - var(--default-spacing) / 2);
}
.isXS .text-block .items-with-icons > div span {
  white-space: nowrap;
}
.isXS .text-block .items-with-icons > div img {
  width: 1.5rem;
  max-width: 1.5rem;
}
.isXS .image-block {
  padding: var(--default-spacing);
  background-color: var(--green);
}
.isXS .image-block > div {
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 50%;
}
.isXS .image-block.no-bottom-padding {
  padding-bottom: 0;
}
.isXS .image-block.no-bottom-padding > div {
  height: auto;
}
.isXS .lottery-counter {
  padding: calc(3 * var(--default-spacing)) var(--default-spacing);
  height: auto;
}
.isXS .lottery-counter .apply-for-lottery {
  font-size: 1rem;
  line-height: calc(3rem - 2px);
}
.isXS .lottery-counter .counter span.counter-value {
  font-size: 2.25rem;
}
.isXS .discount {
  padding: calc(4 * var(--default-spacing)) var(--default-spacing);
}
.isXS .discount-bottom-text {
  font-size: 1rem;
}
.isXS .discount-table {
  display: none;
}
.isXS .discount-table-small {
  display: block;
}

[data-fade-in-out] {
  opacity: 0;
  transform: translateY(3rem);
}

.map-block {
  position: relative;
  z-index: 2;
  height: calc(var(--content-height) + 18rem);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.map-block .map-height-helper {
  pointer-events: none;
}
.map-block .map-legend {
  flex-basis: 13.5rem;
  flex-shrink: 0;
  background-color: var(--gray-light);
  pointer-events: initial;
  margin-top: auto;
}

.map {
  position: fixed;
  left: 0;
  top: var(--header-height);
  height: var(--content-height);
  width: 100%;
}

.map-filters-holder {
  background-color: var(--gray-light);
  padding: var(--default-spacing);
}

.map-filters {
  display: flex;
  justify-content: center;
  gap: calc(2 * var(--default-spacing));
  width: 100%;
  list-style: none;
  margin: 0;
  padding: var(--default-spacing) 0;
  align-items: center;
  text-align: center;
}
.map-filters .category-name {
  position: relative;
  text-transform: uppercase;
}
.map-filters .category-name > span {
  color: var(--gray);
  font-size: 0.8rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.map-filters .category-name.is-active {
  cursor: default;
}
.map-filters .category-name.is-active > span {
  color: var(--green);
  pointer-events: none;
}
.map-filters .category-name:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1 * var(--default-spacing));
  height: 100%;
  width: 1px;
  background-color: var(--green);
}

.category-locations-holder {
  display: none;
  padding: var(--default-spacing);
}
.category-locations-holder.is-active {
  display: flex;
  justify-content: center;
}

.category-locations {
  display: flex;
  flex-direction: row;
  gap: var(--default-spacing);
  max-width: 50rem;
  width: 100%;
  flex-wrap: nowrap;
  overflow: auto;
}
.category-locations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--green);
  flex-basis: calc((100% - var(--default-spacing) * 3) / 4);
  max-width: calc((100% - var(--default-spacing) * 3) / 4);
  flex-grow: 0;
  flex-shrink: 0;
}
.category-locations ul.columns-3 {
  flex-basis: calc((100% - var(--default-spacing) * 2) / 3);
  max-width: calc((100% - var(--default-spacing) * 2) / 3);
}
.category-locations ul li {
  cursor: pointer;
  line-height: 1.25;
  position: relative;
}
.category-locations ul li > span {
  display: block;
  padding-left: 1.25rem;
  font-size: 0.8rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.category-locations ul li > span span {
  text-align: left;
  flex-shrink: 0;
}
.category-locations ul li > span .marker-number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.category-locations ul li.is-inactive {
  opacity: 0.5;
}
.marker {
  background-color: var(--green);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  cursor: pointer;
}
.marker span {
  color: white;
}
.marker.is-active {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 117, 90, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(79, 117, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 117, 90, 0);
  }
}
.isXS .map-block {
  height: var(--content-height);
}
.isXS .map-filters {
  overflow-x: auto;
  justify-content: flex-start;
}
.isXS .map-filters .category-name > span {
  white-space: nowrap;
}

.faq,
.team,
.privacy-policy {
  display: flex;
  background-color: var(--green);
  padding: var(--default-spacing);
  padding-top: calc(var(--header-height) + 3 * var(--default-spacing));
  flex-direction: column;
  gap: calc(2 * var(--default-spacing));
  align-items: center;
  justify-content: center;
}
.faq .item,
.team .item,
.privacy-policy .item {
  max-width: 55rem;
  text-align: center;
}
.faq .item h2,
.team .item h2,
.privacy-policy .item h2 {
  margin: 0;
  margin-bottom: var(--default-spacing);
}
.faq .item h3,
.team .item h3,
.privacy-policy .item h3 {
  font-size: 1rem;
  margin: 0;
  margin-bottom: var(--default-spacing);
}
.faq .item p,
.team .item p,
.privacy-policy .item p {
  line-height: 1.75;
  font-family: "MaisonNeue-Light", serif;
}

.privacy-policy {
  background-color: var(--gray-light);
}
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy p {
  color: var(--green);
}

.gallery-scroll {
  display: flex;
  flex-direction: column;
  gap: var(--default-spacing);
  background-color: var(--green);
  padding: calc(var(--header-height) + var(--default-spacing)) var(--default-spacing) var(--default-spacing) var(--default-spacing);
}
.gallery-scroll > div {
  height: calc(var(--content-height) - 2 * var(--default-spacing));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.gallery-scroll > div.height-auto {
  height: auto;
}
.gallery-scroll > div img {
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
}

.slick-full-holder {
  position: fixed;
  background-color: black;
  left: 0;
  width: 100%;
  z-index: -100;
  overflow: hidden;
  transition: none;
  opacity: 0 !important;
  top: 0;
  height: 100%;
}
.slick-full-holder.is-active {
  transition: opacity 0.4s;
  z-index: 50;
  opacity: 1 !important;
}
.slick-full-holder .slick-full-close {
  z-index: 40;
}
.slick-full-holder .slick-full-close.is-active span:after,
.slick-full-holder .slick-full-close.is-active span:before {
  background-color: var(--white);
}
.slick-full-holder .slick-full-close.no-display {
  z-index: -100;
  display: none;
}
.slick-full-holder .arrow {
  left: 0;
  top: 0;
  height: var(--content-height);
}
.slick-full-holder .arrow span {
  position: absolute;
  left: 4rem;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid var(--white);
  border-width: 0 0 0.2rem 0.2rem;
  transition: all 0.2s;
}
.slick-full-holder .arrow:hover {
  opacity: 1;
}
.slick-full-holder .arrow:hover span {
  left: 2.5rem;
}
.slick-full-holder .arrow-next {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}

.slick-full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.slick-full .slick-slide img {
  display: block;
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
}
.slick-full.slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
}

.isXS .gallery-scroll > div {
  height: auto;
}
.isXS .gallery-scroll > div:not(.height-auto) {
  padding-top: 50%;
}
.isXS .gallery-scroll > div:not(.height-auto) img {
  display: none;
}
.isXS .slick-full-holder.is-active {
  transition: none;
}

.noSelect,
.noSelect * {
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
}

::placeholder {
  color: var(--green);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--green);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--green);
  opacity: 1;
}

textarea:focus,
input:focus {
  outline: none;
}

.form {
  padding: calc(3 * var(--default-spacing)) var(--default-spacing);
  background-color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.form h2 {
  color: var(--green);
  text-align: center;
}
.form form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 25rem;
  flex-direction: row;
}

.form-item {
  flex: 0 0 100%;
  padding: 0 0.5rem 0 0.5rem;
}
.form-item.is-1 {
  flex-basis: 100%;
}
.form-item.is-2 {
  flex-basis: 50%;
}
.form-item.is-4 {
  flex-basis: 25%;
}
.form-item.align-center {
  text-align: center;
}
.form-item label {
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

input {
  background-color: transparent;
  padding: 0.5rem 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--green);
  font-size: 1rem;
  line-height: 22px;
  color: var(--green);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -moz-border-radius: 0; /* Firefox 1-3.6 */
  border-radius: 0; /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}
input.error {
  border-bottom: 1px solid red;
}

button {
  background-color: transparent;
  color: var(--green);
  line-height: 1;
  padding: 1rem 2rem;
  border: 1px solid var(--green);
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --white: #fefefe;
  --black: #000;
  --gray-light: #edefea;
  --gray: #989b93;
  --green: #4f755a;
  --content-height: 100vh;
  --header-height: 0;
  --default-spacing: 1rem;
  --default-spacing-xs: 1rem;
}

::-moz-selection {
  color: var(--green);
  background: rgba(152, 155, 147, 0.95);
}

::selection {
  color: var(--green);
  background: rgba(152, 155, 147, 0.95);
}

sup {
  vertical-align: super;
  font-size: 0.5em;
}

small {
  font-size: 0.75em;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body,
html {
  font-size: 14px;
}

@media screen and (max-width: 1366px) and (min-width: 1200px) {
  body,
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 1600px) and (min-width: 1367px) {
  body,
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1920px) and (min-width: 1601px) {
  body,
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1921px) {
  body,
  html {
    font-size: 18px;
  }
}
.content {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.content > *:not(.map-block) {
  pointer-events: auto;
}

.isXS h2 {
  font-size: 2.25rem;
}
.isXS p {
  font-size: 1rem;
}

body {
  font-family: "MaisonNeue-Medium", serif;
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--white);
  background-color: var(--green);
  margin: 0;
}
body.no-scroll {
  overflow: hidden;
}
body > * {
  opacity: 0;
  transition: opacity 0.6s;
}

.isLoaded body > * {
  opacity: 1;
}

.animation-wrapper {
  position: relative;
  z-index: 2;
}

.is-relative {
  position: relative;
}

.change-browser {
  display: none;
}

.rotate-message {
  display: none;
}

.rotate .rotate-message {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  text-align: center;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.rotate .rotate-message h2 {
  text-align: center;
  padding: 0 1rem;
}

.is-ie {
  height: 100vh;
  overflow: hidden;
}
.is-ie .change-browser {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  text-align: center;
  z-index: 200;
}
.is-ie .change-browser h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  color: var(--white);
}

h2 {
  font-family: "Orleans-Light", serif;
  color: var(--white);
  margin: 0;
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 1rem;
}

p {
  color: var(--white);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #deviceHelper {
    width: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #deviceHelper {
    width: 1px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #deviceHelper {
    width: 2px;
  }
}
@media screen and (min-width: 1367px) {
  #deviceHelper {
    width: 3px;
  }
}

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