
    /* (your original CSS unchanged) */
    :root {
      --page-bg: #efe9e1;
      --panel-bg: #633d1e;
      --muted-line: #efb660;
      --copy-color: #efe9e1;
      --transition-slow: 900ms;
      --easing: cubic-bezier(.2, .9, .2, 1);
      --hero-min: 420px;
      
      --warm-top: #efe9e1;
      --olive-dark: #633d1e;
      --muted-olive: #efb660;
      --light-cream: #efe9e1;
    }

    body {
       font-family: 'Poppins', sans-serif;
      background: var(--page-bg);
      overflow-x: hidden;

      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -moz-font-feature-settings: "liga" on;
    }

    html,
    body {
      height: 100%;
    }

       .alex-brush {
    font-family: "Alex Brush", cursive;
    font-weight: 400;
    font-style: normal;
  }



     .hero-bg {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23654321" width="1200" height="800"/><circle fill="%23DAA520" cx="600" cy="400" r="100" opacity="0.3"/></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .section-bg {
        
          background-color: #f2edc9;
           
        }

        .content-container {
            position: relative;
            z-index: 10;
        }

        /* Light logo: 40px from top */
  #logo.default {
  position: relative;    /* Enables top offset */
  top: 30px !important;
  width: 200px!important;
  height: 122px!important;
  content: url('images/logo.png'); /* Optional – set src in HTML instead */
  transition: all 0.3s ease-in-out;
}




    /* Dark logo: flush at top */
    #logo.scroll {
        position: relative;    /* ← make `top` work */
      top: 0px;
      content: url('images/enkorok-safariLogo.png');
      width: 10rem; /* Shrinks logo on scroll */
    }
    /* Navbar background + shadow when scrolled */
    .scroll-Top {
      background-color: white !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    /* Overlay nav hidden by default */
    #overlay-nav {
      display: none;
    }
    #overlay-nav.active {
      display: flex;
    }

/* 1) Make sure nav hides overflow so the curtain is clipped */
/* make sure #main-nav wraps its content (no fixed height) */

#main-nav.scroll-Top {
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* curtain covers exactly the nav’s own height */
#main-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;                     /* <-- match nav height */
  background-color: rgba(255,255,255,0.95);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .4s ease;
  z-index: -1;                      /* behind links/logo */
}

/* trigger the drop + shadow */
#main-nav.scroll-Top {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#main-nav.scroll-Top::before {
  transform: scaleY(1);
}

/* Turn all desktop links black on scroll */
#main-nav.scroll-Top .md\:flex > a {
  color: #000 !important;
}
/* And make sure your gold “ENQUIRE” button also flips its text to black */
#main-nav.scroll-Top .md\:flex > a.bg-safari-gold {
  color: #000 !important;
}

/* (Optional) If you’d also like the hover color to stay gold on scroll: */
#main-nav.scroll-Top .md\:flex > a:hover {
  color: #DAA520 !important;
}


.minimalist-nav {
  all: unset; /* Reset browser styles */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Adjust padding if arrows feel too close to button edges, 0.25rem is already good for some spacing */
  padding: 0.25rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7; /* Slightly transparent when not hovered, as per your original CSS */
}

.minimalist-nav:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  opacity: 1; /* Fully opaque on hover */
}

.minimalist-nav svg {
  width: 1.35rem; /* Controls the size of the SVG icon */
  height: 1.35rem; /* Controls the size of the SVG icon */
}



.media-buttons {
    bottom: 60px;
    right: 100px;
    position: absolute;
    /* You can make the background transparent or a color that works with the images */
    background-color: transparent; 
    /* To ensure it is above other elements */
    z-index: 20; 
}

.media-buttons .btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(13px, .9722222222vw, 14px);
    letter-spacing: .05em;
    font-weight: 500;
    text-transform: uppercase;
    /* This makes the text visible */
    color: #ffffff;
    /* Add a background color to the button itself for better visibility */
   
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.media-buttons .btn:hover {
    scale: 1.05;
    transition: all 0.3s ease;
}

.media-buttons .btn svg {
    /* Make the icon white */
    stroke: #ffffff; 
}

/* desktop: nav inside slider (absolute) */
    .Aboutsec-nav {
      position: absolute;
      bottom: 18px;
      right: 18px;
      display:flex;
      gap:12px;
      z-index: 30;
    }

     /* Play button overlay for video poster */
    .play-btn {
      width:76px;
      height:76px;
      border-radius:9999px;
      background: rgba(255,255,255,0.95);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 10px 30px rgba(2,6,23,0.18);
      transition: transform .18s ease;
    }
    .play-btn:hover { transform: scale(1.04); }

    /* modal */
    #gallery-modal { z-index: 100; }
    #gallery-modal .modal-inner { max-width: 1100px; width: 100%; max-height: 90vh; }
    #gallery-modal video { width: 100%; height: 100%; display:block; border-radius:6px; }


    /* mobile: nav becomes inline block under the slider */
    @media (max-width: 1023px) {
      .lg\\:absolute { position: relative !important; } /* utility override helper */
      .Aboutsec-nav { position: relative; bottom: auto; right: auto; margin-top: 12px; justify-content:flex-end; }
    }

    .bg-art {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    .bg-art::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url('images/heroimage.jpg') center/cover no-repeat;
      opacity: 0.20;
      pointer-events: none;
      will-change: opacity;
    }

    .bg-art::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(to bottom,
          rgba(239, 233, 225, 1) 0%,
          rgba(239, 233, 225, 0) 25%),
        linear-gradient(to top,
          rgba(239, 233, 225, 1) 0%,
          rgba(239, 233, 225, 0.85) 50%,
          rgba(239, 233, 225, 0.55) 68%,
          rgba(239, 233, 225, 0.18) 78%,
          rgba(239, 233, 225, 0) 90%);
    }

    .facility-container {
      position: relative;
      z-index: 0;
    }

    .facility-bg-art {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(to bottom,
          rgba(239, 233, 225, 1) 0%,
          rgba(239, 233, 225, 0.95) 14%,
          rgba(239, 233, 225, 0.60) 38%,
          rgba(239, 233, 225, 0.30) 64%,
          rgba(239, 233, 225, 0.12) 82%,
          rgba(239, 233, 225, 0) 100%),
        linear-gradient(to top,
          rgba(239, 233, 225, 1) 0%,
          rgba(239, 233, 225, 0.85) 50%,
          rgba(239, 233, 225, 0.55) 68%,
          rgba(239, 233, 225, 0.18) 78%,
          rgba(239, 233, 225, 0) 90%),
        url('images/heroimage.jpg') center/cover no-repeat;
      opacity: 0.50;
    }

    .content-top {
      position: relative;
      z-index: 1;
    }

    .listfacility{
      color: var(--olive-dark);
    }

    
    .titlesub{
      color: var(--muted-olive);
    }


    .image-frame {
      max-width: 660px;
      width: 100%;
      height: 60vh;
      max-height: 700px;
      border-radius: 2px;
      overflow: hidden;
      position: relative;
    }

    .rule {
      width: 72px;
      height: 1px;
      background: #1e1e1e;
      margin-top: .6rem;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .content-top {
      position: relative;
      z-index: 2;
    }

    .below-hero {
      position: relative;
      width: 100%;
      background-color: var(--page-bg);
      overflow: hidden;
    }

    .below-hero .bg {
      position: relative;
      width: 100%;
      height: clamp(20vh, 45vh, 60vh);
      min-height: 20vh;
      display: block;
      overflow: hidden;
    }

    .below-hero .bg::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image: var(--bg-img);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.18;
      pointer-events: none;
      border-width: 1px;
      border-style: solid;
      border-image: linear-gradient(0deg, var(--page-bg), rgba(255, 255, 255, 0) 33%) 1 fill;
    }

    .below-hero .bg img.fullcolor {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.94;
      transition: opacity .2s ease;
    }

    .below-hero .blend-top {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      background: linear-gradient(to top,
          rgba(239, 233, 225, 0) 0%,
          rgba(239, 233, 225, 0.12) 18%,
          rgba(239, 233, 225, 0.30) 36%,
          rgba(239, 233, 225, 0.60) 62%,
          rgba(239, 233, 225, 0.95) 86%,
          rgba(239, 233, 225, 1) 100%);
      transition: opacity .25s ease;
    }

    @media (max-width: 640px) {
      .below-hero .bg {
        height: 45vh;
        min-height: 36vh;
      }
    }

    #explore {
      height: 90vh;
      min-height: 560px;
      background: var(--panel-bg);
      overflow: hidden;
      position: relative;
    }

    .deco-tree {
      position: absolute;
      left: 6%;
      bottom: 0;
      height: 95%;
      opacity: .12;
      pointer-events: none;
      z-index: 1;
      object-fit: contain;
    }

    .pagination {
      width: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      height: 52vh;
      gap: 10px;
      user-select: none;
    }

    .bullet {
      width: 2px;
      background: var(--muted-line);
      flex-grow: 1;
      opacity: .28;
      transition: all .35s ease;
      border-radius: 999px;
      min-height: 18px;
    }

    .bullet.active {
      opacity: 1;
      transform: scaleY(1.05);
      background: #9aa078;
    }

    @media (max-width: 1024px) {
      .pagination {
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 12px;
        margin-top: 1.25rem;
        justify-content: center;
      }

      .bullet {
        width: 10px;
        height: 10px;
        flex: 0 0 auto;
        min-height: 0;
        flex-grow: 0;
        border-radius: 999px;
      }
    }

    

    .nav-btn {
      width: clamp(36px, 3.2vw, 48px);
      height: clamp(36px, 3.2vw, 48px);
      border-radius: 999px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.02);
      cursor: pointer;
      transition: transform .12s ease, opacity .12s;
      flex: 0 0 auto;
    }

    .nav-btn:hover {
      transform: scale(1.04);
      opacity: 1;
    }

    .nav-btn.up svg {
      transform: rotate(-90deg);
    }

    .nav-btn.down svg {
      transform: rotate(90deg);
    }

    .animate-text,
    .animate-img {
      transition: transform var(--transition-slow) var(--easing), opacity var(--transition-slow) var(--easing), filter .45s var(--easing);
      will-change: transform, opacity;
    }

    .animate-text {
      transform: translateY(30px);
      opacity: 0;
      filter: blur(8px);
    }

    .animate-text.in {
      transform: translateY(0);
      opacity: 1;
      filter: blur(0);
    }

    .animate-img {
      transform: scale(1.12);
      opacity: 0;
    }

    .animate-img.in {
      transform: scale(1);
      opacity: 1;
    }

    .img-fade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .intro-copy {
      /* max-width: 550px; */
      /* color: var(--copy-color); */
      /* margin-left: 13.8889vw;
      margin-top: 12.5vh; */
    }

    .heading {
      font-size: clamp(22px, 3.2vw, 40px);
      line-height: 1.02;
      letter-spacing: 0.02em;
      font-weight: 300;
    }

    .sub {
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.16em;
      font-weight: 600;
      margin-top: .6rem;
      font-size: .9rem;
    }

    .right-panel {
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 1100px) {
      .intro-copy {
        margin-left: 8vw;
        margin-top: 9vh;
        max-width: 48vw;
      }
    }

    @media (max-width: 768px) {
      #explore {
        height: auto;
        min-height: 500px;
      }

      .layout-row {
        flex-direction: column;
      }

      .left-panel,
      .right-panel {
        width: 100% !important;
        height: auto;
      }

      .right-panel {
        height: 50vh;
        min-height: 300px;
      }

      .intro-copy {
        margin-left: 4vw;
        margin-top: 4vh;
        max-width: 92%;
      }

      .nav-btn {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .heading {
        font-size: clamp(22px, 7vw, 34px);
      }

      .sub {
        font-size: .8rem;
      }
    }

    .is-transitioning * {
      pointer-events: none;
    }

    #comp-quote-image {
      position: relative;
      width: 100%;
      height: clamp(var(--hero-min), 80vh, 900px);
      overflow: hidden;
      background: var(--warm-top);
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      box-sizing: border-box;
    }

    .img-plax {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .img-plax img {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 120%;
      height: 120%;
      object-fit: cover;
      object-position: center bottom;
      filter: saturate(0.92) contrast(0.98) brightness(0.98);
      -webkit-transform: translateX(-50%);
    }

    .gradient.top {
      position: absolute;
      inset-inline: 0;
      top: 0;
      height: 40%;
      z-index: 14;
      pointer-events: none;
      background: linear-gradient(180deg,
          rgba(239, 233, 225, 1) 0%,
          rgba(239, 233, 225, 0.85) 18%,
          rgba(239, 233, 225, 0.25) 45%,
          rgba(225, 239, 226, 0) 100%);
      mix-blend-mode: normal;
    }

    .gradient.bot {
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      height: 30%;
      z-index: 14;
      pointer-events: none;
      border-image: linear-gradient(0deg, var(--page-bg), rgba(255, 255, 255, 0) 33%) 1 fill;

    }

    .quote-wrap {
      position: absolute;
      z-index: 20;
      top: 15.4%;
      right: 3.5%;
      display: block;
      max-width: 40%;
      transform-origin: top right;
      line-height: 1;
    }

    .quote {
      font-family: "Playfair Display", serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(18px, 1.9vw, 28px);
      color: #ffffff;
      line-height: 1.15;
      margin: 0;
    }

    .quote::before {
      content: "“";
      display: inline-block;
      font-size: 2.2em;
      line-height: 0.8;
      margin-right: 0.25rem;
      vertical-align: top;
      color: rgba(18, 18, 18, 0.8);
      transform: skewX(-2deg) translateY(-6px);
      font-weight: 400;
    }

    @media (max-width: 768px) {
      #comp-quote-image {
        height: 56vh;
      }

      .quote-wrap {
        left: 50%;
        right: auto;
        top: 6%;
        transform: translateX(-50%);
        max-width: 80vw;
      }

      .quote {
        text-align: center;
        font-size: clamp(16px, 4.2vw, 20px);
      }

      .quote::before {
        display: none;
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .quote-wrap {
        right: 6vw;
        max-width: 26ch;
        top: 6.2%;
      }

      .quote {
        font-size: clamp(18px, 2.2vw, 26px);
      }
    }

    .vignette {
      position: absolute;
      inset: 0;
      z-index: 13;
      pointer-events: none;
      background: radial-gradient(60% 40% at 50% 95%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.52) 100%);
      mix-blend-mode: multiply;
      opacity: 0.6;
    }

    .experience {
      position: relative;
      width: 100%;
      background-color: var(--panel-bg);
      padding-block: 3.5rem;
      overflow: hidden;
      color: var(--light-cream);
    }

    .experience p {
      color: var(--light-cream)/90;
    }

    .exp-inner {
      max-width: 1400px;
      margin-inline: auto;
      padding-inline: 1.5rem;
      background-color: var();
    }

    .full-bleed {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      position: relative;
      box-sizing: border-box;
      padding-left: 1.5rem;
    }

    .exp-swiper {
      overflow: visible;
      position: relative;
      box-sizing: border-box;
      width: calc(100% + 360px);
      margin-right: -360px;
      padding-bottom: 0.75rem;
    }

    /* allow horizontal swipes inside the swiper while letting page scroll vertically */
.exp-swiper,
.exp-swiper .swiper-wrapper,
.exp-swiper .swiper-slide {
  touch-action: pan-y;        /* allow vertical page scroll, enable horizontal swipe gestures for JS */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* if your .overlay covers the slide it can block touch — let pointer events through */
.exp-card .overlay {
  pointer-events: none;
}

/* if you have interactive controls inside slides (buttons/links), enable pointer events for them */
.exp-card .overlay a,
.exp-card .overlay button {
  pointer-events: auto;
}


    @media (max-width:1280px) {
      .exp-swiper {
        width: calc(100% + 260px);
        margin-right: -260px;
      }
    }

    @media (max-width:1023px) {
      .exp-swiper {
        width: calc(100% + 96px);
        margin-right: -96px;
      }
    }

    @media (max-width:640px) {
      .exp-swiper {
        width: 100%;
        margin-right: 0;
        padding-left: 0;
      }

      .full-bleed {
        padding-left: 1rem;
      }
    }

    .exp-swiper .swiper-slide {
      width: 450px !important;
      height: 450px !important;
      display: flex;
      align-items: stretch;
    }

    @media (max-width: 1023px) {
      .exp-swiper .swiper-slide {
        width: 100% !important;
        height: 320px !important;
      }
    }

    @media (max-width: 640px) {
      .exp-swiper .swiper-slide {
        width: 100% !important;
        height: 280px !important;
      }
    }

    .exp-card {
      position: relative;
      overflow: hidden;
      display: block;
      border-radius: 0 !important;
      width: 100%;
      height: 100%;
      background: var(--olive-dark);
    }

    .exp-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
      border-radius: 0 !important;
    }

    .exp-card:hover img {
      transform: scale(1.04);
    }

    .overlay {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 220px;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.00) 0%,
          rgba(0, 0, 0, 0.35) 25%,
          rgba(0, 0, 0, 0.60) 55%,
          rgba(0, 0, 0, 0.85) 100%);
      pointer-events: none;
    }

    @media (max-width: 1023px) {
      .overlay {
        height: 160px;
        background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.00) 0%,
            rgba(0, 0, 0, 0.30) 30%,
            rgba(0, 0, 0, 0.55) 65%,
            rgba(0, 0, 0, 0.80) 100%);
      }
    }

    @media (max-width: 640px) {
      .overlay {
        height: 120px;
        background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.00) 0%,
            rgba(0, 0, 0, 0.28) 35%,
            rgba(0, 0, 0, 0.48) 70%,
            rgba(0, 0, 0, 0.72) 100%);
      }
    }

    .caption {
      position: absolute;
      left: 18px;
      bottom: 18px;
      color: var(--light-cream);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .12em;
      font-size: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      pointer-events: none;
      white-space: nowrap;
    }

   
    .swiper-pagination-bullet {
      height: 3px;
      flex: 1;
      background: var(--muted-olive);
      opacity: .28;
      border-radius: 2px;
      margin: 0 6px;
      transform: none;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7));
    }

    .controls {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
      margin-top: 1rem;
    }

  
    .nav-circle {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, .12);
      display: inline-grid;
      place-items: center;
      background: rgba(240, 196, 124);
      box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    }

    .index-counter,
    .total-counter {
      font-weight: 600;
      color: var(--muted-olive);
      font-size: 13px;
    }

    @media (max-width: 1023px) {
      .controls,
      .index-counter,
      .total-counter {
        display: none !important;
      }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Allow Swiper to capture horizontal swipes while still permitting vertical page scroll */
.exp-swiper,
.exp-swiper .swiper-wrapper {
  touch-action: pan-y;
  -ms-touch-action: pan-y;
  -webkit-overflow-scrolling: touch; /* momentum on iOS where applicable */
}




.info-card {
  color: #ffffff;
  padding: 1rem 0 0 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}

.info-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-icon {
  min-width: 28px;
  margin-top: 3px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text {
  font-size: 0.95rem;
  line-height: 1.3;
  color: rgba(185, 147, 108, 0.95);

}

.info-icon i {
  font-size: 18px;
  color: var(--muted-olive);
  width: 22px;
  text-align: center;
}

/* make info card scrollable if content grows */
.info-card {
  padding-left: 12px;
  padding-right: 12px;
  /* max-height: 26vh; */
  overflow: auto;
  margin-bottom: 15px;
}

.info-card::-webkit-scrollbar {
  width: 6px;
}

.info-card::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}


/* accordion */
 .title-rule { height: 2px; background: #bdbdbd; width: 60px; display:inline-block; vertical-align:middle; margin-right:18px; }
    .map-embed { border: 0; }

