#mainmenulinksadvert {
    padding: 0;
    margin: 0;
    width: 100%;
}

.mainnavbar {
    display: flex;
    justify-content: space-between;
}


.hamburger {
    display: none;
}

.menustroke {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #b4b4b4;
}

.nav-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    list-style: none;
    margin-top: 60px;
    width: 70%;
    float: right;
}

.nav-item {
    margin-left: 1rem;
    list-style: none;

}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: yellow;
    text-decoration: none;
    background-color: transparent;
    padding: 10px;
}

.nav-link1 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #6307AA;
    padding: 10px;
}

    
.nav-link:hover {
    color: white;
    background-color: #6307AA;
    padding: 10px;
}

.nav-link1:hover {
    color: white;
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        display: block;
        position: fixed;
        right: -100%;
        top: .5rem;
        flex-direction: column;
        background-color: black;
        width: 50%;
        border-radius: 5px;
        text-align: left;
        transition: 0.3s;
        padding-left: 15px;
        padding-top: 5px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 9999;
        border: #fff solid 1px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 8px 0 0px 0;
        height: 35px;
        padding-left: 0px;
        border-bottom: #b4b4b4 1px solid;
    }

    .bl {
        border-bottom: 2px dotted #c2c0c0;
    }

    .nav-link {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }
    
    .nav-link1 {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        font-weight: bold;
        color: yellow;
        text-decoration: none;
        background-color: transparent;
    }
    
        
    .nav-link:hover {
        color: white;
    }
    
    .nav-link1:hover {
        color: white;
    }

    .hamburger {
        display: block;
        cursor: pointer;

    }

    .hamburger.active .menustroke:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .menustroke:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .menustroke:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }


}