#navbar{
    /* background-color: rgb(81,98,206); */
    display: flex;
    justify-content: space-between;
    padding: 10px 1rem;
    align-items: center;
    width: 100vw;

    background-color: #2b4162;
    background-image: linear-gradient(315deg, #2b4162 0%, #12100e 110%);
}

#navbarBrandContainer{
    min-height: 4rem;
}

#navbarBrandContainer img{
    height: 4rem;
    width: 15rem;
}

#navbarBrandContainer > a{
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: white;
}

#navbarItemsContainer > ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;

}

#navbarItemsContainer > ul > li{
    list-style: none;
    padding: 0 10px;
}

#navbarItemsContainer > ul > li > a{
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 10px;
    color: white;
}

#navbarItemsContainer > ul .dropdown {
    position: relative;
    display: inline-block;
}

#navbarItemsContainer > ul .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2; /*keep it 2 otherwise it will be hide behind the get-quote-form*/
}

#navbarItemsContainer > ul .dropdown-content a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}

#navbarItemsContainer > ul .dropdown-content a:hover {background-color: #ddd;}

#navbarItemsContainer > ul .dropdown:hover .dropdown-content {display: block;}

#navbarItemsContainer > ul .dropdown:hover .dropbtn {background-color: #3e8e41;}

#hamburgerLi{
    height: 50px;
    width: 50px;
    display: none;
    cursor: pointer;
}

#hamburgerLi > img{
    height: 100%;
    width: 100%;
}





/* sidenav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    /* background-color: rgb(81,98,206); */
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    
    background-color: #2b4162;
    background-image: linear-gradient(315deg, #2b4162 0%, #12100e 110%);
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}
  
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}

@media screen and (max-width: 835px) {
    #navbar ul li:not(#hamburgerLi){
        display: none;
    }
    #navbar #hamburgerLi{
        display: block;
    }
    #navbar{
        border-bottom: none;
    }
}


@media screen and (max-width: 360px) {
    #navbarBrandContainer img{
        height: 4rem;
        width: 10rem;
    }
}
