.nav-link i { 
    font-size: 18px;
    margin-right: 4%;
    margin-left: 2%;
}
.main-header {
    position: fixed;
    width: 100%;
    height: 7vh;
    background: transparent;
    /* box-shadow: var(--default-boxshadow); */
    z-index: 10;
}
.navbar-nav { 
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-item {
    margin-right: 0.75rem;
}
.navbar-nav a { 
    cursor: pointer;
    font-size: 1rem;
    color: rgb(237, 237, 237) !important; 
}
.navbar-nav a:hover { 
    font-weight: bold; 
    color: white !important;
}
.navbar-nav .logo-link {
    font-size: 1.2rem;
    color: gold !important;
}
@media (max-width: 768px) {
    .mobile-responsive {
        display: block;
    }
}
.mobile-responsive {
    display: none;
}
.nav-links {
    cursor: pointer;
}
.profiledetails {
    display: flex;
    align-items: center;
    justify-content: end;
}
.sidemenuimg img {
    width: 17px;
}
.dropdown-menu {
    box-shadow: var(--default-boxshadow);
    background: black;
    padding: 0.5rem 0;
    overflow: hidden;
}
.dropdown-menu .dropdown-item {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    color: rgb(237, 237, 237);
}
.dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: white;
}
.dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
} 