
nav {
    position: fixed;
    width: 100%;
    background-color: #FFF;
    z-index: 11;
}

.navbarContainer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.75em 0 0.6em;
    text-align: center;
    padding: 0 5%;
}

.navbarBtn-gotodashboard {
    border: none;
    appearance: none;
}

#logoContainer {
    /* background-color: #000; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-decoration: none;
    font-family: Inter;
    font-size: 1.5em;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
    width: 15%;
    height: auto;
}

#logoContainer img {
    width: 100%;
    height: 100%
}

@media (max-width: 350px) {

    .connect-on-whatsapp-1 {
        padding: 0.9em 1em !important;
    }

    .connect-on-whatsapp-1 svg {
        width: 15px;
        height: 15px;
    }
}

.logoText{
    display: inline;
}

.navbarMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    text-decoration: none;
    width: 16em;
    height: 100%;
}

.navbarLinks {
    text-decoration: none;
    color: #000;
    font-family: Inter;
    font-size: 1em;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s linear;
}

.navbarBtn, .navbarBtn-gotodashboard {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: auto;
    gap: 1em;
}

#login {
    padding: 10px;
    color: #000;
    font-family: Inter;
    font-size: 1em;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

#signup {
    padding: 0.7em 0.9em;
    background: #7383FF;
    color: #FFF;
    border-radius: 0.5em;
    font-family: Inter;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}


.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

@media(max-width: 768px) {    
    .navbarMenu{
        display: none;
    }
    .hamburger {
        display: block;
    }

    .hamburger.active .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 6px);
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar2 {
        opacity: 0;
    }

    .hamburger.active .bar3 {
        -webkit-transform: rotate(45deg) translate(-5px, -6px);
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .navbarBtn{
        display: none;
    }
    #logoContainer{
        width: 40%;
    }
    
    .logoImg{
        display: inline;
        width: 3em;
    }

    
    .logoText{
        
    }

    .navbarMenu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        border: #000 0.1px solid;
        border-radius: 5%;
        width: 100%;
        text-align: center;
        /* transition: 0.3s; */
    }

    .navbarItem {
        margin: 16px 0;
    }
    

    .navbarMenu.active {
        left: 9em;
        height: 25%;
        width: 60%;
    }

    /* .navbarLinks{
        display: block;
        text-align: center;
        padding: 1em;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    .navbarLinks:hover{
        background-color: rgba(0,0,0,0.1);
    } */
    .bar {
        background-color: #000;
        border-radius: 0.3em;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 6px);
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-5px, -6px);
        transform: rotate(45deg) translate(-5px, -6px);
    }

    #signup,
    #login {
        width: 80%;
    }
}

@media (max-width: 400px) {
    .navbarContainer {
        padding: 0 1.5em;
    }
}

.navbarLinks:hover {
    transform: scale(1.09);
}

#login {
    transition: all 0.2s linear;
}

#login:hover {
    transform: scale(1.05);
}

.navbarLinks.active {
    color: #304DDB;
}

#signup {
    transition: all 0.2s linear;
}

#signup:hover {
    transform: scale(1.05);
}


#dashboard {
    display: none;
    position: absolute;
    min-width: 200px;
    bottom: -57%;
    transform: translateY(88%);
    right: 2%;
    font-size: 14px;
    padding: 1rem;
    border-radius: 10px;
    z-index: 100;
    background: #fff;
    box-shadow: 0 15px 80px -16px rgba(0,0,0,.2);
}

#dashboard.active {
    display: flex;
}

#dashboard {
    flex-direction: column;
    padding: 1rem;
}

#dashboard div, .mobile-navbar div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dashboard-content, .sidebar-content {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 0.5rem;
}
.dashboard-content {
    margin: 0!important;
}

.nav-link, .sidebar-content a {
    margin: 0;
    padding: 0.5rem 0;
    padding-left: .5em;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.nav-link:hover {
    background: rgba(0,0,0,.1);
}

.navbarBtn-mobile {
    margin: 1.2em 0;
}