/* =========================================================
   ANCOR HEADER + FOOTER V3
   Fresh build using official brand colours only
   ========================================================= */

:root {
    --ancor-v3-dark: #212121;
    --ancor-v3-light: #FCFCFC;
    --ancor-v3-rose: #B86060;
    --ancor-v3-green: #598068;
    --ancor-v3-brown: #957A56;

    --ancor-v3-header-height: 82px;
    --ancor-v3-container: 1360px;
    --ancor-v3-radius: 18px;
}

/* Hide old global site header/footer before JavaScript replacement */
body > header:has(.brand-center),
body > .global-header,
body > .ancor-global-header,
body > .site-header,
body > .main-header,
body > footer {
    display: none !important;
}

/* =========================================================
   HEADER FOUNDATION
   ========================================================= */

#global-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
}

.ancor-v3-header {
    position: relative;
    width: 100%;
    min-height: var(--ancor-v3-header-height);
    background: rgba(33, 33, 33, 0.98);
    color: var(--ancor-v3-light);
    border-bottom: 1px solid rgba(252, 252, 252, 0.10);
    box-shadow: 0 12px 34px rgba(33, 33, 33, 0.18);
    direction: rtl;
    font-family: inherit;
}

.ancor-v3-header *,
.ancor-v3-footer * {
    box-sizing: border-box;
}

.ancor-v3-header-inner {
    width: min(calc(100% - 44px), var(--ancor-v3-container));
    min-height: var(--ancor-v3-header-height);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
}

/* =========================================================
   BRAND
   ========================================================= */

.ancor-v3-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--ancor-v3-light) !important;
    text-decoration: none !important;
    flex-shrink: 0;
}

.ancor-v3-brand-mark {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ancor-v3-light);
    border: 1px solid rgba(252, 252, 252, 0.40);
    border-radius: 14px 4px 14px 4px;
    background:
        linear-gradient(
            145deg,
            rgba(184, 96, 96, 0.32),
            rgba(149, 122, 86, 0.18)
        );
    overflow: hidden;
}

.ancor-v3-brand-mark::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(252, 252, 252, 0.14);
    border-radius: 10px 3px 10px 3px;
}

.ancor-v3-brand-mark span {
    position: relative;
    z-index: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1;
}

.ancor-v3-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ancor-v3-brand-copy strong {
    color: var(--ancor-v3-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1;
}

.ancor-v3-brand-copy small {
    color: rgba(252, 252, 252, 0.62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.ancor-v3-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.ancor-v3-nav-link,
.ancor-v3-services-toggle {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    color: rgba(252, 252, 252, 0.76) !important;
    background: transparent;
    border: 0;
    border-radius: 11px;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.ancor-v3-nav-link::after,
.ancor-v3-services-toggle::after {
    content: "";
    position: absolute;
    right: 15px;
    left: 15px;
    bottom: 4px;
    height: 2px;
    background: var(--ancor-v3-rose);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.ancor-v3-nav-link:hover,
.ancor-v3-nav-link:focus-visible,
.ancor-v3-nav-link.is-active,
.ancor-v3-services-toggle:hover,
.ancor-v3-services-toggle:focus-visible,
.ancor-v3-services-menu.is-open .ancor-v3-services-toggle {
    color: var(--ancor-v3-light) !important;
    background: rgba(252, 252, 252, 0.06);
}

.ancor-v3-nav-link:hover::after,
.ancor-v3-nav-link.is-active::after,
.ancor-v3-services-menu.is-open .ancor-v3-services-toggle::after {
    transform: scaleX(1);
}

.ancor-v3-services-toggle svg {
    width: 15px;
    height: 15px;
    transition: transform 180ms ease;
}

.ancor-v3-services-menu.is-open .ancor-v3-services-toggle svg {
    transform: rotate(180deg);
}

/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.ancor-v3-services-menu {
    position: relative;
}

.ancor-v3-services-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    right: 50%;
    width: min(780px, calc(100vw - 50px));
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(50%, -8px);
    background: var(--ancor-v3-light);
    color: var(--ancor-v3-dark);
    border: 1px solid rgba(33, 33, 33, 0.10);
    border-radius: 20px;
    box-shadow: 0 24px 65px rgba(33, 33, 33, 0.24);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease;
}

.ancor-v3-services-menu.is-open .ancor-v3-services-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(50%, 0);
}

.ancor-v3-services-dropdown::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 50%;
    width: 17px;
    height: 17px;
    background: var(--ancor-v3-light);
    border-top: 1px solid rgba(33, 33, 33, 0.10);
    border-right: 1px solid rgba(33, 33, 33, 0.10);
    transform: translateX(50%) rotate(-45deg);
}

.ancor-v3-services-dropdown-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 14px;
}

.ancor-v3-services-intro {
    position: relative;
    min-height: 100%;
    padding: 25px 22px;
    overflow: hidden;
    color: var(--ancor-v3-light);
    background:
        linear-gradient(
            145deg,
            var(--ancor-v3-dark),
            rgba(33, 33, 33, 0.92)
        );
    border-radius: 14px;
}

.ancor-v3-services-intro::after {
    content: "A";
    position: absolute;
    left: -9px;
    bottom: -32px;
    color: rgba(252, 252, 252, 0.05);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 150px;
    line-height: 1;
}

.ancor-v3-services-intro span {
    display: block;
    margin-bottom: 12px;
    color: var(--ancor-v3-rose);
    font-size: 11px;
    font-weight: 800;
}

.ancor-v3-services-intro strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: var(--ancor-v3-light);
    font-size: 23px;
    line-height: 1.4;
}

.ancor-v3-services-intro p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(252, 252, 252, 0.65);
    font-size: 12px;
    line-height: 1.9;
}

.ancor-v3-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ancor-v3-service-link {
    position: relative;
    min-height: 90px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--ancor-v3-dark) !important;
    background: rgba(33, 33, 33, 0.025);
    border: 1px solid rgba(33, 33, 33, 0.08);
    border-radius: 13px;
    text-decoration: none !important;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.ancor-v3-service-link:nth-child(5):last-child {
    grid-column: 1 / -1;
}

.ancor-v3-service-link:hover,
.ancor-v3-service-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(184, 96, 96, 0.055);
    border-color: rgba(184, 96, 96, 0.34);
}

.ancor-v3-service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ancor-v3-rose);
    background: rgba(184, 96, 96, 0.09);
    border-radius: 12px;
}

.ancor-v3-service-icon svg {
    width: 21px;
    height: 21px;
}

.ancor-v3-service-copy {
    min-width: 0;
}

.ancor-v3-service-copy strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ancor-v3-dark);
    font-size: 14px;
    line-height: 1.3;
}

.ancor-v3-service-copy small {
    display: block;
    overflow: hidden;
    color: rgba(33, 33, 33, 0.58);
    font-size: 10px;
    line-height: 1.6;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ancor-v3-service-arrow {
    color: var(--ancor-v3-brown);
    font-size: 19px;
    transform: rotate(180deg);
}

/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.ancor-v3-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.ancor-v3-contact-button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--ancor-v3-light) !important;
    background: var(--ancor-v3-rose);
    border: 1px solid var(--ancor-v3-rose);
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.ancor-v3-contact-button:hover {
    color: var(--ancor-v3-light) !important;
    background: var(--ancor-v3-green);
    border-color: var(--ancor-v3-green);
    transform: translateY(-1px);
}

.ancor-v3-mobile-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    padding: 0;
    color: var(--ancor-v3-light);
    background: rgba(252, 252, 252, 0.07);
    border: 1px solid rgba(252, 252, 252, 0.12);
    border-radius: 12px;
    cursor: pointer;
}

.ancor-v3-mobile-toggle-lines {
    position: relative;
    width: 20px;
    height: 14px;
}

.ancor-v3-mobile-toggle-lines span {
    position: absolute;
    right: 0;
    width: 20px;
    height: 2px;
    background: var(--ancor-v3-light);
    border-radius: 99px;
    transition:
        transform 180ms ease,
        top 180ms ease,
        opacity 180ms ease;
}

.ancor-v3-mobile-toggle-lines span:nth-child(1) {
    top: 0;
}

.ancor-v3-mobile-toggle-lines span:nth-child(2) {
    top: 6px;
}

.ancor-v3-mobile-toggle-lines span:nth-child(3) {
    top: 12px;
}

.ancor-v3-header.is-mobile-open
.ancor-v3-mobile-toggle-lines span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.ancor-v3-header.is-mobile-open
.ancor-v3-mobile-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.ancor-v3-header.is-mobile-open
.ancor-v3-mobile-toggle-lines span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.ancor-v3-mobile-panel {
    display: none;
}

.ancor-v3-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: none;
    background: rgba(33, 33, 33, 0.54);
    backdrop-filter: blur(4px);
}

/* =========================================================
   FOOTER
   ========================================================= */

#global-footer {
    width: 100%;
}

.ancor-v3-footer {
    position: relative;
    overflow: hidden;
    direction: rtl;
    color: var(--ancor-v3-light);
    background: var(--ancor-v3-dark);
    font-family: inherit;
}

.ancor-v3-footer::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -260px;
    bottom: -320px;
    border: 1px solid rgba(252, 252, 252, 0.05);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(252, 252, 252, 0.018),
        0 0 0 135px rgba(252, 252, 252, 0.012);
}

.ancor-v3-footer-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 44px), var(--ancor-v3-container));
    margin: 0 auto;
}

.ancor-v3-footer-cta {
    position: relative;
    top: -1px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 35px 40px;
    background:
        linear-gradient(
            125deg,
            var(--ancor-v3-rose),
            rgba(184, 96, 96, 0.84)
        );
    border-radius: 0 0 22px 22px;
}

.ancor-v3-footer-cta span {
    display: block;
    margin-bottom: 8px;
    color: rgba(252, 252, 252, 0.70);
    font-size: 11px;
    font-weight: 800;
}

.ancor-v3-footer-cta h2 {
    max-width: 700px;
    margin: 0;
    color: var(--ancor-v3-light);
    font-size: clamp(22px, 3vw, 35px);
    line-height: 1.45;
}

.ancor-v3-footer-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--ancor-v3-dark) !important;
    background: var(--ancor-v3-light);
    border: 1px solid var(--ancor-v3-light);
    border-radius: 13px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.ancor-v3-footer-cta a:hover {
    transform: translateY(-2px);
    background: rgba(252, 252, 252, 0.88);
}

.ancor-v3-footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 1fr 0.75fr;
    gap: 55px;
    padding: 76px 0 65px;
}

.ancor-v3-footer-brand {
    max-width: 350px;
}

.ancor-v3-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--ancor-v3-light) !important;
    text-decoration: none !important;
}

.ancor-v3-footer-logo-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--ancor-v3-light);
    border: 1px solid rgba(252, 252, 252, 0.32);
    border-radius: 15px 4px 15px 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
}

.ancor-v3-footer-logo strong {
    color: var(--ancor-v3-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.17em;
}

.ancor-v3-footer-brand p {
    margin: 0 0 25px;
    color: rgba(252, 252, 252, 0.58);
    font-size: 13px;
    line-height: 2;
}

.ancor-v3-footer-brand-line {
    width: 58px;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--ancor-v3-rose),
            var(--ancor-v3-brown),
            var(--ancor-v3-green)
        );
    border-radius: 99px;
}

.ancor-v3-footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 13px;
    color: var(--ancor-v3-light);
    font-size: 15px;
    font-weight: 800;
}

.ancor-v3-footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--ancor-v3-rose);
}

.ancor-v3-footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.ancor-v3-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: rgba(252, 252, 252, 0.59) !important;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.6;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.ancor-v3-footer-links a::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    background: var(--ancor-v3-brown);
    border-radius: 50%;
}

.ancor-v3-footer-links a:hover {
    color: var(--ancor-v3-light) !important;
    transform: translateX(-4px);
}

.ancor-v3-footer-contact-box {
    padding: 22px;
    background: rgba(252, 252, 252, 0.045);
    border: 1px solid rgba(252, 252, 252, 0.09);
    border-radius: 16px;
}

.ancor-v3-footer-contact-box p {
    margin: 0 0 18px;
    color: rgba(252, 252, 252, 0.58);
    font-size: 12px;
    line-height: 1.9;
}

.ancor-v3-footer-contact-box a {
    width: 100%;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ancor-v3-light) !important;
    background: var(--ancor-v3-green);
    border-radius: 11px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
}

.ancor-v3-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-top: 1px solid rgba(252, 252, 252, 0.09);
}

.ancor-v3-footer-copyright {
    margin: 0;
    color: rgba(252, 252, 252, 0.43);
    font-size: 11px;
}

.ancor-v3-footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ancor-v3-footer-legal a {
    color: rgba(252, 252, 252, 0.48) !important;
    text-decoration: none !important;
    font-size: 11px;
}

.ancor-v3-footer-legal a:hover {
    color: var(--ancor-v3-light) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1120px) {
    .ancor-v3-header-inner {
        gap: 18px;
    }

    .ancor-v3-nav-link,
    .ancor-v3-services-toggle {
        padding-right: 10px;
        padding-left: 10px;
        font-size: 12px;
    }

    .ancor-v3-contact-button {
        padding-right: 15px;
        padding-left: 15px;
    }

    .ancor-v3-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    :root {
        --ancor-v3-header-height: 70px;
    }

    body.ancor-v3-menu-locked {
        overflow: hidden;
    }

    .ancor-v3-header-inner {
        width: min(calc(100% - 28px), var(--ancor-v3-container));
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .ancor-v3-brand-mark {
        width: 43px;
        height: 43px;
    }

    .ancor-v3-brand-copy strong {
        font-size: 21px;
    }

    .ancor-v3-brand-copy small {
        font-size: 8px;
    }

    .ancor-v3-nav,
    .ancor-v3-contact-button {
        display: none;
    }

    .ancor-v3-mobile-toggle {
        display: grid;
    }

    .ancor-v3-mobile-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 180ms ease,
            visibility 180ms ease;
    }

    .ancor-v3-header.is-mobile-open
    .ancor-v3-mobile-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .ancor-v3-mobile-panel {
        position: fixed;
        top: var(--ancor-v3-header-height);
        right: 0;
        z-index: 2;
        width: min(390px, 92vw);
        height: calc(100dvh - var(--ancor-v3-header-height));
        display: flex;
        flex-direction: column;
        padding: 18px;
        overflow-y: auto;
        background: var(--ancor-v3-dark);
        border-left: 1px solid rgba(252, 252, 252, 0.10);
        box-shadow: -20px 20px 50px rgba(33, 33, 33, 0.28);
        transform: translateX(105%);
        transition: transform 220ms ease;
    }

    .ancor-v3-header.is-mobile-open
    .ancor-v3-mobile-panel {
        transform: translateX(0);
    }

    .ancor-v3-mobile-link,
    .ancor-v3-mobile-services-button {
        width: 100%;
        min-height: 51px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        color: rgba(252, 252, 252, 0.78) !important;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(252, 252, 252, 0.08);
        text-align: right;
        text-decoration: none !important;
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    .ancor-v3-mobile-link.is-active {
        color: var(--ancor-v3-rose) !important;
    }

    .ancor-v3-mobile-services-button svg {
        width: 17px;
        height: 17px;
        transition: transform 180ms ease;
    }

    .ancor-v3-mobile-services.is-open
    .ancor-v3-mobile-services-button svg {
        transform: rotate(180deg);
    }

    .ancor-v3-mobile-services-list {
        max-height: 0;
        overflow: hidden;
        background: rgba(252, 252, 252, 0.035);
        transition: max-height 260ms ease;
    }

    .ancor-v3-mobile-services.is-open
    .ancor-v3-mobile-services-list {
        max-height: 420px;
    }

    .ancor-v3-mobile-service-link {
        display: flex;
        align-items: center;
        gap: 11px;
        min-height: 48px;
        padding: 0 18px;
        color: rgba(252, 252, 252, 0.63) !important;
        border-bottom: 1px solid rgba(252, 252, 252, 0.055);
        text-decoration: none !important;
        font-size: 12px;
    }

    .ancor-v3-mobile-service-link::before {
        content: "";
        width: 6px;
        height: 6px;
        flex: 0 0 6px;
        background: var(--ancor-v3-brown);
        border-radius: 50%;
    }

    .ancor-v3-mobile-contact {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        color: var(--ancor-v3-light) !important;
        background: var(--ancor-v3-rose);
        border-radius: 12px;
        text-decoration: none !important;
        font-size: 13px;
        font-weight: 800;
    }

    .ancor-v3-footer-container {
        width: min(calc(100% - 28px), var(--ancor-v3-container));
    }

    .ancor-v3-footer-cta {
        grid-template-columns: 1fr;
        padding: 29px 24px;
    }

    .ancor-v3-footer-cta a {
        width: fit-content;
    }
}

@media (max-width: 620px) {
    .ancor-v3-footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 58px 0 48px;
    }

    .ancor-v3-footer-brand {
        max-width: none;
    }

    .ancor-v3-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .ancor-v3-footer-legal {
        gap: 13px;
    }
}

/* ANCOR_SERVICES_CURSOR_BRIDGE_START */

/*
 * The original dropdown was 18px below its button.
 * This created an empty area that triggered mouseleave.
 */
@media (min-width: 861px) {

    .ancor-v3-services-menu {
        position: relative;
    }

    .ancor-v3-services-dropdown {
        top: calc(100% + 6px);
    }

    /*
     * Invisible bridge between the button and dropdown.
     * It remains part of the services-menu hover area.
     */
    .ancor-v3-services-menu::before {
        content: "";
        position: absolute;

        top: 100%;
        right: -30px;

        width: calc(100% + 60px);
        height: 14px;

        background: transparent;
        pointer-events: auto;
    }

    .ancor-v3-services-menu.is-open {
        z-index: 100002;
    }

    .ancor-v3-services-menu.is-open
    .ancor-v3-services-dropdown {
        z-index: 100003;
    }
}

/* ANCOR_SERVICES_CURSOR_BRIDGE_END */

