﻿.top-bar {
    background: #ededed;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
    gap: 10px;
    font-size: 12.5px;
    color: #616161;
    position: fixed;
    z-index: 999;
    transition: transform 0.6s ease;
    /* margin-top: 0px; */
    width: 100%;
    transform: translateY(0px);
}

    .top-bar.hide {
        /* margin-top: -46px; */
        transform: translateY(-46px);
    }

.desktop_right_menu {
    display: flex;
    align-items: center;
}

.top-bar .tb-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color .2s
}

    .top-bar .tb-item:hover {
        color: #17326d
    }

    .top-bar .tb-item svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0
    }

.top-bar .divider {
    width: 1px;
    height: 16px;
    background: #c5c5c5
}

.top-bar-leftNew {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-rightNew {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MAIN NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.main-nav {
    background: rgb(255 255 255);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    width: 100%;
    /* top: 45px; */
    transform: translateY(45px);
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,.10);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: transform 0.6s ease;
}
.main-nav.hide2 {
    transform: translateY(0px);
}

.nav-logo {
}

    .nav-logo img {
        height: 22px;
        display: block;
        text-align: left;
    }

.nav-links {
    display: flex;
    gap: 22px;
    font-size: 15px;
    color: #444;
    line-height: 62px;
}

    .nav-links a {
        cursor: pointer;
        white-space: nowrap;
        transition: color .2s;
        position: relative;
        padding-bottom: 2px
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: #17326d;
            transition: width .25s
        }

        .nav-links a:hover {
            color: #17326d
        }

            .nav-links a:hover::after {
                width: 100%
            }

.nav-dev-logo img {
    height: 48px;
    display: block
}

.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #444;
    background: none;
    border: none;
    padding: 4px
}

/* mobile nav */
.mobile-menu {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 16px 24px;
    z-index: 199;
    flex-direction: column;
    gap: 14px;
    transition: 0.4s;
}

    .mobile-menu.open {
        display: flex
    }

    .mobile-menu.scrolled.open {
        top: 64px;
    }

    .mobile-menu a {
        font-size: 14px;
        color: #444;
        cursor: pointer;
        padding: 4px 0;
        border-bottom: 1px solid #f0f0f0
    }


@media (max-width: 768px) {
    .top-bar {
        padding: 0 10px;
        font-size: 11px;
        gap: 16px;
        z-index: 203;
    }

    .top-bar-leftNew {
        position: absolute;
        left: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .top-bar-rightNew {
        right: 5px;
        gap: 5px;
    }
}
