/* Shared Inter.do navigation and footer shell. */
body.inter-shell {
    background: #f4f1e9;
    color: #07111f;
    -webkit-font-smoothing: antialiased;
}

body.inter-shell.inter-mobile-open { overflow: hidden; }

body.inter-shell .navbar-fixed { height: 76px; }

body.inter-shell nav {
    height: 76px;
    line-height: 76px;
    background: rgba(244, 241, 233, .96) !important;
    border-bottom: 1px solid rgba(7, 17, 31, .12);
    box-shadow: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.inter-shell nav .nav-wrapper.container {
    width: min(1240px, calc(100% - 64px));
    max-width: none;
}

body.inter-shell .inter-brand {
    display: inline-flex;
    align-items: center;
    height: 76px;
}

body.inter-shell .inter-brand img {
    display: block;
    width: 126px;
    height: auto !important;
}

body.inter-shell nav ul a {
    position: relative;
    color: #0b2034;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

body.inter-shell nav .hide-on-med-and-down a::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 2px;
    background: #15958d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

body.inter-shell nav .hide-on-med-and-down a:hover::after,
body.inter-shell nav .hide-on-med-and-down a.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}

body.inter-shell nav a.is-current { color: #117b75; }

body.inter-shell nav ul a.inter-auth-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 18px 0 0 12px;
    padding: 0 18px;
    color: #fff;
    background: #07111f;
    border-radius: 999px;
    line-height: 40px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

body.inter-shell nav ul a.inter-auth-primary:hover,
body.inter-shell nav ul a.inter-auth-primary:focus {
    color: #fff;
    background: #117b75;
    outline: none;
    transform: translateY(-1px);
}

body.inter-shell nav .hide-on-med-and-down a.inter-auth-primary::after { display: none; }
body.inter-shell nav ul a.inter-auth-secondary { color: #68778b; }

body.inter-shell .inter-menu-toggle,
body.inter-shell .inter-mobile-menu,
body.inter-shell .inter-mobile-backdrop { display: none; }

body.inter-shell footer.page-footer {
    margin: 0;
    padding: 0;
    background: #050d17 !important;
    color: rgba(255, 255, 255, .6);
}

body.inter-shell footer .footer-copyright {
    min-height: 72px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 12px;
    letter-spacing: .04em;
}

@media (max-width: 992px) {
    body.inter-shell .navbar-fixed,
    body.inter-shell nav,
    body.inter-shell .inter-brand { height: 66px; line-height: 66px; }

    body.inter-shell nav .nav-wrapper.container { width: calc(100% - 36px); }
    body.inter-shell .inter-brand img { width: 108px; }

    body.inter-shell .inter-menu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        width: 46px;
        height: 46px;
        padding: 0 10px;
        color: #07111f;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: translateY(-50%);
        cursor: pointer;
    }

    body.inter-shell .inter-menu-toggle:hover,
    body.inter-shell .inter-menu-toggle:focus {
        background: rgba(21, 149, 141, .08);
        outline: none;
    }

    body.inter-shell .inter-menu-toggle:focus-visible {
        outline: 2px solid #15958d;
        outline-offset: 2px;
    }

    body.inter-shell .inter-menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: currentColor;
        transition: transform .25s ease;
    }

    body.inter-shell .inter-mobile-backdrop {
        position: fixed;
        z-index: 1200;
        inset: 0;
        display: block;
        background: rgba(2, 9, 18, .64);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    body.inter-shell .inter-mobile-menu {
        position: fixed;
        z-index: 1201;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: min(88vw, 360px);
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        color: #07111f;
        background: #f4f1e9;
        border-left: 1px solid rgba(7, 17, 31, .14);
        box-shadow: -24px 0 70px rgba(2, 9, 18, .24);
        line-height: normal;
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .34s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .34s;
    }

    body.inter-shell.inter-mobile-open .inter-mobile-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.inter-shell.inter-mobile-open .inter-mobile-menu {
        transform: translateX(0);
        visibility: visible;
        transition-delay: 0s;
    }

    body.inter-shell .inter-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 82px;
        padding: 0 20px 0 26px;
        border-bottom: 1px solid rgba(7, 17, 31, .12);
    }

    body.inter-shell .inter-mobile-brand {
        display: inline-flex;
        align-items: center;
        height: 50px;
    }

    body.inter-shell .inter-mobile-brand img {
        display: block;
        width: 112px;
        height: auto !important;
    }

    body.inter-shell .inter-menu-close {
        position: relative;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: 1px solid rgba(7, 17, 31, .16);
        border-radius: 50%;
        box-shadow: none;
        cursor: pointer;
    }

    body.inter-shell .inter-menu-close:hover,
    body.inter-shell .inter-menu-close:focus {
        background: rgba(21, 149, 141, .09);
        border-color: #15958d;
        outline: none;
    }

    body.inter-shell .inter-menu-close:focus-visible {
        outline: 2px solid #15958d;
        outline-offset: 2px;
    }

    body.inter-shell .inter-menu-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 19px;
        height: 2px;
        background: #07111f;
    }

    body.inter-shell .inter-menu-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
    body.inter-shell .inter-menu-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

    body.inter-shell .inter-mobile-menu ul {
        display: block;
        float: none;
        margin: 0;
        padding: 28px 20px;
    }

    body.inter-shell .inter-mobile-menu li {
        display: block;
        float: none;
        margin: 0 0 8px;
    }

    body.inter-shell .inter-mobile-menu li > a {
        display: flex;
        align-items: center;
        min-height: 62px;
        padding: 0 20px;
        color: #07111f;
        background: transparent;
        border: 1px solid transparent;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .14em;
        line-height: 1.2;
        text-transform: uppercase;
        transition: color .2s ease, background .2s ease, border-color .2s ease;
    }

    body.inter-shell .inter-mobile-menu li > a:hover,
    body.inter-shell .inter-mobile-menu li > a:focus,
    body.inter-shell .inter-mobile-menu li > a.is-current {
        color: #0b6863;
        background: rgba(21, 149, 141, .09);
        border-color: rgba(21, 149, 141, .28);
        outline: none;
    }

    body.inter-shell .inter-mobile-menu li > a.inter-auth-primary {
        color: #fff;
        background: #07111f;
        border-color: #07111f;
    }

    body.inter-shell .inter-mobile-menu li > a.inter-auth-primary:hover,
    body.inter-shell .inter-mobile-menu li > a.inter-auth-primary:focus {
        color: #fff;
        background: #117b75;
        border-color: #117b75;
    }

    body.inter-shell .inter-mobile-menu li > a.inter-auth-secondary {
        color: #68778b;
        border-color: rgba(7, 17, 31, .12);
    }

    body.inter-shell .inter-mobile-menu li > a.is-current::after {
        content: "CURRENT";
        margin-left: auto;
        color: #117b75;
        font-size: 9px;
        letter-spacing: .13em;
    }

    body.inter-shell .inter-mobile-meta {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        margin-top: auto;
        padding: 22px 26px;
        color: rgba(7, 17, 31, .58);
        border-top: 1px solid rgba(7, 17, 31, .12);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .14em;
        line-height: 1.4;
    }

    body.inter-shell .inter-mobile-meta span:last-child {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #117b75;
    }

    body.inter-shell .inter-mobile-meta i {
        width: 7px;
        height: 7px;
        background: #18b7aa;
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(24, 183, 170, .12);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.inter-shell .inter-mobile-menu,
    body.inter-shell .inter-mobile-backdrop,
    body.inter-shell .inter-menu-toggle span { transition: none; }
}
