/* NVABAR SECTION */  
#navbar-section {
    position: sticky;
    top: 0;
    padding: 0px 20px;
}

@media only screen and (max-width: 768px) {
    #navbar-section {
        position: sticky;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

.navbar {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

.navbar-brand img {
    height: 3vh;
}      

.nav-link {
    font-size: 18px;
    font-weight: normal;
    padding: 20px 20px !important;
    cursor: pointer;
}

.dark .nav-link {
    color: var(--text-white) !important;
} 

.light .nav-link {
    color: var(--secondary-color) !important;
} 

.nav-link:hover {
    border-bottom: 1px solid var(--primary-color) !important;
}

.active {
    border-bottom: 1px solid var(--primary-color) !important;
}

.glass-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  
    background: rgba(20, 20, 20, 0.05);
    backdrop-filter: blur(20px);           
    -webkit-backdrop-filter: blur(20px);   
}

.navbar-toggler {
    border: 0 !important;
}

.dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}