.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.613rem;
    padding: 1rem 0rem;
    color: #fff;
    font-family: Poppins, sans-serif;
    transition: 0.3s;
    z-index: 1000;
}

.navbar-inner {
    max-width: 73.75rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left,
.navbar-right {
    display: flex;
    gap: 0.563rem;
    background: none;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.563rem 0.844rem;
    border: 0rem solid rgba(255, 255, 255, 0.8);
    border-radius: 0.844rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.488rem;
    text-decoration: none;
    transition: 0.2s;
    border-style: solid;
    background: none;
}

.nav-link i {
    font-size: 1rem;
}

.nav-link:hover {
    border-color: currentColor;
    color: #fff;
}

.nav-underline {
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.511rem;
    height: 0.141rem;
    border-radius: 3.35544e+07px;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link.active .nav-underline {
    opacity: 1;
}

.nav-link.active {
    color: #fff;
}