.landing_modal_is_open {
  overflow: hidden;
}

html {
  margin: 0 !important;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.skylounge_static_page,
body.page-template-page-templateslanding-page-php,
body.page-template-page-templateslanding-page-video-php {
  margin: 0;
  background: #eff1f2;
  scrollbar-width: none;
}

body.page-template-page-templateslanding-page-php #wpadminbar,
body.page-template-page-templateslanding-page-video-php #wpadminbar {
  display: none;
}

body.skylounge_static_page::-webkit-scrollbar,
body.page-template-page-templateslanding-page-php::-webkit-scrollbar,
body.page-template-page-templateslanding-page-video-php::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.skylounge_landing_page {
  --skylounge-dark: #23233b;
  --skylounge-deep: #1c273b;
  --skylounge-ink: #131a22;
  --skylounge-muted: #6c7a8a;
  --skylounge-light: #eff1f2;
  --skylounge-white: #ffffff;
  --skylounge-blue: #00a6ff;
  --skylounge-line: rgba(255, 255, 255, 0.6);
  --skylounge-container: 1312px;
  --skylounge-gutter: 24px;
  margin: 0;
  color: var(--skylounge-ink);
  background: var(--skylounge-light);
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}
.skylounge_landing_page .text-bold {
  font-weight: bold;
}

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

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

.skylounge_landing_page button,
.skylounge_landing_page input,
.skylounge_landing_page textarea {
  font: inherit;
}

.skylounge_landing_page button {
  cursor: pointer;
}

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

.skylounge_landing_page p,
.skylounge_landing_page h1,
.skylounge_landing_page h2,
.skylounge_landing_page h3 {
  margin: 0;
  letter-spacing: 0;
}

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

.skylounge_landing_page .container-fluid {
  width: 100%;
  margin-inline: auto;
}

.skylounge_landing_page .row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--skylounge-gutter) / -2);
}

.skylounge_landing_page .row > [class*=col-] {
  width: 100%;
  min-width: 0;
  padding-inline: calc(var(--skylounge-gutter) / 2);
}

.skylounge_landing_page .align-items-center {
  align-items: center;
}

.skylounge_landing_page .col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.skylounge_landing_page .main_description {
  max-width: 533px;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625;
}

.skylounge_landing_page .main_description + .main_description {
  margin-top: 30px;
}

.skylounge_landing_page .section_title {
  color: inherit;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}

.skylounge_landing_page .section_title span {
  display: block;
  color: var(--skylounge-muted);
}

.skylounge_landing_page .line_holder {
  width: 100%;
  color: currentColor;
}

.skylounge_landing_page .horizontal_line {
  width: 100%;
  height: 1px;
  border-top: 1px solid currentColor;
  transition: width 1.4s ease;
}

.skylounge_landing_page .horizontal_line.animation_start {
  width: 100%;
}

.skylounge_landing_page .reveal_item {
  opacity: 1;
  transform: none;
}

.skylounge_landing_page.is_ready .reveal_item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.05s ease var(--reveal_delay, 0ms), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal_delay, 0ms);
  will-change: opacity, transform;
}

.skylounge_landing_page.is_ready .reveal_item.animation_start {
  opacity: 1;
  transform: translateY(0);
}

.skylounge_landing_page .hero_section {
  position: relative;
  min-height: 845px;
  color: var(--skylounge-white);
  background: var(--skylounge-dark);
  overflow: hidden;
}

.skylounge_landing_page .hero_slider,
.skylounge_landing_page .hero_overlay {
  position: absolute;
  inset: 0;
}

.skylounge_landing_page .hero_slider {
  inset: -160px 0;
  transform: translate3d(0, var(--hero_parallax_offset, 0px), 0);
  will-change: transform;
}

.skylounge_landing_page .hero_video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skylounge_landing_page .hero_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.4s ease, transform 6s ease;
}

.skylounge_landing_page .hero_slide.active {
  opacity: 1;
  transform: scale(1);
}

.skylounge_landing_page .hero_overlay {
  background: linear-gradient(180deg, rgba(35, 35, 59, 0.5) 0%, rgba(35, 35, 59, 0.2) 42%, #23233b 99%), linear-gradient(90deg, rgba(35, 35, 59, 0.15) 0%, rgba(35, 35, 59, 0) 45%, rgba(35, 35, 59, 0.18) 100%);
  z-index: 1;
}

.skylounge_landing_page .hero_topbar {
  position: absolute;
  inset: 30px 100px auto;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.skylounge_landing_page .brand_link {
  display: block;
  width: 171px;
}

.skylounge_landing_page .brand_link img {
  width: 171px;
  height: 72px;
  object-fit: contain;
}

.skylounge_landing_page .site_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  color: #f9f9f9;
  font-size: 14px;
  line-height: 1.2;
}

.skylounge_landing_page .site_link img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.skylounge_landing_page .hero_container {
  position: relative;
  z-index: 2;
  min-height: 845px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 112px;
  text-align: center;
}

.skylounge_landing_page .arabic_tagline {
  margin-bottom: 12px;
  color: #eef2f6;
  font-family: "Almarai", Arial, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.skylounge_landing_page .hero_section .main_title {
  max-width: 928px;
  color: var(--skylounge-white);
  font-size: 85px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.skylounge_landing_page .hero_section .main_title span {
  display: block;
}

.skylounge_landing_page .scroll_cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 160px;
  padding: 0;
  color: #eef2f6;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transform: translateX(-50%);
}

.skylounge_landing_page .scroll_cue img {
  width: 30px;
  height: 30px;
}

.skylounge_landing_page .intro_section {
  padding: 145px 0 138px;
  color: #f9f9f9;
  background: var(--skylounge-dark);
}

.skylounge_landing_page .intro_statement {
  max-width: 866px;
  margin-inline: auto;
  text-align: center;
}

.skylounge_landing_page .intro_statement p {
  font-size: 24px;
  line-height: 1.67;
}

.skylounge_landing_page .intro_statement p + p {
  margin-top: 40px;
}

.skylounge_landing_page .figures_section {
  position: relative;
  padding: 86px 0;
  color: var(--skylounge-white);
  background: var(--skylounge-dark);
  overflow: hidden;
}

.skylounge_landing_page .figures_background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.skylounge_landing_page .figures_background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 88%;
}

.skylounge_landing_page .figures_background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 59, 0.5);
}

.skylounge_landing_page .figures_section .container {
  position: relative;
  z-index: 1;
}

.skylounge_landing_page .figures_section .section_title {
  color: var(--skylounge-white);
  margin-bottom: 34px;
}

.skylounge_landing_page .figures_section .section_title span {
  color: var(--skylounge-white);
}

.skylounge_landing_page .stats_container {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 230px));
  gap: 68px 70px;
  justify-content: end;
}

.skylounge_landing_page .stat_item {
  min-height: 126px;
  padding-top: 22px;
  border-top: 2px solid var(--skylounge-line);
}

.skylounge_landing_page .stat_item strong {
  display: block;
  margin-bottom: 16px;
  color: var(--skylounge-white);
  font-size: 54px;
  font-weight: 300;
  line-height: 1.1;
}

.skylounge_landing_page .stat_item span {
  display: block;
  max-width: 220px;
  color: var(--skylounge-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.3;
}

.skylounge_landing_page .film_section {
  padding: 145px 0 120px;
  background: var(--skylounge-light);
}

.skylounge_landing_page .film_intro_row {
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 105px;
}

.skylounge_landing_page .statement_title {
  max-width: 560px;
  color: var(--skylounge-dark);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.32;
}

.skylounge_landing_page .statement_title span {
  color: var(--skylounge-muted);
}

.skylounge_landing_page .outline_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 32px;
  padding: 14px 16px;
  color: #373739;
  background: transparent;
  border: 1px solid var(--skylounge-blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.skylounge_landing_page .outline_button span:last-child {
  color: var(--skylounge-blue);
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.skylounge_landing_page .outline_button:hover,
.skylounge_landing_page .outline_button:focus-visible {
  color: var(--skylounge-white);
  background: var(--skylounge-blue);
  outline: 0;
}

.skylounge_landing_page .outline_button:hover span:last-child,
.skylounge_landing_page .outline_button:focus-visible span:last-child {
  color: var(--skylounge-white);
}

.skylounge_landing_page .outline_button.light {
  color: var(--skylounge-white);
}

.skylounge_landing_page .film_poster {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1311/561;
  background: #d8dde1;
}

.skylounge_landing_page .film_poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skylounge_landing_page .film_poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.skylounge_landing_page .play_button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
}

.skylounge_landing_page .play_button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--skylounge-white);
}

.skylounge_landing_page .opportunity_section {
  padding: 20px 0 118px;
  background: var(--skylounge-light);
}

.skylounge_landing_page .opportunity_section .section_title {
  max-width: 650px;
  margin-bottom: 54px;
  color: var(--skylounge-dark);
}

.skylounge_landing_page .opportunity_section .section_title span {
  color: inherit;
}

.skylounge_landing_page .cards_row {
  row-gap: 24px;
}

.skylounge_landing_page .feature_item {
  min-height: 406px;
  padding-top: 45px;
  padding-bottom: 32px;
  background: var(--skylounge-white);
}

.skylounge_landing_page .feature_item > * {
  margin-inline: 28px;
}

.skylounge_landing_page .icon_holder {
  width: 50px;
  height: 50px;
  margin-bottom: 102px;
}

.skylounge_landing_page .mini_title {
  max-width: 190px;
  margin-bottom: 22px;
  color: var(--skylounge-dark);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.05;
}

.skylounge_landing_page .feature_item p {
  max-width: 250px;
  color: var(--skylounge-ink);
  font-size: 18px;
  line-height: 1.34;
}

.skylounge_landing_page .vision_gallery_section {
  padding: 112px 0 140px;
  color: var(--skylounge-white);
  background: var(--skylounge-deep);
  overflow: hidden;
}

.skylounge_landing_page .gallery_layout {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  padding-left: max(24px, (100vw - var(--skylounge-container)) / 2);
}

.skylounge_landing_page .gallery_copy {
  max-width: 421px;
}

.skylounge_landing_page .gallery_copy .section_title {
  margin-bottom: 42px;
  color: #f1f2ef;
}

.skylounge_landing_page .gallery_copy .section_title span {
  color: #f1f2ef;
}

.skylounge_landing_page .gallery_copy p {
  color: var(--skylounge-white);
  font-size: 18px;
  line-height: 1.625;
}

.skylounge_landing_page .gallery_container {
  min-width: 0;
}

.skylounge_landing_page .gallery_track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.skylounge_landing_page .gallery_track.is_dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.skylounge_landing_page .gallery_track.is_animating {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skylounge_landing_page .gallery_track::-webkit-scrollbar {
  display: none;
}

.skylounge_landing_page .gallery_track img {
  flex: 0 0 644px;
  width: 644px;
  height: 425px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  -webkit-user-drag: none;
  user-select: none;
}

.skylounge_landing_page .gallery_controls {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}

.skylounge_landing_page .icon_button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.skylounge_landing_page .icon_button img {
  width: 35px;
  height: 35px;
}

.skylounge_landing_page .gallery_controls [data-gallery-control=prev] img {
  transform: rotate(180deg);
}

.skylounge_landing_page .expertise_section {
  padding: 104px 0 110px;
  background: var(--skylounge-light);
}

.skylounge_landing_page .expertise_section .row {
  align-items: flex-start;
}

.skylounge_landing_page .image_holder {
  overflow: hidden;
  border-radius: 8px;
}

.skylounge_landing_page .image_holder img {
  width: 100%;
  height: 436px;
  object-fit: cover;
}

.skylounge_landing_page .metric_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 34px;
}

.skylounge_landing_page .metric_item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--skylounge-deep);
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
}

.skylounge_landing_page .metric_item strong span {
  color: var(--skylounge-blue);
}

.skylounge_landing_page .metric_item p {
  max-width: 220px;
  color: #1d293d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.3;
}

.skylounge_landing_page .expertise_section .section_title {
  max-width: 470px;
  margin-bottom: 34px;
  color: var(--skylounge-dark);
}

.skylounge_landing_page .location_section {
  padding: 66px 0 118px;
  background: var(--skylounge-light);
}

.skylounge_landing_page .location_section .line_holder {
  margin-bottom: 76px;
  color: rgba(28, 39, 59, 0.16);
}

.skylounge_landing_page .location_section .section_title {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--skylounge-dark);
}

.skylounge_landing_page .map_container {
  position: relative;
}

.skylounge_landing_page .map_image_wrap {
  position: relative;
  width: 100%;
}

.skylounge_landing_page .map_image_wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(239, 241, 242, 0) 0%, rgba(239, 241, 242, 0.76) 58%, var(--skylounge-light) 100%);
}

.skylounge_landing_page .map_image_wrap img {
  display: block;
  width: 100%;
  max-height: 523px;
  object-fit: contain;
}

.skylounge_landing_page .map_city {
  position: absolute;
  z-index: 2;
  color: #687286;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}

.skylounge_landing_page .map_city_akkar {
  top: 13%;
  left: 69%;
}

.skylounge_landing_page .map_city_tripoli {
  top: 18%;
  left: 47%;
}

.skylounge_landing_page .map_city_beirut {
  top: 70%;
  left: 22%;
}

.skylounge_landing_page .map_note {
  position: absolute;
  top: 70px;
  left: 12px;
  max-width: 210px;
  color: #1d293d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.35;
}

.skylounge_landing_page .cta_section {
  padding: 140px 0 0;
  color: var(--skylounge-white);
  background: var(--skylounge-deep);
}

.skylounge_landing_page .cta_content {
  max-width: 896px;
  margin-inline: auto;
  text-align: center;
}

.skylounge_landing_page .cta_content .section_title {
  max-width: 675px;
  margin-inline: auto;
  margin-bottom: 38px;
  color: var(--skylounge-white);
}

.skylounge_landing_page .cta_content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.625;
}

.skylounge_landing_page .landing_footer {
  margin-top: 112px;
  padding: 49px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.skylounge_landing_page .landing_footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.4;
}

.skylounge_landing_page .updates_modal[hidden] {
  display: none;
}

.skylounge_landing_page .updates_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 8px 24px;
}

.skylounge_landing_page .modal_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 26, 34, 0.72);
  backdrop-filter: blur(5px);
}

.skylounge_landing_page .modal_panel {
  position: relative;
  z-index: 1;
  width: min(100%, 724px);
  height: min(912px, 100vh - 16px);
  max-height: min(912px, 100vh - 16px);
  padding: 56px 48px 31px;
  overflow-y: auto;
  color: var(--skylounge-ink);
  background: var(--skylounge-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overscroll-behavior: contain;
}

.skylounge_landing_page .modal_panel:focus {
  outline: 0;
}

.skylounge_landing_page .modal_header {
  display: block;
  margin-bottom: 56px;
  padding-inline: 56px;
  text-align: center;
}

.skylounge_landing_page .modal_header > div {
  width: 100%;
}

.skylounge_landing_page .modal_header h2 {
  max-width: none;
  color: #23233B;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0;
}

.skylounge_landing_page .modal_header p {
  max-width: 460px;
  margin: 26px auto 0;
  color: #000000;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.skylounge_landing_page .modal_close {
  position: absolute;
  top: 28px;
  right: 36px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #000000;
  background: transparent;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.8;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.skylounge_landing_page .modal_close:hover,
.skylounge_landing_page .modal_close:focus-visible {
  color: var(--skylounge-blue);
  outline: 0;
  transform: scale(1.04);
}


.skylounge_landing_page .updates_form_fallback {
  color: var(--skylounge-ink);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .skylounge_landing_page .row > .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .skylounge_landing_page .row > .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .skylounge_landing_page .row > .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .skylounge_landing_page .row > .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .skylounge_landing_page .row > .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}
@media (min-width: 768px) {
  .skylounge_landing_page .gallery_container {
    overflow: visible;
  }
  .skylounge_landing_page .gallery_track {
    width: max-content;
    overflow: visible;
    scroll-snap-type: none;
    transform: translate3d(var(--gallery_translate, 0px), 0, 0);
    will-change: transform;
  }
  .skylounge_landing_page .gallery_track.is_dragging {
    transition: none;
  }
  .skylounge_landing_page .gallery_track img {
    scroll-snap-align: none;
  }
}
@media (max-width: 1199.98px) {
  .skylounge_landing_page .hero_topbar {
    inset-inline: 48px;
  }
  .skylounge_landing_page .hero_section .main_title {
    font-size: 72px;
  }
  .skylounge_landing_page .arabic_tagline {
    font-size: 34px;
  }
  .skylounge_landing_page .stats_container {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 46px 36px;
  }
  .skylounge_landing_page .gallery_track img {
    flex-basis: 560px;
    width: 560px;
    height: 370px;
  }
}
@media (min-width: 1200px) {
  .skylounge_landing_page .hero_container {
    display: block;
    padding-top: 0;
  }
  .skylounge_landing_page .arabic_tagline {
    position: absolute;
    top: 455px;
    left: 50%;
    width: 415px;
    margin: 0;
    text-align: right;
    transform: translateX(-50%);
  }
  .skylounge_landing_page .hero_section .main_title {
    position: absolute;
    top: 510px;
    left: 50%;
    width: 928px;
    margin: 0;
    transform: translateX(-50%);
  }
  .skylounge_landing_page .scroll_cue {
    top: 729px;
    bottom: auto;
  }
  .skylounge_landing_page .intro_section {
    height: 685px;
    padding: 192px 0 0;
  }
  .skylounge_landing_page .figures_section {
    height: 544px;
    padding: 86px 0 0;
  }
  .skylounge_landing_page .stats_container {
    padding-top: 42px;
  }
  .skylounge_landing_page .film_section {
    height: 1077px;
    padding: 151px 0 0;
  }
  .skylounge_landing_page .film_intro_row {
    margin-bottom: 68px;
  }
  .skylounge_landing_page .opportunity_section {
    height: 502px;
    padding: 25px 0 0;
    overflow: visible;
  }
  .skylounge_landing_page .opportunity_section .section_title {
    margin-bottom: 56px;
  }
  .skylounge_landing_page .opportunity_section .cards_row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    margin-inline: 0;
  }
  .skylounge_landing_page .opportunity_section .cards_row > [class*=col-] {
    width: auto;
    padding-inline: 0;
  }
  .skylounge_landing_page .vision_gallery_section {
    height: 866px;
    padding: 235px 0 0;
  }
  .skylounge_landing_page .expertise_section {
    height: 865px;
    padding: 127px 0 0;
  }
  .skylounge_landing_page .expertise_section .row {
    position: relative;
    display: block;
    margin-inline: 0;
  }
  .skylounge_landing_page .expertise_section .media_container {
    width: 644px;
    padding-inline: 0;
  }
  .skylounge_landing_page .expertise_section .content_container {
    position: absolute;
    top: 0;
    left: 779px;
    width: 533px;
    padding-inline: 0;
  }
  .skylounge_landing_page .location_section {
    height: 618px;
    padding: 0;
  }
  .skylounge_landing_page .location_section .row {
    align-items: flex-start;
  }
  .skylounge_landing_page .location_section .line_holder {
    margin-bottom: 129px;
  }
  .skylounge_landing_page .map_container {
    width: 642px;
    margin-top: -35px;
    padding-inline: 0;
  }
  .skylounge_landing_page .map_container img {
    width: 642px;
    height: 523px;
    max-height: none;
  }
  .skylounge_landing_page .cta_section {
    height: 737px;
    padding: 150px 0 0;
  }
  .skylounge_landing_page .landing_footer {
    margin-top: 134px;
  }
}
@media (max-width: 991.98px) {
  .skylounge_landing_page {
    --skylounge-gutter: 20px;
  }
  .skylounge_landing_page .hero_section,
  .skylounge_landing_page .hero_container {
    min-height: 760px;
  }
  .skylounge_landing_page .hero_section .main_title {
    font-size: 58px;
  }
  .skylounge_landing_page .intro_section {
    padding: 110px 0;
  }
  .skylounge_landing_page .intro_statement p {
    font-size: 22px;
    line-height: 1.55;
  }
  .skylounge_landing_page .figures_section,
  .skylounge_landing_page .film_section,
  .skylounge_landing_page .expertise_section,
  .skylounge_landing_page .location_section {
    padding-block: 96px;
  }
  .skylounge_landing_page .film_section {
    padding-bottom: 30px;
  }
  .skylounge_landing_page .section_title {
    font-size: 42px;
  }
  .skylounge_landing_page .stats_container {
    margin-top: 58px;
    justify-content: stretch;
  }
  .skylounge_landing_page .film_intro_row {
    gap: 40px;
    margin-bottom: 64px;
  }
  .skylounge_landing_page .statement_title {
    font-size: 30px;
  }
  .skylounge_landing_page .gallery_layout {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }
  .skylounge_landing_page .gallery_copy {
    max-width: 640px;
  }
  .skylounge_landing_page .expertise_section .content_container {
    margin-top: 64px;
  }
  .skylounge_landing_page .map_container {
    margin-top: 54px;
  }
}
@media (max-width: 767.98px) {
  .skylounge_landing_page {
    --skylounge-gutter: 18px;
  }
  .skylounge_landing_page .hero_slider {
    inset: 0;
    transform: none;
    will-change: auto;
  }
  .skylounge_landing_page .container {
    width: min(100% - 32px, var(--skylounge-container));
  }
  .skylounge_landing_page .hero_section,
  .skylounge_landing_page .hero_container {
    min-height: 680px;
  }
  .skylounge_landing_page .hero_topbar {
    inset: 24px 16px auto;
    align-items: center;
    gap: 12px;
  }
  .skylounge_landing_page .brand_link {
    flex: 0 0 auto;
    width: 118px;
  }
  .skylounge_landing_page .brand_link img {
    width: 118px;
    height: auto;
  }
  .skylounge_landing_page .site_link {
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 6px;
    max-width: calc(100% - 130px);
    padding-top: 0;
    font-size: 11px;
    line-height: 1.2;
    text-align: end;
  }
  .skylounge_landing_page .site_link span {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
  }
  .skylounge_landing_page .site_link img {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
  }
  .skylounge_landing_page .hero_container {
    justify-content: flex-end;
    padding-top: 120px;
    padding-bottom: 132px;
  }
  .skylounge_landing_page .arabic_tagline {
    font-size: 25px;
  }
  .skylounge_landing_page .hero_section .main_title {
    font-size: 46px;
  }
  .skylounge_landing_page .scroll_cue {
    bottom: 32px;
  }
  .skylounge_landing_page .intro_statement p,
  .skylounge_landing_page .cta_content p {
    font-size: 20px;
    line-height: 1.55;
  }
  .skylounge_landing_page .main_description,
  .skylounge_landing_page .gallery_copy p,
  .skylounge_landing_page .feature_item p {
    font-size: 16px;
  }
  .skylounge_landing_page .section_title {
    font-size: 34px;
  }
  .skylounge_landing_page .statement_title {
    font-size: 26px;
  }
  .skylounge_landing_page .stats_container {
    grid-template-columns: 1fr;
  }
  .skylounge_landing_page .stat_item strong,
  .skylounge_landing_page .metric_item strong {
    font-size: 44px;
  }
  .skylounge_landing_page .film_poster {
    aspect-ratio: 4/3;
  }
  .skylounge_landing_page .play_button {
    width: 78px;
    height: 78px;
  }
  .skylounge_landing_page .feature_item {
    min-height: 320px;
  }
  .skylounge_landing_page .opportunity_section .cards_row {
    margin-inline: 0;
  }
  .skylounge_landing_page .opportunity_section .cards_row > [class*=col-] {
    padding-inline: 0;
  }
  .skylounge_landing_page .map_image_wrap {
    top: 50px;
  }
  .skylounge_landing_page .icon_holder {
    margin-bottom: 58px;
  }
  .skylounge_landing_page .vision_gallery_section {
    padding: 20px 0 30px;
  }
  .skylounge_landing_page .gallery_layout {
    padding-inline: 0;
  }
  .skylounge_landing_page .gallery_copy {
    padding-inline: 24px;
  }
  .skylounge_landing_page .expertise_section {
    padding-top: 30px !important;
    padding-bottom: 0;
  }
  .skylounge_landing_page .location_section {
    padding-top: 50px !important;
    padding-bottom: 0;
  }
  .skylounge_landing_page .expertise_section .content_container {
    order: -1;
    margin-top: 0;
    margin-bottom: 42px;
  }
  .skylounge_landing_page .gallery_container {
    width: min(100% - 32px, 430px);
    margin-inline: auto;
    overflow: hidden;
  }
  .skylounge_landing_page .gallery_track {
    gap: 0;
    scroll-padding-inline: 0;
  }
  .skylounge_landing_page .gallery_track img {
    flex: 0 0 100%;
    width: 100%;
    height: 58vw;
    min-height: 260px;
    scroll-snap-align: center;
  }
  .skylounge_landing_page .gallery_controls {
    justify-content: center;
    margin-top: 30px;
  }
  .skylounge_landing_page .figures_section {
    padding-block: 0;
    background: var(--skylounge-deep);
  }
  .skylounge_landing_page .figures_section .figures_background {
    display: none;
  }
  .skylounge_landing_page .figures_section .container {
    width: 100%;
  }
  .skylounge_landing_page .figures_section .row {
    margin-inline: 0;
  }
  .skylounge_landing_page .figures_section .content_container {
    position: relative;
    isolation: isolate;
    padding: 28px 16px 26px;
    overflow: hidden;
  }
  .skylounge_landing_page .figures_section .content_container::before,
  .skylounge_landing_page .figures_section .content_container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
  }
  .skylounge_landing_page .figures_section .content_container::before {
    background-image: url("../images/key-figures-bg.png");
    background-position: center 95%;
    background-size: auto 150%;
  }
  .skylounge_landing_page .figures_section .content_container::after {
    z-index: -1;
    background: rgba(35, 35, 59, 0.5);
  }
  .skylounge_landing_page .figures_section .section_title {
    margin-bottom: 24px;
  }
  .skylounge_landing_page .figures_section .main_description {
    max-width: none;
  }
  .skylounge_landing_page .stats_container {
    width: 100%;
    margin-top: 0;
    padding: 34px 16px 44px;
    background: var(--skylounge-deep);
  }
  .skylounge_landing_page .opportunity_section {
    padding: 20px 0 60px;
  }
  .skylounge_landing_page .metric_row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .skylounge_landing_page .image_holder img {
    height: 320px;
  }
  .skylounge_landing_page .location_section .line_holder {
    margin-bottom: 48px;
  }
  .skylounge_landing_page .map_note {
    position: absolute;
    top: -10px;
    left: calc(var(--skylounge-gutter) / 2);
    z-index: 3;
    margin-top: 0;
  }
  .skylounge_landing_page .cta_section {
    padding-top: 30px;
    margin-top: 60px;
  }
  .skylounge_landing_page .landing_footer {
    margin-top: 50px;
  }
  .skylounge_landing_page .map_city_tripoli {
    top: 16%;
  }
  .skylounge_landing_page .map_city_beirut {
    top: 67%;
  }
  .skylounge_landing_page .modal_panel {
    height: auto;
    max-height: calc(100vh - 24px);
    padding: 38px 24px 32px;
  }
  .skylounge_landing_page .modal_header {
    margin-bottom: 34px;
    padding-inline: 48px;
  }
  .skylounge_landing_page .modal_header p {
    margin-top: 16px;
  }
  .skylounge_landing_page .modal_close {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
}
@media (max-width: 479.98px) {
  .skylounge_landing_page .hero_section .main_title {
    font-size: 38px;
  }
  .skylounge_landing_page .arabic_tagline {
    font-size: 22px;
  }
  .skylounge_landing_page .section_title {
    font-size: 30px;
  }
  .skylounge_landing_page .modal_header {
    padding-inline: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .skylounge_landing_page *,
  .skylounge_landing_page *::before,
  .skylounge_landing_page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .skylounge_landing_page.is_ready .reveal_item,
  .skylounge_landing_page.is_ready .reveal_item.animation_start {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }
  .skylounge_landing_page .hero_slider {
    inset: 0;
    transform: none !important;
    will-change: auto;
  }
  .skylounge_landing_page .horizontal_line {
    width: 100%;
  }
}

