.navbar {
    min-height: 90px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 10;
    color: var(--color-light);
}

#top_navbar {
 top: 0;
}


.navbar a {
    text-decoration: none;
    color:var(--color-light);
}

.nav-item {
    cursor: pointer;
    min-width: 160px;
}

.nav-item .btn-btn {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.nav-item i {
    font-size: 2em;
}

.nav-logo {
    height: 90px;
    width: 90px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.nav-logo2 {
    height: 90px;
    width: 90px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 500;
    /* display: none; */
}

.navbar .dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.navbar .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.navbar .dropdown-content {
    display: none;
    position: absolute;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    background-color: var(--primary-bg);
    top: 40px;
    right: 0px;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

.navbar .dropdown-item {
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.navbar .dropdown-item a {
    color: var(--color-light);
}

.navbar .dropdown-item:hover {
    background-color: var(--primary-btn-hover);
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
}


.mobile-menu-bg {
    width: 100vw;
    height: 90px;
    display: none;
}

.mobile-menu-top {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2em;
    display: block;
    cursor: pointer;
    z-index: 200;
}

.navbar.show {
    display: flex;
}

.purple-icon {
    color: var(--primary-bg);
}


.custom-space {
    min-width: 110px;
}


@media only screen and (max-width: 1300px) {
    .nav-logo {
        display: none;
    }



    .nav-logo2 {
        height: 70px;
        width: 70px;
        position: absolute;
        left: 20px;
        top: 5px;
        z-index: 500;
        /* display: none; */
    }

    /* .navbar .dropdown-content {
        display: block;
    } */


    .custom-space {
        min-width: 160px;
    }


    #top_navbar {
        margin-top: 70px;
    }

    .mobile-menu-bg {
        display: block;
    }

    .mobile-menu-top {
        display: block;
    }

    .navbar {
        height: auto;
        min-height: 90px;
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .nav-item {
        min-height: 70px;
    }

    .navbar.show {
        display: flex;
    }
}