.navbar {
background-color:#E3E3E3;
position: fixed;
width:100%;
z-index: 999;
}

.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
background: #E3E3E3;
}

.navbar li {
display: inline-block;
}

.navbar li a {
color: #868e96;
display: block;
padding: 10px 20px;
text-decoration: none;
}

/* Style the dropdown menu */
.navbar ul ul {
position: absolute;
top: 100%;
display: none;
background-color:#fff;
}

.navbar ul ul li {
display: block;
}

.navbar li:hover ul {
display: block;
}

/* Change the background color of dropdown links on hover */
.navbar ul ul li a:hover {
background-color:#E3E3E3;
}

.li-dis {
margin-left:74px;
}


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

.li-dis {
margin-left:20px;
}

}
