/* ========================================
   SECTION 1: DESIGN TOKENS & ROOT
   ======================================== */
@import"reset.css";
@import"skeleton.css";
/* Google Web Fonts */
@import url('https://fonts.googleapis.com/css?family=Kulim+Park:300,400,700|Open+Sans:300,600|Lato:300|Raleway:400,700,900|Roboto:100.400');

/* CSS Custom Properties / Design Tokens */


:root {
  /* === Colors === */
  /* Primary Blue Scale */
  --color-primary-100: #a6d2ff;
  --color-primary-300: #79bbff;
  --color-primary: #025CB6;
  --color-primary-600: #0066cc;
  --color-primary-700: #0b447d;
  --color-primary-900: #002346;

  /* Error (new semantic token) */
  --color-error: #e53935;
  --color-error-light: #ff6b6b;
  --color-error-dark: #c62828;

  /* Consolidated Grays — reduced from 12 to 7 semantic levels */
  --color-gray-50: #f9f9f9;
  /* backgrounds, subtle */
  --color-gray-100: #e1e1e1;
  /* borders, light fills */
  --color-gray-300: #d2d2d2;
  --color-gray-500: #bdbdbd;
  /* mid tone */
  --color-gray-600: #9a9a9a;
  --color-gray-700: #6d6d6d;
  --color-gray-900: #212124;
  /* dark text, deep shadows */

  /* Keep purposeful legacy aliases for minimal breaking changes */
  --color-gray: var(--color-gray-500);
  --color-gray-light: var(--color-gray-100);
  --color-gray-dark: var(--color-gray-900);
  --color-gray-mid: var(--color-gray-600);

  /* Preserved colors from original */
  --color-white: #FFFFFF;
  --color-text: #025CB6;
  --color-bg: #FBFBFB;
  --color-indigo: #0217FF;
  --color-indigo-light: #2D3DF7;
  --color-indigo-dark: #0E1773;
  --color-indigo-vivid: #2939FE;
  --color-indigo-navy: #343F64;
  --color-slate: #415970;
  --color-slate-dark: #3e5872;
  --color-slate-darker: #27383c;
  --color-navy: #0f1a3c;
  --color-navy-deep: #121920;
  --color-teal: #00afbe;
  --color-cta: #9dce2c;
  --color-cta-dark: #8cb82b;
  --color-cta-border: #83c41a;
  --color-cta-light: #b0dd2d;
  --color-cta-glow: #81DE15;
  --color-cta-highlight: #c1ed9c;
  --color-cta-text-shadow: #689324;
  --color-cta-text-dark: #617526;
  --color-cta-deep: #4D6920;
  --color-green: #35B53A;
  --color-green-dark: #1E7C22;
  --color-accent-yellow: #ffc928;
  --color-accent-gold: #fbc02d;
  --color-social-facebook: #3b5998;
  --color-social-twitter: #1DA1F3;
  --color-social-google: #d34836;
  --color-social-whatsapp: #25d366;
  --color-black: #000000;
  --color-black-soft: #1e1e1e;
  --color-black-deep: #040710;
  --color-overlay-subtle: rgba(0, 0, 0, 0.1);
  --color-overlay-light: rgba(0, 0, 0, 0.3);
  --color-overlay-dark: rgba(0, 0, 0, 0.5);
  --color-transparent: transparent;
  --font-primary: 'Kulim Park', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --font-lato: 'Lato', sans-serif;

  /* Spacing Tokens */
  --spacing-xxs: 4px;
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* New: Form-specific */
  --form-input-padding: 15px;
  --form-border-radius: var(--radius-md);

  /* Animation / Transition */
  --transition-fast: 0.25s ease;
  --transition-normal: 0.3s ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 5px;
  --radius-lg: 6px;
  --radius-xl: 10px;
  --radius-round: 50%;
  --radius-pill: 25px;
  --radius-circle: 30px;

  /* Component-specific tokens */
  --nav-height: 60px;
  --hamburger-size: 50px;
  --news-card-height: 530px;
  --news-card-height-lg: 736px;
  --news-card-height-xl: 789px;
  --news-image-height: 350px;
  --review-height: 400px;
  --review-text-height: 180px;
  --footer-margin-top: 340px;
  --footer-margin-top-lg: 600px;
  --share-widget-width: 250px;
  --logo-width: 170px;
  --logo-height: 55px;
  --logo-width-lg: 220px;
  --logo-height-lg: 100px;
}

/* ========================================
   SECTION 2: GLOBAL STYLES & BASE LAYOUT
   ======================================== */



/* Body */
body {
  background: var(--color-bg);
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--color-text);
  position: relative;
  min-width: 320px;
}

html,
body {
  height: 100%;
}

/* Header Base */
header {
  display: none;
  position: fixed;
  top: 0px;
  z-index: 100;
  background-color: var(--color-primary);
  box-shadow: 0px 1px 4px 0px var(--color-gray-dark), 0px 0px 25px var(--color-transparent);
  border-bottom: solid 1px var(--color-gray);
  min-height: 60px;
  box-sizing: border-box;
  left: 0px;
  width: 100%;
}

/* Content */
article {
  clear: both;
  margin: var(--spacing-lg) var(--spacing-xs) 0;
  background-color: var(--color-white);
  background-image: url('/imgs/ui/bgi.png');
  position: relative;
  top: var(--spacing-xl);
  /* was ~420px */
  z-index: 60;
  padding: var(--spacing-xs);
  box-shadow: 0px 0px 7px var(--color-primary-600);
  border-bottom: solid 2px var(--color-indigo-vivid);
}

article,
footer {
  /* top: 410px; */
}

/* Links */
a {
  color: var(--color-primary);
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Text */
p {
  text-align: center;
  text-shadow: 0px 1px 1px var(--color-white);
}

/* Legacy flexslider shim (kept for any non-slider .flexslider uses) */
.flexslider {
  width: 100%;
  margin: 0;
}

/* ========================================
   SECTION 3: COMPONENTS
   ----------------------------------------
   3.1 Navigation
   3.2 Slider
   3.3 Forms
   3.4 Page Sections
   ======================================== */
/* ========================================
   3.1 NAVIGATION COMPONENTS
   ======================================== */
/* Mobile Menu */
/* ========================================
   3.1 NAVIGATION COMPONENTS — Native Popover API + mw- prefix
   ======================================== */
.menu {
  top: var(--spacing-xl);
  position: fixed;
  width: 92%;
  z-index: 50;
}

/* Mobile Hamburger */
.mv-menu {
  display: block;
  float: right;
  margin: 4px 6px 0 0;
}

.mv-menu a {
  display: block;
  width: var(--spacing-lg);
  height: var(--spacing-lg);
  background: url('/imgs/ui/menu.png') no-repeat center;
  background-size: 60%;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.mv-menu a:hover {
  opacity: 1;
}

/* ====================== MAIN MENU ====================== */
.mw-menu {
  display: none;
  background: #002c59;
  padding: 15px;
  list-style: none;
  margin: 0;
  width: 100%;
}

/* ====================== MOBILE (unchanged logic) ====================== */
@media (max-width: 991px) {
  #mw-menu {
    display: none;
    position: fixed;
    width: 88%;
    top: 22%;
    right: 0;
    padding: 20px 15px;
    background-color: var(--color-primary-600);
    box-shadow: 0 0 15px var(--color-primary-100) inset;
    border: 4px solid var(--color-white);
    border-right: none;
    z-index: 999;
  }

  .mw-menu>li {
    margin-bottom: 8px;
  }

  .mw-menu>li>a,
  .mw-menu>li>button {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-white);
    color: var(--color-primary);
    padding: 14px 18px;
    font: 700 22px 'Kulim Park', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.09rem;
  }

  .mw-menu>li.current>a,
  .mw-menu>li.current>button,
  .mw-menu>li:hover>a,
  .mw-menu>li:hover>button {
    background: linear-gradient(to bottom, var(--color-primary) 10%, var(--color-primary-300) 100%);
    color: var(--color-white);
    border-color: var(--color-primary-300);
  }

  .mw-submenu {
    margin-top: 8px;
    padding-left: 15px;
  }

  .mw-submenu li a {
    padding: 10px 15px;
    color: var(--color-white);
    border-left: 3px solid var(--color-primary-300);
  }
}

/* ====================== DESKTOP + POPOVER ====================== */
@media (min-width: 992px) {
  .mv-menu {
    display: none;
  }

  #mw-menu {
    display: block !important;
    position: fixed;
    background: transparent;
    float: right;
    margin: 12px 20px 0 0;
    top: var(--spacing-xl);
  }

  .mw-menu>li {
    position: relative;
    display: inline-block;
    margin: 0 8px;
  }

  /* Main link / button */
  .mw-menu-btn,
  .mw-menu-link {
    display: block;
    color: var(--color-gray-100);
    font-size: 1.05rem;
    padding: 12px 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 3px var(--color-primary-900);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mw-menu>li:hover>.mw-menu-btn,
  .mw-menu>li:focus-within>.mw-menu-btn,
  .mw-menu>li.current>.mw-menu-btn,
  .mw-menu>li.current>.mw-menu-link {
    color: var(--color-white);
    background-color: var(--color-primary);
    text-shadow: 0 0 6px var(--color-primary);
  }

  /* Arrow */
  .mw-menu>li.has-submenu>.mw-menu-btn::after {
    content: " ▼";
    font-size: 0.75em;
    margin-left: 6px;
    opacity: 0.8;
  }

  /* Popover Submenu */
  .mw-submenu {
    popover: auto;
    /* Native auto popover (light dismiss + ESC) */
    background: var(--color-primary-700);
    min-width: 210px;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--color-primary-300);
    margin-top: 10px;
    list-style: none;
  }

  .mw-submenu:popover-open {
    display: block;
    /* fallback + explicit */
  }

  /* Positioning */
  .mw-menu>li.has-submenu>.mw-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .mw-submenu li a {
    display: block;
    padding: 11px 22px;
    color: var(--color-white);
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .mw-submenu li a:hover,
  .mw-submenu li a:focus {
    background: var(--color-primary-600);
    color: var(--color-teal);
    padding-left: 28px;
  }

  /* Nested submenus */
  .mw-submenu ul {
    top: 0;
    left: 100%;
    transform: translateX(12px);
    min-width: 180px;
  }
}

/* Accessibility */
.mw-menu-btn:focus-visible,
.mw-submenu a:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mw-menu * {
    transition: none !important;
  }
}

/* ========================================
   3.2 SLIDER COMPONENTS — CSS Grid + Scroll Snap
   ======================================== */

/* Main Slider Wrapper */
.main-slider {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--color-black);
  z-index: 10;
}

/* Inner slider shell */
.main-slider .slider {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Slide track */
.main-slider .slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.main-slider .slides::-webkit-scrollbar {
  display: none;
}

/* Individual slide — matches both .slide divs and <li> tags from PHP */
.main-slider .slides>li,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  list-style: none;
  background-size: cover;
  background-position: 50% 50%;
}

/* Slide background image */
.main-slider .slides>li>img,
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 1;
  display: block;
}

/* Caption overlay — .caption div OR direct children (PHP output) */
.main-slider .slides>li>.ttl,
.main-slider .slides>li>.sbt,
.main-slider .slides>li>.txt,
.main-slider .slides>li>.btn,
.slide .caption {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

/* Remove default list margin/padding on ul wrapper */
.main-slider .slides {
  padding: 0;
  margin: 0;
}

/* === Slider Captions === */
.main-slider .ttl {
  color: var(--color-white);
  height: 200px;
  text-align: center;
  text-shadow: 1px 1px 3px var(--color-black-soft);
  padding: 10px;
  letter-spacing: -1px;
  text-indent: -5000px;
  background: url(/imgs/ui/logo-hd.png) no-repeat;
  background-position: 50% 50%;
  background-size: auto 100%;
  margin-top: var(--spacing-lg);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: normal;
}

.main-slider .sbt {
  color: var(--color-white);
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: bolder;
  text-shadow: 1px 1px 0px var(--color-slate), 0px 0px 6px var(--color-primary-600);
  padding: var(--spacing-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.main-slider .txt {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--color-white);
  letter-spacing: 5px;
  text-align: center;
  text-shadow: 1px 1px 0px var(--color-slate-dark), 0px 0px 6px var(--color-primary-600);
  font-weight: 100;
  margin: 0px auto 1px;
  text-transform: uppercase;
}

/* === Slider Buttons === */
.main-slider .btn {
  clear: both;
  text-align: center;
  z-index: 1000;
  margin-top: var(--spacing-sm);
}

.main-slider .btn a {
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: bold;
  padding: 11px 18px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 10px 0px 2px;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 10px;
  transition: all 0.25s ease;
}

.main-slider .btn a:active {
  position: relative;
  top: 1px;
}

.main-slider .btn a.btx {
  border: 3px solid var(--color-white);
  background: linear-gradient(to bottom, var(--color-primary-600) 5%, var(--color-primary-300) 100%);
  color: var(--color-white);
  text-shadow: 1px 1px 0px var(--color-navy);
  border-radius: var(--radius-circle);
}

.main-slider .btn a.btx:hover {
  background: linear-gradient(to bottom, var(--color-primary-300) 5%, var(--color-primary-600) 100%);
  background-color: var(--color-primary-600);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 5px var(--color-slate-darker) inset;
  margin-top: 11px;
  text-shadow: 1px 1px 0px var(--color-black-deep);
}

.main-slider .btn a.bty {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  text-shadow: 1px 1px 0px var(--color-indigo-navy);
}

.main-slider .btn a.bty:hover {
  background: linear-gradient(to bottom, var(--color-green) 50%, var(--color-green-dark) 100%);
  background-color: var(--color-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 5px var(--color-cta-glow);
}

/* === Arrow Buttons === */
.main-slider .flex-prev,
.main-slider .flex-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: var(--color-overlay-dark);
  color: var(--color-white);
  border: none;
  width: var(--spacing-lg);
  height: var(--spacing-lg);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-round);
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.main-slider .flex-prev {
  left: var(--spacing-md);
}

.main-slider .flex-next {
  right: var(--spacing-md);
}

.main-slider .flex-prev:hover,
.main-slider .flex-next:hover {
  background: var(--color-primary-600);
  transform: translateY(-50%) scale(1.1);
}

.main-slider .flex-prev:focus-visible,
.main-slider .flex-next:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

/* === Dot Navigation === */
.main-slider .flex-control-nav {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
  padding: 0;
  margin: 0;
}

.main-slider .flex-control-nav button {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background: var(--color-gray-500);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.main-slider .flex-control-nav button.active,
.main-slider .flex-control-nav button:hover {
  background: var(--color-white);
  transform: scale(1.35);
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  .main-slider .slides {
    scroll-behavior: auto;
  }

  .main-slider .flex-prev,
  .main-slider .flex-next,
  .main-slider .btn a,
  .main-slider .flex-control-nav button {
    transition: none;
  }
}

/* ========================================
   BOTTOM BAR ACTIONS (iwbx_bba) - Versión Compacta
   ======================================== */

/* ========================================
   BOTTOM BAR ACTIONS (xld-btb) 
   — Horizontal on mobile | Vertical on desktop (right side)
   ======================================== */

.xld-btb {
  position: fixed;
  background-color: var(--color-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.25);
  z-index: 110;
  transition: all 0.3s ease;
}

/* ====================== MOBILE (default) ====================== */
.xld-btb {
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  border-top: 2px solid var(--color-white);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.xld-btb .quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.xld-btb .action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.78rem;
  transition: all 0.25s ease;
  height: 100%;
  position: relative;
}

.xld-btb .action-btn:hover {
  background-color: var(--color-primary-600);
}

.xld-btb .action-btn .icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xld-btb .action-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.xld-btb .action-btn .title {
  font-size: 0.73rem;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 2px var(--color-primary-900);
  margin-top: 2px;
}

/* Vertical separators on mobile */
.xld-btb .action-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* ====================== DESKTOP — Vertical on the right ====================== */
@media (min-width: 992px) {
  .xld-btb {
    top: 40%;
    /* separation from bottom */
    right: var(--spacing-md);
    /* separation from right edge */
    left: auto;
    width: 88px;
    /* compact width for vertical icons */
    max-height: 280px;
    /* ← your requested maximum height */
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    border-top: none;
    border-bottom: 2px solid var(--color-white);
  }

  .xld-btb .quick-actions {
    display: flex;
    flex-direction: column;
    /* vertical stack */
    width: 100%;
    height: auto;
    max-height: 280px;
    overflow-y: auto;
    /* scroll if more than 200px */
    scrollbar-width: none;
    /* hide scrollbar */
  }

  .xld-btb .quick-actions::-webkit-scrollbar {
    display: none;
  }

  .xld-btb .action-btn {
    flex-direction: column;
    height: auto;
    padding: 14px 8px;
    min-height: 58px;
    border-radius: var(--radius-md);
    margin: 2px 3px;
  }

  /* Remove vertical separators on desktop (use horizontal if needed) */
  .xld-btb .action-btn:not(:last-child)::after {
    display: none;
  }

  /* Optional: make it wider on hover for better readability */
  .xld-btb:hover {
    width: 180px;
  }

  .xld-btb:hover .action-btn .title {
    opacity: 1;
    max-width: none;
  }

  /* Hide title by default on compact mode */
  .xld-btb .action-btn .title {
    font-size: 0.7rem;
    /* opacity: 0; */
    /* max-width: 0; */
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.25s ease;
  }
}

/* ====================== Accessibility & Reduced Motion ====================== */
.xld-btb .action-btn:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {

  .xld-btb,
  .xld-btb .action-btn {
    transition: none;
  }
}

/* ========================================
   3.3 FORM COMPONENTS
   ======================================== */
/* Input & Select Base */

/* Forms — improved with new tokens + focus-visible */
input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
  padding: var(--form-input-padding);
  border: 1px solid var(--color-primary);
  border-radius: var(--form-border-radius);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-size: 0.875rem;
  vertical-align: middle;
  font-weight: bold;
  margin-bottom: var(--spacing-md);
  background: var(--color-white);
  outline: none;
  width: 100%;
  letter-spacing: 1px;
  line-height: var(--spacing-xl);
  /* standardized */
  box-sizing: border-box;
  display: block;
}

section.pst form input:focus-visible,
section.pst form textarea:focus-visible,
section.pst form select:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 4px rgba(2, 92, 182, 0.2);
}


textarea {
  min-height: 100px;
}



/* Form Structure */
section.pst form {
  position: relative;
  padding: 6px 0 0 0;
}

section.pst form legend {
  /* display:none; */
}

section.pst form input[type="text"] {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: var(--spacing-md);
}

section.pst form span {
  font-size: 13px;
  position: relative;
  top: -30px;
  text-align: right;
  text-shadow: 1px 1px 1px var(--color-gray-700);
  letter-spacing: 2px;
}

section.pst form fieldset a.button {
  border: 1px solid var(--color-cta-border);
  background: linear-gradient(to bottom, var(--color-cta) 5%, var(--color-cta-dark) 100%);
  background-color: var(--color-cta);
  color: var(--color-white);
  text-shadow: 1px 2px 0 var(--color-cta-deep);
  box-shadow: inset 1px 1px 0 0 var(--color-cta-highlight);
  display: block;
  padding: 10px;
  letter-spacing: 5px;
  font-size: 20px;
  font-weight: bold;
}

section.pst form h3 {
  font-size: 0.875rem;
  letter-spacing: 3px;
  font-family: var(--font-secondary);
  color: var(--color-white);
  line-height: 30px;
  background-color: var(--color-primary);
  box-shadow: 0px 2px 0px var(--color-gray-100);
  margin-bottom: var(--spacing-md);
  font-weight: bold;
}

section.pst form fieldset {
  border: none;
  padding: 0
}

section.pst form fieldset fieldset {
  padding: 15px;
  display: block;
  border: 2px solid var(--color-gray);
  margin: 20px 0px;
}

section.pst form fieldset fieldset legend {
  float: none;
  position: relative;
  top: 0;
  left: 0;
  width: 200px;
}

section.pst form fieldset fieldset label {
  max-width: 30%;
  float: left;
}

section.pst form label {
  display: block;
  min-height: 21px;
  position: relative;
}

section.pst form legend {
  background-color: var(--color-primary-900);
  color: var(--color-white);
  font-size: 11px;
  padding: 10px;
  line-height: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: left;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

section.pst form input[type="text"],
section.pst form input[type="number"],
section.pst form textarea {
  width: 100%;
}

section.pst form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  top: -4px;
  position: relative;
}

section.pst form .message {
  min-height: 140px;
}

/* Subscribe Form */
section.pst form .suscribe {
  font-size: 12px;
  letter-spacing: 1px;
  padding: var(--spacing-xs);
  text-align: center;
  margin: 0px 40px 10px 38px;
  border: dotted 1px var(--color-primary);
  padding: 0px;
  display: block;
  padding-left: 15px;
  text-indent: -35px;
  line-height: 17px;
  letter-spacing: 1px;
  opacity: .8;
}

section.pst form .suscribe:hover {
  opacity: 1;
}

section.pst form .suscribe input[type="checkbox" i] {
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0px 10px 0 12px;
  vertical-align: bottom;
  position: relative;
  top: -1px;
}

section.pst form .suscribe a {
  color: var(--color-white);
  font-weight: bold
}

/* Form Buttons */
section.pst form .buttons {
  position: relative;
  overflow: hidden;
  padding: 0px;
  text-align: right;
}

section.pst form .buttons span {
  position: relative;
  overflow: hidden;
  margin-right: 21px;
}

section.pst form .btn {
  box-shadow: inset 0px 1px 0px 0px var(--color-white);
  background: linear-gradient(to bottom, var(--color-primary-300) 5%, var(--color-primary) 100%);
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary);
  display: inline-block;
  cursor: pointer;
  color: var(--color-white);
  font-size: 15px;
  font-weight: bold;
  padding: 15px 0px;
  text-decoration: none;
  text-shadow: 0px 1px 0px var(--color-primary-700);
  width: 100%;
  margin: 0;
  letter-spacing: 3px;
  box-sizing: border-box;
}

section.pst form .btn:hover {
  background: linear-gradient(to bottom, var(--color-primary) 5%, var(--color-primary-300) 100%);
  background-color: var(--color-primary);
}

section.pst form .btn:active {
  position: relative;
  top: 1px;
}

section.pst form small {
  font-size: 13px;
  line-height: 20px;
  margin: 10px;
  display: block;
  color: var(--color-gray-500);
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

/* Form Validation States */
section.pst form .success,
section.pst form .error,
section.pst form .empty {
  display: none;
  text-align: left;
}

section.pst form .error,
section.pst form .empty {
  position: relative;
  color: var(--color-white);
  font-size: 10px;
  top: -40px;
  left: 10px;
  background-color: var(--color-error);
  /* error state */
  padding: 10px 8px 10px 25px;
  font-weight: bold;
  max-width: 200px;
}

section.pst form .success,
section.pst form .success strong {
  color: var(--color-black);
}

/* ========================================
   3.4 PAGE SECTION COMPONENTS
   ======================================== */
/* Posts Base */
header h1 {
  float: left;
}

header h1 a {
  display: block;
  background: url(/imgs/ui/logo.png) 0 0 no-repeat;
  width: 170px;
  height: 55px;
  text-indent: -5000px;
  background-size: 100%;
  margin: 3px 5px 0px;
  float: left;
}

header h1 a:hover {
  opacity: 1;
  animation: flash 1.5s;
}

@keyframes flash {
  0% {
    opacity: .4;
  }

  100% {
    opacity: 1;
  }
}

section.pst {
  font-weight: 300;
  position: relative;
  margin: 20px;
  padding: 0;
  text-align: center;
}

section.pst h2 {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: lighter;
  letter-spacing: 5px;
  padding-bottom: 6px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

/* Header Posts */
section.pst.hdr {
  text-align: center
}

section.pst.hdr h1 {
  letter-spacing: 0px;
  color: var(--color-primary);
  font-size: 26px;
  text-transform: uppercase;
}

section.pst.hdr h1 span {
  width: 140px;
  display: inline-block;
}

section.pst.hdr h1:before,
section.pst.hdr h1:after {
  background-color: var(--color-primary);
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 25%;
}

section.pst.hdr h1:before {
  right: 1em;
  margin-left: -50%;
}

section.pst.hdr h1:after {
  left: 1em;
  margin-right: -50%;
}

/* Titles */
section.pst .hds h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
}

section.pst .hds h4 {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  line-height: 30px;
  width: 250px;
  margin: 15px auto 16px;
  padding: var(--spacing-xs);
  color: var(--color-white);
  letter-spacing: 2px;
  font-weight: bold;
  box-sizing: border-box;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 100;
  background-color: var(--color-primary);
}

/* Image Animations */
.pst .img img {
  width: 100%;
  opacity: 0;
  transition: all 700ms ease-out;
  transform: translate3d(0px, 200px, 0px);
  backface-visibility: hidden;
}

.pst .img img.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Welcome Section */
section.pst.wlc .hds h3 {
  font-weight: 800;
  font-size: 41px;
  letter-spacing: -1px;
  padding-bottom: 15px;
}

section.pst.wlc .txt b.pct,
section.pst.hdr .txt b.nmb {
  font-size: 2em;
  letter-spacing: -3px;
  top: -2px;
  position: relative;
}

section.pst.wlc div.img {
  padding: 5px 0px;
  border-top: 1px dashed var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}

section.pst.wlc div.img img {
  width: 100%;
  max-width: 600px;
}

section.pst.wlc div.txt p {
  font-size: 36px;
  padding: 15px;
  line-height: 39px;
  text-shadow: 0px 1px 1px var(--color-white);
  font-weight: 800;
  letter-spacing: -1px;
}

section.pst.wlc div.lnk a {
  box-shadow: inset 0px 1px 0px 0px var(--color-white);
  background: linear-gradient(to bottom, var(--color-primary-300) 5%, var(--color-primary) 100%);
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary);
  display: inline-block;
  cursor: pointer;
  color: var(--color-white);
  font-size: 15px;
  font-weight: bold;
  padding: 15px 0px;
  text-decoration: none;
  text-shadow: 0px 1px 0px var(--color-primary-700);
  width: 100%;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

section.pst.wlc div.lnk a:hover {
  background: linear-gradient(to bottom, var(--color-primary) 5%, var(--color-primary-300) 100%);
  background-color: var(--color-primary);
}

section.pst.wlc div.lnk a:active {
  position: relative;
  top: 1px;
}

/* Subheader Section */
section.pst.shd .hds h3 {
  font-size: 41px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 33px;
}

section.pst.shd .img img {
  width: 100%;
  max-width: 600px;
}

section.pst.shd .txt p {
  font-size: 36px;
  padding: 15px;
  line-height: 39px;
  text-shadow: 0px 1px 1px var(--color-white);
  font-weight: 800;
  letter-spacing: -1px;
}

/* News Sections - MDX */
section.pst.hdr ul.nws li {
  box-sizing: border-box;
  height: var(--news-card-height);
  /* was 250px */
  background-size: 120% auto;
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-lg);
  /* was 25px */
  font-weight: bold;
  background-position: 50%;
}

section.pst.hdr ul.nws li a {
  border-bottom: solid 5px var(--color-white);
  padding: var(--spacing-sm);
  position: absolute;
  background: var(--color-primary);
  opacity: 0.8;
  display: block;
  bottom: 0;
  color: var(--color-white);
  text-shadow: 1px 1px 0px var(--color-primary-900);
}

section.pst.hdr ul.nws li a:active {
  opacity: 1;
}

section.pst.hdr a.nws {
  background-color: var(--color-white);
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  color: var(--color-gray-400);
  overflow: hidden;
  letter-spacing: 1px;
  text-shadow: 0px 1px 1px var(--color-white);
  border: solid 3px var(--color-gray-light-alt);
}

/* News Sections - PGs */
section.pst.nws {
  background-color: var(--color-primary);
  margin: 0 0 var(--spacing-lg) 0;
  /* was 0px 0px 25px */
  box-shadow: 0 0 5px var(--color-gray-dark);
  border-top: solid 1px var(--color-white);
  border-bottom: solid 1px var(--color-white);
  height: var(--news-card-height);
  /* was 530px */
}

section.pst.hdr.nws h1 {
  font-size: 33px;
  font-weight: 900;
  letter-spacing: -1px;
  padding-bottom: var(--spacing-xxs);
}

section.pst.nws div.img {
  height: var(--news-image-height);
  /* was 350px */
  overflow: hidden;
  float: left;
  position: absolute;
}

section.pst.nws div.img img {
  height: var(--news-image-height);
  width: 100%;
}

section.pst.nws div.hds {
  position: relative;
  background: var(--color-primary);
  opacity: 0.8;
}

section.pst.nws div.txt {
  margin: 35px 10px 0;
  padding: 7px 15px;
  font-size: 18px;
  height: 229px;
  overflow: hidden;
  top: -330px;
  /* still needs JS or better layout later */
  background-color: var(--color-navy-deep);
  opacity: 0.9;
  color: var(--color-white);
}

section.pst.nws div.txt p {
  text-shadow: 2px 2px 0px var(--color-black);
}

section.pst.nws div.hds h2 {
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  padding: 5px 10px;
  height: 75px;
  overflow: hidden;
  vertical-align: middle;
  line-height: 128%;
}

section.pst.nws div.hds h2 a {
  color: var(--color-white);
  text-shadow: 0px 1px 3px var(--color-black);
}

section.pst.nws div.hds time {
  color: var(--color-white);
  font-size: 13px;
  text-shadow: 0px 1px 3px var(--color-black);
  text-align: left;
  display: block;
  padding: 0px 10px 6px;
  letter-spacing: 2px;
}

section.pst.nws div.lnk {
  position: relative;
  top: 80px;
}

section.pst.nws div.lnk p a {
  padding: 15px;
  margin: 0 10px;
}

section.pst.nws div.lnk p a:active,
section.pst.nws div.lnk p a:hover {
  opacity: 1;
  text-decoration: none;
  background-color: var(--color-primary-300);
}

section.pst.nws div.adm {
  position: relative;
  top: 30px;
}

/* Social Media */
section.pst ul.smi li {
  display: inline-block;
}

section.pst ul.smi li a img {
  width: 50px;
  margin: 5px
}

section.pst ul.smi li a img:hover {
  position: relative;
  top: -2px;
}

section.pst ul.smi li a img:active {
  position: relative;
  top: 2px;
}

/* Package Sections - iPACK */
section.pst.ipk {
  text-align: center;
  background: var(--color-white);
  margin: var(--spacing-md);
  padding: var(--spacing-md);
  box-shadow: 0 0 50px var(--color-gray-mid);
  border: solid 2px var(--color-white);
}

section.pst.ipk div.img img {
  max-width: 100%;
}

section.pst.ipk div.hds h3 {
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

section.pst.ipk div.txt p {
  padding-bottom: 10px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section.pst.ipk div.txt ul {
  margin: 0 5px;
  padding: 0 0 0 30px;
}

section.pst.ipk div.txt li {
  text-align: left;
  list-style-type: none;
  list-style-image: url(/imgs/ui/ichk.png);
  padding: 15px 5px;
  line-height: 23px;
}

section.pst.ipk div.lnk p a {
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  color: var(--color-gray-400);
  overflow: hidden;
  letter-spacing: 1px;
  background-color: var(--color-white);
  display: block;
  text-shadow: 0px 1px 1px var(--color-white);
  border: solid 3px var(--color-gray-light-alt);
}

section.pst.ipk div.lnk p a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: solid 3px var(--color-white);
  text-decoration: none
}

section.pst.ipk div.txt a {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Package Sections - PACK */
section.pst.pck {
  font-size: 19px;
  line-height: 20px;
  text-align: center;
  background: var(--color-white);
  margin: var(--spacing-md);
  padding: var(--spacing-md);
  box-shadow: 0 0 50px var(--color-gray-mid);
  border: solid 2px var(--color-white);
}

section.pst.pck h2 {
  font-family: var(--font-secondary);
  color: var(--color-gray-600);
  padding: var(--spacing-xs);
}

section.pst.pck h3 {
  font-size: 18px;
  padding: var(--spacing-xs);
  font-weight: 900;
  color: var(--color-gray-500);
  padding: 10px;
}

section.pst.pck div.img img {
  max-width: 100%
}

section.pst.pck div.txt a {
  background: var(--color-gray);
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  color: var(--color-white);
  overflow: hidden;
  letter-spacing: 1px;
}

section.pst.pck div.lnk a {
  background: var(--color-gray);
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  color: var(--color-white);
  overflow: hidden;
  letter-spacing: 1px;
}

section.pst.pck div.txt {
  border-bottom: solid 1px var(--color-gray);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

section.pst.pck div.txt ul {
  margin: 0 20px;
  padding: 0 0 0 30px;
}

section.pst.pck div.txt li {
  text-align: left;
  list-style-type: none;
  list-style-image: url(/imgs/ui/ichk.png);
  padding: 10px 5px;
}

section.pst.pck div.txt p a {
  background: transparent !important;
  display: inline;
  text-align: inherit;
  position: inherit;
  text-transform: inherit;
  font-size: inherit;
  font-weight: bold;
  padding: 0px;
  color: var(--color-gray);
  overflow: hidden;
  letter-spacing: 1px;
}

section.pst.pck div.txt li a {
  font-size: 18px;
  padding: var(--spacing-xs);
}

/* Package Color Variants */
section.pst.pck.btg div.hds h3 {
  color: var(--color-cta-light);
}

section.pst.pck.btg div.txt p a {
  color: var(--color-cta-light);
}

section.pst.pck.btg div.lnk a {
  background: var(--color-cta-light);
  text-shadow: 0px 1px 1px var(--color-cta-text-dark);
}

section.pst.pck.bto div.hds h3 {
  color: var(--color-accent-yellow);
}

section.pst.pck.bto div.txt p a {
  color: var(--color-accent-yellow);
}

section.pst.pck.bto div.lnk a {
  background: var(--color-accent-yellow);
}

section.pst.pck.btb div.hds h3 {
  color: var(--color-primary);
}

section.pst.pck.btb div.txt p a {
  color: var(--color-primary);
}

section.pst.pck.btb div.lnk a {
  background: var(--color-primary);
}

section.pst.pck div.lnk a {
  display: block;
}

/* Showcase Section */
section.pst.swc {
  margin: var(--spacing-md);
  padding: var(--spacing-md);
  box-shadow: 0 0 50px var(--color-gray-mid);
  border: solid 2px var(--color-white);
}

section.pst.swc .img {
  margin-bottom: var(--spacing-md);
}

section.pst.swc .img img {
  max-width: 100%;
}

section.pst.swc .hds h2 {
  text-decoration: underline;
}

section.pst.swc .txt p {
  text-shadow: 2px 1px 2px var(--color-gray-50);
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  overflow: auto;
}

section.pst.swc .lnk p {
  text-align: center;
}

section.pst.swc .lnk a {
  text-shadow: none;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 2px;
  padding: 10px 15px;
  font-weight: bold;
  margin: 5px auto;
  display: inline-block;
  border: solid 1px var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
}

section.pst.swc .lnk a:hover {
  top: 1px;
  position: relative;
}

/* Item Section */
section.pst.itm {
  margin: var(--spacing-md);
  padding: var(--spacing-md);
  box-shadow: 0 0 50px var(--color-gray-mid);
  border: solid 2px var(--color-white);
}

section.pst.itm .img {
  margin: 15px;
}

section.pst.itm .img img {
  max-width: 100%;
}

section.pst.itm .hds h2 {
  font-size: 32px;
}

section.pst.itm .hds {
  margin: 30px 20px 0;
}

section.pst.itm .hds h3 {
  font-size: 35px;
  line-height: 31px;
  text-transform: uppercase;
}

section.pst.itm .txt p {
  text-shadow: 2px 1px 2px var(--color-gray-50);
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  overflow: auto;
  margin: 15px;
  line-height: 45px;
  letter-spacing: -2px;
  font-family: var(--font-secondary);
  font-weight: 600;
}

section.pst.itm .txt a {
  text-shadow: none;
  font-size: 13px;
  line-height: 30px;
  letter-spacing: 2px;
  padding: 10px 15px;
  font-weight: bold;
  margin: 5px;
  display: inline-block;
  border: solid 1px var(--color-white);
}

section.pst.itm .txt a:hover {
  box-shadow: 0px 0px 3px var(--color-primary-300);
  color: var(--color-primary);
  background-color: var(--color-gray-50);
  text-shadow: 1px 1px 0px var(--color-white);
}

section.pst.itm .lnk {
  margin: 20px;
}

section.pst.itm .lnk p a {
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  color: var(--color-white);
  overflow: hidden;
  letter-spacing: 1px;
  background-color: var(--color-primary);
  display: block;
  text-shadow: 0px 1px 1px var(--color-primary-900);
  letter-spacing: 10px;
  box-shadow: 0 3px 5px var(--color-primary-300);
}

section.pst.itm .lnk p a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: solid 3px var(--color-white);
  text-decoration: none
}

/* WhatsApp Button */
#whatsapp {
  display: none;
  background-image: url('/imgs/scm/wsp.gif');
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  background-size: 100%;
  text-indent: -9000px;
  margin: 4.5%;
  top: calc(var(--nav-height) + 10px);
  /* was 70px */
  position: fixed;
  z-index: 100;
  right: 0;
}

/* Contacts */
.contacts p {
  float: left;
  margin-right: 50px;
  padding-bottom: 0;
}

/* Subscribe Section */
section.pst.sbc {
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border: 5px dashed var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
}

section.pst.sbc div.hds h3 {
  color: var(--color-white);
  text-shadow: 0px 1px 1px var(--color-primary-900);
  font-size: 44px;
  line-height: 35px;
}

section.pst.sbc div.hds h4 {
  font-size: 12px;
  color: var(--color-primary-100);
  letter-spacing: 3px;
  border-top: solid 1px;
}

section.pst.sbc a.btn {
  border: 1px solid var(--color-cta-border);
  background: linear-gradient(to bottom, var(--color-cta) 5%, var(--color-cta-dark) 100%);
  background-color: var(--color-cta);
  color: var(--color-white);
  text-shadow: 1px 1px 0 var(--color-cta-text-shadow);
  box-shadow: inset 1px 1px 0 0 var(--color-cta-highlight);
  padding: 10px;
  display: block;
  letter-spacing: 4px;
  font-weight: bold;
  font-size: 22px;
}

section.pst.sbc a.snd {
  border: 1px solid var(--color-primary-300);
  background: linear-gradient(to bottom, var(--color-primary-900) 5%, var(--color-primary-700) 100%);
  background-color: var(--color-primary-900);
  color: var(--color-primary);
  text-shadow: 1px 1px 0 var(--color-primary-900);
  box-shadow: inset 1px 1px 0 0 var(--color-primary-900);
  padding: 10px;
  display: block;
  letter-spacing: 4px;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
  opacity: .7
}

/* Position Layouts */
div.gol {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

div.gol div.hds {
  clear: both
}

div.gol div.img {
  clear: both
}

div.gol div.img img {
  box-shadow: 0px 0px 25px var(--color-black);
  box-sizing: border-box;
  border: solid 5px var(--color-white);
  height: auto;
  max-width: 100%;
  margin: 10px 0 18px 0;
}

div.gol div.txt p,
textarea#txt.txt {
  clear: both;
  text-align: justify;
  margin: 10px;
  padding: 10px;
}

div.gor {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

div.gor div.hds {
  clear: both
}

div.gor div.img {
  clear: both;
}

div.gor div.img img {
  box-shadow: 0px 0px 25px var(--color-black);
  box-sizing: border-box;
  border: solid 5px var(--color-white);
  height: auto;
  max-width: 100%;
  margin: 10px 0 18px 0;
}

div.gor div.txt {
  clear: both
}

/* Position Layout Links */
div.gol div.txt a,
div.gor div.txt a {
  color: var(--color-gray-600);
  font-family: 'Audiowide';
  border: solid 1px var(--color-gray);
  background-color: var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 5px 10px;
  text-shadow: 0px 1px 1px var(--color-white);
  opacity: .7;
  transition: all 0.5s ease;
  display: inline-block;
  margin-bottom: 10px;
}

div.gol div.txt a:hover,
div.gor div.txt a:hover {
  color: var(--color-white);
  border: solid 1px var(--color-white);
  background-color: var(--color-black);
  text-shadow: 0px 1px 1px var(--color-gray-dark);
  text-decoration: none;
  opacity: 1;
  box-shadow: 0 0 10px var(--color-gray-dark);
}

/* Map */
#map {
  overflow: hidden;
  width: 100%;
}

#map img {
  width: 100%;
}

/* Reviews */
.reviews {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  height: var(--review-height);
  /* was 400px */
  background-color: var(--color-gray-50);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 8px var(--color-overlay-subtle);
  padding: var(--spacing-md);
  box-sizing: border-box;
}

.reviews .slides {
  display: flex;
  transition: transform .5s ease-in-out
}

.reviews .slides li {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  display: none
}

.reviews .review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px
}

.reviews .stars {
  font-size: 20px;
  color: var(--color-accent-gold)
}

.reviews .review img.usr {
  height: 44px;
  width: 44px;
  border-radius: var(--radius-round)
}

.reviews .review p {
  font-size: 0.875rem;
  margin: 0;
  text-align: center
}

.reviews .review p.txt {
  height: var(--review-text-height);
  /* was 180px */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.6;
}

.reviews .google-logo {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  width: 50px;
  height: auto;
}

.reviews .flex-control-nav {
  position: relative;
  left: 45%;
  display: block;
}

.reviews .flex-control-nav a {
  width: 12px;
  height: 12px;
  background-color: var(--color-gray-light-alt);
  border-radius: var(--radius-round);
  display: block;
  cursor: pointer;
  transition: background-color .3s ease
}

.reviews .flex-control-nav a.active {
  background-color: var(--color-accent-gold)
}

.reviews .flex-direction-nav {
  position: relative;
  bottom: var(--spacing-sm);
  width: 100%;
  display: block;
  overflow: hidden;
}

.reviews .flex-direction-nav li a {
  opacity: .2
}

/* Footer */
footer {
  clear: both;
  padding: var(--spacing-md) 0 0;
  margin: var(--footer-margin-top) auto 0;
  /* was 340px */
  text-align: center;
  background-color: var(--color-primary);
  position: relative;
  border-top: solid 2px var(--color-gray-dark);
}

footer a {
  color: var(--color-white);
  margin: 1px;
}

/* Footer - BY */
footer section.by {
  font-size: 13px;
  padding: var(--spacing-md);
  margin: 0;
  letter-spacing: 5px;
  opacity: 0.5;
  font-family: monospace;
  color: var(--color-gray);
  border-bottom: solid 2px var(--color-gray-900);
}

footer section.by a {
  color: var(--color-gray-400)
}

footer section.by a b {
  color: var(--color-gray-100)
}

/* Footer - INFO */
footer section.inf {
  color: var(--color-gray);
  opacity: .5;
}

footer section.inf div {
  display: inline-block;
  font-size: 13px;
  padding: var(--spacing-sm);
  letter-spacing: 1px;
}

/* Footer - PAYMENT */
footer section.cpy div.pym {
  padding: 80px;
  /* still large — consider token if changed often */
}

footer section.cpy div.pym img {
  max-width: 100%;
}

/* Footer - COPYRIGHT */
footer section.cpy div.cpy {
  padding: var(--spacing-md) 0 0;
  font-size: 13px;
  font-weight: bold;
  color: var(--color-gray-300);
}

/* Share Widget */
#shr {
  background-color: var(--color-primary-700);
  color: var(--color-white);
  width: var(--share-widget-width);
  /* was 250px */
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-sm);
  opacity: 0.8;
  border-radius: var(--radius-md);
}

#shr h5 {
  letter-spacing: 3px;
  padding: 10px 0;
  font-size: 20px;
}

#shr h5 span {
  width: 140px;
  display: inline-block;
}

#shr h5:before,
#shr h5:after {
  background-color: var(--color-white);
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 11%;
}

#shr h5:before {
  right: 1em;
  margin-left: -50%;
}

#shr h5:after {
  left: 1em;
  margin-right: -50%;
}

#shr ul {
  padding: 0x;
  margin: 0px;
  list-style: none;
  text-align: center
}

#shr ul li {
  display: inline-block;
  width: 25%;
  background-image: url('/imgs/ui/smb.png');
  border: solid 1px var(--color-gray-800);
  max-width: 40px;
  height: 40px;
  background-size: auto 90%;
  text-indent: -9000px;
  margin: 8%;
  opacity: .8;
  border-radius: var(--radius-xl);
}

#shr ul li:hover {
  box-shadow: 0px 3px 0px var(--color-gray-100);
  border: solid 1px var(--color-white);
  position: relative;
  top: -2px;
}

#shr ul li a {
  display: block;
}

#shr ul li.fbk {
  background-position: 4px;
}

#shr ul li.fbk:hover {
  background-color: var(--color-social-facebook);
}

#shr ul li.twt {
  background-position: -33px;
}

#shr ul li.twt:hover {
  background-color: var(--color-social-twitter);
}

#shr ul li.ggp {
  background-color: var(--color-social-google);
  background-position: -70px;
}

#shr ul li.ggp:hover {
  background-color: var(--color-social-google);
}

#shr ul li.wtp {
  background-position: -107px;
}

#shr ul li.wtp:hover {
  background-color: var(--color-social-whatsapp);
}

/* Terms & Conditions */
#TyC {
  background-color: var(--color-gray-50);
  border: solid 1px var(--color-gray);
  font-size: .8em;
  padding: 30px;
}

/* Utility Classes */
.HD {
  VISIBILITY: hidden
}

/* ========================================
   SECTION 4: RESPONSIVE BREAKPOINTS
   ======================================== */
/* 340px - Small Mobile */
@media (min-width: 340px) {

  article,
  footer {}

  section.pst.nws div.hds h2 {
    font-size: 22px;
  }
}

/* 360px - Mobile */
@media (min-width: 360px) {
  #menu {
    width: 360px;
  }

  .flexslider .slides>li {
    height: 640px;
  }

  .main-slider .sbt {}
}

/* 600px - Large Mobile */
@media (min-width: 600px) {
  .flexslider .slides>li {
    min-height: 580px;
  }
}

/* 768px - Tablets */
@media (min-width: 768px) {
  .main-slider .slider {
    width: 100%;
    padding: 0;
  }

  .main-slider .flexslider .slides>li {
    display: none;
    min-height: 450px;
    background-size: 110% auto;
  }

  .main-slider .flex-control-nav {
    left: 48.2%;
  }

  .main-slider .ttl {
    font-size: 50px;
    letter-spacing: -2px;
    margin-top: 150px;
    height: 250px;
  }

  .main-slider .sbt {
    font-size: 40px;
  }

  .main-slider .txt {
    font-size: 16px;
    width: 150px;
  }

  section.pst form textarea {
    height: 165px;
    width: 100%;
    overflow: auto;
    resize: none;
  }
}

/* 800px - Large Tablets */
@media (min-width: 800px) {

  /* Header */
  header {
    height: 90px;
    width: 100%;
  }

  header.padheader {
    padding-bottom: 37px;
  }

  header h1 {
    width: 200px;
    padding-left: 0px;
    padding-right: 8px;
    margin: auto;
  }

  header h1 a {
    width: 220px;
    height: 100px;
    margin: 7px 10px 0px;
  }

  header div.menu {
    margin: 10px auto 0;
    overflow: hidden;
    position: static;
    float: right;
    width: 70%;
  }

  /* Typography */
  h2 {
    font-size: 1.7em;
  }

  h3 {
    font-size: .8em;
  }

  /* Posts */
  article {
    text-align: center;
    top: 600px;
  }

  article hr {
    clear: both;
  }

  section.pst {
    margin-bottom: 40px;
    padding: 0;
  }

  /* Header Posts */
  section.pst.hdr div.txt {
    margin: 40px auto;
    width: 84%;
  }

  section.pst.hdr div.txt p {
    text-align: center;
  }

  /* iPACK */
  section.pst.ipk {
    text-align: center;
    background: var(--color-white);
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }

  /* PACK */
  section.pst.pck {
    font-size: 19px;
    line-height: 20px;
    text-align: center;
    background: var(--color-white);
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }

  section.pst.pck div.hds {
    font-size: 45px;
  }

  /* SHOWCASE */
  section.pst.swc {
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }

  /* ITEM */
  section.pst.itm {
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }

  /* NEWS */
  section.pst.nws {
    box-shadow: 0px 0px 5px var(--color-gray-700);
    border: solid 1px var(--color-white);
    height: 736px;
    margin: 10px 0px 20px 34px;
  }

  section.pst.hdr ul.nws li {
    box-sizing: border-box;
    height: var(--news-card-height);
    /* was 250px */
    background-size: 120% auto;
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-lg);
    /* was 25px */
    font-weight: bold;
    background-position: 50%;
  }

  section.pst.hdr ul.nws li a {
    border-bottom: solid 5px var(--color-white);
    padding: var(--spacing-sm);
    position: absolute;
    background: var(--color-primary);
    opacity: 0.8;
    display: block;
    bottom: 0;
    color: var(--color-white);
    text-shadow: 1px 1px 0px var(--color-primary-900);
  }

  /* GOL - Left Image Layout */
  section.pst.gol {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
  }

  section.pst.gol div.hds {
    clear: none;
    float: left;
    width: 45%;
    margin-left: 2%;
  }

  section.pst.gol div.img {
    clear: none;
    float: right;
    width: 47%;
    margin: 20px 0;
    padding-right: 5%;
  }

  section.pst.gol div.img img {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 25px var(--color-black);
    border: solid 5px var(--color-white);
    margin: 0;
  }

  section.pst.gol div.txt {
    clear: none;
    float: left;
    width: 43%;
    box-sizing: border-box;
    margin-left: 2%;
  }

  /* GOR - Right Image Layout */
  section.pst.gor {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
  }

  section.pst.gor div.hds {
    clear: none;
    float: right;
    width: 45%;
    margin-top: 10px;
  }

  section.pst.gor div.img {
    clear: none;
    float: left;
    width: 48%;
    margin: 20px 0;
    padding-left: 3%;
  }

  section.pst.gor div.img img {
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 25px var(--color-black);
    border: solid 5px var(--color-white);
    margin: 0;
  }

  section.pst.gor div.txt {
    clear: none;
    float: right;
    width: 41%;
    box-sizing: border-box;
    margin-right: 4%;
  }

  .hdk {
    display: none;
  }

  footer section.cpy div.pym img {
    max-height: 60px;
  }

  footer {
    margin: 600px auto 0;
  }
}

/* 992px - Desktops */
@media (min-width: 992px) {
  #imnx {
    display: block;
    position: relative;
    width: auto;
    top: auto;
    padding: 0px;
    background-color: transparent;
    box-shadow: none;
    float: right;
    border: 0;
  }

  .mv-menu {
    display: none;
  }

  /* Superfish Menu Desktop */
  .mw-menu {
    float: none;
    margin: 10px 20px 35px;
    text-align: center;
  }

  .mw-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mw-menu li {
    position: relative;
    float: none;
    display: inline-block;
    margin: 6px 0px;
    transition: 1s;
    opacity: .85;
  }

  .mw-menu li.current,
  .mw-menu li.sfHover,
  .mw-menu li:hover {
    background: transparent;
    opacity: 1;
  }

  .mw-menu li a {
    display: block;
    color: var(--color-gray-100);
    font-size: 0.8rem;
    margin: 1px 5px 0 2px;
    padding: 10px 15px;
    position: relative;
    text-shadow: 0px 2px 2px var(--color-primary-900);
    border: none;
    background: transparent;
    transition: 1s;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0px;
  }

  .mw-menu li.current a,
  .mw-menu li.sfHover a,
  .mw-menu li a:hover {
    color: var(--color-white);
    text-decoration: none;
    background-color: var(--color-primary);
    border: none;
    text-shadow: 0px 0px 5px var(--color-primary);
    box-shadow: none;
  }

  .mw-menu li.current a span.arrow,
  .mw-menu li.sfHover a span.arrow,
  .mw-menu li a:hover span.arrow {
    background-position: 0 -4px;
  }

  .mw-menu ul {
    position: absolute;
    top: -999em;
    z-index: 99;
    width: 123px;
    display: none;
    padding: 30px 0 25px;
  }

  .mw-menu li li {
    padding: 0 10px 10px;
    border-radius: 0;
    background: none;
  }

  .mw-menu li li:hover,
  .mw-menu li li.sfHover,
  .mw-menu li li.current {
    background: none;
  }

  .mw-menu li li a,
  .mw-menu li.sfHover li a,
  .mw-menu li.current li a {
    color: var(--color-white);
    padding: 0;
    background: none;
  }

  .mw-menu li li a:hover,
  .mw-menu li li.sfHover a,
  .mw-menu li li.current a {
    color: var(--color-teal);
  }

  .mw-menu ul ul {
    position: absolute;
    top: -999em;
    z-index: 99;
    width: 123px;
    display: none;
  }

  .mw-menu li li li a,
  .mw-menu li li.sfHover li a,
  .mw-menu li li.current li a {
    color: var(--color-white);
  }

  .mw-menu li li li a:hover,
  .mw-menu li li.current a {
    color: var(--color-teal);
  }

  .mw-menu li:hover ul,
  .mw-menu li.sfHover ul {
    left: 0px;
    top: 125px;
  }

  ul.mw-menu li:hover li ul,
  ul.mw-menu li.sfHover li ul {
    top: -999em;
  }

  ul.mw-menu li li:hover ul,
  ul.mw-menu li li.sfHover ul {
    left: 122px;
    top: -30px;
  }

  ul.mw-menu li li:hover li ul,
  ul.mw-menu li li.sfHover li ul {
    top: -999em;
  }

  ul.mw-menu li li li:hover ul,
  ul.mw-menu li li.sfHover ul {
    left: 10em;
    top: 00px;
  }

  .mw-menu li a span.arrow {
    display: block;
    background: 0 0 no-repeat;
    width: 7px;
    height: 4px;
    position: absolute;
    bottom: 17%;
    right: 2px;
  }

  /* Slider */
  main-slider .btn a {
    margin: 20px 20px 0px 0px;
  }

  .slider {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0px;
  }

  .flex-control-nav {
    position: absolute;
    left: 45%;
  }
}

/* 1200px - Large Desktops */
@media (min-width: 1200px) {
  .main-slider .flexslider .slides>li {
    min-height: 766px;
  }

  .main-slider .txt {
    font-size: 17px;
    width: 70%;
  }

  /* NEWS */
  section.pst.nws {
    float: left;
    height: 789px;
    width: 45%;
  }

  section.pst.nws div.hds h2 {
    font-size: 23px;
  }

  section.pst.nws div.img {
    height: var(--news-image-height);
    /* was 350px */
    overflow: hidden;
    float: left;
    position: absolute;
  }

  section.pst.nws div.img img {
    height: 350px;
  }

  section.pst.nws div.adm {
    position: relative;
    top: -173px;
  }

  /* POSTS */
  section.pst.pck {
    font-size: 19px;
    line-height: 20px;
    text-align: center;
    background: var(--color-white);
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }

  section.pst.pck div.txt p {
    text-align: center;
  }

  /* NEWS - Final */
  section.pst.nws {
    width: 30%;
    float: left;
  }

  /*POSTS*/
  section.pst.pck {
    font-size: 19px;
    line-height: 20px;
    text-align: center;
    background: var(--color-white);
    margin: var(--spacing-md);
    padding: var(--spacing-md);
    box-shadow: 0 0 50px var(--color-gray-mid);
    border: solid 2px var(--color-white);
  }
}

/* 1250px - Extra Large Desktops */
@media (min-width: 1250px) {
  .mw-menu li {}

  .mw-menu li a {
    font-size: 1.25rem;
  }
}

/* ========================================
   SECTION 5: SPECIAL COMPONENTS
   ======================================== */
/* Video Background */
.video-background {
  background: var(--color-black);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#vidtop-content {
  top: 0;
  color: var(--color-white);
}

.vid-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  padding: 1rem;
  font-family: Avenir, Helvetica, sans-serif;
}

.vid-info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  line-height: 1.2;
}

.vid-info a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  transition: .6s background;
  border-bottom: none;
  margin: 1rem auto;
  text-align: center;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}

@media all and (max-width: 600px) {
  .vid-info {
    width: 50%;
    padding: .5rem;
  }

  .vid-info h1 {
    margin-bottom: .2rem;
  }
}

@media all and (max-width: 500px) {
  .vid-info .acronym {
    display: none;
  }
}

.main-slider .flex-prev,
.main-slider .flex-next,
.main-slider .btn a,
.pst .img img,
.xld-btb .action-btn,
.mw-menu-btn,
.mw-submenu li a {
  will-change: transform, background-color, opacity;
  /* only where actually animating */
}