.navbar {
    position: fixed;
    width: 100%;
    height: 55px;
    padding: 0 1em;
    color: var(--color-text-primary);
    z-index: 100000;
}

.navbar-logo img {
    max-height: 15%;
    max-width: 15%;
    object-fit: contain;
  }

.navbar:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(30px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(120%) !important;
    border-bottom: 1px solid var(--color-border);
    z-index: -1;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
}

.hamburger-icon {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    line-height: 55px;
}

.hamburger-icon i {
    position: relative;
    top: 1.25px;
}

#hamburger-toggle {
    display: none;
}

.navbar-logo {
    font-size: 17px;
    font-weight: 600;
}

.navbar-logo i {
    font-size: 20px;
    top: 2px;
}

.navbar-items ul {
    display: flex;
    list-style: none;
}

.navbar-items ul li {
    line-height: 55px;
    font-size: 14px;
    font-weight: 500;
}

.navbar-items ul li a {
    padding: 1em;
    cursor: pointer;
}

.navbar-items .btn {
    line-height: 55px;
    margin-left: 80px;
}

.navbar-items .btn a {
    padding: 10px 20px !important;
    background: var(--color-brand-bg);
    border-radius: 40px;
}

@media screen and (max-width:805px) {
    .navbar-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: fixed;
        width: 100%;
        height: calc(100vh - 51px);
        padding-top: 55px;
        top: 55px;
        left: 100%;
        border-top: 1px solid var(--color-border);
        background: rgba(0, 2, 18, 0.35);
        backdrop-filter: blur(30px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(120%) !important;
        text-align: center;
        transition: all 0.5s;
        z-index: 10000;
    }

    .hamburger-icon {
        display: block;
    }

    #hamburger-toggle:checked~ul {
        left: 0%;
    }

    .navbar .container {
        padding: 0;
    }

    .navbar-items .btn {
        line-height: 55px;
        margin-left: 0px;
        margin-top: 30px;
    }
    
}

