#mainmenulinksadvert {
    padding: 0;
    margin: 0;
}

.mainnavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 20px;
    background-color: #FFFFFF;
}

.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: #101010;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: left;
    list-style: none;
    float: right;
}

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

}

.nav-link {
    font-size: 1rem;
    font-weight: bold;
    color: #475569;
    font-family: sans-serif;
    text-decoration: none;
}

.nav-link1 {
    font-size: 1rem;
    font-weight: bold;
    color: #fd0644;
    font-family: sans-serif;
    text-decoration: none;
}

.nav-link:hover {
    color: #fc5e02;
}

.nav-link1:hover {
    color: #058536;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #482ff7;
}


@media only screen and (max-width: 768px) {
    .nav-menu {
        display: block;
        position: fixed;
        right: -100%;
        top: 4.5rem;
        flex-direction: column;
        background-color: rgb(213, 250, 220);
        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;

    }

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

    .nav-item {
        margin: 8px 0 7px 0;
        height: 35px;
        padding-left: 0px;
    }

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


    .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);
    }


}