@font-face {
  font-family: "EzerBasic";
  src: url("fonts/EzerBasic-Light.woff2") format("woff2"),
       url("fonts/EzerBasic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EzerBasic";
  src: url("fonts/EzerBasic-Regular.woff2") format("woff2"),
       url("fonts/EzerBasic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EzerBasic";
  src: url("fonts/EzerBasic-Medium.woff2") format("woff2"),
       url("fonts/EzerBasic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EzerBasic";
  src: url("fonts/EzerBasic-Bold.woff2") format("woff2"),
       url("fonts/EzerBasic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1A3299;
  --navy: #00183C;
  --footer-blue: #22339c;
  --deep: #08223d;
  --yellow: #F2BE1A;
  --sky: #599AFF;
  --ice: #EEF5FF;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(0, 24, 60, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #22339c;
}

/* Track */
::-webkit-scrollbar-track {
  background: #22339c;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #edbd00;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #edbd00;
}

.box-pro .n-logo {
  padding: 0;
  position: absolute;
  right: 32px;
  top: 24px;
  z-index: 1;
  max-width: 320px !important;
}

body {
  margin: 0;
  font-family: "EzerBasic", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--blue);
  background: var(--white);
  direction: rtl;
  text-align: start;
  overflow-x: hidden;
}

body.booking-alert-open,
body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.scroll-reveal,
.preload-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.7, 0.22, 1),
    transform 0.75s cubic-bezier(0.22, 0.7, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.page-load-reveal {
  transform: translate3d(0, 80px, 0);
  transition:
    opacity 1.15s cubic-bezier(0.16, 0.76, 0.18, 1),
    transform 1.15s cubic-bezier(0.16, 0.76, 0.18, 1);
}

.scroll-reveal.is-visible,
.preload-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.booking-widget-shell.scroll-reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 48px, 1678px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.open-menu {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(26, 50, 153, 0.18);
}

html.bookasp-drawer-open .site-header {
  opacity: 0;
  pointer-events: none;
}

.header-in {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: min-height 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .header-in,
.site-header.open-menu .header-in {
  min-height: 66px;
  border-bottom-color: rgba(26, 50, 153, 0.18);
}

.logo {
  flex: 0 0 auto;
}

.logo a,
.logo-footer a {
  display: inline-flex;
  align-items: center;
}

.logo svg {
  width: 184px;
  height: 39px;
  display: block;
}

.logo-primary,
.logo-accent {
  transition: fill 0.25s ease;
}

.logo-primary {
  fill: var(--white);
}

.logo-accent {
  fill: var(--yellow);
}

.site-header.is-scrolled .logo-primary,
.site-header.open-menu .logo-primary {
  fill: var(--blue);
}

.nav {
  margin-inline: auto;
}

@media (min-width: 992px) {
  .nav {
    margin-inline-start: clamp(10px, 1.2vw, 24px);
    margin-inline-end: auto;
  }
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.nav a {
  position: relative;
  display: block;
  padding: 4px 8px;
  color: var(--white);
  font-size: 16px;
  line-height: 46px;
  font-weight: 400;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-header.is-scrolled .nav a,
.site-header.open-menu .nav a,
.site-header.is-scrolled .header-call-btn a,
.site-header.open-menu .header-call-btn a {
  color: var(--blue);
}

.header-call-btn {
  flex: 0 0 auto;
}

.header-call-btn a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 2px solid var(--yellow);
  border-radius: 32px;
  color: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  direction: rtl;
  transition: color 0.25s ease, background 0.25s ease;
}

.header-call-btn a strong {
  width: 26px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.header-call-btn a strong img {
  width: 26px;
  height: 24px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.site-header.is-scrolled .header-call-btn a strong img,
.site-header.open-menu .header-call-btn a strong img {
  content: url("images/phone-icon-blue.svg");
}

.header-call-btn a small {
  position: relative;
  top: 5px;
  font-size: 0.86em;
  line-height: 1;
  font-weight: 700;
}

.header-call-btn a:hover,
.header-call-btn a:focus-visible {
  background: rgba(242, 190, 26, 0.2);
}

.hamburger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.site-header.is-scrolled .hamburger,
.site-header.open-menu .hamburger {
  color: var(--blue);
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 16px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-inner {
  position: relative;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  position: absolute;
  right: 0;
}

.hamburger-inner::before {
  top: -7px;
  width: 10px;
}

.hamburger-inner::after {
  top: 7px;
}

.site-header.open-menu .hamburger-inner {
  transform: rotate(45deg);
}

.site-header.open-menu .hamburger-inner::before {
  opacity: 0;
}

.site-header.open-menu .hamburger-inner::after {
  transform: translateY(-7px) rotate(-90deg);
}

.mobile-menu {
  position: fixed;
  inset: 66px 0 0 0;
  padding: 36px 24px;
  background: var(--blue);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-header.open-menu .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu nav {
  display: grid;
  gap: 20px;
}

.mobile-menu a {
  color: var(--white);
  font-size: 24px;
  line-height: 1.25;
}

.hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
  background-image: url("images/negev-meetups-banner.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  top: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 24, 60, 0.72), rgba(0, 24, 60, 0));
}

.hero::after {
  bottom: 0;
  height: 64%;
  background: linear-gradient(180deg, rgba(0, 24, 60, 0), rgba(0, 24, 60, 0.76));
}

.hero-content {
  width: min(100% - 48px, 1050px);
  padding: 110px 0 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  margin: 0 0 24px;
}

.hero-logo img {
  width: min(100%, 420px);
  height: auto;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.12;
  font-weight: 400;
  white-space: nowrap;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.banner-bottom-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -27px;
  text-align: center;
  z-index: 4;
}

.banner-bottom-btn a {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 50px;
  border-radius: 50%;
  vertical-align: top;
  position: relative;
}

.banner-bottom-btn a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -22px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.5;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.banner-bottom-btn a strong {
  width: 54px;
  height: 54px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 0.3s ease;
}

.banner-bottom-btn a em {
  width: 18px;
  height: 34px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: 0;
  font-style: normal;
  transform: translate(-50%, -50%);
  transition: height 0.3s ease, top 0.3s ease;
}

.banner-bottom-btn a em::before {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat center / 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='48' viewBox='0 0 18 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0V39M9 39L2 32M9 39L16 32' stroke='%231A3299' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

.banner-bottom-btn a em::after {
  display: none;
}

.banner-bottom-btn a:hover::before,
.banner-bottom-btn a:focus-visible::before {
  transform: scale(1);
}

.banner-bottom-btn a:hover strong,
.banner-bottom-btn a:focus-visible strong {
  transform: scale(0.6);
}

.banner-bottom-btn a:hover em,
.banner-bottom-btn a:focus-visible em {
  height: 42px;
  top: calc(50% + 18px);
}

.intro-section {
  padding: 118px 0 104px;
  background: var(--blue);
}

.intro-grid {
  width: min(100% - 48px, 1180px);
  display: grid;
  grid-template-columns: minmax(260px, 500px) minmax(320px, 1fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: start;
}

.intro-grid blockquote {
  margin: 0;
  padding: 36px 0 34px;
  color: var(--white);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.28;
  font-weight: 400;
}

.intro-copy {
  color: var(--white);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 26px;
}

.booking-section {
  padding: 94px 0 86px;
  background: var(--white);
}

.booking-container {
  display: grid;
  justify-items: center;
}

.section-heading {
  width: min(100%, 920px);
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
  font-weight: 400;
}

.section-heading.light h2 {
  color: var(--white);
}

.spaces-section .section-heading.light h2 {
  color: var(--blue);
}

.spaces-section .section-heading .eyebrow {
  color: var(--yellow);
}

.booking-widget-shell {
  width: min(100%, 980px);
  min-height: 170px;
  margin: 0 auto;
  padding: 24px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.booking-widget-shell book-a-space-widget {
  display: block;
  width: min(100%, 880px);
  margin-inline: auto;
}

.spaces-section {
  padding: 100px 0 112px;
  background: #f8f9fb;
}

.spaces-grid {
  width: min(100%, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 500px));
  justify-content: center;
  gap: 34px;
}

.space-card {
  --space-title-height: 76px;
  position: relative;
  width: 100%;
  max-width: 500px;
  padding-bottom: var(--space-title-height);
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 24, 60, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.space-card[hidden] {
  display: none !important;
}

.space-toggle,
.space-card-mobile-actions {
  display: none;
}

.space-card::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.space-card figure {
  position: absolute;
  inset: 0 0 var(--space-title-height);
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #eef1f4;
  box-shadow: 0 20px 34px rgba(0, 24, 60, 0.22);
}

.space-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, rgba(0, 24, 60, 0) 48%, rgba(0, 24, 60, 0.82) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.space-card h3 {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  min-height: var(--space-title-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--blue);
  background: var(--white);
  font-size: clamp(24px, 1.85vw, 30px);
  line-height: 1.15;
  font-weight: 400;
  text-align: center;
  text-shadow: none;
}

.space-overlay {
  position: absolute;
  inset: 0 0 var(--space-title-height);
  z-index: 2;
  display: flex;
  align-items: stretch;
  padding: 30px 34px;
  border-radius: 0;
  background: rgba(0, 24, 60, 0.92);
  color: var(--white);
  opacity: 0;
  overflow-y: auto;
  text-align: right;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.space-card:hover .space-overlay,
.space-card:focus-within .space-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.space-card:hover figure::after,
.space-card:focus-within figure::after {
  opacity: 0;
}

.space-card:hover img {
  transform: scale(1.06);
}

.space-details {
  width: 100%;
  min-height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: right;
}

.space-details h4 {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  text-align: right;
}

.space-details h4:not(:first-child) {
  margin-top: 14px;
}

.space-details p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 300;
  text-align: right;
}

.space-details ul {
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-align: right;
}

.space-details li {
  position: relative;
  margin: 0 0 6px;
  padding: 0 18px 0 0;
  font-size: 15px;
  line-height: 1.38;
  font-weight: 300;
}

.space-details li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.67em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 24px;
  border: 2px solid var(--yellow);
  border-radius: 40px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.quote-button.is-pending {
  margin-top: auto;
  color: var(--blue);
  background: var(--yellow);
  border-color: var(--yellow);
  align-self: center;
  border-radius: 40px;
  padding-inline: 34px;
}

.quote-widget {
  position: relative;
  width: auto;
  max-width: 100%;
  margin-top: auto;
  margin-inline: auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bookasp-launchers {
  position: fixed;
  top: 0;
  left: -10000px;
  z-index: 999997;
  width: 1px;
  height: 1px;
  overflow: visible;
}

.bookasp-launchers book-a-space-widget {
  display: block;
  width: max-content;
}

html.bookasp-drawer-open .space-overlay {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.park-news {
  position: relative;
  padding: 0;
  border-top: 1px solid rgba(89, 154, 255, 0.45);
  border-bottom: 1px solid rgba(89, 154, 255, 0.45);
  background: var(--deep);
  color: var(--white);
  overflow: visible;
}

.park-news-inner {
  min-height: 282px;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) 76px minmax(540px, 1.45fr);
  align-items: center;
  gap: 34px;
}

.park-news h2 {
  margin: 0;
  color: rgba(89, 154, 255, 0.45);
  font-size: clamp(29px, 2.94vw, 50px);
  line-height: 1;
  font-weight: 300;
  text-align: left;
  white-space: nowrap;
}

.park-news-divider {
  position: relative;
  width: 1px;
  min-height: 282px;
  align-self: stretch;
  justify-self: center;
  background: transparent;
}

.park-news-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.park-news-divider::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 44px;
  left: 50%;
  width: 1px;
  background: rgba(242, 190, 26, 0.7);
  transform: translateX(-50%);
}

.park-news-copy {
  text-align: right;
}

.park-news-copy h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.18;
  font-weight: 500;
}

.park-news-copy p {
  width: min(100%, 780px);
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
}

.park-news-slider {
  width: min(100%, 780px);
  margin-inline: auto;
  overflow: hidden;
  max-width: 100%;
  contain: layout paint;
}

.park-news-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  direction: ltr;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.park-news-track::-webkit-scrollbar {
  display: none;
}

.park-news-slide {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  margin: 0;
  direction: rtl;
  text-align: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: visible;
}

.park-news-copy .park-news-slide {
  width: 100%;
}

.park-news-copy a {
  color: var(--sky);
  font-weight: inherit;
  text-decoration: none;
}

@media (min-width: 992px) {
  .park-news-slider {
    margin-inline-start: 0;
    margin-inline-end: auto;
  }

  .park-news-track {
    position: relative;
    display: block;
    direction: rtl;
    overflow: hidden;
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .park-news-slide {
    text-align: right;
    scroll-snap-align: none;
  }

  .park-news-slide:not(:first-child) {
    display: none;
  }

  .park-news-track.is-fade-ready .park-news-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.75s ease, visibility 0.75s ease;
  }

  .park-news-track.is-fade-ready .park-news-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.footer {
  padding: 78px 0 30px;
  background: var(--footer-blue);
  color: var(--white);
}

.top-footer {
  padding: 0 0 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-footer img {
  width: 190px;
  height: auto;
}

.social ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  transition: background 0.25s ease;
}

.social a:hover,
.social a:focus-visible {
  background: rgba(242, 190, 26, 0.2);
}

.social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.bottom-footer {
  padding: 31px 0 0;
}

.bottom-footer .wrap {
  display: grid;
  grid-template-columns: minmax(270px, 360px) 1fr;
  gap: clamp(46px, 6vw, 96px);
  align-items: start;
}

.right_col {
  display: grid;
  gap: 30px;
}

.foot-address {
  display: flex;
  align-items: center;
  gap: 16px;
}

.foot-address .icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.foot-address .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.foot-address p {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 300;
}

.foot-address strong {
  color: var(--yellow);
  font-weight: 400;
}

.foot-call p a {
  color: var(--yellow);
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}

.foot-call small {
  position: relative;
  top: 8px;
}

.menu-footer {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: 0;
}

.menu-footer .col {
  min-height: 156px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-footer .col:first-child {
  border-right: 0;
}

.menu-footer ul {
  list-style: none;
}

.menu-footer li + li {
  margin-top: 8px;
}

.menu-footer a {
  color: var(--white);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  border-bottom: 2px solid transparent;
}

.menu-footer li:first-child a {
  font-weight: 500;
}

.menu-footer a:hover,
.menu-footer a:focus-visible {
  border-color: var(--yellow);
}

.footer-develop-part {
  padding: 88px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-develop-part .links ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.footer-develop-part .links li {
  padding: 0 16px;
  border-left: 1px solid rgba(238, 245, 255, 0.65);
  color: #EEF5FF;
  font-size: 16px;
  line-height: 16px;
}

.footer-develop-part .links li:first-child {
  padding-right: 0;
}

.footer-develop-part .links li:last-child {
  border-left: 0;
}

.footer-develop-part p {
  margin: 0;
}

.footer-develop-part a {
  color: #9ebcff;
}

.devlop-by a {
  color: rgba(158, 188, 255, 0.58);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  text-decoration: none;
}

.devlop-by a::before,
.devlop-by a::after {
  display: none !important;
  content: none !important;
}

.devlop-by a:hover,
.devlop-by a:focus,
.devlop-by a:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.devlop-by img {
  width: 151px;
  height: 10px;
  display: block;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

@media (min-width: 992px) {
  .bottom-footer.scroll-reveal,
  .footer-develop-part.scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .footer-develop-part {
    width: 100%;
    padding: 88px 0 0;
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    visibility: visible;
    opacity: 1;
  }

  .footer-develop-part .links {
    flex: 0 1 auto;
    min-width: 0;
  }

  .footer-develop-part .links ul {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
  }

  .footer-develop-part .links li {
    padding: 0 16px;
    border-left: 1px solid rgba(238, 245, 255, 0.65);
    color: #EEF5FF;
    font-size: 16px;
    line-height: 16px;
    text-align: right;
  }

  .footer-develop-part .links li:first-child {
    padding-right: 0;
  }

  .footer-develop-part .links li:last-child {
    border-left: 0;
  }

  .footer-develop-part p {
    width: auto;
    margin: 0;
    white-space: nowrap;
  }

  .footer-develop-part a {
    color: #9ebcff;
    font-weight: inherit;
  }

  .devlop-by {
    flex: 0 0 auto;
    display: block;
    width: auto;
    padding: 0;
  }

  .devlop-by a {
    opacity: 1;
  }

  .devlop-by img {
    width: 151px;
    height: 10px;
  }
}

.MuiDrawer-root,
.MuiModal-root,
.MuiDrawer-paper {
  z-index: 999999 !important;
}

.MuiBackdrop-root {
  z-index: 999998 !important;
}

.booking-alert {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 24, 60, 0.64);
}

.booking-alert-box {
  width: min(100%, 420px);
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow);
  text-align: center;
}

.booking-alert-box p {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.45;
}

.booking-alert-box button {
  min-height: 42px;
  padding: 6px 22px;
  border: 0;
  border-radius: 40px;
  background: var(--yellow);
  color: var(--blue);
  cursor: pointer;
}

@media (max-width: 1399px) {
  .spaces-grid {
    width: min(100%, 1034px);
    grid-template-columns: repeat(2, minmax(0, 500px));
  }

  .park-news-inner {
    grid-template-columns: minmax(360px, 0.95fr) 68px minmax(460px, 1.35fr);
    gap: 28px;
  }

  .park-news h2 {
    font-size: clamp(27px, 2.8vw, 42px);
  }

  .menu-footer .col {
    padding: 0 14px;
  }

  .menu-footer a {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .nav ul {
    gap: 2px;
  }

  .nav a {
    font-size: 15px;
  }

  .bottom-footer .wrap {
    grid-template-columns: 1fr;
  }

  .menu-footer {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 0;
  }

  .menu-footer .col:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .park-news-inner {
    grid-template-columns: minmax(300px, 0.9fr) 58px minmax(360px, 1.3fr);
    gap: 24px;
  }

  .park-news h2 {
    font-size: clamp(24px, 2.8vw, 36px);
  }

  .park-news-copy h3 {
    font-size: clamp(19px, 1.92vw, 26px);
  }

  .park-news-copy p {
    font-size: 18px;
  }

}

@media (hover: none) {
  .space-overlay {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .space-card figure::after {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  ::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .container,
  .intro-grid,
  .hero-content {
    width: min(100% - 32px, 100%);
  }

  .header-in {
    min-height: 66px;
  }

  .logo svg {
    width: 132px;
    height: auto;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .header-call-btn {
    margin-inline-start: auto;
  }

  .header-call-btn a {
    min-height: 34px;
    gap: 3px;
    padding: 4px 9px;
    border-width: 2px;
    font-size: 18px;
  }

  .header-call-btn a strong {
    width: 22px;
    height: 20px;
  }

  .header-call-btn a strong img {
    width: 22px;
    height: 20px;
  }

  .hero {
    min-height: 66vh;
    background-position: center top;
  }

  .hero-content {
    padding: 88px 0 56px;
  }

  .intro-section,
  .booking-section,
  .spaces-section {
    padding: 64px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    font-size: 24px;
    line-height: 1.72;
    text-align: center;
  }

  .intro-copy p + p {
    margin-top: 35px;
  }

  .booking-widget-shell {
    padding: 16px;
  }

  .spaces-grid {
    width: min(100%, 500px);
    grid-template-columns: 1fr;
  }

  .space-card {
    --space-title-height: 86px;
    overflow: hidden;
    border: 2px solid rgba(0, 24, 60, 0.14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 22px 48px rgba(0, 24, 60, 0.18);
  }

  .space-card figure {
    box-shadow: none;
  }

  .space-card h3 {
    min-height: var(--space-title-height);
    justify-content: flex-start;
    padding: 14px 28px 14px 176px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 400;
    text-align: right;
  }

  .space-card:hover img {
    transform: none;
  }

  .space-toggle {
    position: absolute;
    top: 18px;
    right: auto;
    left: 18px;
    z-index: 5;
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .space-toggle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
  }

  .space-card figure::after,
  .space-card:hover figure::after,
  .space-card:focus-within figure::after {
    opacity: 0;
  }

  .space-overlay,
  .space-card:hover .space-overlay,
  .space-card:focus-within .space-overlay {
    padding: 28px 26px 24px;
    background: rgba(0, 24, 60, 0.94);
    opacity: 0 !important;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) #2332a0;
    visibility: hidden !important;
    transform: none !important;
    pointer-events: none;
  }

  .space-overlay::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    display: block;
    background: #2332a0;
  }

  .space-overlay::-webkit-scrollbar-track {
    background: #2332a0;
  }

  .space-overlay::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 20px;
  }

  .space-card.is-mobile-open .space-overlay,
  .space-card.is-mobile-open:hover .space-overlay,
  .space-card.is-mobile-open:focus-within .space-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .space-details {
    width: 100%;
    margin: 0;
    min-height: 0;
    overflow: visible;
    padding-inline-start: 12px;
    padding-inline-end: 0;
  }

  .space-overlay .quote-widget,
  .space-overlay .quote-button.is-pending {
    display: none;
  }

  .space-card-mobile-actions {
    position: absolute;
    left: 22px;
    bottom: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .space-card-mobile-actions .quote-button {
    min-width: 132px;
    min-height: 54px;
    margin: 0;
    padding: 8px 28px;
    border: 0;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--blue);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    box-shadow: none;
    transform: none;
  }

  .space-card-mobile-actions .quote-button:hover,
  .space-card-mobile-actions .quote-button:focus-visible {
    background: var(--yellow);
    color: var(--blue);
    transform: none;
  }

  .park-news-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding-top: 60px;
    padding-bottom: 72px;
    text-align: center;
  }

  .park-news {
    overflow: hidden;
  }

  .park-news .container {
    max-width: 100%;
    overflow: hidden;
  }

  .park-news h2 {
    margin-bottom: 62px;
    text-align: center;
    font-size: 46px;
    line-height: 1;
    white-space: nowrap;
  }

  .park-news-divider {
    width: min(44vw, 286px);
    height: 1px;
    min-height: 0;
    align-self: center;
    margin: 0 0 66px;
  }

  .park-news-divider::before {
    top: 50%;
    left: 50%;
    width: 66px;
    height: 66px;
    transform: translate(-50%, -50%);
  }

  .park-news-divider::after {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    transform: none;
  }

  .park-news-copy {
    width: min(100%, 590px);
    max-width: 100%;
    overflow: hidden;
    text-align: center;
  }

  .park-news-copy h3 {
    margin: 0 0 31px;
    font-size: 30px;
    line-height: 1.24;
    font-weight: 700;
    text-align: center;
  }

  .park-news-copy p {
    font-size: 23px;
    line-height: 1.52;
    text-align: center;
  }

  .park-news-slider {
    width: min(100% - 28px, 590px);
    max-width: 100%;
  }

  .park-news-track {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .news-line {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    font-size: inherit;
  }

  .top-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .menu-footer {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 34px;
    row-gap: 36px;
    align-items: start;
    width: 100%;
  }

  .menu-footer a {
    font-size: 17px;
  }

  .menu-footer .col,
  .menu-footer .col:first-child {
    min-height: auto;
    padding: 0;
    border-right: 0;
    text-align: right;
  }

  .menu-footer ul {
    width: 100%;
  }

  .menu-footer li + li {
    margin-top: 11px;
  }

  .menu-footer li:first-child {
    margin-bottom: 4px;
  }

  .footer-develop-part .links ul {
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }

  .footer-develop-part .links li {
    padding: 0;
    border-left: 0;
    color: rgba(238, 245, 255, 0.98);
    font-size: 21px;
    line-height: 1.65;
    text-align: center;
  }

  .footer-develop-part {
    align-items: center;
    flex-direction: column;
    gap: 34px;
    padding-top: 54px;
    text-align: center;
  }

  .footer-develop-part .links {
    width: 100%;
  }

  .footer-develop-part p {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .footer-develop-part a {
    color: rgba(158, 188, 255, 0.72);
    font-weight: 500;
  }

  .devlop-by {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 4px;
  }

  .devlop-by a {
    opacity: 0.78;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
  }

  .devlop-by a:focus,
  .devlop-by a:focus-visible {
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .devlop-by img {
    width: 182px;
    height: auto;
    border: 0;
    outline: 0;
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 18px;
  }

  .hero {
    min-height: 62vh;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 400;
    white-space: nowrap;
  }

  .hero-logo img {
    width: min(100%, 280px);
  }

  .eyebrow {
    font-size: 18px;
  }

  .intro-grid blockquote {
    font-size: 27px;
    line-height: 1.25;
  }

  .intro-copy {
    font-size: 23px;
    line-height: 1.7;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .space-card h3 {
    font-size: 24px;
  }

  .space-details h4 {
    font-size: 18px;
  }

  .space-details p {
    font-size: 17px;
  }

  .space-details li {
    font-size: 16px;
  }

  .space-card-mobile-actions .quote-button {
    font-size: 22px;
  }

  .park-news h2 {
    font-size: 40px;
  }

  .park-news-copy h3 {
    font-size: 26px;
  }

  .park-news-copy p {
    font-size: 19px;
    line-height: 1.52;
  }

  .footer-develop-part .links li {
    font-size: 19px;
    line-height: 1.65;
  }

  .devlop-by img {
    width: 165px;
  }

  .space-overlay,
  .space-card:hover .space-overlay,
  .space-card:focus-within .space-overlay {
    padding: 24px 22px 22px;
  }

  .space-details li {
    margin-bottom: 7px;
  }

  .menu-footer a {
    font-size: 17px;
  }

  .social ul {
    gap: 24px;
  }

  .social a {
    width: 40px;
    height: 40px;
  }

  .social img {
    width: 32px;
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-reveal,
  .preload-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
