.navbar{
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 12px 0;
}

.navbar_mobile{
    display: flex;
    justify-content: space-between;
}

.navbar_brand{
    display: flex;
    gap: 30px;
    align-items: center;
}

.blob{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.blob::before{
    content: "";
    width: 10px;
    height: 10px;
    background: #70FF58;
    display: block;
    border-radius: 50px;
}

.navbar_brand a{
    color: var(--brand_color);
    font-weight: 300;
}

.navbar_brand img{
    width: 60px;
}

.navbar_brand a b{
    font-weight: 500!important;
}

.navbar_toggle{
    display: none;
}

.navbar_toggle img{
    width: 18px;
}

.navbar_links ul{
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar_links li a{
    font-size: 15px;
    color: black;
    font-weight: 600;
    transition: .2s!important;
}

.navbar_links li a:hover{
    color: #FFCF24;
}

.navbar_button{
    display: inline-block;
    background-color: #FFCF24;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 10px 46px;
    transition: .2s!important;
    transform: scale(1);
}

.navbar_button:hover{
    background-color: #ffc800;
    color: black!important;
    transform: scale(1.1);
    transition: .2s!important;
}

@media only screen and (max-width: 1000px) {
    .navbar_links{
        display: none;
        position: absolute;
        top: 80px;
        background-color: white;
        width: 100%;
        left: 0;
        padding: 20px 20px 30px;
    }

    .navbar{
        padding-left: 5%;
        padding-right: 5%;
    }

    .navbar_mobile{
        width: 100%;
    }

    .navbar_links ul{
       width: 100%;
    }

    .navbar_links ul li:nth-last-child(1){
        padding-top: 20px;
    }

    .navbar_toggle{
        display: flex;
    }

    .navbar_links ul{
        flex-direction: column;
        gap: 15px;
    }

    .navbar__links--active{
        display: flex;
    }

}
