html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    letter-spacing: 1.3px;
}
p {
    letter-spacing: 1.3px;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-family: 'riviera_nights_trialultraLt';
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
} 
body div.abu-al-container {
    width: calc(1330px) !important;
    max-width: calc(100% - 160px) !important;
    margin: 0 auto !important;
}
h1,h2,h3 {
    letter-spacing: 8px;
}
/***=========================
        SITE HEADER
==========================***/
header.headerBg {
    position: absolute;
    height: 90px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999;
    background: transparent;
}
div.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    width: calc(1330px);
    max-width: calc(100% - 160px);
    margin: 0 auto;
}
div.header .menu-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 0px;
    min-width: 200px;
}
div.header .menu-label {
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}
/* ---- burger icon: 3 lines, each line has a "base" (:after) and a
     "shade" (:before) layer. On hover the shade sweeps in from the
     top-left line first, cascading down to the bottom-right line,
     giving the diagonal wipe effect. ---- */
div.header .burger {
    width: 18px;
    position: relative;
}
div.header .burger span {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
    position: relative;
}
div.header .burger span:last-child {
    margin-bottom: 0;
}
div.header .burger span::before,
div.header .burger span::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
div.header .burger span::after {
  background-color: #fff;
}
div.header .burger span::before {
    background-color: rgba(255, 255, 255, 0.55);
    transform: scale3d(0, 1, 1);
    transform-origin: right;
}
div.header .menu-btn:hover .burger span::before,
div.header .menu-btn:hover .burger span::after {
    transition-duration: .45s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.49, .46, .05, .995);
}
div.header .menu-btn:hover .burger span::before {
    transform: scale3d(1, 1, 1);
    transform-origin: right;
}
div.header .menu-btn:hover .burger span:nth-child(1)::before { transition-delay: .1s; }
div.header .menu-btn:hover .burger span:nth-child(2)::before { transition-delay: .2s; }
div.header .menu-btn:hover .burger span:nth-child(3)::before { transition-delay: .3s; }
div.header .menu-btn:hover .burger span::after {
    transform: scale3d(0, 1, 1);
    transform-origin: left;
}
div.header .menu-btn:hover .burger span:nth-child(1)::after { transition-delay: 0s;   }
div.header .menu-btn:hover .burger span:nth-child(2)::after { transition-delay: .05s; }
div.header .menu-btn:hover .burger span:nth-child(3)::after { transition-delay: .1s;  }
div.header .logo.header-logo {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}
div.header .logo.header-logo img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
}
div.header .btn-group {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 200px;
    justify-content: end;
}
div.header .dealer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'sans, sans-sarif',Arial;
}
div.header .dealer-label {
    display: inline-block;
}
body, a, button, .menu-btn, .logo, .dealer-btn {
  cursor: none !important;
}
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease;
    mix-blend-mode: difference;
}
.cursor-circle.grow {
    width: 25px;
    height: 25px;
}

/***HEADER NAVIGATION***/
/* ==========================================================================
    3. NAVIGATION OVERLAY (the sliding panel)
========================================================================== */
    :root { --sh-menu-slide-dist: 45vw; }
    @media (max-width: 900px) {
        :root { --sh-menu-slide-dist: 90vw; }
    }
    body.sh_menu-scroll-lock {
        overflow: hidden;
        height: 100%;
    }
  .sh_menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    transform: translateX(-100%);
    transition:
      transform .7s cubic-bezier(.65, 0, .35, 1),
      width .6s cubic-bezier(.65, 0, .35, 1);
    pointer-events: none;
  }
  .sh_menu-nav.sh_menu-is-open { pointer-events: all; }
  .sh_menu-nav[data-sh-menu-active] { width: 100%; }
  .sh_menu-close {
    position: absolute;
    top: 38px;
    left: 95px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .sh_menu-close .fa-solid.fa-xmark {
    font-weight: 600;
  }
  .sh_menu-inner {
    position: relative;
    width: 100vw;
    height: 100%;
    display: flex;
  }

  /* ==========================================================================
     4. TEXT PANEL (menu list + blurred background)
     ========================================================================== */
  .sh_menu-text-panel {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 0 0 42%;
  }
.sh_menu-text-panel .sh_menu-blur-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    filter: blur(100px) saturate(1.2) brightness(.75);
    transform: scale(1.15);
    transition: opacity .5s ease;
    background: url('/wp-content/uploads/2026/08/1920-1080-contact-us-01.avif');
/*    background: rgba(0,0,0,0.35);*/
    -webkit-backdrop-filter: blur(450px) saturate(1.9);
    backdrop-filter: blur(450px) saturate(1.9);
}
body.page.page-id-14 .sh_menu-text-panel .sh_menu-blur-bg {
    background: url('/wp-content/uploads/2026/08/1920-1080-Career-page-02.avif');
}
body.page.page-id-102 .sh_menu-text-panel .sh_menu-blur-bg {
    background: url('/wp-content/uploads/2026/08/FAQ-01.jpg');
}
body.home  .sh_menu-text-panel .sh_menu-blur-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    filter: blur(28px) saturate(1.2) brightness(.75);
    transform: scale(1.15);
    transition: opacity .5s ease;
    background: transparent;
/*    background: rgba(0,0,0,0.35);*/
    -webkit-backdrop-filter: blur(450px) saturate(1.9);
    backdrop-filter: blur(450px) saturate(1.9);
}

  /* the left-panel video plays CLEAR — no blur/dim filter, just a plain
     cover video that crossfades in; a light dark overlay (below) keeps
     the menu text readable on top of it */
  .sh_menu-text-panel .sh_menu-blur-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
  }

  /* the clear video only shows once the Models dropdown is open */
  .sh_menu-nav[data-sh-menu-active] .sh_menu-blur-bg       { opacity: 0; }
  .sh_menu-nav[data-sh-menu-active] .sh_menu-blur-bg-video { opacity: 1; }

  /* light overlay so menu text stays readable — subtle, not heavy */
  .sh_menu-text-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    transition: background .5s ease;
  }
  .sh_menu-nav[data-sh-menu-active] .sh_menu-text-panel::after {
    background: rgba(0, 0, 0, .35);
  }


  /* ==========================================================================
     5. SCREENS (main list + Models sub-list) — shared styles
     ========================================================================== */
  .sh_menu-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 120px 0px 60px;
    text-align: right;
    z-index: 2;
  }
  .sh_menu-screen ul { list-style: none; margin: 0; padding: 0; }

  .sh_menu-screen li {
    margin: 42px 0;
    transform: translateX(calc(-1 * var(--sh-menu-slide-dist)));
    transition: transform .7s cubic-bezier(.25, .1, .25, 1);
  }

  .sh_menu-screen a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: .85;
    transition: opacity .3s;
  }
  .sh_menu-screen a:hover { opacity: 1; }

  .sh_menu-sub-title {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 26px 0;
  }

  .sh_menu-back {
    background: none;
    border: 0;
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .3s;
  }
  .sh_menu-back:hover { color: #fff; }

  /* highlights whichever model is currently shown on the right-hand
     image panel (defaults to the first model when Models opens, and
     follows hover after that) */
  .sh_menu-screen-models a {
    position: relative;
    opacity: .6;
  }
  .sh_menu-screen-models a.sh_menu-active-link {
    opacity: 1;
  }
  .sh_menu-screen-models a.sh_menu-active-link::after {
    content: '';
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
  }


  /* ==========================================================================
     6. MAIN SCREEN <-> MODELS SCREEN SWAP
     ========================================================================== */
  .sh_menu-screen-main {
    transform: translateX(0);
    visibility: visible;
    transition: transform .6s cubic-bezier(.65, 0, .35, 1), visibility 0s linear 0s;
  }
  .sh_menu-screen-sub {
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .6s cubic-bezier(.65, 0, .35, 1), visibility 0s linear 0s;
  }

  /* Main menu screen while Models is active:
     it must ONLY fade out (handled by the .sh_menu-fade-out class added
     in JS) — it never slides or moves, to avoid overlapping the
     incoming Models screen. Visibility is switched off once the fade
     has had time to finish. */
  .sh_menu-nav[data-sh-menu-active] .sh_menu-screen-main {
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear .35s;
  }

  /* Models screen slides in from the right while active */
  .sh_menu-nav[data-sh-menu-active] .sh_menu-screen-models {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform .6s cubic-bezier(.65, 0, .35, 1), visibility 0s linear 0s;
  }

  /* Main menu screen fades out (no movement) while Models opens */
  .sh_menu-screen-main.sh_menu-fade-out {
    opacity: 0;
    transition: opacity .35s ease;
  }

  /* Momentarily snaps the main-menu items back to their off-screen start
     position (no transition) so their entrance stagger can replay when
     the user hits Back — gives the same animation as the very first
     hamburger open. */
  .sh_menu-screen-main.sh_menu-reset-items li {
    transition: none !important;
    transform: translateX(calc(-1 * var(--sh-menu-slide-dist))) !important;
  }


  /* ==========================================================================
     7. LIST ITEM ENTRANCE / EXIT STAGGER ANIMATIONS
     ========================================================================== */

  /* -- entrance: items start off to the LEFT and slide right into place,
        one after another -- */
  .sh_menu-nav.sh_menu-is-open .sh_menu-screen-main li,
  .sh_menu-nav[data-sh-menu-active] .sh_menu-screen-models li {
    transform: translateX(0);
  }
  .sh_menu-screen li:nth-child(1) { transition-delay: .18s; }
  .sh_menu-screen li:nth-child(2) { transition-delay: .24s; }
  .sh_menu-screen li:nth-child(3) { transition-delay: .30s; }
  .sh_menu-screen li:nth-child(4) { transition-delay: .36s; }
  .sh_menu-screen li:nth-child(5) { transition-delay: .42s; }
  .sh_menu-screen li:nth-child(6) { transition-delay: .48s; }
  .sh_menu-screen li:nth-child(7) { transition-delay: .54s; }
  .sh_menu-screen li:nth-child(8) { transition-delay: .60s; }

  /* -- exit: items retreat back to the LEFT, bottom item first, working
        up to the top (reverse of entrance) -- */
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li {
    transform: translateX(calc(-1 * var(--sh-menu-slide-dist)));
  }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(1) { transition-delay: .36s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(2) { transition-delay: .30s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(3) { transition-delay: .24s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(4) { transition-delay: .18s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(5) { transition-delay: .12s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(6) { transition-delay: .06s; }
  .sh_menu-nav.sh_menu-is-closing .sh_menu-screen-main li:nth-child(7) { transition-delay: 0s;   }

  /* same left-to-right open / right-to-left close pattern for the Models dropdown */
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li {
    transform: translateX(calc(-1 * var(--sh-menu-slide-dist)));
  }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(1) { transition-delay: .42s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(2) { transition-delay: .36s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(3) { transition-delay: .30s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(4) { transition-delay: .24s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(5) { transition-delay: .18s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(6) { transition-delay: .12s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(7) { transition-delay: .06s; }
  .sh_menu-nav.sh_menu-sub-closing .sh_menu-screen-models li:nth-child(8) { transition-delay: 0s;   }


  /* ==========================================================================
     8. IMAGE / VIDEO PANEL (right side, Models only)
     ========================================================================== */
  .sh_menu-image-panel {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 0 0 58%;
    background: #050505;
  }

  .sh_menu-bg-image,
  .sh_menu-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-100%);
    transition: transform .8s cubic-bezier(.65, 0, .35, 1);
    z-index: 1;
  }

  /* overlay so the image never looks too raw/bright next to the text
     panel, and so the label + "View Model" button stay legible even on
     very bright photos — stronger toward the bottom where the text sits */
  .sh_menu-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(100deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 45%),
      linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 38%),
      rgba(0, 0, 0, .12);
  }

  .sh_menu-image-panel .sh_menu-image-label {
    position: absolute;
    bottom: 108px;
    left: calc(50% - 100px);
    z-index: 2;
    color: #fff;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .9;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
  }

  /* "view this model" button shown under the label on the right panel —
     one per image, click takes the user to that model's page.
     Solid frosted background (not just a border) so it stays clearly
     visible even on very bright photos. */
  .sh_menu-image-cta {
        position: absolute;
        bottom: 60px;
        left: calc(50% - 135px);
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #000;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 16px 50px;
        background: #fff;
        border: 1px solid rgba(255, 255, 255, .7);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: background .25s ease, color .25s ease;
        border-radius: 90px;
    }
  .sh_menu-image-cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
  }
  .sh_menu-image-cta-arrow {
    transition: transform .25s ease;
  }
  .sh_menu-image-cta:hover .sh_menu-image-cta-arrow {
    transform: translateX(4px);
  }


  /* ==========================================================================
     9. RESPONSIVE (mobile: hide image panel, full-width text panel)
     ========================================================================== */
  @media (max-width: 900px) {
    .sh_menu-nav,
    .sh_menu-nav[data-sh-menu-active] { width: 100%; }
    .sh_menu-image-panel { display: none; }
    .sh_menu-text-panel { flex-basis: 100%; }
    .sh_menu-screen { padding: 0 30px; }
    .sh_menu-screen a { font-size: 20px; }
  }
    header.headerBg.headerFixed .logo.header-logo img.Fixed-Logo {
        height: 40px;
        filter: brightness(0) invert(1);
        display: block;
        position: relative;
        margin-left: 0;
    }
    header.headerFixed {
        height: 52px;
        /* -webkit-backdrop-filter: blur(450px) saturate(1.9);
        backdrop-filter: blur(450px) saturate(1.9); */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #000;
    }
    div.header .logo.header-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header.headerFixed .header {
        border-bottom: 0;
        padding: 5px 0px;
    }
    header.headerFixed .header-logo img.main-Logo{
        display: none;
    }
    header.headerBg .header-logo img.Fixed-Logo {
        display: none;
    }

/***=========================
        SITE FOOTER
==========================***/
.site-footer {
    background: #000;
    color: #f2f2f2;
    padding: 40px 0px 40px;
}
.footer-logo {
    text-align: center;
    margin: 0 auto;
    width: 170px;
    padding-bottom: 40px;
}
.footer-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.footer-logo h1 {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 8px;
    color: #f2f2f2;
}
.footer-logo span {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: #9a9a9a;
    margin-top: 4px;
}
.footer-divider {
    border: none;
    border-top: 1px solid #2b2b2b;
    margin-bottom: 36px;
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-col {
    min-width: 150px;
}
.footer-col h3 {
    font-size: 13px;
    letter-spacing: 2px;
    color: #f2f2f2;
    font-weight: 600;
    margin-bottom: 22px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 18px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.3px;
    transition: color 0.2s ease;
    text-transform: uppercase;
}
.footer-col ul li a:hover {
    color: #ffffff;
}
.footer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b9b9b9;
    font-size: 13px;
    letter-spacing: 1.5px;
}
.footer-lang .flag {
    font-size: 15px;
}
.footer-social {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-end;
}
.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    text-decoration: none;
    transition: background 0.2s ease;
}
.footer-social a:hover {
    background: #2e2e2e;
    color: #fff;
}
.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.footer-bottom-divider {
    border: none;
    border-top: 1px solid #2b2b2b;
    margin-top: 50px;
}


