/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --navy: #0B1A3D;
    --accent: #16E47C;
    --accent-dark: #0FBF66;
    --dark-green: #006400;
    --card-bg: #D6F8E2;
    --card-border: #16E47C;
    --title-dark: #0B1A3D;
    --body-text: #1A1A1A;
    --page-bg: #FFFFFF;

    --nav-cyan: #00b341;
    --nav-cyan-dim: rgba(0, 179, 65, .10);
    --nav-cyan-glow: rgba(0, 179, 65, .30);
    --nav-font-head: 'Manrope', sans-serif;
    --nav-radius: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--page-bg);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--body-text);
    padding: 24px;
    /* navbar 72px + sticky tabs ~50px + gap */
    padding-top: 152px;
    display: flex;
    justify-content: center;
    margin-bottom: 0 !important;
}

/* ============================================================
   POSTER (card wrapper used by both templates)
============================================================ */
.poster {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #000;
    background: var(--page-bg);
}

/* ============================================================
   HEADER / INTRO / FOOTER inside poster
============================================================ */
.header {
    background: #000;
    padding: 28px 32px 32px;
    color: #fff;
    text-align: center;
}

.header h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
}

.header h1 .line2 {
    /* display: block; */
    margin-top: 6px;
    color: var(--nav-cyan);
}

.intro {
    background: var(--page-bg);
    padding: 26px 32px 6px;
    text-align: center;
}

.intro p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
}

.footer p {
    margin-bottom: 0;
}

.footer p span,
.footer .tag {
    color: var(--nav-cyan);
    font-weight: 800;
}

/* ============================================================
   GRID + CARDS
============================================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
    background: var(--page-bg);
}

.card {
    background: var(--card-bg);
    border: 2.5px solid #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 9px 14px;
    border-bottom: 2px solid #000;
}

.num {
    background: #000;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    width: 30px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-title {
    font-weight: 800;
    font-size: 17px;
    color: #006400;
    line-height: 1.15;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.card-body>p:empty {
    display: none;
}

.card-body p {
    margin-bottom: 0;
    font-size: 13px;
}

.card-text {
    font-size: 13px;
    line-height: 1.35;
    color: var(--body-text);
    flex: 1;
}

.icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    object-fit: contain;
    opacity: 0.85;
}

img.icon {
    opacity: 1;
}

/* ============================================================
   EMPTY TAB MESSAGE
============================================================ */
.empty-tab-message {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.empty-tab-message h2 {
    margin-bottom: 15px;
}

.empty-tab-message p {
    font-size: 16px;
    line-height: 1.7;
    opacity: .8;
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s ease;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

#navbar .nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--nav-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    font-family: var(--nav-font-head);
    box-shadow: 0 0 20px var(--nav-cyan-glow);
}

.logo-text {
    font-family: var(--nav-font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.logo-text span {
    color: var(--nav-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s;
    font-family: var(--nav-font-head);
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--nav-cyan);
    background: rgba(255, 255, 255, .08);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--nav-radius);
    padding: 8px;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    z-index: 999;
}

.dropdown.dropdown-open {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 14px !important;
    font-size: .87rem !important;
    border-radius: 8px;
    color: #6b7280 !important;
    box-shadow: none !important;
    border-radius: 6px !important;
}

.dropdown a:hover {
    color: #000 !important;
    background: #f4f6f8 !important;
}



.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 40px 28px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.mobile-menu:not(.open) {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu a {
    color: #000;
    text-decoration: none;
    font-family: var(--nav-font-head);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0 10px;
    border-bottom: 1px solid #e2e8f0;
    transition: color .2s;
    display: block;
    margin-block: 0 10px;
}

.mobile-menu>.sub-menu {
    margin: 10px 0 20px 30px;
}

.mobile-menu a:hover {
    color: var(--nav-cyan);
}

.mobile-menu a.mobile-sub {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0 10px 18px;
    border-left: 2px solid var(--nav-cyan);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    color: #475569;
    margin-left: 2px;
}

.mobile-menu a.mobile-sub:hover {
    color: var(--nav-cyan);
}

/* ============================================================
   SOLUTION TABS (sticky strip)
============================================================ */
#solution-tabs {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

#solution-tabs .tabs-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.tabs-inner {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.tabs-inner::-webkit-scrollbar {
    display: none;
}

.solution-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 9px 16px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: transparent;
    color: #1f2937;
    font-family: var(--nav-font-head);
    font-weight: 600;
    font-size: .84rem;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    letter-spacing: -.005em;
}

.solution-tab:hover {
    background: var(--nav-cyan-dim);
    color: #000;
}

.solution-tab.active {
    background: var(--nav-cyan);
    color: #000;
    box-shadow: 0 4px 14px var(--nav-cyan-glow);
}

/* ============================================================
   DESKTOP TAB PANELS
============================================================ */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ============================================================
   MOBILE ACCORDION — hidden by default, shown at ≤900px
============================================================ */
.mobile-accordion {
    display: none;
    /* JS will show via display:block/none on panels */
}

/* ── Responsive breakpoints ── */
@media (max-width: 900px) {
    body {
        padding-top: 140px;
    }

    /* Hide desktop UI */
    #solution-tabs,
    #desktop-tab-panels {
        display: none !important;
    }

    /* Show accordion container */
    .mobile-accordion {
        display: block !important;
        padding: 16px 18px 28px;
        background: #fff;
        width: 100%;
        max-width: 100%;
    }

    /* Accordion item */
    .mac-item {
        border: 2.5px solid #000;
        border-radius: 12px;
        background: var(--card-bg);
        margin-bottom: 14px;
        overflow: hidden;
    }

    /* Trigger button */
    .mac-trigger {
        width: 100%;
        border: 0;
        background: #fff;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        cursor: pointer;
        border-bottom: 2px solid #000;
        border-radius: 0;
    }


    .mac-label {
        font-weight: 800;
        font-size: 16px;
        color: #006400;
        line-height: 1.15;
    }

    /* Panel — JS controls display & height for animation */
    .mac-panel {
        overflow: hidden;
        /* initial state set by JS */
    }

    .mac-panel-inner {
        padding: 12px;
    }

    /* Section heading inside mobile panel */
    .mac-section-heading {
        font-size: 18px;
        font-weight: 900;
        color: #fff;
        padding: 21px 12px 25px;
        line-height: 1.15;
        background-color: #000;
        border-radius: 0;
        margin: -12px -12px 12px;
    }

    .mac-section-heading .line2 {
        display: block;
        margin-top: 4px;
        color: var(--nav-cyan);
    }

    /* Footer inside mobile panel */
    .mac-footer {
        background: #000;
        color: #fff;
        text-align: center;
        padding: 12px 16px;
        border-radius: 0 0 8px 8px;
        font-size: 15px;
        margin: 12px -12px -12px;
    }

    .mac-footer p {
        margin-bottom: 0;
    }

    /* Grid inside accordion */
    .mac-item .grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
        background: transparent;
    }

    /* Cards inside accordion — same look as desktop */
    .mac-item .card {
        background: var(--card-bg);
        border: 2px solid #000;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .mac-item .card-header {
        background: #fff;
        padding: 9px 14px;
        border-bottom: 2px solid #000;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mac-item .card-body {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
    }

    .mac-item .card-text {
        flex: 1;
        min-width: 0;
        font-size: 13px;
        line-height: 1.45;
        word-break: break-word;
    }

    .mac-item .icon {
        width: 42px;
        height: 42px;
        object-fit: contain;
        flex-shrink: 0;
    }
}

/* Tablet grid */
@media (max-width: 820px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header h1 {
        font-size: 28px;
    }
}

/* Desktop hamburger hide */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-accordion>.mac-item .mac-trigger {
        position: relative;
        z-index: 1;
        padding-right: 40px;
        transition: all 0.3s ease;
    }

    .mobile-accordion>.mac-item .mac-trigger * {
        transition: all 0.3s ease;
    }

    .mobile-accordion>.mac-item .mac-trigger:after {
        content: '';
        position: absolute;
        top: 0;
        right: 14px;
        bottom: 0;
        width: 16px;
        height: 16px;
        margin-block: auto;
        background-image: url(../images/icon_down.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        transition: all 0.3s ease;
        transform: scale(1.101);
        /* filter: invert(1); */
    }

    .mobile-accordion>.mac-item.mac-open .mac-trigger:after {
        transform: scale(1, -1);
        filter: invert(1);
    }

    .mobile-accordion>.mac-item.mac-open .mac-trigger {
        background-color: var(--nav-cyan);
    }

    .mobile-accordion>.mac-item.mac-open .mac-trigger .mac-label {
        color: #fff;
    }
}

/* Small phone */
@media (max-width: 540px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 22px;
    }

    .solution-tab {
        font-size: .8rem;
        padding: 8px 14px;
    }

    .tabs-inner {
        gap: 4px;
        padding: 8px 0;
    }

    .mobile-menu {
        padding-block: 30px;
    }

    .mobile-menu a {
        font-size: 20px;
    }
}

/* Active menu item */
.current-menu-item>a,
.current_page_item>a,
.current-menu-ancestor>a,
.current-page-ancestor>a,
.nav-links a:hover,
.nav-links a.active {
    background: var(--nav-cyan) !important;
    color: #000 !important;
    box-shadow: 0 4px 14px var(--nav-cyan-glow);
    border-radius: 999px;
    /* if your tabs are pill-shaped */
}

.dropdown a:not(:last-child) {
    margin-bottom: 5px;
}
.solution-tab {
    text-decoration: none !important;
}

.solution-tab:hover,
.solution-tab:focus,
.solution-tab:active,
.solution-tab:visited {
    text-decoration: none !important;
}
@media (max-width: 991px) {

    .standalone-page-content {
        display: block !important;
    }

    body .standalone-page-content #desktop-tab-panels,
    body #desktop-tab-panels.standalone-page-content {
        display: block !important;
    }

}
.mac-num {
    width: 30px;
    height: 22px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 800;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    line-height: 1;
}

#mobile-menu a.active {
    color: #000;
    font-weight: 700;
    position: relative;
}

#mobile-menu a.active::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    width: 4px;
    height: 20px;
    background: #000;
    transform: translateY(-50%);
}
/* ─────────────────────────────────
   MOBILE MENU BUTTON
───────────────────────────────── */
/* ============================================================
   HAMBURGER BUTTON
============================================================ */

#ham.hamburger {
    position: relative !important;

    width: 40px !important;
    height: 40px !important;

    min-width: 40px !important;
    min-height: 40px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    outline: none !important;

    background: transparent !important;

    color: #FFFFFF !important;

    cursor: pointer !important;

    display: none !important;

    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;

    gap: 5px !important;

    flex-shrink: 0 !important;

    appearance: none !important;
    -webkit-appearance: none !important;
}

#ham.hamburger span {
    display: block !important;

    width: 24px !important;
    height: 2px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #FFFFFF !important;

    border: 0 !important;
    border-radius: 2px !important;

    opacity: 1 !important;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease !important;
}


/* ============================================================
   HAMBURGER → X
============================================================ */

#ham.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}

#ham.hamburger.is-open span:nth-child(2) {
    opacity: 0 !important;
}

#ham.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}


/* ============================================================
   DESKTOP
============================================================ */

@media (min-width: 992px) {

    #ham.hamburger {
        display: none !important;
    }

}


/* ============================================================
   MOBILE / TABLET
============================================================ */

@media (max-width: 991px) {

    #ham.hamburger {
        display: flex !important;
    }

}

/* ─────────────────────────────────
   OPEN STATE → CLOSE X
───────────────────────────────── */

#ham.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#ham.is-open span:nth-child(2) {
    opacity: 0;
}

#ham.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ============================================================
   HEADER / NAVBAR
============================================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    height: 72px;

    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition: background .3s ease, box-shadow .3s ease;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

#navbar .nav-container {
    width: 100%;
    max-width: 1180px;
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.nav-inner {
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ============================================================
   LOGO
============================================================ */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none !important;
    flex-shrink: 0;
}

.nav-logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;

    background: var(--nav-cyan);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    font-size: 1.1rem;
    color: #000;

    font-family: var(--nav-font-head);

    box-shadow: 0 0 20px var(--nav-cyan-glow);
}

.logo-text {
    font-family: var(--nav-font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.logo-text span {
    color: var(--nav-cyan);
}


/* ============================================================
   DESKTOP NAVIGATION
============================================================ */

.desktop-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex !important;
    align-items: center;
    gap: 6px;

    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links > li {
    list-style: none;
    position: relative;
}

.nav-links a {
    display: inline-flex;
    align-items: center;

    color: #fff;
    text-decoration: none !important;

    font-family: var(--nav-font-head);
    font-size: .88rem;
    font-weight: 500;

    padding: 8px 14px;
    border-radius: 999px;

    transition:
        color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000 !important;
    background: var(--nav-cyan) !important;
    box-shadow: 0 4px 14px var(--nav-cyan-glow);
}


/* ============================================================
   DESKTOP DROPDOWN
============================================================ */

.nav-links .has-dropdown {
    position: relative;
}

.nav-links .dropdown {
    display: none;

    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    min-width: 240px;

    padding: 8px;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: var(--nav-radius);

    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);

    z-index: 1100;
}

.nav-links .dropdown.dropdown-open {
    display: block;
}

.nav-links .dropdown a {
    display: block;

    width: 100%;

    padding: 10px 14px !important;

    color: #6b7280 !important;
    background: transparent !important;

    font-size: .87rem !important;

    border-radius: 6px !important;
    box-shadow: none !important;
}

.nav-links .dropdown a:hover {
    color: #000 !important;
    background: #f4f6f8 !important;
}


/* ============================================================
   HAMBURGER
============================================================ */

.hamburger {
    display: none;

    width: 40px !important;
    height: 40px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;

    color: #fff !important;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    flex-shrink: 0;
}

.hamburger span {
    display: block;

    width: 24px;
    height: 2px;

    background: currentColor;

    border-radius: 2px;

    transition:
        transform .25s ease,
        opacity .2s ease;
}


/* Hamburger → X */

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
    position: fixed !important;

    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    z-index: 999 !important;

    width: 100% !important;
    height: calc(100vh - 72px) !important;

    padding: 30px 28px !important;

    background: rgba(255, 255, 255, 0.98) !important;

    backdrop-filter: blur(20px);

    overflow-y: auto !important;

    /*
     * ALWAYS HIDDEN BY DEFAULT
     */
    display: none !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform: translateY(-10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}
@media (min-width: 992px) {

    .mobile-menu,
    .mobile-menu.open,
    .mobile-menu.active {
        display: none !important;

        visibility: hidden !important;
        opacity: 0 !important;

        pointer-events: none !important;

        transform: none !important;
    }

}




/* ONLY OPEN WHEN JS ADDS .open */

.mobile-menu.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: auto !important;
}

/* Mobile UL */

.mobile-nav-links {
    list-style: none;

    margin: 0 !important;
    padding: 0 !important;
}

.mobile-nav-links li {
    list-style: none;

    margin: 0;
    padding: 0;
}

.mobile-nav-links a {
    display: block;

    color: #000;

    text-decoration: none !important;

    font-family: var(--nav-font-head);

    font-size: 1.5rem;
    font-weight: 700;

    padding: 0 0 10px;

    margin: 0 0 10px;

    border-bottom: 1px solid #e2e8f0;

    transition: color .2s ease;
}

.mobile-nav-links a:hover {
    color: var(--nav-cyan);
}


/* Mobile submenu */

.mobile-nav-links .sub-menu {
    list-style: none;

    margin: 0 0 20px 20px !important;
    padding: 0 !important;
}

.mobile-nav-links .sub-menu a {
    font-size: 1rem;

    font-weight: 500;

    padding: 10px 0 10px 18px;

    margin-bottom: 5px;

    border-left: 2px solid var(--nav-cyan);
    border-bottom: 1px solid rgba(0, 0, 0, .06);

    color: #475569;
}


/* Active mobile item */

.mobile-nav-links a.active,
.mobile-nav-links .current-menu-item > a,
.mobile-nav-links .current_page_item > a {
    color: #000;

    font-weight: 800;

    position: relative;
}

.mobile-nav-links a.active::before,
.mobile-nav-links .current-menu-item > a::before,
.mobile-nav-links .current_page_item > a::before {
    content: "";

    position: absolute;

    left: -12px;
    top: 50%;

    width: 4px;
    height: 20px;

    background: #000;

    transform: translateY(-50%);
}


/* ============================================================
   DESKTOP
============================================================ */

@media (min-width: 992px) {

    .desktop-navigation {
        display: flex !important;
    }

    .nav-links {
        display: flex !important;
    }

    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

}


/* ============================================================
   MOBILE / TABLET
============================================================ */

@media (max-width: 991px) {

    #navbar {
        height: 72px;
    }

    .nav-inner {
        height: 72px;
    }

    .desktop-navigation {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    /*
     * IMPORTANT:
     * Keep mobile menu hidden unless .open exists.
     */

    .mobile-menu {
    display: none !important;
}

.mobile-menu.open {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 540px) {

    #navbar .nav-container {
        padding: 0 18px;
    }

    .nav-logo img {
        max-width: 180px;
        max-height: 44px;
    }

    .mobile-menu {
        padding: 30px 20px;
    }

    .mobile-nav-links a {
        font-size: 20px;
    }

}
