/* =========================================================================
   MERITS TRAVEL MANAGEMENT PVT. LTD. — DESIGN SYSTEM
   Palette sampled directly from the corporate logo:
     bird / wordmark red  #E91D26
     bird / tagline blue  #0066B1
   ========================================================================= */

/* ---------- 1. TOKENS ---------- */
:root{
  /* Brand (from logo) */
  --red:        #E91D26;
  --red-dark:   #C4151D;
  --red-soft:   #FDECEE;
  --blue:       #0066B1;
  --blue-dark:  #004E88;
  --blue-soft:  #E8F2FA;

  /* Neutrals */
  --navy:       #0A2540;
  --navy-2:     #0E3153;
  --ink:        #14263B;
  --body:       #4A5C70;
  --muted:      #7C8CA0;
  --line:       #E3E9F0;
  --light:      #F6F9FC;
  --white:      #FFFFFF;

  /* Gradients */
  --grad-brand: linear-gradient(100deg, var(--blue) 0%, #0A7FD4 55%, var(--red) 140%);
  --grad-red:   linear-gradient(100deg, var(--red) 0%, #FF4A54 100%);
  --grad-blue:  linear-gradient(100deg, var(--blue-dark) 0%, var(--blue) 100%);

  /* Type */
  --font-display:'Poppins', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  /* Type scale — single source of truth, used by every container */
  --fs-display: clamp(2.6rem, 5.4vw, 4.4rem);
  --fs-h1:      clamp(2.4rem, 4.8vw, 3.9rem);
  --fs-h2:      clamp(1.75rem, 3.1vw, 2.75rem);
  --fs-h3:      1.25rem;
  --fs-h4:      1.0625rem;
  --fs-lead:    1.0625rem;
  --fs-body:    0.9688rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.7813rem;
  --fs-eyebrow: 0.75rem;

  --lh-tight:   1.08;
  --lh-heading: 1.22;
  --lh-body:    1.72;

  /* Space */
  --sp-section: clamp(2.75rem, 5vw, 4.25rem);
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --maxw:       1240px;

  /* Radius + shadow */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-pill: 999px;
  --sh-xs: 0 2px 10px rgba(10,37,64,.06);
  --sh-sm: 0 8px 24px -10px rgba(10,37,64,.16);
  --sh-md: 0 18px 44px -16px rgba(10,37,64,.22);
  --sh-lg: 0 30px 70px -20px rgba(10,37,64,.28);
  --sh-red:0 16px 34px -12px rgba(233,29,38,.45);
  --sh-blue:0 16px 34px -12px rgba(0,102,177,.42);

  --ease: cubic-bezier(.22,1,.36,1);
  --nav-h: 58px;
}

/* ---------- 2. RESET ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  color:var(--body);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
input,select,textarea{font:inherit;color:inherit}
ul{margin:0;padding:0;list-style:none}
::selection{background:var(--blue);color:#fff}

/* ---------- 3. TYPOGRAPHY (applies in EVERY container) ---------- */
h1,h2,h3,h4,h5,.display,.h1,.h2,.h3,.h4{
  font-family:var(--font-display);
  color:var(--ink);
  margin:0;
  font-weight:700;
  line-height:var(--lh-heading);
  letter-spacing:-.018em;
}
.display{font-size:var(--fs-display);font-weight:800;line-height:var(--lh-tight);letter-spacing:-.032em}
h1,.h1{font-size:var(--fs-h1);font-weight:800;letter-spacing:-.028em;line-height:1.1}
h2,.h2{font-size:var(--fs-h2);font-weight:700;letter-spacing:-.024em}
h3,.h3{font-size:var(--fs-h3);font-weight:600;letter-spacing:-.012em;line-height:1.35}
h4,.h4{font-size:var(--fs-h4);font-weight:600;letter-spacing:-.008em;line-height:1.4}

p{margin:0}
p + p{margin-top:.9em}
.lead{font-size:var(--fs-lead);line-height:1.75;color:var(--body)}
.small{font-size:var(--fs-sm);line-height:1.62}
.xs{font-size:var(--fs-xs);line-height:1.55}
.muted{color:var(--muted)}
.strong{font-weight:600;color:var(--ink)}

.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);
  font-size:var(--fs-eyebrow);font-weight:700;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--blue);
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--red);border-radius:2px}
.eyebrow.center-line::before{display:none}

.text-red{color:var(--red)}
.text-blue{color:var(--blue)}
.text-white{color:#fff}
.text-ink{color:var(--ink)}
.grad-text{background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;color:transparent}

/* Inverted (dark) surfaces keep the same scale, only colours change */
.on-dark{color:rgba(255,255,255,.72)}
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4,
.on-dark .h1,.on-dark .h2,.on-dark .h3,.on-dark .h4,.on-dark .display{color:#fff}
.on-dark .muted{color:rgba(255,255,255,.55)}
.on-dark .eyebrow{color:#7EC4F5}
.on-dark .strong{color:#fff}

/* ---------- 4. LAYOUT ---------- */
.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.container-nar{max-width:860px}
.section{padding-block:var(--sp-section)}
.section-sm{padding-block:calc(var(--sp-section) * .58)}
.bg-light{background:var(--light)}
.bg-white{background:#fff}
.bg-navy{background:var(--navy)}
.bg-blue-soft{background:var(--blue-soft)}

.grid{display:grid;gap:1.5rem}
.g-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.g-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.g-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.g-sidebar{grid-template-columns:minmax(0,1fr) 360px;gap:2.5rem;align-items:start}
.split{grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.split-wide{grid-template-columns:1.2fr .8fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.split-md{grid-template-columns:.8fr 1.2fr;gap:clamp(2rem,5vw,4rem);align-items:center}

.flex{display:flex}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.between{justify-content:space-between}
.center{justify-content:center}
.wrap{flex-wrap:wrap}
.col{flex-direction:column}
.gap-1{gap:.5rem}.gap-2{gap:.75rem}.gap-3{gap:1rem}.gap-4{gap:1.5rem}.gap-5{gap:2rem}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:2.75rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-5{margin-bottom:2.75rem}
.ta-c{text-align:center}
.mx-auto{margin-inline:auto}
.maxw-sm{max-width:420px}.maxw-md{max-width:560px}.maxw-lg{max-width:680px}
.full{width:100%}
.rel{position:relative}

.section-head{max-width:660px;margin-bottom:clamp(2rem,4vw,3.25rem)}
.section-head.ta-c{margin-inline:auto}
.section-head .eyebrow{margin-bottom:.9rem}
.section-head p{margin-top:.9rem}

/* ---------- 5. BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-body);font-weight:600;font-size:var(--fs-sm);
  letter-spacing:.005em;
  padding:.85rem 1.6rem;border-radius:var(--r-pill);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;line-height:1;
}
.btn i{font-size:.8em}
.btn-red{background:var(--grad-red);color:#fff;box-shadow:var(--sh-red)}
.btn-red:hover{transform:translateY(-2px);box-shadow:0 22px 44px -12px rgba(233,29,38,.55)}
.btn-blue{background:var(--grad-blue);color:#fff;box-shadow:var(--sh-blue)}
.btn-blue:hover{transform:translateY(-2px);box-shadow:0 22px 44px -12px rgba(0,102,177,.55)}
.btn-outline{border:1.5px solid var(--line);color:var(--ink);background:#fff}
.btn-outline:hover{border-color:var(--blue);color:var(--blue);transform:translateY(-2px)}
.btn-ghost{border:1.5px solid rgba(255,255,255,.4);color:#fff}
.btn-ghost:hover{background:rgba(255,255,255,.14);transform:translateY(-2px)}
.btn-sm{padding:.6rem 1.15rem;font-size:var(--fs-xs)}
.btn-lg{padding:1rem 2rem;font-size:var(--fs-body)}
.link-arrow{display:inline-flex;align-items:center;gap:.45rem;font-weight:600;font-size:var(--fs-sm);color:var(--blue)}
.link-arrow i{transition:transform .3s var(--ease)}
.link-arrow:hover i{transform:translateX(4px)}

/* ---------- 6. TOP UTILITY BAR ---------- */
.topbar{background:var(--navy);color:rgba(255,255,255,.72);font-size:var(--fs-xs)}
.topbar .container{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:28px}
.topbar a:hover{color:#fff}
.topbar-left{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.topbar-left span,.topbar-left a{display:inline-flex;align-items:center;gap:.45rem}
.topbar-left i{color:var(--red);font-size:.85em}
.topbar-social{display:flex;align-items:center;gap:.35rem}
.topbar-social a{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.08);transition:background .3s,transform .3s}
.topbar-social a:hover{background:var(--red);transform:translateY(-2px)}

/* ---------- 7. NAVBAR ---------- */
.nav-wrap{position:sticky;top:0;z-index:100}
.navbar{background:#fff;border-bottom:1px solid var(--line);transition:box-shadow .35s,padding .35s}
.nav-wrap.stuck .navbar{box-shadow:var(--sh-sm)}
.nav-wrap.stuck .topbar{display:none}
.navbar .container{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;min-height:var(--nav-h)}
.nav-logo img{height:46px;width:auto;transition:height .35s var(--ease)}
.nav-wrap.stuck .nav-logo img{height:40px}

.nav-menu{display:flex;align-items:center;gap:.15rem}
.nav-item{position:relative}
.nav-item.has-mega{display:flex;align-items:center;gap:.05rem}
.nav-link{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:var(--font-body);font-size:var(--fs-sm);font-weight:600;color:var(--ink);
  padding:.7rem .9rem;border-radius:var(--r-sm);
  transition:color .25s,background .25s;
}
.nav-link:hover,.nav-item:hover > .nav-link,.nav-link.active{color:var(--blue);background:var(--blue-soft)}
.nav-caret{
  background:none;border:0;cursor:pointer;color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;
  padding:.7rem .55rem .7rem .1rem;border-radius:var(--r-sm);
  transition:color .25s,background .25s;
}
.nav-caret:hover,.nav-caret[aria-expanded="true"],.nav-item:hover .nav-caret{color:var(--blue);background:var(--blue-soft)}
.nav-caret i{font-size:.62em;transition:transform .3s var(--ease);opacity:.7}
.nav-item:hover .nav-caret i,.nav-item.open .nav-caret i,.nav-caret[aria-expanded="true"] i{transform:rotate(180deg);opacity:1}
/* red underline accent */
.nav-link.active{position:relative}
.nav-link.active::after{
  content:"";position:absolute;left:.9rem;right:.9rem;bottom:.28rem;height:2px;
  background:var(--red);border-radius:2px;
}

/* Mega dropdown */
.mega{
  position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(10px);
  width:min(720px,88vw);background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);padding:1.4rem;
  display:grid;grid-template-columns:1fr 1fr;gap:1.4rem;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.mega::before{content:"";position:absolute;top:-10px;left:0;right:0;height:10px}
.nav-item:hover .mega,.mega:hover,.nav-item.open .mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.mega-col > .mega-head{
  display:flex;align-items:center;gap:.6rem;
  font-family:var(--font-display);font-size:var(--fs-h4);font-weight:600;color:var(--ink);
  padding-bottom:.7rem;margin-bottom:.5rem;border-bottom:1px solid var(--line);
}
.mega-head .ic{width:32px;height:32px;border-radius:9px;display:grid;place-items:center;color:#fff;font-size:.8rem}
.ic-blue{background:var(--grad-blue)}
.ic-red{background:var(--grad-red)}
.mega-link{
  display:block;padding:.5rem .6rem;border-radius:var(--r-sm);
  font-size:var(--fs-sm);font-weight:500;color:var(--body);
  transition:background .22s,color .22s,transform .22s;
}
.mega-link:hover{background:var(--light);color:var(--blue);transform:translateX(3px)}
.mega-link .ml-sub{display:block;font-size:var(--fs-xs);color:var(--muted);font-weight:400;margin-top:.1rem}
.mega-cta{
  grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  background:var(--light);border-radius:var(--r-md);padding:.9rem 1.1rem;margin-top:.2rem;
}
.mega-cta p{font-size:var(--fs-sm);color:var(--ink);font-weight:600;font-family:var(--font-display)}
.mega-cta .xs{font-weight:400;color:var(--muted);font-family:var(--font-body)}

.nav-actions{display:flex;align-items:center;gap:.9rem}
.nav-call{display:flex;align-items:center;gap:.6rem}
.nav-call .ic{width:38px;height:38px;border-radius:50%;background:var(--red-soft);color:var(--red);display:grid;place-items:center;font-size:.9rem}
.nav-call .xs{color:var(--muted);line-height:1.2}
.nav-call .num{font-family:var(--font-display);font-weight:600;font-size:var(--fs-sm);color:var(--ink);line-height:1.2}

.nav-toggle{display:none;width:44px;height:44px;border-radius:var(--r-sm);border:1px solid var(--line);
  align-items:center;justify-content:center;font-size:1.05rem;color:var(--ink)}

/* Mobile drawer */
.nav-mobile{display:none;background:#fff;border-top:1px solid var(--line);max-height:calc(100vh - 60px);overflow-y:auto}
.nav-mobile.open{display:block}
.nav-mobile .container{padding-block:1rem}
.m-link{display:flex;align-items:center;justify-content:space-between;width:100%;
  padding:.85rem .25rem;font-family:var(--font-display);font-weight:600;font-size:var(--fs-body);
  color:var(--ink);border-bottom:1px solid var(--line)}
.m-link i{font-size:.75rem;color:var(--muted);transition:transform .3s var(--ease)}
.m-sub{max-height:0;overflow:hidden;transition:max-height .38s var(--ease)}
.m-item.open .m-sub{max-height:640px}
.m-item.open > .m-link i{transform:rotate(180deg);color:var(--blue)}
.m-sub a{display:block;padding:.6rem .25rem .6rem 1.1rem;font-size:var(--fs-sm);color:var(--body);border-bottom:1px solid var(--line)}
.m-sub a:hover{color:var(--blue)}
.m-sub .grp{padding:.7rem .25rem .3rem;font-size:var(--fs-xs);font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--blue)}

/* ---------- 8. HERO ---------- */
.hero{position:relative;background:var(--navy);overflow:hidden;isolation:isolate;
  min-height:min(90vh,880px);display:flex;flex-direction:column;justify-content:center}
.hero::after{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(1000px 620px at 12% 18%, rgba(0,102,177,.55), transparent 62%),
             radial-gradient(760px 520px at 88% 82%, rgba(233,29,38,.28), transparent 60%),
             linear-gradient(160deg,#08203A 0%, #0A2540 55%, #0B2A47 100%)}
.hero-inner{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);gap:clamp(1.5rem,4vw,3rem);align-items:center;
  padding-block:clamp(2rem,5vw,3.5rem)}
.hero .display{margin-bottom:1.1rem}
.hero-badges{display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:.75rem}
.chip{display:inline-flex;align-items:center;gap:.45rem;padding:.42rem .85rem;border-radius:var(--r-pill);
  font-size:var(--fs-xs);font-weight:600;background:rgba(255,255,255,.1);color:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.16)}
.chip i{color:#7EC4F5;font-size:.85em}
.hero-cta{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:1.75rem}
.hero-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.9rem;margin-top:.9rem;
  padding-top:.75rem;border-top:1px solid rgba(255,255,255,.14)}
.hero-stats .num{font-family:var(--font-display);font-weight:700;font-size:clamp(1.5rem,2.6vw,2rem);color:#fff;line-height:1}
.hero-stats .lbl{font-size:var(--fs-xs);color:rgba(255,255,255,.55);margin-top:.4rem;text-transform:uppercase;letter-spacing:.06em}
.hero-media{position:relative}
.hero-media .shot{border-radius:var(--r-lg);overflow:hidden;aspect-ratio:4/4.6;box-shadow:var(--sh-lg)}
.hero-media .shot img{width:100%;height:100%;object-fit:cover}
.hero-float{position:absolute;background:rgba(255,255,255,.1);backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.18);border-radius:var(--r-md);padding:.95rem 1.1rem;box-shadow:var(--sh-md)}
.hero-float.f1{left:-24px;bottom:38px;width:210px}
.hero-float.f2{right:-14px;top:34px;display:flex;align-items:center;gap:.65rem}
.hero-float .num{font-family:var(--font-display);font-weight:700;color:#fff;font-size:1.05rem;line-height:1.2}

/* search bar */
.searchbar{background:#fff;border-radius:var(--r-lg);box-shadow:var(--sh-lg);padding:.5rem;
  display:grid;grid-template-columns:repeat(3,1fr) auto;gap:.4rem;margin-top:-2.1rem;position:relative;z-index:5}
.sb-field{display:flex;flex-direction:column;gap:.1rem;padding:.5rem .9rem;border-radius:var(--r-md);transition:background .25s}
.sb-field + .sb-field{border-left:1px solid var(--line)}
.sb-field:hover{background:var(--light)}
.sb-field label{font-size:var(--fs-xs);font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.sb-field select{border:0;background:transparent;font-size:var(--fs-sm);font-weight:600;color:var(--ink);outline:none;padding:0}

/* ---------- 9. CARDS ---------- */
.card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.card:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-color:transparent}

.svc{padding:1.85rem 1.6rem;position:relative;isolation:isolate;background:#fff;
  border:1px solid var(--line);border-radius:var(--r-lg);
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.svc::after{content:"";position:absolute;left:0;top:0;height:3px;width:0;background:var(--grad-red);
  transition:width .45s var(--ease);border-radius:3px}
.svc:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-color:transparent}
.svc:hover::after{width:100%}
.svc-ic{width:54px;height:54px;border-radius:15px;display:grid;place-items:center;font-size:1.2rem;color:#fff;
  background:var(--grad-blue);box-shadow:var(--sh-blue);margin-bottom:1.15rem;transition:transform .4s var(--ease)}
.svc:hover .svc-ic{transform:translateY(-3px) rotate(-6deg)}
.svc:nth-child(even) .svc-ic{background:var(--grad-red);box-shadow:var(--sh-red)}
.svc h3{margin-bottom:.55rem}
.svc ul{margin-top:.85rem;display:grid;gap:.4rem}
.svc ul li{display:flex;gap:.5rem;font-size:var(--fs-sm);color:var(--body)}
.svc ul li i{color:var(--red);font-size:.72rem;margin-top:.42rem;flex:none}

/* Tour / package card */
.tour{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;display:flex;flex-direction:column;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.tour:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-color:transparent}
.tour-img{position:relative;aspect-ratio:16/11;overflow:hidden;background:var(--grad-blue)}
.tour-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.tour:hover .tour-img img{transform:scale(1.07)}
.tour-img .ph{position:absolute;inset:0;display:grid;place-items:center;color:rgba(255,255,255,.9);font-size:2rem}
.tour-tag{position:absolute;left:.85rem;top:.85rem;padding:.34rem .7rem;border-radius:var(--r-pill);
  background:rgba(255,255,255,.94);color:var(--blue);font-size:var(--fs-xs);font-weight:700;letter-spacing:.03em}
.tour-fav{position:absolute;right:.85rem;top:.85rem;width:34px;height:34px;border-radius:50%;
  background:rgba(255,255,255,.94);display:grid;place-items:center;color:var(--ink);font-size:.85rem;transition:.3s}
.tour-fav:hover,.tour-fav.on{background:var(--red);color:#fff;transform:scale(1.08)}
.tour-body{padding:1.25rem 1.3rem 1.4rem;display:flex;flex-direction:column;flex:1}
.tour-meta{display:flex;flex-wrap:wrap;gap:.85rem;margin-bottom:.6rem;font-size:var(--fs-xs);color:var(--muted)}
.tour-meta span{display:inline-flex;align-items:center;gap:.35rem}
.tour-meta i{color:var(--blue)}
.tour-body h3{margin-bottom:.5rem}
.tour-body > p{font-size:var(--fs-sm);color:var(--body)}
.tour-foot{margin-top:auto;padding-top:1.1rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;
  border-top:1px solid var(--line)}
.price .xs{color:var(--muted);display:block;line-height:1.2}
.price .amt{font-family:var(--font-display);font-weight:700;font-size:1.15rem;color:var(--red);line-height:1.2}
.stars{color:#F5A623;font-size:.78rem;letter-spacing:.05em}

/* Country / visa card */
.country{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.country:hover{transform:translateY(-5px);box-shadow:var(--sh-md);border-color:transparent}
.country-top{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.country-flag{width:46px;height:46px;flex:none;border-radius:50%;background:var(--light);
  border:1px solid var(--line);display:grid;place-items:center;font-size:1.4rem;line-height:1;
  box-shadow:var(--sh-xs);overflow:hidden}
.country ul{display:grid;gap:.45rem}
.country ul li{display:flex;gap:.5rem;font-size:var(--fs-sm);color:var(--body)}
.country ul li i{color:var(--blue);font-size:.7rem;margin-top:.45rem;flex:none}

/* Amenity chips */
.amenities{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:.75rem}
.amenity{display:flex;align-items:center;gap:.65rem;padding:.75rem .9rem;border:1px solid var(--line);
  border-radius:var(--r-md);background:#fff;font-size:var(--fs-sm);font-weight:500;color:var(--ink);
  transition:border-color .3s,transform .3s var(--ease),box-shadow .3s}
.amenity:hover{border-color:var(--blue);transform:translateY(-3px);box-shadow:var(--sh-xs)}
.amenity i{width:32px;height:32px;border-radius:9px;display:grid;place-items:center;
  background:var(--blue-soft);color:var(--blue);font-size:.85rem;flex:none}
.amenity.off{color:var(--muted)}
.amenity.off i{background:var(--red-soft);color:var(--red)}

/* Team */
.team{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;text-align:center;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.team:hover{transform:translateY(-6px);box-shadow:var(--sh-md);border-color:transparent}
.team-ph{aspect-ratio:1/1;overflow:hidden;background:var(--light)}
.team-ph img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.team:hover .team-ph img{transform:scale(1.05)}
.team-body{padding:1.15rem 1rem 1.35rem}
.team-body .role{font-size:var(--fs-xs);font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--red);margin-top:.3rem}

/* Feature / why-us */
.feat{display:flex;gap:1rem}
.feat-ic{width:46px;height:46px;flex:none;border-radius:13px;display:grid;place-items:center;font-size:1rem;
  background:var(--blue-soft);color:var(--blue)}
.feat:nth-child(even) .feat-ic{background:var(--red-soft);color:var(--red)}
.feat h4{margin-bottom:.25rem}
.feat p{font-size:var(--fs-sm)}

/* Stat band */
.statband{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.5rem;text-align:center}
.statband .num{font-family:var(--font-display);font-weight:700;font-size:clamp(1.9rem,3.4vw,2.7rem);line-height:1;
  background:var(--grad-brand);-webkit-background-clip:text;background-clip:text;color:transparent}
.statband .lbl{font-size:var(--fs-xs);text-transform:uppercase;letter-spacing:.09em;color:rgba(255,255,255,.55);margin-top:.6rem}

/* ---------- 10. PAGE HEADER (inner pages) ---------- */
.pagehead{position:relative;background:var(--navy);overflow:hidden;isolation:isolate;
  padding-block:clamp(3.75rem,7.5vw,6rem)}
.pagehead::after{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(820px 480px at 18% 20%, rgba(0,102,177,.5), transparent 62%),
             radial-gradient(620px 420px at 85% 90%, rgba(233,29,38,.26), transparent 60%),
             linear-gradient(155deg,#08203A,#0A2540)}
.crumbs{display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;font-size:var(--fs-xs);color:rgba(255,255,255,.55);margin-bottom:1rem}
.crumbs a:hover{color:#fff}
.crumbs i{font-size:.6rem;opacity:.6}
.crumbs .cur{color:#7EC4F5;font-weight:600}

/* ---------- 11. ITINERARY ---------- */
.itin{border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff}
.itin-day + .itin-day{border-top:1px solid var(--line)}
.itin-q{display:flex;align-items:center;gap:1rem;width:100%;padding:1.15rem 1.35rem;text-align:left;transition:background .25s}
.itin-q:hover{background:var(--light)}
.itin-day.open .itin-q{background:var(--blue-soft)}
.itin-num{width:44px;height:44px;flex:none;border-radius:12px;display:grid;place-items:center;
  font-family:var(--font-display);font-weight:700;font-size:var(--fs-sm);
  background:var(--grad-blue);color:#fff;box-shadow:var(--sh-blue)}
.itin-day.open .itin-num{background:var(--grad-red);box-shadow:var(--sh-red)}
.itin-t{flex:1;min-width:0}
.itin-t .d{font-size:var(--fs-xs);font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue)}
.itin-t h4{margin-top:.15rem}
.itin-q > i{color:var(--muted);font-size:.8rem;transition:transform .35s var(--ease);flex:none}
.itin-day.open .itin-q > i{transform:rotate(180deg);color:var(--blue)}
.itin-a{max-height:0;overflow:hidden;transition:max-height .42s var(--ease)}
.itin-a-in{padding:0 1.35rem 1.35rem 5.3rem}
.itin-a-in p{font-size:var(--fs-sm)}
.itin-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.85rem}
.itin-tags span{display:inline-flex;align-items:center;gap:.35rem;padding:.3rem .65rem;border-radius:var(--r-pill);
  background:var(--light);border:1px solid var(--line);font-size:var(--fs-xs);color:var(--body)}
.itin-tags i{color:var(--blue);font-size:.72em}

/* include / exclude */
.incl{display:grid;gap:.55rem}
.incl li{display:flex;gap:.6rem;font-size:var(--fs-sm);color:var(--body)}
.incl li i{margin-top:.3rem;flex:none;font-size:.8rem}
.incl.yes li i{color:#12A150}
.incl.no li i{color:var(--red)}

/* Booking sidebar */
.booking{position:sticky;top:calc(var(--nav-h) + 16px);background:#fff;border:1px solid var(--line);
  border-radius:var(--r-lg);box-shadow:var(--sh-sm);overflow:hidden}
.booking-top{background:var(--grad-blue);color:#fff;padding:1.35rem}
.booking-top .xs{color:rgba(255,255,255,.75)}
.booking-top .amt{font-family:var(--font-display);font-weight:700;font-size:1.75rem;line-height:1.1}
.booking-body{padding:1.35rem}
.b-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.6rem 0;font-size:var(--fs-sm)}
.b-row + .b-row{border-top:1px dashed var(--line)}
.b-row .k{color:var(--muted)}
.b-row .v{font-weight:600;color:var(--ink)}

/* ---------- 12. FORMS ---------- */
.field{display:block;margin-bottom:1rem}
.field label{display:block;font-size:var(--fs-xs);font-weight:700;letter-spacing:.05em;color:var(--ink);margin-bottom:.4rem}
.field input,.field select,.field textarea{
  width:100%;padding:.8rem .95rem;border:1px solid var(--line);border-radius:var(--r-md);
  background:#fff;font-size:var(--fs-sm);color:var(--ink);outline:none;
  transition:border-color .25s,box-shadow .25s}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,102,177,.12)}
.field textarea{resize:vertical;min-height:110px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 1rem}

/* ---------- 13. FAQ ---------- */
.faq{border-top:1px solid var(--line)}
.faq-i{border-bottom:1px solid var(--line)}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:1rem;width:100%;
  padding:1.15rem .25rem;text-align:left;font-family:var(--font-display);font-weight:600;
  font-size:var(--fs-h4);color:var(--ink);transition:color .25s}
.faq-q:hover{color:var(--blue)}
.faq-q i{flex:none;font-size:.8rem;color:var(--blue);transition:transform .35s var(--ease)}
.faq-i.open .faq-q i{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.faq-a p{padding-bottom:1.15rem;font-size:var(--fs-sm);color:var(--body);max-width:70ch}

/* ---------- 14. TESTIMONIAL / MISC ---------- */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem;height:100%;
  display:flex;flex-direction:column}
.quote .stars{margin-bottom:.85rem}
.quote p{font-size:var(--fs-sm);color:var(--body);flex:1}
.quote-by{display:flex;align-items:center;gap:.75rem;margin-top:1.25rem;padding-top:1.1rem;border-top:1px solid var(--line)}
.avatar{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;font-family:var(--font-display);
  font-weight:600;font-size:var(--fs-xs);color:#fff;background:var(--grad-blue);flex:none}

.md-note{position:relative;padding-left:1.5rem}
.md-note::before{content:"";position:absolute;left:0;top:.35rem;bottom:.35rem;width:3px;border-radius:3px;background:var(--grad-red)}

.marquee{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee-t{display:flex;gap:2.75rem;width:max-content;animation:mq 32s linear infinite}
.mq-item{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-display);
  font-weight:700;font-size:1rem;color:var(--ink);white-space:nowrap}
.mq-item .mq-ic{width:34px;height:34px;flex:none;border-radius:50%;display:grid;place-items:center;
  background:var(--blue-soft);color:var(--blue);font-size:.9rem}
.mq-item:nth-child(even) .mq-ic{background:var(--red-soft);color:var(--red)}
@keyframes mq{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.5rem;position:relative}
.step{text-align:center;position:relative}
.step-n{width:58px;height:58px;margin:0 auto 1rem;border-radius:50%;display:grid;place-items:center;
  font-family:var(--font-display);font-weight:700;background:#fff;border:2px solid var(--line);color:var(--blue);
  transition:border-color .4s,box-shadow .4s,color .4s}
.step.on .step-n{border-color:var(--red);color:var(--red);box-shadow:0 0 0 7px var(--red-soft)}
.steps-5{grid-template-columns:repeat(5,minmax(0,1fr))}
.step h4{margin-bottom:.35rem}
.step p{font-size:var(--fs-sm)}

.gal{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.85rem}
.gal-i{aspect-ratio:1/1;border-radius:var(--r-md);overflow:hidden;background:var(--grad-blue);
  display:grid;place-items:center;color:rgba(255,255,255,.85);font-size:1.4rem}
.gal-i img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.gal-i:hover img{transform:scale(1.08)}

/* CTA band */
.cta-band{position:relative;overflow:hidden;isolation:isolate;background:var(--navy);border-radius:var(--r-lg);
  padding:clamp(2.25rem,5vw,3.5rem);text-align:center}
.cta-band::after{content:"";position:absolute;inset:0;z-index:-1;
  background:radial-gradient(600px 320px at 20% 20%,rgba(0,102,177,.55),transparent 60%),
             radial-gradient(520px 300px at 82% 84%,rgba(233,29,38,.35),transparent 60%)}

/* ---------- 15. FOOTER ---------- */
.footer{background:var(--navy);color:rgba(255,255,255,.66);padding-top:clamp(3rem,6vw,4.5rem)}
.footer h4{color:#fff;margin-bottom:1.1rem}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.25fr;gap:2.5rem;padding-bottom:2.75rem}
.footer-logo{background:#fff;border-radius:var(--r-md);padding:.65rem .8rem;display:inline-block;margin-bottom:1.1rem}
.footer-logo img{height:40px;width:auto}
.footer a:hover{color:#fff}
.footer ul{display:grid;gap:.6rem;font-size:var(--fs-sm)}
.footer ul a{display:inline-flex;align-items:center;gap:.5rem;transition:transform .25s var(--ease),color .25s}
.footer ul a::before{content:"\f105";font-family:"Font Awesome 6 Free";font-weight:900;font-size:.7rem;color:var(--red)}
.footer ul a:hover{transform:translateX(3px)}
.f-contact{display:grid;gap:.75rem;font-size:var(--fs-sm)}
.f-contact li{display:flex;gap:.7rem}
.f-contact i{width:30px;height:30px;border-radius:9px;background:rgba(255,255,255,.07);color:var(--red);
  display:grid;place-items:center;font-size:.78rem;flex:none}
.socials{display:flex;gap:.5rem;margin-top:1.25rem}
.socials a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;
  transition:background .3s,transform .3s var(--ease)}
.socials a:hover{background:var(--red);color:#fff;transform:translateY(-3px)}
.footer-bar{border-top:1px solid rgba(255,255,255,.1);padding-block:1.35rem;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;font-size:var(--fs-xs)}
.footer-bar .pay{display:flex;gap:.6rem;font-size:1.35rem;opacity:.6}

/* newsletter */
.nl{display:flex;gap:.5rem;margin-top:.35rem}
.nl input{flex:1;min-width:0;padding:.7rem 1rem;border-radius:var(--r-pill);border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);color:#fff;font-size:var(--fs-sm);outline:none}
.nl input::placeholder{color:rgba(255,255,255,.4)}
.nl input:focus{border-color:var(--red)}
.nl button{width:44px;height:44px;flex:none;border-radius:50%;background:var(--grad-red);color:#fff;
  display:grid;place-items:center;box-shadow:var(--sh-red);transition:transform .3s var(--ease)}
.nl button:hover{transform:translateY(-2px)}

/* ---------- 16. FLOATING WHATSAPP ---------- */
.wa{position:fixed;right:1.25rem;bottom:1.25rem;z-index:90;width:54px;height:54px;border-radius:50%;
  background:#25D366;color:#fff;display:grid;place-items:center;font-size:1.45rem;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.6);animation:wapulse 2.6s ease-in-out infinite}
@keyframes wapulse{0%,100%{box-shadow:0 14px 30px -8px rgba(37,211,102,.6)}
  50%{box-shadow:0 14px 30px -8px rgba(37,211,102,.85),0 0 0 12px rgba(37,211,102,.12)}}

/* ---------- 17. REVEAL ---------- */
[data-rv]{opacity:0;transform:translateY(24px)}
[data-rv].in{opacity:1;transform:none;transition:opacity .75s var(--ease),transform .75s var(--ease)}

/* ---------- 18. A11Y ---------- */
:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline:2px solid var(--blue);outline-offset:3px;border-radius:6px}
.sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width:1080px){
  .nav-call{display:none}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media (max-width:960px){
  .nav-menu,.nav-actions .btn{display:none}
  .nav-toggle{display:flex}
  .hero-inner{grid-template-columns:minmax(0,1fr);gap:1.75rem;align-items:stretch}
  .hero-media{order:-1;max-width:460px;margin-inline:auto;width:100%;height:auto;min-width:0}
  .hero-banner{flex:none;aspect-ratio:16/10;min-height:0}
  .hero-float.f1{left:8px;bottom:12px;width:180px}
  .hero-float.f2{right:8px;top:12px}
  .split,.split-wide,.split-md,.g-sidebar{grid-template-columns:1fr}
  .booking{position:static}
  .g-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .g-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .steps,.steps-5{grid-template-columns:repeat(2,minmax(0,1fr));gap:2rem}
  .searchbar{grid-template-columns:1fr 1fr;margin-top:1.5rem}
  .sb-field + .sb-field{border-left:0}
  .searchbar .btn{grid-column:1/-1}
  .gal{grid-template-columns:repeat(3,minmax(0,1fr))}
  .topbar-left span:not(.xs){display:none}
  .topbar-social span.xs{display:none}
}
@media (max-width:680px){
  .g-2,.g-3,.g-4,.statband,.hero-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .gal{grid-template-columns:repeat(2,minmax(0,1fr))}
  .itin-a-in{padding-left:1.35rem}
  .topbar-left{gap:.9rem}
  .topbar-left span:nth-child(2){display:none}
  .searchbar{grid-template-columns:1fr}
  .amenities{grid-template-columns:1fr 1fr}
  /* Topbar: on phones keep only the phone number so nothing can overflow */
  .topbar .container{justify-content:center;min-height:36px}
  .topbar-left{gap:.75rem;justify-content:center}
  .topbar-left a[href^="mailto"]{display:none}
  .topbar-social{display:none}
}
@media (max-width:460px){
  .g-2,.g-3,.g-4{grid-template-columns:1fr}
  .steps,.steps-5{grid-template-columns:1fr}
  .hero-float{display:none}
  .amenities{grid-template-columns:1fr}
  .hero-stats,.statband{grid-template-columns:1fr 1fr}
}
/* Short-height viewports (landscape phones, small browser windows) —
   height-based, independent of width, so the hero adapts wherever it's
   actually short rather than only where it's narrow. */
@media (max-height:520px){
  .topbar{display:none}
  .navbar .container{min-height:46px}
  .nav-logo img{height:32px}
  .hero .hero-inner{padding-block:.6rem;gap:1rem}
  .hero .display{font-size:clamp(1.5rem,4vh,2.1rem);margin-bottom:.35rem}
  .hero .lead{display:none}
  .hero .hero-cta{margin-top:.5rem}
  .hero .hero-media{display:none}
  .hero .searchbar{margin-top:.75rem}
  .hero .sb-field{padding:.35rem .7rem}
}
@media (max-height:520px) and (min-width:960px){
  .hero .hero-media{display:flex}
  .hero .hero-banner{min-height:0;max-height:38vh;flex:none}
}
/* Flex text blocks must be allowed to shrink, or long words push the layout wide */
.feat > div,.itin-t,.quote-by > span,.nav-call > span{min-width:0}
.feat h4,.feat p,.itin-t h4{overflow-wrap:anywhere}

/* ---------- 20. MOTION PREFERENCE ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;
    transition-duration:.001ms !important;scroll-behavior:auto !important}
  [data-rv]{opacity:1 !important;transform:none !important}
}


/* =========================================================================
   ATMOSPHERE LAYER  —  elegant, restrained travel ambience
   Sea waves · soft light orbs · fine line-art motifs · drifting planes
   All decorative: pointer-events:none, aria-hidden, z-index below content.
   ========================================================================= */

/* ---------------- container ---------------- */
.atmos{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:-1}
.atmos > *{position:absolute}

/* ---------------- soft light orbs ---------------- */
.orb{border-radius:50%;filter:blur(70px);opacity:.34;will-change:transform}
.orb-a{width:520px;height:520px;background:radial-gradient(circle,#1E88D6,transparent 68%);
  top:-190px;left:-130px;animation:orbA 30s ease-in-out infinite}
.orb-b{width:440px;height:440px;background:radial-gradient(circle,#E91D26,transparent 68%);
  bottom:-200px;right:-120px;opacity:.22;animation:orbB 36s ease-in-out infinite}
.orb-c{width:360px;height:360px;background:radial-gradient(circle,#00BFA5,transparent 70%);
  top:26%;right:16%;opacity:.16;animation:orbC 26s ease-in-out infinite}
@keyframes orbA{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(70px,50px) scale(1.12)}}
@keyframes orbB{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-60px,-40px) scale(1.08)}}
@keyframes orbC{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-46px,54px) scale(.9)}}

/* ---------------- fine dot grid ---------------- */
.dotgrid{inset:0;opacity:.16;
  background-image:radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 40%,#000,transparent 78%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 40%,#000,transparent 78%)}

/* ---------------- sea / waves ---------------- */
.sea{left:0;right:0;bottom:0;height:190px;overflow:hidden}
.sea svg{position:absolute;left:0;bottom:0;width:200%;height:100%}
.wave-1{opacity:.16;animation:swell 26s linear infinite}
.wave-2{opacity:.12;animation:swell 34s linear infinite reverse;bottom:-8px}
.wave-3{opacity:.09;animation:swell 44s linear infinite;bottom:-18px}
@keyframes swell{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.sea-shimmer{left:0;right:0;bottom:0;height:120px;
  background:linear-gradient(180deg,transparent,rgba(126,196,245,.10));}

/* ---------------- fine line-art motifs ---------------- */
.lart{stroke:currentColor;fill:none;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round;
  color:#fff;opacity:.15;animation:hover 11s ease-in-out infinite}
.lart.warm{color:#FF9AA0;opacity:.26}
.lart.cool{color:#8FCDF7;opacity:.26}
.lart.gold{color:#FFD98A;opacity:.24}
@keyframes hover{0%,100%{transform:translateY(0) rotate(var(--r,0deg))}
  50%{transform:translateY(-14px) rotate(calc(var(--r,0deg) + 4deg))}}

/* ---------------- flight paths ---------------- */
.fpath{stroke:#fff;stroke-width:1.5;fill:none;stroke-dasharray:6 10;stroke-linecap:round;opacity:.20}
.fpath-red{stroke:#FF8A90;opacity:.30}
.fpath-glow{stroke:#8FCDF7;opacity:.26}
.fpath-dash{animation:dashmove 26s linear infinite}
@keyframes dashmove{to{stroke-dashoffset:-380}}

/* ---------------- planes ---------------- */
.plane{opacity:.85;filter:drop-shadow(0 6px 16px rgba(0,0,0,.3))}
.plane-1{width:52px;top:14%;left:-10%;animation:fly1 30s linear infinite}
.plane-2{width:34px;top:62%;left:-10%;animation:fly2 40s linear infinite;animation-delay:-12s}
.plane-3{width:26px;top:36%;left:-10%;animation:fly1 50s linear infinite;animation-delay:-22s;opacity:.5}
@keyframes fly1{0%{transform:translate(0,0) rotate(-5deg);opacity:0}
  9%{opacity:.9}91%{opacity:.9}100%{transform:translate(124vw,-80px) rotate(-5deg);opacity:0}}
@keyframes fly2{0%{transform:translate(0,0) rotate(3deg);opacity:0}
  10%{opacity:.72}90%{opacity:.72}100%{transform:translate(124vw,-52px) rotate(3deg);opacity:0}}

/* ---------------- refined stamp ---------------- */
.stamp{border:1.6px solid currentColor;border-radius:50%;width:96px;height:96px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.1rem;
  font-family:var(--font-display);font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:#fff;opacity:.16;line-height:1.2}
.stamp.warm{color:#FF9AA0;opacity:.24}
.stamp.cool{color:#8FCDF7;opacity:.24}
.stamp .big{font-size:.86rem;letter-spacing:.06em}
.stamp .tiny{font-size:.46rem;opacity:.9}
.stamp::before{content:"";position:absolute;inset:5px;border:1px dashed currentColor;
  border-radius:50%;opacity:.5}

/* =========================================================================
   MOVING HERO BANNER
   ========================================================================= */
.hero{position:relative;isolation:isolate;overflow:hidden}

/* rotating scene backdrop */
.hero-bg{position:absolute;inset:0;z-index:-2;overflow:hidden}
.hero-bg .hb{position:absolute;inset:0;opacity:0;transform:scale(1.06);
  transition:opacity 1.5s var(--ease), transform 9s linear}
.hero-bg .hb.on{opacity:.42;transform:scale(1.14)}
.hero-bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(8,32,58,.94) 0%,rgba(10,37,64,.84) 42%,rgba(10,37,64,.62) 100%)}

/* right-hand banner panel */
.hero-media{height:100%;min-width:0;display:flex;flex-direction:column;gap:.85rem}
.hero-banner{position:relative;border-radius:var(--r-lg);overflow:hidden;flex:1;min-height:340px;
  box-shadow:var(--sh-lg);background:var(--navy)}
.hero-banner .hs{position:absolute;inset:0;opacity:0;transform:scale(1.05);
  transition:opacity 1.2s var(--ease), transform 8s linear}
.hero-banner .hs.on{opacity:1;transform:scale(1.13)}
.hero-banner .hs .scene{width:100%;height:100%}
.hero-banner .hb-ov{position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,37,64,0) 46%,rgba(10,37,64,.86) 100%)}
.hero-banner .hb-cap{position:absolute;left:0;right:0;bottom:0;padding:1.3rem 1.4rem 1.5rem;color:#fff}
.hero-banner .hb-cap .pin{display:inline-flex;align-items:center;gap:.4rem;
  font-size:var(--fs-xs);font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#8FCDF7}
.hero-banner .hb-cap h3{color:#fff;font-size:1.2rem;margin-top:.3rem}
.hero-banner .hb-cap p{font-size:var(--fs-sm);color:rgba(255,255,255,.74);margin-top:.15rem}
.hero-banner .hb-cap > *{opacity:0;transform:translateY(10px);
  animation:capIn .8s var(--ease) forwards}
.hero-banner .hb-cap > *:nth-child(2){animation-delay:.09s}
.hero-banner .hb-cap > *:nth-child(3){animation-delay:.18s}
@keyframes capIn{to{opacity:1;transform:none}}

/* dots + arrows */
.hero-dots{display:flex;align-items:center;gap:.5rem;flex:none}
.hero-dots button{width:26px;height:4px;border-radius:3px;background:rgba(255,255,255,.26);
  transition:background .35s,width .35s var(--ease)}
.hero-dots button.on{background:var(--red);width:42px}
.hero-nav{position:absolute;right:1rem;top:1rem;display:flex;gap:.45rem;z-index:2}
.hero-nav button{width:36px;height:36px;border-radius:50%;background:rgba(10,37,64,.5);
  border:1px solid rgba(255,255,255,.26);color:#fff;display:grid;place-items:center;
  font-size:.72rem;backdrop-filter:blur(6px);transition:background .3s,transform .3s var(--ease)}
.hero-nav button:hover{background:var(--red);border-color:transparent;transform:translateY(-2px)}

/* progress bar */
.hero-prog{position:absolute;left:0;right:0;bottom:0;height:3px;background:rgba(255,255,255,.14);z-index:2}
.hero-prog span{display:block;height:100%;width:0;background:var(--grad-red)}
.hero-prog span.run{animation:progrun var(--dur,7s) linear forwards}
@keyframes progrun{to{width:100%}}

/* =========================================================================
   SECTION DIVIDERS  (wave / sea)
   ========================================================================= */
.wave-div{display:block;width:100%;height:auto;line-height:0}
.wave-div svg{display:block;width:100%;height:70px}
.wave-top{margin-bottom:-1px}
.wave-bottom{margin-top:-1px}

/* =========================================================================
   FOOTER DECOR
   ========================================================================= */
.footer{position:relative;overflow:hidden;isolation:isolate}
.footer .atmos{z-index:-1}
.footer-wave{position:absolute;left:0;right:0;top:0;height:90px;overflow:hidden;pointer-events:none;z-index:0}
.footer-wave svg{width:200%;height:100%;display:block;opacity:.10;animation:swell 40s linear infinite}
.footer-strip{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.5rem 1.9rem;
  padding:1.1rem 0;margin-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.09);
  border-top:1px solid rgba(255,255,255,.09)}
.footer-strip span{display:inline-flex;align-items:center;gap:.55rem;font-size:var(--fs-xs);
  font-weight:600;letter-spacing:.05em;color:rgba(255,255,255,.66)}
.footer-strip i{color:var(--red);font-size:.9rem}
.footer-strip span:nth-child(even) i{color:#8FCDF7}
.footer-route{display:flex;align-items:center;justify-content:center;gap:.7rem;
  margin:0 auto 1.5rem;max-width:420px;color:rgba(255,255,255,.55);font-size:var(--fs-xs);
  font-weight:600;letter-spacing:.09em;text-transform:uppercase}
.footer-route .pin{display:inline-flex;align-items:center;gap:.4rem;flex:none}
.footer-route .pin i{width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.08);
  display:grid;place-items:center;font-size:.62rem;color:#8FCDF7}
.footer-route .ln{flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);
  position:relative}
.footer-route .fr-fly{position:absolute;top:50%;left:0;width:17px;height:auto;
  fill:var(--red);transform:translate(-50%,-50%) rotate(-6deg);
  animation:routefly 9s ease-in-out infinite;filter:drop-shadow(0 1px 2px rgba(0,0,0,.35))}
@keyframes routefly{0%{left:0%;opacity:0}12%{opacity:1}88%{opacity:1}100%{left:100%;opacity:0}}

/* =========================================================================
   MOTION PREFERENCE
   ========================================================================= */
@media (prefers-reduced-motion:reduce){
  .orb,.lart,.fpath-dash,.plane-1,.plane-2,.plane-3,
  .wave-1,.wave-2,.wave-3,.footer-wave svg,.footer-route .fr-fly{animation:none}
  .plane-1,.plane-2,.plane-3{left:14%;opacity:.6}
  .hero-bg .hb,.hero-banner .hs{transition:opacity .3s}
  .hero-bg .hb.on,.hero-banner .hs.on{transform:none}
  .hero-prog span.run{animation:none;width:100%}
  .hero-banner .hb-cap > *{animation:none;opacity:1;transform:none}
}

@media (max-width:680px){
  .lart.hide-sm,.stamp{display:none}
  .plane-2,.plane-3{display:none}
  .sea{height:130px}
  .footer-strip{gap:.5rem 1.1rem}
}



/* =========================================================================
   DESTINATION SHOWCASE + SERVICE VIBE TILES
   ========================================================================= */
.dest-card{position:relative;border-radius:var(--r-lg);overflow:hidden;aspect-ratio:3/4;
  display:block;box-shadow:var(--sh-sm);
  transition:transform .45s var(--ease),box-shadow .45s var(--ease)}
.dest-card:hover{transform:translateY(-8px);box-shadow:var(--sh-lg)}
.dest-card .dc-ov{position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,37,64,0) 38%,rgba(10,37,64,.55) 66%,rgba(10,37,64,.92) 100%)}
.dest-card .dc-body{position:absolute;left:0;right:0;bottom:0;padding:1.1rem;color:#fff;
  transform:translateY(6px);transition:transform .45s var(--ease)}
.dest-card:hover .dc-body{transform:translateY(0)}
.dest-card .dc-body h3{color:#fff;font-size:1.05rem}
.dest-card .dc-body .dc-meta{font-size:var(--fs-xs);color:rgba(255,255,255,.72);margin-top:.2rem;
  display:flex;align-items:center;gap:.4rem}
.dest-card .dc-pin{position:absolute;top:.8rem;left:.8rem;padding:.28rem .6rem;border-radius:var(--r-pill);
  background:rgba(255,255,255,.92);color:var(--blue);font-size:.66rem;font-weight:700;
  letter-spacing:.06em;text-transform:uppercase}
.dest-card .dc-go{position:absolute;right:.9rem;bottom:1.1rem;width:34px;height:34px;border-radius:50%;
  background:var(--red);color:#fff;display:grid;place-items:center;font-size:.72rem;
  opacity:0;transform:translateX(-6px);transition:opacity .4s var(--ease),transform .4s var(--ease)}
.dest-card:hover .dc-go{opacity:1;transform:none}

.vibe-tile{position:relative;overflow:hidden;isolation:isolate;border-radius:var(--r-lg);
  padding:1.6rem;color:#fff;box-shadow:var(--sh-md);display:block;
  transition:transform .45s var(--ease),box-shadow .45s var(--ease)}
.vibe-tile:hover{transform:translateY(-6px);box-shadow:var(--sh-lg)}
.vibe-tile::after{content:"";position:absolute;inset:0;z-index:-1}
.vibe-tile.v-blue::after{background:var(--grad-blue)}
.vibe-tile.v-red::after{background:var(--grad-red)}
.vibe-tile.v-navy::after{background:linear-gradient(120deg,#0A2540,#164A73)}
.vibe-tile .vt-ic{position:absolute;right:-14px;bottom:-18px;font-size:6.2rem;opacity:.14;
  transform:rotate(-12deg);pointer-events:none}
.vibe-tile h3{color:#fff}
.vibe-tile p{color:rgba(255,255,255,.8);font-size:var(--fs-sm)}
.vibe-tile .link-arrow{color:#fff}
.tour:hover .scene,.dest-card:hover .scene{transform:scale(1.07)}

/* ---------- DESTINATION SCENE ARTWORK ---------- */
.scene{background-size:cover;background-position:center;background-repeat:no-repeat;width:100%;height:100%;display:block}
.scene-kathmandu{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23FF9E6D%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%23FFC48C%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FFE3C0%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22130%22%20r%3D%22110.39999999999999%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22130%22%20r%3D%2273.60000000000001%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22130%22%20r%3D%2246%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.35%22%3E%3Cellipse%20cx%3D%22140%22%20cy%3D%2290%22%20rx%3D%2236.0%22%20ry%3D%2216.2%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22167.0%22%20cy%3D%2294.5%22%20rx%3D%2227.0%22%20ry%3D%2212.6%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22114.8%22%20cy%3D%2295.4%22%20rx%3D%2223.400000000000002%22%20ry%3D%2210.8%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%20opacity%3D%220.25%22%3E%3Cellipse%20cx%3D%22560%22%20cy%3D%2260%22%20rx%3D%2228.0%22%20ry%3D%2212.6%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22581.0%22%20cy%3D%2263.5%22%20rx%3D%2221.0%22%20ry%3D%229.799999999999999%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22540.4%22%20cy%3D%2264.2%22%20rx%3D%2218.2%22%20ry%3D%228.399999999999999%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-40%20340%20L90%20190%20L220%20340%20Z%22%20fill%3D%22%237FA8C9%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M48.4%20238.0%20L90%20190%20L131.6%20238.0%20q-15.6%2016.799999999999997%20-39.0%202.4000000000000004%20q-20.8%20-10.56%20-41.6%205.76%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M100%20340%20L250%20150%20L400%20340%20Z%22%20fill%3D%22%237FA8C9%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M202.0%20210.8%20L250%20150%20L298.0%20210.8%20q-18.0%2021.28%20-45.0%203.0400000000000005%20q-24.0%20-13.376000000000001%20-48.0%207.296%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M290%20340%20L430%20175%20L570%20340%20Z%22%20fill%3D%22%237FA8C9%22%20opacity%3D%22.5%22%2F%3E%3Cpath%20d%3D%22M385.2%20227.8%20L430%20175%20L474.8%20227.8%20q-16.8%2018.48%20-42.0%202.6400000000000006%20q-22.400000000000002%20-11.616000000000001%20-44.800000000000004%206.336%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20364.8%20Q40.0%20344.0%2080%20358.0%20Q120.0%20344.0%20160%20371.6%20Q200.0%20350.8%20240%20364.8%20Q280.0%20344.0%20320%20358.0%20Q360.0%20344.0%20400%20371.6%20Q440.0%20350.8%20480%20364.8%20Q520.0%20344.0%20560%20358.0%20Q600.0%20344.0%20640%20371.6%20Q680.0%20350.8%20720%20364.8%20Q760.0%20344.0%20800%20358.0%20L820%20560%20Z%22%20fill%3D%22%232E5F7E%22%20opacity%3D%22.85%22%2F%3E%3Cpath%20d%3D%22M482.1%20430%20L502.6%20405.4%20L617.4%20405.4%20L637.9%20430%20Z%22%20fill%3D%22%23F2F5F8%22%2F%3E%3Crect%20x%3D%22509.16%22%20y%3D%22382.44%22%20width%3D%22101.67999999999999%22%20height%3D%2222.959999999999997%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M512.44%20382.44%20a47.559999999999995%2037.72%200%200%201%2095.11999999999999%200%20Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%22535.4%22%20y%3D%22348.0%22%20width%3D%2249.199999999999996%22%20height%3D%2236.08%22%20fill%3D%22%23F7C948%22%2F%3E%3Cellipse%20cx%3D%22549.34%22%20cy%3D%22361.12%22%20rx%3D%225.739999999999999%22%20ry%3D%224.1%22%20fill%3D%22%230A2540%22%2F%3E%3Cellipse%20cx%3D%22570.66%22%20cy%3D%22361.12%22%20rx%3D%225.739999999999999%22%20ry%3D%224.1%22%20fill%3D%22%230A2540%22%2F%3E%3Cpath%20d%3D%22M558.36%20367.68%20q1.64%204.92%203.28%200%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%221.64%22%20fill%3D%22none%22%2F%3E%3Crect%20x%3D%22549.34%22%20y%3D%22338.16%22%20width%3D%2221.32%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22550.57%22%20y%3D%22329.14%22%20width%3D%2218.86%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22551.8%22%20y%3D%22320.12%22%20width%3D%2216.4%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22553.03%22%20y%3D%22311.1%22%20width%3D%2213.94%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22554.26%22%20y%3D%22302.08000000000004%22%20width%3D%2211.479999999999999%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22555.49%22%20y%3D%22293.06%22%20width%3D%229.02%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22556.72%22%20y%3D%22284.04%22%20width%3D%226.56%22%20height%3D%225.739999999999999%22%20fill%3D%22%23F7C948%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M560%20266.0%20l7.38%2011.479999999999999%20l-14.76%200%20Z%22%20fill%3D%22%23F7C948%22%2F%3E%3Crect%20x%3D%22177.68%22%20y%3D%22406.08%22%20width%3D%2284.64%22%20height%3D%2223.92%22%20fill%3D%22%238B3A2E%22%2F%3E%3Cpath%20d%3D%22M161.12%20402.4%20L179.52%20380.32%20L260.48%20380.32%20L278.88%20402.4%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Crect%20x%3D%22185.04%22%20y%3D%22361.91999999999996%22%20width%3D%2269.92%22%20height%3D%2218.400000000000002%22%20fill%3D%22%238B3A2E%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M171.24%20361.92%20L189.64000000000001%20339.84000000000003%20L250.35999999999999%20339.84000000000003%20L268.76%20361.92%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Crect%20x%3D%22195.16%22%20y%3D%22321.44%22%20width%3D%2249.68000000000001%22%20height%3D%2218.400000000000002%22%20fill%3D%22%238B3A2E%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M181.36%20321.44%20L199.76000000000002%20299.36%20L240.23999999999998%20299.36%20L258.64%20321.44%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Cpath%20d%3D%22M220%20280.96%20l0%20-20.240000000000002%22%20stroke%3D%22%23F7C948%22%20stroke-width%3D%224.6000000000000005%22%2F%3E%3Ccircle%20cx%3D%22220%22%20cy%3D%22257.03999999999996%22%20r%3D%225.5200000000000005%22%20fill%3D%22%23F7C948%22%2F%3E%3Crect%20x%3D%22317.64%22%20y%3D%22412.84%22%20width%3D%2260.720000000000006%22%20height%3D%2217.16%22%20fill%3D%22%238B3A2E%22%2F%3E%3Cpath%20d%3D%22M305.76%20410.2%20L318.96%20394.36%20L377.04%20394.36%20L390.24%20410.2%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Crect%20x%3D%22322.92%22%20y%3D%22381.15999999999997%22%20width%3D%2250.16%22%20height%3D%2213.200000000000001%22%20fill%3D%22%238B3A2E%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M313.02%20381.15999999999997%20L326.21999999999997%20365.32%20L369.78000000000003%20365.32%20L382.98%20381.15999999999997%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Cpath%20d%3D%22M348%20352.12%20l0%20-14.520000000000001%22%20stroke%3D%22%23F7C948%22%20stroke-width%3D%223.3000000000000003%22%2F%3E%3Ccircle%20cx%3D%22348%22%20cy%3D%22334.96%22%20r%3D%223.96%22%20fill%3D%22%23F7C948%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22430%22%20width%3D%22800%22%20height%3D%22130%22%20fill%3D%22%23233C52%22%2F%3E%3Cpath%20d%3D%22M120%20108%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M168%2092%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M206%20116%20q7%20-5.6000000000000005%2014%200%20q7%20-5.6000000000000005%2014%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.9600000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-pokhara{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23FF9E6D%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%23FFC48C%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FFE3C0%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22120%22%20r%3D%22120.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22120%22%20r%3D%2280.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22120%22%20r%3D%2250%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M-8%20300%20L120%2092%20L248%20300%20Z%22%20fill%3D%22%236E9EC4%22%20opacity%3D%22.85%22%2F%3E%3Cpath%20d%3D%22M79.03999999999999%20158.56%20L120%2092%20L160.96%20158.56%20q-15.36%2023.296%20-38.4%203.3280000000000003%20q-20.48%20-14.6432%20-40.96%207.9872%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M150%20300%20L300%2060%20L450%20300%20Z%22%20fill%3D%22%236E9EC4%22%20opacity%3D%22.85%22%2F%3E%3Cpath%20d%3D%22M252.0%20136.8%20L300%2060%20L348.0%20136.8%20q-18.0%2026.88%20-45.0%203.84%20q-24.0%20-16.896%20-48.0%209.216%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M340%20300%20L480%20100%20L620%20300%20Z%22%20fill%3D%22%236E9EC4%22%20opacity%3D%22.85%22%2F%3E%3Cpath%20d%3D%22M435.2%20164.0%20L480%20100%20L524.8%20164.0%20q-16.8%2022.4%20-42.0%203.2%20q-22.400000000000002%20-14.08%20-44.800000000000004%207.68%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M540%20300%20L660%20130%20L780%20300%20Z%22%20fill%3D%22%236E9EC4%22%20opacity%3D%22.85%22%2F%3E%3Cpath%20d%3D%22M621.6%20184.4%20L660%20130%20L698.4%20184.4%20q-14.399999999999999%2019.04%20-36.0%202.72%20q-19.2%20-11.968%20-38.4%206.528%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20312.0%20Q40.0%20292.0%2080%20306.0%20Q120.0%20286.0%20160%20300.0%20Q200.0%20286.0%20240%20312.0%20Q280.0%20292.0%20320%20306.0%20Q360.0%20286.0%20400%20300.0%20Q440.0%20286.0%20480%20312.0%20Q520.0%20292.0%20560%20306.0%20Q600.0%20286.0%20640%20300.0%20Q680.0%20286.0%20720%20312.0%20Q760.0%20292.0%20800%20306.0%20L820%20560%20Z%22%20fill%3D%22%232B6E86%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22348%22%20width%3D%22800%22%20height%3D%22212%22%20fill%3D%22%230E5F8C%22%20opacity%3D%22.75%22%2F%3E%3Cpath%20d%3D%22M40%20370%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20382%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20400%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20412%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20430%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20442%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20460%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20472%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20490%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20502%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M85%20520%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M225%20532%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M222%20550%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M282%20562%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M254.0%20448%20q46.0%2016.0%2092.0%200%20l-12.0%2010.0%20q-34.0%208.0%20-68.0%200%20Z%22%20fill%3D%22%2310334D%22%2F%3E%3Cpath%20d%3D%22M300%20444.0%20l0%20-64.0%20l38.0%2056.0%20Z%22%20fill%3D%22%23F2CF54%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M298.0%20444.0%20l0%20-64.0%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%223.0%22%2F%3E%3Cpath%20d%3D%22M524.12%20490%20q35.88%2012.48%2071.76%200%20l-9.36%207.800000000000001%20q-26.52%206.24%20-53.04%200%20Z%22%20fill%3D%22%2310334D%22%2F%3E%3Cpath%20d%3D%22M560%20486.88%20l0%20-49.92%20l29.64%2043.68%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M558.44%20486.88%20l0%20-49.92%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222.34%22%2F%3E%3Cpath%20d%3D%22M140%2096%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M190%2078%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-chitwan{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%231E88D6%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%235BB4EC%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23BFE4FA%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%22105.6%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%2270.4%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%2244%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.3%22%3E%3Cellipse%20cx%3D%22180%22%20cy%3D%2284%22%20rx%3D%2232.0%22%20ry%3D%2214.4%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22204.0%22%20cy%3D%2288.0%22%20rx%3D%2224.0%22%20ry%3D%2211.200000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22157.6%22%20cy%3D%2288.8%22%20rx%3D%2220.8%22%20ry%3D%229.600000000000001%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20260.0%20Q40.0%20246.0%2080%20276.0%20Q120.0%20254.0%20160%20268.0%20Q200.0%20246.0%20240%20260.0%20Q280.0%20246.0%20320%20276.0%20Q360.0%20254.0%20400%20268.0%20Q440.0%20246.0%20480%20260.0%20Q520.0%20246.0%20560%20276.0%20Q600.0%20254.0%20640%20268.0%20Q680.0%20246.0%20720%20260.0%20Q760.0%20246.0%20800%20276.0%20L820%20560%20Z%22%20fill%3D%22%232F6F52%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20320.8%20Q40.0%20300.0%2080%20314.0%20Q120.0%20300.0%20160%20327.6%20Q200.0%20306.8%20240%20320.8%20Q280.0%20300.0%20320%20314.0%20Q360.0%20300.0%20400%20327.6%20Q440.0%20306.8%20480%20320.8%20Q520.0%20300.0%20560%20314.0%20Q600.0%20300.0%20640%20327.6%20Q680.0%20306.8%20720%20320.8%20Q760.0%20300.0%20800%20314.0%20L820%20560%20Z%22%20fill%3D%22%23245C44%22%20opacity%3D%22.8%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22392%22%20width%3D%22800%22%20height%3D%22168%22%20fill%3D%22%232C6E7E%22%20opacity%3D%22.6%22%2F%3E%3Cpath%20d%3D%22M40%20414%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20426%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20444%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20456%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20474%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20486%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20504%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20516%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20534%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20546%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Crect%20x%3D%2291.4%22%20y%3D%22406.0%22%20width%3D%229.2%22%20height%3D%2246.0%22%20fill%3D%22%234A3226%22%2F%3E%3Cellipse%20cx%3D%2296%22%20cy%3D%22380.7%22%20rx%3D%2248.3%22%20ry%3D%2236.8%22%20fill%3D%22%231E7A4F%22%2F%3E%3Cellipse%20cx%3D%2266.1%22%20cy%3D%22394.5%22%20rx%3D%2229.9%22%20ry%3D%2223.0%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Cellipse%20cx%3D%22125.9%22%20cy%3D%22392.2%22%20rx%3D%2227.599999999999998%22%20ry%3D%2219%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%22701.8%22%20y%3D%22406.0%22%20width%3D%228.4%22%20height%3D%2242.0%22%20fill%3D%22%234A3226%22%2F%3E%3Cellipse%20cx%3D%22706%22%20cy%3D%22382.9%22%20rx%3D%2244.1%22%20ry%3D%2233.6%22%20fill%3D%22%231E7A4F%22%2F%3E%3Cellipse%20cx%3D%22678.7%22%20cy%3D%22395.5%22%20rx%3D%2227.3%22%20ry%3D%2221.0%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Cellipse%20cx%3D%22733.3%22%20cy%3D%22393.4%22%20rx%3D%2225.200000000000003%22%20ry%3D%2219%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%22186.8%22%20y%3D%22438.0%22%20width%3D%226.4%22%20height%3D%2232.0%22%20fill%3D%22%234A3226%22%2F%3E%3Cellipse%20cx%3D%22190%22%20cy%3D%22420.4%22%20rx%3D%2233.6%22%20ry%3D%2225.6%22%20fill%3D%22%231E7A4F%22%2F%3E%3Cellipse%20cx%3D%22169.2%22%20cy%3D%22430.0%22%20rx%3D%2220.8%22%20ry%3D%2216.0%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Cellipse%20cx%3D%22210.8%22%20cy%3D%22428.4%22%20rx%3D%2219.200000000000003%22%20ry%3D%2219%22%20fill%3D%22%231E7A4F%22%20opacity%3D%22.9%22%2F%3E%3Cpath%20d%3D%22M359.1%20486%20q-4.2%20-27.3%2010.5%20-35.7%20q18.900000000000002%20-12.600000000000001%2050.400000000000006%20-10.5%20q23.1%202.1%2031.5%2012.600000000000001%20l16.8%202.1%20q8.4%202.1%204.2%2010.5%20l-10.5%206.300000000000001%20q2.1%2012.600000000000001%20-6.300000000000001%2014.700000000000001%20Z%22%20fill%3D%22%2320394A%22%2F%3E%3Cpath%20d%3D%22M470.4%20444.0%20l6.300000000000001%20-12.600000000000001%20l5.25%2012.600000000000001%20Z%22%20fill%3D%22%2320394A%22%2F%3E%3Crect%20x%3D%22378.0%22%20y%3D%22475.5%22%20width%3D%227.3500000000000005%22%20height%3D%2210.5%22%20fill%3D%22%2320394A%22%2F%3E%3Crect%20x%3D%22399.0%22%20y%3D%22475.5%22%20width%3D%227.3500000000000005%22%20height%3D%2210.5%22%20fill%3D%22%2320394A%22%2F%3E%3Crect%20x%3D%22443.1%22%20y%3D%22475.5%22%20width%3D%227.3500000000000005%22%20height%3D%2210.5%22%20fill%3D%22%2320394A%22%2F%3E%3Crect%20x%3D%22464.1%22%20y%3D%22475.5%22%20width%3D%227.3500000000000005%22%20height%3D%2210.5%22%20fill%3D%22%2320394A%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22486%22%20width%3D%22800%22%20height%3D%2274%22%20fill%3D%22%231B3A2E%22%2F%3E%3Cpath%20d%3D%22M520%2096%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M566%2080%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-everest{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%231E88D6%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%235BB4EC%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23BFE4FA%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2296.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2264.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2240%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M30%20390%20L150%20178%20L270%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M111.6%20245.84%20L150%20178%20L188.4%20245.84%20q-14.399999999999999%2023.744%20-36.0%203.3920000000000003%20q-19.2%20-14.924800000000001%20-38.4%208.1408%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M170%20390%20L300%20120%20L430%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M258.4%20206.4%20L300%20120%20L341.6%20206.4%20q-15.6%2030.24%20-39.0%204.32%20q-20.8%20-19.008000000000003%20-41.6%2010.368%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M334%20390%20L452%2070%20L570%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M414.24%20172.4%20L452%2070%20L489.76%20172.4%20q-14.16%2035.839999999999996%20-35.4%205.120000000000001%20q-18.88%20-22.528000000000002%20-37.76%2012.288%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M472%20390%20L600%20150%20L728%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M559.04%20226.8%20L600%20150%20L640.96%20226.8%20q-15.36%2026.88%20-38.4%203.84%20q-20.48%20-16.896%20-40.96%209.216%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M630%20390%20L730%20196%20L830%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M698.0%20258.08%20L730%20196%20L762.0%20258.08%20q-12.0%2021.727999999999998%20-30.0%203.104%20q-16.0%20-13.6576%20-32.0%207.449599999999999%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-30%20420%20L80%20250%20L190%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M44.8%20304.4%20L80%20250%20L115.2%20304.4%20q-13.2%2019.04%20-33.0%202.72%20q-17.6%20-11.968%20-35.2%206.528%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M120%20420%20L240%20226%20L360%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M201.6%20288.08%20L240%20226%20L278.4%20288.08%20q-14.399999999999999%2021.727999999999998%20-36.0%203.104%20q-19.2%20-13.6576%20-38.4%207.449599999999999%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M290%20420%20L420%20210%20L550%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M378.4%20277.2%20L420%20210%20L461.6%20277.2%20q-15.6%2023.52%20-39.0%203.3600000000000003%20q-20.8%20-14.784%20-41.6%208.064%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M490%20420%20L620%20236%20L750%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M578.4%20294.88%20L620%20236%20L661.6%20294.88%20q-15.6%2020.608%20-39.0%202.9440000000000004%20q-20.8%20-12.9536%20-41.6%207.0656%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22420%22%20width%3D%22800%22%20height%3D%22140%22%20fill%3D%22%232B4763%22%2F%3E%3Cellipse%20cx%3D%22596%22%20cy%3D%22176%22%20rx%3D%2227.3%22%20ry%3D%2213.65%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M617.0%20176%20q29.400000000000002%20-2.1%2042.0%204.2%20l-6.300000000000001%206.300000000000001%20q-18.900000000000002%202.1%20-35.7%200%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M654.8%20173.9%20l10.5%20-12.600000000000001%20l4.2%204.2%20l-8.4%2012.600000000000001%20Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%22562.4%22%20y%3D%22150.8%22%20width%3D%2275.60000000000001%22%20height%3D%223.3600000000000003%22%20rx%3D%221.6800000000000002%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%22593.9%22%20y%3D%22150.8%22%20width%3D%224.2%22%20height%3D%2212.600000000000001%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M579.2%20189.65%20l0%208.4%20M608.6%20189.65%20l0%208.4%22%20stroke%3D%22%23FFFFFF%22%20stroke-width%3D%223.1500000000000004%22%2F%3E%3Crect%20x%3D%22568.7%22%20y%3D%22197.0%22%20width%3D%2254.6%22%20height%3D%223.57%22%20rx%3D%221.785%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Ccircle%20cx%3D%22587.6%22%20cy%3D%22174.95%22%20r%3D%226.825%22%20fill%3D%22%237EC4F5%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M180%20130%20q7%20-5.6000000000000005%2014%200%20q7%20-5.6000000000000005%2014%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.9600000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-mustang{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23B4541F%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%23E08B3C%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23F7D9A8%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22660%22%20cy%3D%22112%22%20r%3D%22115.19999999999999%22%20fill%3D%22%23FFF0C2%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22660%22%20cy%3D%22112%22%20r%3D%2276.80000000000001%22%20fill%3D%22%23FFF0C2%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22660%22%20cy%3D%22112%22%20r%3D%2248%22%20fill%3D%22%23FFF0C2%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M20%20330%20L160%20140%20L300%20330%20Z%22%20fill%3D%22%238E6A57%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20d%3D%22M115.2%20200.8%20L160%20140%20L204.8%20200.8%20q-16.8%2021.28%20-42.0%203.0400000000000005%20q-22.400000000000002%20-13.376000000000001%20-44.800000000000004%207.296%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M250%20330%20L400%20108%20L550%20330%20Z%22%20fill%3D%22%238E6A57%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20d%3D%22M352.0%20179.04000000000002%20L400%20108%20L448.0%20179.04000000000002%20q-18.0%2024.864%20-45.0%203.5520000000000005%20q-24.0%20-15.628800000000002%20-48.0%208.5248%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M500%20330%20L640%20152%20L780%20330%20Z%22%20fill%3D%22%238E6A57%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20d%3D%22M595.2%20208.96%20L640%20152%20L684.8%20208.96%20q-16.8%2019.936%20-42.0%202.8480000000000003%20q-22.400000000000002%20-12.5312%20-44.800000000000004%206.8351999999999995%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20346.0%20Q40.0%20326.0%2080%20340.0%20Q120.0%20326.0%20160%20352.0%20Q200.0%20332.0%20240%20346.0%20Q280.0%20326.0%20320%20340.0%20Q360.0%20326.0%20400%20352.0%20Q440.0%20332.0%20480%20346.0%20Q520.0%20326.0%20560%20340.0%20Q600.0%20326.0%20640%20352.0%20Q680.0%20332.0%20720%20346.0%20Q760.0%20326.0%20800%20340.0%20L820%20560%20Z%22%20fill%3D%22%239C5F3A%22%20opacity%3D%22.9%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20428%20q160%20-40%20330%20-10%20q180%2032%20350%20-18%20L820%20400%20L820%20560%20Z%22%20fill%3D%22%237C4426%22%2F%3E%3Crect%20x%3D%22193.96%22%20y%3D%22408.76%22%20width%3D%2268.08%22%20height%3D%2219.24%22%20fill%3D%22%237A3B2A%22%2F%3E%3Cpath%20d%3D%22M180.64%20405.8%20L195.44%20388.04%20L260.56%20388.04%20L275.36%20405.8%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Crect%20x%3D%22199.88%22%20y%3D%22373.24%22%20width%3D%2256.24%22%20height%3D%2214.8%22%20fill%3D%22%237A3B2A%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M188.77999999999997%20373.24%20L203.57999999999998%20355.48%20L252.42000000000002%20355.48%20L267.22%20373.24%20Z%22%20fill%3D%22%23C0392B%22%2F%3E%3Cpath%20d%3D%22M228%20340.68%20l0%20-16.28%22%20stroke%3D%22%23F7C948%22%20stroke-width%3D%223.7%22%2F%3E%3Ccircle%20cx%3D%22228%22%20cy%3D%22321.44%22%20r%3D%224.4399999999999995%22%20fill%3D%22%23F7C948%22%2F%3E%3Cpath%20d%3D%22M300%20380%20Q430.0%20398.0%20560%20348%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.55%22%2F%3E%3Crect%20x%3D%22320.0%22%20y%3D%22382.9200000000001%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22346.0%22%20y%3D%22384.4800000000001%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22372.0%22%20y%3D%22384.68%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22398.0%22%20y%3D%22383.52%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22424.0%22%20y%3D%22381.0%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22450.0%22%20y%3D%22377.12%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22476.0%22%20y%3D%22371.88%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22502.0%22%20y%3D%22365.28000000000003%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22528.0%22%20y%3D%22357.32%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22470%22%20width%3D%22800%22%20height%3D%2290%22%20fill%3D%22%235E3220%22%2F%3E%3C%2Fsvg%3E")}
.scene-lumbini{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23FF9E6D%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%23FFC48C%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FFE3C0%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22136%22%20r%3D%22129.6%22%20fill%3D%22%23FFE6A8%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22136%22%20r%3D%2286.4%22%20fill%3D%22%23FFE6A8%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22136%22%20r%3D%2254%22%20fill%3D%22%23FFE6A8%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.3%22%3E%3Cellipse%20cx%3D%22170%22%20cy%3D%2292%22%20rx%3D%2234.0%22%20ry%3D%2215.299999999999999%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22195.5%22%20cy%3D%2296.25%22%20rx%3D%2225.5%22%20ry%3D%2211.9%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22146.2%22%20cy%3D%2297.1%22%20rx%3D%2222.099999999999998%22%20ry%3D%2210.2%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%20opacity%3D%220.2%22%3E%3Cellipse%20cx%3D%22520%22%20cy%3D%2266%22%20rx%3D%2224.0%22%20ry%3D%2210.799999999999999%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22538.0%22%20cy%3D%2269.0%22%20rx%3D%2218.0%22%20ry%3D%228.4%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22503.2%22%20cy%3D%2269.6%22%20rx%3D%2215.6%22%20ry%3D%227.199999999999999%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20374.4%20Q40.0%20355.2%2080%20369.2%20Q120.0%20350.0%20160%20364.0%20Q200.0%20350.0%20240%20374.4%20Q280.0%20355.2%20320%20369.2%20Q360.0%20350.0%20400%20364.0%20Q440.0%20350.0%20480%20374.4%20Q520.0%20355.2%20560%20369.2%20Q600.0%20350.0%20640%20364.0%20Q680.0%20350.0%20720%20374.4%20Q760.0%20355.2%20800%20369.2%20L820%20560%20Z%22%20fill%3D%22%233E7A5E%22%20opacity%3D%22.55%22%2F%3E%3Crect%20x%3D%22622.0%22%20y%3D%22380.0%22%20width%3D%2212.0%22%20height%3D%2260.0%22%20fill%3D%22%234A3226%22%2F%3E%3Cellipse%20cx%3D%22628%22%20cy%3D%22347.0%22%20rx%3D%2263.0%22%20ry%3D%2248.0%22%20fill%3D%22%231F6E4C%22%2F%3E%3Cellipse%20cx%3D%22589.0%22%20cy%3D%22365.0%22%20rx%3D%2239.0%22%20ry%3D%2230.0%22%20fill%3D%22%231F6E4C%22%20opacity%3D%22.9%22%2F%3E%3Cellipse%20cx%3D%22667.0%22%20cy%3D%22362.0%22%20rx%3D%2236.0%22%20ry%3D%2219%22%20fill%3D%22%231F6E4C%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%22256.3%22%20y%3D%22415.3%22%20width%3D%2287.39999999999999%22%20height%3D%2224.7%22%20fill%3D%22%23B08C4A%22%2F%3E%3Cpath%20d%3D%22M239.2%20411.5%20L258.2%20388.7%20L341.8%20388.7%20L360.8%20411.5%20Z%22%20fill%3D%22%23D9B45B%22%2F%3E%3Crect%20x%3D%22263.9%22%20y%3D%22369.7%22%20width%3D%2272.2%22%20height%3D%2219.0%22%20fill%3D%22%23B08C4A%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M249.64999999999998%20369.7%20L268.65%20346.9%20L331.35%20346.9%20L350.35%20369.7%20Z%22%20fill%3D%22%23D9B45B%22%2F%3E%3Crect%20x%3D%22274.35%22%20y%3D%22327.9%22%20width%3D%2251.3%22%20height%3D%2219.0%22%20fill%3D%22%23B08C4A%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M260.09999999999997%20327.9%20L279.09999999999997%20305.09999999999997%20L320.90000000000003%20305.09999999999997%20L339.90000000000003%20327.9%20Z%22%20fill%3D%22%23D9B45B%22%2F%3E%3Cpath%20d%3D%22M300%20286.1%20l0%20-20.9%22%20stroke%3D%22%23F7C948%22%20stroke-width%3D%224.75%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22261.4%22%20r%3D%225.699999999999999%22%20fill%3D%22%23F7C948%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22440%22%20width%3D%22800%22%20height%3D%22120%22%20fill%3D%22%232F5B45%22%2F%3E%3Cellipse%20cx%3D%22300%22%20cy%3D%22500%22%20rx%3D%22210%22%20ry%3D%2226%22%20fill%3D%22%231E4636%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M430%20104%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M476%2088%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-manang{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%231E88D6%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%235BB4EC%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23BFE4FA%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22110%22%20r%3D%2291.2%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22110%22%20r%3D%2260.800000000000004%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22110%22%20r%3D%2238%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M10%20360%20L140%20130%20L270%20360%20Z%22%20fill%3D%22%236C93B8%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M98.39999999999999%20203.60000000000002%20L140%20130%20L181.60000000000002%20203.60000000000002%20q-15.6%2025.76%20-39.0%203.6800000000000006%20q-20.8%20-16.192000000000004%20-41.6%208.832%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M190%20360%20L330%2084%20L470%20360%20Z%22%20fill%3D%22%236C93B8%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M285.2%20172.32%20L330%2084%20L374.8%20172.32%20q-16.8%2030.912%20-42.0%204.416%20q-22.400000000000002%20-19.430400000000002%20-44.800000000000004%2010.5984%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M388%20360%20L520%20118%20L652%20360%20Z%22%20fill%3D%22%236C93B8%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M477.76%20195.44%20L520%20118%20L562.24%20195.44%20q-15.84%2027.104%20-39.6%203.872%20q-21.12%20-17.0368%20-42.24%209.2928%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M580%20360%20L700%20160%20L820%20360%20Z%22%20fill%3D%22%236C93B8%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M661.6%20224.0%20L700%20160%20L738.4%20224.0%20q-14.399999999999999%2022.4%20-36.0%203.2%20q-19.2%20-14.08%20-38.4%207.68%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20370.0%20Q40.0%20356.0%2080%20382.0%20Q120.0%20362.0%20160%20376.0%20Q200.0%20356.0%20240%20370.0%20Q280.0%20356.0%20320%20382.0%20Q360.0%20362.0%20400%20376.0%20Q440.0%20356.0%20480%20370.0%20Q520.0%20356.0%20560%20382.0%20Q600.0%20362.0%20640%20376.0%20Q680.0%20356.0%20720%20370.0%20Q760.0%20356.0%20800%20382.0%20L820%20560%20Z%22%20fill%3D%22%234A6E5A%22%20opacity%3D%22.9%22%2F%3E%3Cpath%20d%3D%22M120%20330%20Q270.0%20349.0%20420%20300%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.55%22%2F%3E%3Crect%20x%3D%22139.0%22%20y%3D%22332.6944444444444%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22164.0%22%20y%3D%22334.44444444444446%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22189.0%22%20y%3D%22335.25%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22214.0%22%20y%3D%22335.11111111111114%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22239.0%22%20y%3D%22334.0277777777777%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22264.0%22%20y%3D%22332.0%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22289.0%22%20y%3D%22329.02777777777777%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22314.0%22%20y%3D%22325.1111111111111%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22339.0%22%20y%3D%22320.25%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22364.0%22%20y%3D%22314.44444444444446%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22389.0%22%20y%3D%22307.69444444444446%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22452%22%20width%3D%22800%22%20height%3D%22108%22%20fill%3D%22%233A5344%22%2F%3E%3Crect%20x%3D%22560%22%20y%3D%22404%22%20width%3D%2286%22%20height%3D%2248%22%20fill%3D%22%238C7A63%22%2F%3E%3Cpath%20d%3D%22M550%20404%20L603%20376%20L656%20404%20Z%22%20fill%3D%22%236E5C48%22%2F%3E%3C%2Fsvg%3E")}
.scene-rara{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%231E88D6%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%235BB4EC%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23BFE4FA%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22630%22%20cy%3D%22116%22%20r%3D%22105.6%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22630%22%20cy%3D%22116%22%20r%3D%2270.4%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22630%22%20cy%3D%22116%22%20r%3D%2244%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.3%22%3E%3Cellipse%20cx%3D%22180%22%20cy%3D%2278%22%20rx%3D%2232.0%22%20ry%3D%2214.4%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22204.0%22%20cy%3D%2282.0%22%20rx%3D%2224.0%22%20ry%3D%2211.200000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22157.6%22%20cy%3D%2282.8%22%20rx%3D%2220.8%22%20ry%3D%229.600000000000001%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M30%20300%20L170%20130%20L310%20300%20Z%22%20fill%3D%22%237098BE%22%20opacity%3D%22.8%22%2F%3E%3Cpath%20d%3D%22M125.2%20184.4%20L170%20130%20L214.8%20184.4%20q-16.8%2019.04%20-42.0%202.72%20q-22.400000000000002%20-11.968%20-44.800000000000004%206.528%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M250%20300%20L400%2096%20L550%20300%20Z%22%20fill%3D%22%237098BE%22%20opacity%3D%22.8%22%2F%3E%3Cpath%20d%3D%22M352.0%20161.28%20L400%2096%20L448.0%20161.28%20q-18.0%2022.848%20-45.0%203.2640000000000002%20q-24.0%20-14.361600000000001%20-48.0%207.8336%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M500%20300%20L640%20138%20L780%20300%20Z%22%20fill%3D%22%237098BE%22%20opacity%3D%22.8%22%2F%3E%3Cpath%20d%3D%22M595.2%20189.84%20L640%20138%20L684.8%20189.84%20q-16.8%2018.144%20-42.0%202.5920000000000005%20q-22.400000000000002%20-11.404800000000002%20-44.800000000000004%206.2208000000000006%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20319.2%20Q40.0%20300.0%2080%20314.0%20Q120.0%20300.0%20160%20324.4%20Q200.0%20305.2%20240%20319.2%20Q280.0%20300.0%20320%20314.0%20Q360.0%20300.0%20400%20324.4%20Q440.0%20305.2%20480%20319.2%20Q520.0%20300.0%20560%20314.0%20Q600.0%20300.0%20640%20324.4%20Q680.0%20305.2%20720%20319.2%20Q760.0%20300.0%20800%20314.0%20L820%20560%20Z%22%20fill%3D%22%232C6047%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22366%22%20width%3D%22800%22%20height%3D%22194%22%20fill%3D%22%230F6E96%22%20opacity%3D%22.8%22%2F%3E%3Cpath%20d%3D%22M40%20388%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20400%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20418%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20430%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20448%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20460%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20478%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20490%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20508%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20520%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M85%20538%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M225%20550%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Crect%20x%3D%2267%22%20y%3D%22350.88%22%20width%3D%226%22%20height%3D%2221.12%22%20fill%3D%22%234A3226%22%2F%3E%3Cpath%20d%3D%22M52.0%20354.72%20L70%20318.24%20L88.0%20354.72%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.95%22%2F%3E%3Cpath%20d%3D%22M55.96%20329.76000000000005%20L70%20293.28000000000003%20L84.04%20329.76000000000005%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.9099999999999999%22%2F%3E%3Cpath%20d%3D%22M59.92%20304.8%20L70%20268.32%20L80.08%20304.8%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.87%22%2F%3E%3Crect%20x%3D%22125%22%20y%3D%22350.88%22%20width%3D%226%22%20height%3D%2221.12%22%20fill%3D%22%234A3226%22%2F%3E%3Cpath%20d%3D%22M110.0%20354.72%20L128%20318.24%20L146.0%20354.72%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.95%22%2F%3E%3Cpath%20d%3D%22M113.96%20329.76000000000005%20L128%20293.28000000000003%20L142.04%20329.76000000000005%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.9099999999999999%22%2F%3E%3Cpath%20d%3D%22M117.92%20304.8%20L128%20268.32%20L138.08%20304.8%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.87%22%2F%3E%3Crect%20x%3D%22697%22%20y%3D%22350.88%22%20width%3D%226%22%20height%3D%2221.12%22%20fill%3D%22%234A3226%22%2F%3E%3Cpath%20d%3D%22M682.0%20354.72%20L700%20318.24%20L718.0%20354.72%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.95%22%2F%3E%3Cpath%20d%3D%22M685.96%20329.76000000000005%20L700%20293.28000000000003%20L714.04%20329.76000000000005%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.9099999999999999%22%2F%3E%3Cpath%20d%3D%22M689.92%20304.8%20L700%20268.32%20L710.08%20304.8%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.87%22%2F%3E%3Crect%20x%3D%22751%22%20y%3D%22350.88%22%20width%3D%226%22%20height%3D%2221.12%22%20fill%3D%22%234A3226%22%2F%3E%3Cpath%20d%3D%22M736.0%20354.72%20L754%20318.24%20L772.0%20354.72%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.95%22%2F%3E%3Cpath%20d%3D%22M739.96%20329.76000000000005%20L754%20293.28000000000003%20L768.04%20329.76000000000005%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.9099999999999999%22%2F%3E%3Cpath%20d%3D%22M743.92%20304.8%20L754%20268.32%20L764.08%20304.8%20Z%22%20fill%3D%22%231B5E43%22%20opacity%3D%220.87%22%2F%3E%3Cpath%20d%3D%22M393.2%20466%20q36.800000000000004%2012.8%2073.60000000000001%200%20l-9.600000000000001%208.0%20q-27.200000000000003%206.4%20-54.400000000000006%200%20Z%22%20fill%3D%22%23123A57%22%2F%3E%3Cpath%20d%3D%22M430%20462.8%20l0%20-51.2%20l30.400000000000002%2044.800000000000004%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M428.4%20462.8%20l0%20-51.2%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222.4000000000000004%22%2F%3E%3Cpath%20d%3D%22M250%2092%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M296%2076%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-abc{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23FF9E6D%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%23FFC48C%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FFE3C0%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22150%22%20r%3D%22139.2%22%20fill%3D%22%23FFDFA0%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22150%22%20r%3D%2292.80000000000001%22%20fill%3D%22%23FFDFA0%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22400%22%20cy%3D%22150%22%20r%3D%2258%22%20fill%3D%22%23FFDFA0%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M-20%20400%20L120%20150%20L260%20400%20Z%22%20fill%3D%22%236E93B6%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M75.2%20230.0%20L120%20150%20L164.8%20230.0%20q-16.8%2028.0%20-42.0%204.0%20q-22.400000000000002%20-17.6%20-44.800000000000004%209.6%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M150%20400%20L280%2086%20L410%20400%20Z%22%20fill%3D%22%236E93B6%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M238.4%20186.48000000000002%20L280%2086%20L321.6%20186.48000000000002%20q-15.6%2035.168%20-39.0%205.024000000000001%20q-20.8%20-22.105600000000003%20-41.6%2012.0576%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M320%20400%20L440%2062%20L560%20400%20Z%22%20fill%3D%22%236E93B6%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M401.6%20170.16%20L440%2062%20L478.4%20170.16%20q-14.399999999999999%2037.855999999999995%20-36.0%205.408%20q-19.2%20-23.795199999999998%20-38.4%2012.979199999999999%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M470%20400%20L600%20110%20L730%20400%20Z%22%20fill%3D%22%236E93B6%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M558.4%20202.8%20L600%20110%20L641.6%20202.8%20q-15.6%2032.48%20-39.0%204.64%20q-20.8%20-20.416%20-41.6%2011.136%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M630%20400%20L740%20168%20L850%20400%20Z%22%20fill%3D%22%236E93B6%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M704.8%20242.24%20L740%20168%20L775.2%20242.24%20q-13.2%2025.983999999999998%20-33.0%203.7119999999999997%20q-17.6%20-16.3328%20-35.2%208.9088%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M60%20440%20L200%20280%20L340%20440%20Z%22%20fill%3D%22%2347698C%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M155.2%20331.2%20L200%20280%20L244.8%20331.2%20q-16.8%2017.919999999999998%20-42.0%202.5600000000000005%20q-22.400000000000002%20-11.264000000000001%20-44.800000000000004%206.144%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M290%20440%20L440%20258%20L590%20440%20Z%22%20fill%3D%22%2347698C%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M392.0%20316.24%20L440%20258%20L488.0%20316.24%20q-18.0%2020.384%20-45.0%202.9120000000000004%20q-24.0%20-12.812800000000001%20-48.0%206.9888%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M540%20440%20L680%20286%20L820%20440%20Z%22%20fill%3D%22%2347698C%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M635.2%20335.28%20L680%20286%20L724.8%20335.28%20q-16.8%2017.247999999999998%20-42.0%202.4640000000000004%20q-22.400000000000002%20-10.8416%20-44.800000000000004%205.9136%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22440%22%20width%3D%22800%22%20height%3D%22120%22%20fill%3D%22%2333506E%22%2F%3E%3Cpath%20d%3D%22M240%20448%20Q400.0%20472.0%20560%20428%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.55%22%2F%3E%3Crect%20x%3D%22266.0%22%20y%3D%22452.12%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22298.0%22%20y%3D%22454.88000000000005%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22330.0%22%20y%3D%22456.28%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22362.0%22%20y%3D%22456.32000000000005%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22394.0%22%20y%3D%22455.0%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22426.0%22%20y%3D%22452.32%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23E91D26%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22458.0%22%20y%3D%22448.28%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%23F5A623%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22490.0%22%20y%3D%22442.88%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%231EA97C%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%22522.0%22%20y%3D%22436.12%22%20width%3D%2212%22%20height%3D%2217%22%20rx%3D%221.5%22%20fill%3D%22%230066B1%22%20opacity%3D%22.95%22%2F%3E%3C%2Fsvg%3E")}
.scene-thailand{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%230E7BA8%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%233FB8D4%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23A9E7EC%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%22110.39999999999999%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%2273.60000000000001%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22650%22%20cy%3D%22118%22%20r%3D%2246%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.32%22%3E%3Cellipse%20cx%3D%22160%22%20cy%3D%2284%22%20rx%3D%2234.0%22%20ry%3D%2215.299999999999999%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22185.5%22%20cy%3D%2288.25%22%20rx%3D%2225.5%22%20ry%3D%2211.9%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22136.2%22%20cy%3D%2289.1%22%20rx%3D%2222.099999999999998%22%20ry%3D%2210.2%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20309.2%20Q40.0%20290.0%2080%20304.0%20Q120.0%20290.0%20160%20314.4%20Q200.0%20295.2%20240%20309.2%20Q280.0%20290.0%20320%20304.0%20Q360.0%20290.0%20400%20314.4%20Q440.0%20295.2%20480%20309.2%20Q520.0%20290.0%20560%20304.0%20Q600.0%20290.0%20640%20314.4%20Q680.0%20295.2%20720%20309.2%20Q760.0%20290.0%20800%20304.0%20L820%20560%20Z%22%20fill%3D%22%231C7F8E%22%20opacity%3D%22.45%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22380%22%20width%3D%22800%22%20height%3D%22180%22%20fill%3D%22%230E7A96%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20d%3D%22M40%20402%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20414%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20432%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20444%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20462%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20474%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20492%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20504%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20522%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20534%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M85%20552%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M225%20564%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Crect%20x%3D%22239.1%22%20y%3D%22358.0%22%20width%3D%22121.80000000000001%22%20height%3D%2242.0%22%20fill%3D%22%23C9A227%22%2F%3E%3Cpath%20d%3D%22M226.5%20358.0%20L300%20276.1%20L373.5%20358.0%20Z%22%20fill%3D%22%23E4B429%22%2F%3E%3Cpath%20d%3D%22M226.5%20358.0%20L241.2%20332.8%20L258.0%20358.0%20Z%22%20fill%3D%22%23F2CF54%22%20opacity%3D%22.9%22%2F%3E%3Cpath%20d%3D%22M373.5%20358.0%20L358.8%20332.8%20L342.0%20358.0%20Z%22%20fill%3D%22%23F2CF54%22%20opacity%3D%22.9%22%2F%3E%3Cpath%20d%3D%22M300%20276.1%20l7.3500000000000005%20-48.300000000000004%20l-14.700000000000001%200%20Z%22%20fill%3D%22%23F7C948%22%2F%3E%3Ccircle%20cx%3D%22300%22%20cy%3D%22221.5%22%20r%3D%225.25%22%20fill%3D%22%23F7C948%22%2F%3E%3Cpath%20d%3D%22M96%20430%20q6.0%20-46.0%202.0%20-86.0%22%20stroke%3D%22%235B4636%22%20stroke-width%3D%227.0%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q-26.400000000000002%20-23.0%20-48.0%20-18.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%229.0%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q-22.0%20-11.0%20-40.0%206.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%227.4%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q-14.3%20-1.0%20-26.0%2026.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.8%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q26.400000000000002%20-23.0%2048.0%20-18.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%229.0%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q22.0%20-11.0%2040.0%206.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%227.4%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M98.0%20344.0%20q14.3%20-1.0%2026.0%2026.0%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.8%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Ccircle%20cx%3D%2298.0%22%20cy%3D%22344.0%22%20r%3D%225.0%22%20fill%3D%22%233E2E22%22%2F%3E%3Cpath%20d%3D%22M716%20424%20q-5.5200000000000005%20-42.32%20-1.84%20-79.12%22%20stroke%3D%22%235B4636%22%20stroke-width%3D%226.44%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q-24.288000000000004%20-21.160000000000004%20-44.160000000000004%20-16.560000000000002%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%228.280000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q-20.240000000000002%20-10.120000000000001%20-36.800000000000004%205.5200000000000005%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.6800000000000015%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q-13.156%20-0.9199999999999999%20-23.92%2023.92%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.080000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q24.288000000000004%20-21.160000000000004%2044.160000000000004%20-16.560000000000002%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%228.280000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q20.240000000000002%20-10.120000000000001%2036.800000000000004%205.5200000000000005%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.6800000000000015%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M714.16%20344.88%20q13.156%20-0.9199999999999999%2023.92%2023.92%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.080000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Ccircle%20cx%3D%22714.16%22%20cy%3D%22344.88%22%20r%3D%224.6000000000000005%22%20fill%3D%22%233E2E22%22%2F%3E%3Cpath%20d%3D%22M478.6%20452%20q41.4%2014.4%2082.8%200%20l-10.8%209.0%20q-30.6%207.2%20-61.2%200%20Z%22%20fill%3D%22%230E3448%22%2F%3E%3Cpath%20d%3D%22M520%20448.4%20l0%20-57.6%20l34.2%2050.4%20Z%22%20fill%3D%22%23E4B429%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M518.2%20448.4%20l0%20-57.6%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222.7%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22466%22%20width%3D%22800%22%20height%3D%2294%22%20fill%3D%22%230B5468%22%2F%3E%3Cpath%20d%3D%22M430%2096%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M472%2082%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-bali{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%233B2C6B%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%238A4A8F%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23F09A6B%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22160%22%20r%3D%22134.4%22%20fill%3D%22%23FFC07A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22160%22%20r%3D%2289.60000000000001%22%20fill%3D%22%23FFC07A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22600%22%20cy%3D%22160%22%20r%3D%2256%22%20fill%3D%22%23FFC07A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20322.0%20Q40.0%20302.0%2080%20316.0%20Q120.0%20296.0%20160%20310.0%20Q200.0%20296.0%20240%20322.0%20Q280.0%20302.0%20320%20316.0%20Q360.0%20296.0%20400%20310.0%20Q440.0%20296.0%20480%20322.0%20Q520.0%20302.0%20560%20316.0%20Q600.0%20296.0%20640%20310.0%20Q680.0%20296.0%20720%20322.0%20Q760.0%20302.0%20800%20316.0%20L820%20560%20Z%22%20fill%3D%22%234A2F63%22%20opacity%3D%22.6%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22392%22%20width%3D%22800%22%20height%3D%22168%22%20fill%3D%22%232B2A64%22%20opacity%3D%22.75%22%2F%3E%3Cpath%20d%3D%22M40%20414%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20426%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20444%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20456%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20474%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20486%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20504%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20516%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20534%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20546%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Crect%20x%3D%22298.72%22%20y%3D%22394.24%22%20width%3D%2262.56%22%20height%3D%2225.76%22%20fill%3D%22%234A3226%22%2F%3E%3Cpath%20d%3D%22M285.84%20392.4%20L295.03999999999996%20374.0%20L364.96000000000004%20374.0%20L374.16%20392.4%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.93%22%2F%3E%3Cpath%20d%3D%22M291.82%20364.8%20L301.02%20346.40000000000003%20L358.98%20346.40000000000003%20L368.18%20364.8%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.9%22%2F%3E%3Cpath%20d%3D%22M297.8%20337.2%20L307.0%20318.8%20L353.0%20318.8%20L362.2%20337.2%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.8700000000000001%22%2F%3E%3Cpath%20d%3D%22M303.78%20309.6%20L312.97999999999996%20291.20000000000005%20L347.02000000000004%20291.20000000000005%20L356.22%20309.6%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.8400000000000001%22%2F%3E%3Cpath%20d%3D%22M309.76%20282.0%20L318.96%20263.6%20L341.04%20263.6%20L350.24%20282.0%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.81%22%2F%3E%3Cpath%20d%3D%22M315.74%20254.4%20L324.94%20236.0%20L335.06%20236.0%20L344.26%20254.4%20Z%22%20fill%3D%22%232F241C%22%20opacity%3D%220.78%22%2F%3E%3Cpath%20d%3D%22M330%20226.79999999999998%20l0%20-14.72%22%20stroke%3D%22%23C9A227%22%20stroke-width%3D%223.68%22%2F%3E%3Cpath%20d%3D%22M110%20440%20q6.300000000000001%20-48.300000000000004%202.1%20-90.3%22%20stroke%3D%22%235B4636%22%20stroke-width%3D%227.3500000000000005%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q-27.720000000000002%20-24.150000000000002%20-50.400000000000006%20-18.900000000000002%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%229.450000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q-23.1%20-11.55%20-42.0%206.300000000000001%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%227.850000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q-15.015%20-1.0500000000000007%20-27.3%2027.3%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.250000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q27.720000000000002%20-24.150000000000002%2050.400000000000006%20-18.900000000000002%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%229.450000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q23.1%20-11.55%2042.0%206.300000000000001%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%227.850000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M112.1%20349.7%20q15.015%20-1.0500000000000007%2027.3%2027.3%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.250000000000001%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Ccircle%20cx%3D%22112.1%22%20cy%3D%22349.7%22%20r%3D%225.25%22%20fill%3D%22%233E2E22%22%2F%3E%3Cpath%20d%3D%22M700%20434%20q-5.699999999999999%20-43.699999999999996%20-1.9%20-81.7%22%20stroke%3D%22%235B4636%22%20stroke-width%3D%226.6499999999999995%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q-25.080000000000002%20-21.849999999999998%20-45.599999999999994%20-17.099999999999998%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%228.549999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q-20.9%20-10.45%20-38.0%205.699999999999999%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.949999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q-13.585%20-0.9499999999999993%20-24.7%2024.7%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.349999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q25.080000000000002%20-21.849999999999998%2045.599999999999994%20-17.099999999999998%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%228.549999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q20.9%20-10.45%2038.0%205.699999999999999%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%226.949999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M698.1%20352.3%20q13.585%20-0.9499999999999993%2024.7%2024.7%22%20stroke%3D%22%231F7A4C%22%20stroke-width%3D%225.349999999999999%22%20fill%3D%22none%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.92%22%2F%3E%3Ccircle%20cx%3D%22698.1%22%20cy%3D%22352.3%22%20r%3D%224.75%22%20fill%3D%22%233E2E22%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22448%22%20width%3D%22800%22%20height%3D%22112%22%20fill%3D%22%23241E4E%22%2F%3E%3Cellipse%20cx%3D%22330%22%20cy%3D%22470%22%20rx%3D%22180%22%20ry%3D%2220%22%20fill%3D%22%23191540%22%20opacity%3D%22.6%22%2F%3E%3Cpath%20d%3D%22M200%20104%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M246%2088%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-dubai{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%233B2C6B%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%238A4A8F%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23F09A6B%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22150%22%20cy%3D%22150%22%20r%3D%22124.8%22%20fill%3D%22%23FFB26B%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22150%22%20cy%3D%22150%22%20r%3D%2283.2%22%20fill%3D%22%23FFB26B%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22150%22%20cy%3D%22150%22%20r%3D%2252%22%20fill%3D%22%23FFB26B%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%2260%22%20y%3D%22280%22%20width%3D%2242%22%20height%3D%22120%22%20fill%3D%22%2312395C%22%20opacity%3D%22.75%22%2F%3E%3Crect%20x%3D%22112%22%20y%3D%22232%22%20width%3D%2234%22%20height%3D%22168%22%20fill%3D%22%2312395C%22%20opacity%3D%22.85%22%2F%3E%3Crect%20x%3D%22156%22%20y%3D%22304%22%20width%3D%2240%22%20height%3D%2296%22%20fill%3D%22%2312395C%22%20opacity%3D%22.7%22%2F%3E%3Crect%20x%3D%22560%22%20y%3D%22260%22%20width%3D%2238%22%20height%3D%22140%22%20fill%3D%22%2312395C%22%20opacity%3D%22.8%22%2F%3E%3Crect%20x%3D%22610%22%20y%3D%22210%22%20width%3D%2230%22%20height%3D%22190%22%20fill%3D%22%2312395C%22%20opacity%3D%22.9%22%2F%3E%3Crect%20x%3D%22652%22%20y%3D%22290%22%20width%3D%2244%22%20height%3D%22110%22%20fill%3D%22%2312395C%22%20opacity%3D%22.72%22%2F%3E%3Crect%20x%3D%22706%22%20y%3D%22240%22%20width%3D%2236%22%20height%3D%22160%22%20fill%3D%22%2312395C%22%20opacity%3D%22.85%22%2F%3E%3Crect%20x%3D%22752%22%20y%3D%22304%22%20width%3D%2240%22%20height%3D%2296%22%20fill%3D%22%2312395C%22%20opacity%3D%22.7%22%2F%3E%3Cpath%20d%3D%22M324.0%20400%20L334.08%20250.0%20L385.92%20250.0%20L396.0%20400%20Z%22%20fill%3D%22%230E3A5C%22%2F%3E%3Cpath%20d%3D%22M334.0%20250.0%20L341.28%20140.0%20L378.72%20140.0%20L386.0%20250.0%20Z%22%20fill%3D%22%230E3A5C%22%2F%3E%3Cpath%20d%3D%22M342.0%20140.0%20L347.04%2048.0%20L372.96%2048.0%20L378.0%20140.0%20Z%22%20fill%3D%22%230E3A5C%22%2F%3E%3Cpath%20d%3D%22M348.0%2048.0%20L351.36%20-30.0%20L368.64%20-30.0%20L372.0%2048.0%20Z%22%20fill%3D%22%230E3A5C%22%2F%3E%3Cpath%20d%3D%22M353.0%20-30.0%20L354.96%20-90.0%20L365.04%20-90.0%20L367.0%20-30.0%20Z%22%20fill%3D%22%230E3A5C%22%2F%3E%3Cpath%20d%3D%22M360%20-90.0%20l0%20-70.0%22%20stroke%3D%22%230E3A5C%22%20stroke-width%3D%225.0%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20430%20q120%20-46%20240%20-8%20q140%2044%20260%20-22%20q140%20-50%20340%206%20L820%20560%20Z%22%20fill%3D%22%23C97B3C%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M-20%20560%20L-20%20482%20q120%20-46%20240%20-8%20q140%2044%20260%20-22%20q140%20-50%20340%206%20L820%20560%20Z%22%20fill%3D%22%23A85F2A%22%20opacity%3D%22.95%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22486%22%20width%3D%22800%22%20height%3D%2274%22%20fill%3D%22%238A4A20%22%2F%3E%3Cpath%20d%3D%22M470%20110%20q7%20-5.6000000000000005%2014%200%20q7%20-5.6000000000000005%2014%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.9600000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M512%2096%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-vietnam{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%230E7BA8%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%233FB8D4%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23A9E7EC%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22124%22%20r%3D%22110.39999999999999%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22124%22%20r%3D%2273.60000000000001%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22640%22%20cy%3D%22124%22%20r%3D%2246%22%20fill%3D%22%23FFE8A3%22%20opacity%3D%22.95%22%2F%3E%3Cg%20opacity%3D%220.3%22%3E%3Cellipse%20cx%3D%22170%22%20cy%3D%2280%22%20rx%3D%2232.0%22%20ry%3D%2214.4%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22194.0%22%20cy%3D%2284.0%22%20rx%3D%2224.0%22%20ry%3D%2211.200000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22147.6%22%20cy%3D%2284.8%22%20rx%3D%2220.8%22%20ry%3D%229.600000000000001%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%20opacity%3D%220.22%22%3E%3Cellipse%20cx%3D%22520%22%20cy%3D%2258%22%20rx%3D%2224.0%22%20ry%3D%2210.799999999999999%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22538.0%22%20cy%3D%2261.0%22%20rx%3D%2218.0%22%20ry%3D%228.4%22%20fill%3D%22%23fff%22%2F%3E%3Cellipse%20cx%3D%22503.2%22%20cy%3D%2261.6%22%20rx%3D%2215.6%22%20ry%3D%227.199999999999999%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Crect%20x%3D%220%22%20y%3D%22340%22%20width%3D%22800%22%20height%3D%22220%22%20fill%3D%22%2312708F%22%20opacity%3D%22.72%22%2F%3E%3Cpath%20d%3D%22M40%20362%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M100%20374%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M177%20392%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M277%20404%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M314%20422%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M454%20434%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M451%20452%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M511%20464%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M588%20482%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M688%20494%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M85%20512%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M225%20524%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M222%20542%20q18%20-6%2036%200%20t36%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.4%22%20fill%3D%22none%22%20opacity%3D%22.22%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M282%20554%20q14%20-5%2028%200%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20opacity%3D%22.15%22%20stroke-linecap%3D%22round%22%2F%3E%3Cpath%20d%3D%22M85.0%20348%20q7.8%20-104.50000000000001%2028.6%20-148.20000000000002%20q18.200000000000003%20-45.6%2036.400000000000006%20-38.0%20q20.8%207.6000000000000005%2028.6%2057.0%20q15.6%2087.4%2036.400000000000006%20129.20000000000002%20Z%22%20fill%3D%22%231B5C6E%22%2F%3E%3Cpath%20d%3D%22M245.0%20348%20q9.0%20-137.5%2033.0%20-195.0%20q21.000000000000004%20-60.0%2042.00000000000001%20-50.0%20q24.0%2010.0%2033.0%2075.0%20q18.0%20115.0%2042.00000000000001%20170.0%20Z%22%20fill%3D%22%23164F60%22%2F%3E%3Cpath%20d%3D%22M460.0%20348%20q7.199999999999999%20-90.75000000000001%2026.4%20-128.70000000000002%20q16.8%20-39.6%2033.6%20-33.0%20q19.2%206.6000000000000005%2026.4%2049.5%20q14.399999999999999%2075.9%2033.6%20112.2%20Z%22%20fill%3D%22%231B5C6E%22%2F%3E%3Cpath%20d%3D%22M620.0%20348%20q8.4%20-118.25000000000001%2030.8%20-167.70000000000002%20q19.6%20-51.6%2039.2%20-43.0%20q22.400000000000002%208.6%2030.8%2064.5%20q16.8%2098.9%2039.2%20146.20000000000002%20Z%22%20fill%3D%22%2314495A%22%2F%3E%3Cpath%20d%3D%22M374.0%20430%20q46.0%2016.0%2092.0%200%20l-12.0%2010.0%20q-34.0%208.0%20-68.0%200%20Z%22%20fill%3D%22%230C2F42%22%2F%3E%3Cpath%20d%3D%22M420%20426.0%20l0%20-64.0%20l38.0%2056.0%20Z%22%20fill%3D%22%23E8574A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M418.0%20426.0%20l0%20-64.0%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%223.0%22%2F%3E%3Cpath%20d%3D%22M585.5%20470%20q34.5%2012.0%2069.0%200%20l-9.0%207.5%20q-25.5%206.0%20-51.0%200%20Z%22%20fill%3D%22%230C2F42%22%2F%3E%3Cpath%20d%3D%22M620%20467.0%20l0%20-48.0%20l28.5%2042.0%20Z%22%20fill%3D%22%23F2CF54%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M618.5%20467.0%20l0%20-48.0%22%20stroke%3D%22%230A2540%22%20stroke-width%3D%222.25%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22500%22%20width%3D%22800%22%20height%3D%2260%22%20fill%3D%22%230B4257%22%2F%3E%3Cpath%20d%3D%22M250%2096%20q8%20-6.4%2016%200%20q8%20-6.4%2016%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222.24%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3Cpath%20d%3D%22M296%2082%20q6%20-4.800000000000001%2012%200%20q6%20-4.800000000000001%2012%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.6800000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}
.scene-nepal{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20800%20560%22%20preserveAspectRatio%3D%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22sky%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%220%22%20y2%3D%221%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%231E88D6%22%2F%3E%3Cstop%20offset%3D%220.55%22%20stop-color%3D%22%235BB4EC%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23BFE4FA%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Crect%20width%3D%22800%22%20height%3D%22560%22%20fill%3D%22url%28%23sky%29%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2296.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.13%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2264.0%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.18%22%2F%3E%3Ccircle%20cx%3D%22120%22%20cy%3D%22108%22%20r%3D%2240%22%20fill%3D%22%23FFD98A%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M30%20390%20L150%20178%20L270%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M111.6%20245.84%20L150%20178%20L188.4%20245.84%20q-14.399999999999999%2023.744%20-36.0%203.3920000000000003%20q-19.2%20-14.924800000000001%20-38.4%208.1408%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M170%20390%20L300%20120%20L430%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M258.4%20206.4%20L300%20120%20L341.6%20206.4%20q-15.6%2030.24%20-39.0%204.32%20q-20.8%20-19.008000000000003%20-41.6%2010.368%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M334%20390%20L452%2070%20L570%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M414.24%20172.4%20L452%2070%20L489.76%20172.4%20q-14.16%2035.839999999999996%20-35.4%205.120000000000001%20q-18.88%20-22.528000000000002%20-37.76%2012.288%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M472%20390%20L600%20150%20L728%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M559.04%20226.8%20L600%20150%20L640.96%20226.8%20q-15.36%2026.88%20-38.4%203.84%20q-20.48%20-16.896%20-40.96%209.216%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M630%20390%20L730%20196%20L830%20390%20Z%22%20fill%3D%22%235E86AE%22%20opacity%3D%221%22%2F%3E%3Cpath%20d%3D%22M698.0%20258.08%20L730%20196%20L762.0%20258.08%20q-12.0%2021.727999999999998%20-30.0%203.104%20q-16.0%20-13.6576%20-32.0%207.449599999999999%20Z%22%20fill%3D%22%23FFFFFF%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M-30%20420%20L80%20250%20L190%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M44.8%20304.4%20L80%20250%20L115.2%20304.4%20q-13.2%2019.04%20-33.0%202.72%20q-17.6%20-11.968%20-35.2%206.528%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M120%20420%20L240%20226%20L360%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M201.6%20288.08%20L240%20226%20L278.4%20288.08%20q-14.399999999999999%2021.727999999999998%20-36.0%203.104%20q-19.2%20-13.6576%20-38.4%207.449599999999999%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M290%20420%20L420%20210%20L550%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M378.4%20277.2%20L420%20210%20L461.6%20277.2%20q-15.6%2023.52%20-39.0%203.3600000000000003%20q-20.8%20-14.784%20-41.6%208.064%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Cpath%20d%3D%22M490%20420%20L620%20236%20L750%20420%20Z%22%20fill%3D%22%233E6285%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M578.4%20294.88%20L620%20236%20L661.6%20294.88%20q-15.6%2020.608%20-39.0%202.9440000000000004%20q-20.8%20-12.9536%20-41.6%207.0656%20Z%22%20fill%3D%22%23EAF4FB%22%20opacity%3D%22.92%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%22420%22%20width%3D%22800%22%20height%3D%22140%22%20fill%3D%22%232B4763%22%2F%3E%3Cellipse%20cx%3D%22596%22%20cy%3D%22176%22%20rx%3D%2227.3%22%20ry%3D%2213.65%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M617.0%20176%20q29.400000000000002%20-2.1%2042.0%204.2%20l-6.300000000000001%206.300000000000001%20q-18.900000000000002%202.1%20-35.7%200%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M654.8%20173.9%20l10.5%20-12.600000000000001%20l4.2%204.2%20l-8.4%2012.600000000000001%20Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%22562.4%22%20y%3D%22150.8%22%20width%3D%2275.60000000000001%22%20height%3D%223.3600000000000003%22%20rx%3D%221.6800000000000002%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Crect%20x%3D%22593.9%22%20y%3D%22150.8%22%20width%3D%224.2%22%20height%3D%2212.600000000000001%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M579.2%20189.65%20l0%208.4%20M608.6%20189.65%20l0%208.4%22%20stroke%3D%22%23FFFFFF%22%20stroke-width%3D%223.1500000000000004%22%2F%3E%3Crect%20x%3D%22568.7%22%20y%3D%22197.0%22%20width%3D%2254.6%22%20height%3D%223.57%22%20rx%3D%221.785%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Ccircle%20cx%3D%22587.6%22%20cy%3D%22174.95%22%20r%3D%226.825%22%20fill%3D%22%237EC4F5%22%20opacity%3D%22.95%22%2F%3E%3Cpath%20d%3D%22M180%20130%20q7%20-5.6000000000000005%2014%200%20q7%20-5.6000000000000005%2014%200%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.9600000000000002%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.55%22%2F%3E%3C%2Fsvg%3E")}


/* ---------- REAL COUNTRY FLAGS (Visa Destinations) ---------- */
.flag{background-size:cover;background-position:center;width:100%;height:100%;display:block}
.flag-nz{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2040%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ujA%22%3E%3Cpolygon%20points%3D%220%2C0%2030%2C0%2060%2C20%2060%2C40%2032%2C21%200%2C0%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22ujB%22%3E%3Cpolygon%20points%3D%2260%2C0%2030%2C0%200%2C20%200%2C40%2028%2C21%2060%2C0%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%2300247D%22%2F%3E%3CclipPath%20id%3D%22uj%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2230%22%20height%3D%2220%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url%28%23uj%29%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2230%22%20height%3D%2220%22%20fill%3D%22%2300247D%22%2F%3E%3Cpath%20d%3D%22M0%200%20L30%2020%20M30%200%20L0%2020%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225.6000000000000005%22%2F%3E%3Cpath%20d%3D%22M0%200%20L30%2020%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%222.2%22%20clip-path%3D%22url%28%23ujA%29%22%2F%3E%3Cpath%20d%3D%22M30%200%20L0%2020%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%222.2%22%20clip-path%3D%22url%28%23ujB%29%22%2F%3E%3Crect%20x%3D%2211.6%22%20y%3D%220%22%20width%3D%226.800000000000001%22%20height%3D%2220%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226.6%22%20width%3D%2230%22%20height%3D%226.800000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2213.2%22%20y%3D%220%22%20width%3D%223.5999999999999996%22%20height%3D%2220%22%20fill%3D%22%23CF142B%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228.2%22%20width%3D%2230%22%20height%3D%223.5999999999999996%22%20fill%3D%22%23CF142B%22%2F%3E%3C%2Fg%3E%3Cpolygon%20points%3D%2246.00%2C6.60%2046.84%2C8.84%2049.23%2C8.95%2047.36%2C10.44%2048.00%2C12.75%2046.00%2C11.43%2044.00%2C12.75%2044.64%2C10.44%2042.77%2C8.95%2045.16%2C8.84%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2246.00%2C7.70%2046.57%2C9.22%2048.19%2C9.29%2046.92%2C10.30%2047.35%2C11.86%2046.00%2C10.97%2044.65%2C11.86%2045.08%2C10.30%2043.81%2C9.29%2045.43%2C9.22%22%20fill%3D%22%23CF142B%22%2F%3E%3Cpolygon%20points%3D%2252.00%2C15.40%2052.64%2C17.12%2054.47%2C17.20%2053.04%2C18.34%2053.53%2C20.10%2052.00%2C19.09%2050.47%2C20.10%2050.96%2C18.34%2049.53%2C17.20%2051.36%2C17.12%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2252.00%2C16.30%2052.42%2C17.42%2053.62%2C17.47%2052.68%2C18.22%2053.00%2C19.38%2052.00%2C18.71%2051.00%2C19.38%2051.32%2C18.22%2050.38%2C17.47%2051.58%2C17.42%22%20fill%3D%22%23CF142B%22%2F%3E%3Cpolygon%20points%3D%2245.00%2C24.00%2045.74%2C25.98%2047.85%2C26.07%2046.20%2C27.39%2046.76%2C29.43%2045.00%2C28.26%2043.24%2C29.43%2043.80%2C27.39%2042.15%2C26.07%2044.26%2C25.98%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2245.00%2C25.00%2045.49%2C26.32%2046.90%2C26.38%2045.80%2C27.26%2046.18%2C28.62%2045.00%2C27.84%2043.82%2C28.62%2044.20%2C27.26%2043.10%2C26.38%2044.51%2C26.32%22%20fill%3D%22%23CF142B%22%2F%3E%3Cpolygon%20points%3D%2251.00%2C29.80%2051.54%2C31.25%2053.09%2C31.32%2051.88%2C32.29%2052.29%2C33.78%2051.00%2C32.92%2049.71%2C33.78%2050.12%2C32.29%2048.91%2C31.32%2050.46%2C31.25%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2251.00%2C30.60%2051.35%2C31.52%2052.33%2C31.57%2051.56%2C32.18%2051.82%2C33.13%2051.00%2C32.59%2050.18%2C33.13%2050.44%2C32.18%2049.67%2C31.57%2050.65%2C31.52%22%20fill%3D%22%23CF142B%22%2F%3E%3C%2Fsvg%3E")}
.flag-uk{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2040%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ujA%22%3E%3Cpolygon%20points%3D%220%2C0%2030%2C0%2060%2C20%2060%2C40%2032%2C21%200%2C0%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22ujB%22%3E%3Cpolygon%20points%3D%2260%2C0%2030%2C0%200%2C20%200%2C40%2028%2C21%2060%2C0%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3CclipPath%20id%3D%22uj%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2260%22%20height%3D%2240%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url%28%23uj%29%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%2300247D%22%2F%3E%3Cpath%20d%3D%22M0%200%20L60%2040%20M60%200%20L0%2040%22%20stroke%3D%22%23fff%22%20stroke-width%3D%2211.200000000000001%22%2F%3E%3Cpath%20d%3D%22M0%200%20L60%2040%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%224.4%22%20clip-path%3D%22url%28%23ujA%29%22%2F%3E%3Cpath%20d%3D%22M60%200%20L0%2040%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%224.4%22%20clip-path%3D%22url%28%23ujB%29%22%2F%3E%3Crect%20x%3D%2223.2%22%20y%3D%220%22%20width%3D%2213.600000000000001%22%20height%3D%2240%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%2213.2%22%20width%3D%2260%22%20height%3D%2213.600000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2226.4%22%20y%3D%220%22%20width%3D%227.199999999999999%22%20height%3D%2240%22%20fill%3D%22%23CF142B%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%2216.4%22%20width%3D%2260%22%20height%3D%227.199999999999999%22%20fill%3D%22%23CF142B%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}
.flag-au{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2040%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ujA%22%3E%3Cpolygon%20points%3D%220%2C0%2030%2C0%2060%2C20%2060%2C40%2032%2C21%200%2C0%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22ujB%22%3E%3Cpolygon%20points%3D%2260%2C0%2030%2C0%200%2C20%200%2C40%2028%2C21%2060%2C0%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%2300247D%22%2F%3E%3CclipPath%20id%3D%22uj%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2230%22%20height%3D%2220%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url%28%23uj%29%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2230%22%20height%3D%2220%22%20fill%3D%22%2300247D%22%2F%3E%3Cpath%20d%3D%22M0%200%20L30%2020%20M30%200%20L0%2020%22%20stroke%3D%22%23fff%22%20stroke-width%3D%225.6000000000000005%22%2F%3E%3Cpath%20d%3D%22M0%200%20L30%2020%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%222.2%22%20clip-path%3D%22url%28%23ujA%29%22%2F%3E%3Cpath%20d%3D%22M30%200%20L0%2020%22%20stroke%3D%22%23CF142B%22%20stroke-width%3D%222.2%22%20clip-path%3D%22url%28%23ujB%29%22%2F%3E%3Crect%20x%3D%2211.6%22%20y%3D%220%22%20width%3D%226.800000000000001%22%20height%3D%2220%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%226.6%22%20width%3D%2230%22%20height%3D%226.800000000000001%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%2213.2%22%20y%3D%220%22%20width%3D%223.5999999999999996%22%20height%3D%2220%22%20fill%3D%22%23CF142B%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%228.2%22%20width%3D%2230%22%20height%3D%223.5999999999999996%22%20fill%3D%22%23CF142B%22%2F%3E%3C%2Fg%3E%3Cpolygon%20points%3D%2245.00%2C25.80%2045.77%2C28.41%2048.28%2C27.38%2046.72%2C29.61%2049.09%2C30.93%2046.38%2C31.10%2046.82%2C33.78%2045.00%2C31.76%2043.18%2C33.78%2043.62%2C31.10%2040.91%2C30.93%2043.28%2C29.61%2041.72%2C27.38%2044.23%2C28.41%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2246.00%2C6.40%2046.64%2C8.12%2048.47%2C8.20%2047.04%2C9.34%2047.53%2C11.10%2046.00%2C10.09%2044.47%2C11.10%2044.96%2C9.34%2043.53%2C8.20%2045.36%2C8.12%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2252.00%2C13.20%2052.44%2C14.39%2053.71%2C14.44%2052.72%2C15.23%2053.06%2C16.46%2052.00%2C15.76%2050.94%2C16.46%2051.28%2C15.23%2050.29%2C14.44%2051.56%2C14.39%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2250.00%2C21.60%2050.59%2C23.18%2052.28%2C23.26%2050.96%2C24.31%2051.41%2C25.94%2050.00%2C25.01%2048.59%2C25.94%2049.04%2C24.31%2047.72%2C23.26%2049.41%2C23.18%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2243.00%2C20.00%2043.49%2C21.32%2044.90%2C21.38%2043.80%2C22.26%2044.18%2C23.62%2043.00%2C22.84%2041.82%2C23.62%2042.20%2C22.26%2041.10%2C21.38%2042.51%2C21.32%22%20fill%3D%22%23fff%22%2F%3E%3Cpolygon%20points%3D%2238.00%2C10.50%2038.27%2C11.43%2039.17%2C11.06%2038.61%2C11.86%2039.46%2C12.33%2038.49%2C12.39%2038.65%2C13.35%2038.00%2C12.63%2037.35%2C13.35%2037.51%2C12.39%2036.54%2C12.33%2037.39%2C11.86%2036.83%2C11.06%2037.73%2C11.43%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E")}
.flag-ca{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2040%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ujA%22%3E%3Cpolygon%20points%3D%220%2C0%2030%2C0%2060%2C20%2060%2C40%2032%2C21%200%2C0%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22ujB%22%3E%3Cpolygon%20points%3D%2260%2C0%2030%2C0%200%2C20%200%2C40%2028%2C21%2060%2C0%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2240%22%20fill%3D%22%23D80621%22%2F%3E%3Crect%20x%3D%2245%22%20y%3D%220%22%20width%3D%2215%22%20height%3D%2240%22%20fill%3D%22%23D80621%22%2F%3E%3Cpath%20fill%3D%22%23D80621%22%20transform%3D%22translate%2830%2C20%29%20scale%280.62%29%22%20d%3D%22M0%20-15%20L2.6%20-8.4%20L9.6%20-9.4%20L5.6%20-3.6%20L11.6%20-0.6%20L4.8%202.2%20L6.4%209.2%20L0%205.6%20L-6.4%209.2%20L-4.8%202.2%20L-11.6%20-0.6%20L-5.6%20-3.6%20L-9.6%20-9.4%20L-2.6%20-8.4%20Z%22%2F%3E%3C%2Fsvg%3E")}
.flag-eu{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2060%2040%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ujA%22%3E%3Cpolygon%20points%3D%220%2C0%2030%2C0%2060%2C20%2060%2C40%2032%2C21%200%2C0%22%2F%3E%3C%2FclipPath%3E%3CclipPath%20id%3D%22ujB%22%3E%3Cpolygon%20points%3D%2260%2C0%2030%2C0%200%2C20%200%2C40%2028%2C21%2060%2C0%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%23003399%22%2F%3E%3Cpolygon%20points%3D%2230.00%2C7.10%2030.47%2C8.35%2031.81%2C8.41%2030.76%2C9.25%2031.12%2C10.54%2030.00%2C9.80%2028.88%2C10.54%2029.24%2C9.25%2028.19%2C8.41%2029.53%2C8.35%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2235.50%2C8.57%2035.97%2C9.83%2037.31%2C9.89%2036.26%2C10.72%2036.62%2C12.01%2035.50%2C11.27%2034.38%2C12.01%2034.74%2C10.72%2033.69%2C9.89%2035.03%2C9.83%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2239.53%2C12.60%2040.00%2C13.85%2041.33%2C13.91%2040.29%2C14.75%2040.64%2C16.04%2039.53%2C15.30%2038.41%2C16.04%2038.77%2C14.75%2037.72%2C13.91%2039.06%2C13.85%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2241.00%2C18.10%2041.47%2C19.35%2042.81%2C19.41%2041.76%2C20.25%2042.12%2C21.54%2041.00%2C20.80%2039.88%2C21.54%2040.24%2C20.25%2039.19%2C19.41%2040.53%2C19.35%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2239.53%2C23.60%2040.00%2C24.85%2041.33%2C24.91%2040.29%2C25.75%2040.64%2C27.04%2039.53%2C26.30%2038.41%2C27.04%2038.77%2C25.75%2037.72%2C24.91%2039.06%2C24.85%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2235.50%2C27.63%2035.97%2C28.88%2037.31%2C28.94%2036.26%2C29.77%2036.62%2C31.06%2035.50%2C30.32%2034.38%2C31.06%2034.74%2C29.77%2033.69%2C28.94%2035.03%2C28.88%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2230.00%2C29.10%2030.47%2C30.35%2031.81%2C30.41%2030.76%2C31.25%2031.12%2C32.54%2030.00%2C31.80%2028.88%2C32.54%2029.24%2C31.25%2028.19%2C30.41%2029.53%2C30.35%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2224.50%2C27.63%2024.97%2C28.88%2026.31%2C28.94%2025.26%2C29.77%2025.62%2C31.06%2024.50%2C30.32%2023.38%2C31.06%2023.74%2C29.77%2022.69%2C28.94%2024.03%2C28.88%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2220.47%2C23.60%2020.94%2C24.85%2022.28%2C24.91%2021.23%2C25.75%2021.59%2C27.04%2020.47%2C26.30%2019.36%2C27.04%2019.71%2C25.75%2018.67%2C24.91%2020.00%2C24.85%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2219.00%2C18.10%2019.47%2C19.35%2020.81%2C19.41%2019.76%2C20.25%2020.12%2C21.54%2019.00%2C20.80%2017.88%2C21.54%2018.24%2C20.25%2017.19%2C19.41%2018.53%2C19.35%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2220.47%2C12.60%2020.94%2C13.85%2022.28%2C13.91%2021.23%2C14.75%2021.59%2C16.04%2020.47%2C15.30%2019.36%2C16.04%2019.71%2C14.75%2018.67%2C13.91%2020.00%2C13.85%22%20fill%3D%22%23FFCC00%22%2F%3E%3Cpolygon%20points%3D%2224.50%2C8.57%2024.97%2C9.83%2026.31%2C9.89%2025.26%2C10.72%2025.62%2C12.01%2024.50%2C11.27%2023.38%2C12.01%2023.74%2C10.72%2022.69%2C9.89%2024.03%2C9.83%22%20fill%3D%22%23FFCC00%22%2F%3E%3C%2Fsvg%3E")}

/* =========================================================================
   CMS ADDITIONS
   ========================================================================= */
.legal-copy h3{margin-top:2rem;margin-bottom:.6rem;font-size:1.25rem}
.legal-copy h3:first-child{margin-top:0}
.legal-copy p{margin-bottom:1rem;color:var(--body);line-height:1.75}
.legal-copy em{color:var(--muted)}

/* admin-uploaded partner logo inside the marquee icon circle */
.mq-ic img{border-radius:50%}
