.nnavbar {
    position: absolute;
    width: 100%;
    padding: 20px;
    display: flex;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.30);
}

.nnavbar a {
    color: white;
}

.nnavbar .nav-links ul.main-ul {
    display: flex;
}

.nnavbar .nav-links ul.main-ul li.main-li {
    margin: 10px 20px;
    font-size: 15px;
}

.nnavbar .nav-links ul li.active a {
    color: #ed3c57;
    font-weight: 600;
}

.nnavbar .menu-hamburger {
    display: none;
    top: 50px;
    right: 50px;
    width: 35px;
}

.rot-hamburger-f {
    rotate: 0deg;
    transition: all 0.5s ease;
}

.rot-hamburger-t {
    rotate: 180deg;
    transition: all 0.5s ease;
}


@media screen and (max-width: 991px) {

    .nnavbar .menu-hamburger {
        display: block;
        top: 35px;
        z-index: 100;
    }

    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s ease;
        z-index: 5;
        color: white;
    }

    .nav-links.mobile-menu {
        margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 75px;
    }

    .nnavbar .nav-links ul li {
        margin: 25px;
        font-size: 1.3em;
    }

    .dropdown ul {
        margin-top: 0px;
        font-size: 0.7em;
    }
    .navbar .navbar-brand {
        font-size: 1.3rem !important;
    }
}
