.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.);
    color: rgb(231, 231, 231);

}

.brandtitle {
    display: inline-block;
    margin: .5rem .5rem .5rem .3rem;
}


.brandtitle>img {
    max-width: 80%;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;


}

.navbar-links li {
    list-style-type: none;
    white-space: nowrap;
    transition: 0.6s ease;
}

.navbar-links li a {
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    display: block;
    font-size: 1.3rem;
    color: rgb(255, 255, 255);
    box-sizing: border-box;
    transition: 0.6s ease;

}

.navbar-links li:hover {
    background-color: rgba(65, 54, 63, 1.0);

}

.btn-toggle {
    position: absolute;
    top: 1.8rem;
    right: .7rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 20px;


}

.btn-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    transition: 0.6s ease;
}


@media (max-width: 800px) {
    .btn-toggle {
        display: flex;
    }



    .navbar-links {
        width: 100%;
        display: none;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;


    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
        transition: 0.6s ease;
    }


    .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgba(65, 54, 63, 1.0);
        width: 100%;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;


    }

    .dropdown-content-sub {
        display: none;
        position: relative;
        background-color: rgba(110, 92, 107, 1.0);
        width: 100%;
        z-index: 1;

    }

    .dropdown-sub {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .brandtitle>img {
        max-width: 70%;
    }

}

/* submenu navi */

/* Dropdown Button */
.dropbtn .dropbtn-sub {
    color: white;
    padding: 16px;
    border: none;
    background-color: rgba(65, 54, 63, 1.0);


}

/* The container <div> - needed to position the dropdown content */
.dropdown .dropdown-sub {
    position: relative;
    display: inline-block;


}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(65, 54, 63, 1.0);
    transition: 0.6s ease;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;

}

.dropdown-content-sub {
    display: none;
    position: relative;
    background-color: rgba(110, 92, 107, 1.0);
    min-width: 160px;
    /* border: 1px solid rgba(255, 255, 255,);
    border-color:rgb(255, 255, 255); */
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
    z-index: 1;

}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: white;
    color: rgba(65, 54, 63, 1.0);
}

.dropdown-content-sub a:hover {
    background-color: white;
    color: rgba(65, 54, 63, 1.0);
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    background-color: rgba(65, 54, 63, 1.0);
}


.dropdown-sub:hover .dropdown-content-sub {
    display: block;
    /*align-items: right;
    flex-direction: column; */
    left: 0;
    top: 0;

    /* padding-left: 100px;
    float: left; */
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: rgba(65, 54, 63, 1.0);

}




@media screen and (max-width: 400px) {

    .brandtitle>img {
        max-width: 60%;
    }

}