header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px;
}

header.nav-sticky {
    background: #fff;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.navbar-brand {
    width: 70px;
}

.navbar-brand img {
    width: 100%;
}

.navbar {
    padding: 0 1rem !important;
}

.navbar .theme-btn {
    margin: 6px 10px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    padding: 0 !important;
    margin: 10px 10px;
}

header.nav-sticky .nav-link {
    color: #000 !important;
}

.hide {
    display: none;
}

.nav-link::after {
    width: 0%;
    left: 0;
    bottom: 0px;
    background: #fff;
    height: 2px;
    content: "";
    position: absolute;
    transition: 0.4s all ease-in-out;
}

header.nav-sticky .nav-link::after {
    background: #fec005;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    position: relative;
    z-index: 10000;
    border: none !important;
}

.navbar-toggler i {
    color: #fff;
}

header.nav-sticky .navbar-toggler i {
    color: #000 !important;
}