.navbar {
    position: absolute;
    background: transparent;
    color: #fff;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar .nav-link {
    position: relative;
    font-weight: 400;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    color: #fff;
}

.navbar .nav-link.active {
    font-weight: 300;
    color: #fff;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.offcanvas.show:not(.hiding),
.offcanvas.showing {
    background-color: #3E4939;
}

.offcanvas {
    background-color: #3E4939 !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
        flex-basis: auto;
    }



}


@media(max-width: 576px) {
    .offcanvas {
        display: flex;
    }

    .navbar-bg {
        background-color: #3E4939;
    }

    .navbar .nav-link {
        position: relative;
        font-weight: 400;
        padding-bottom: 5px;
        transition: color 0.3s ease;
        color: #fff;
    }

    .navbar .nav-link.active {
        color: #fff;
    }

    .navbar .nav-link.active::after {
        background-color: #fff;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .close-btn-header {
        filter: invert(1) grayscale(100%) brightness(200%);
    }
}