
 
nav ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      position: relative;
}
 
nav ul li {
      display: inline-block;
}
 
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 1px;
    font-size: 14px;
    display: block;
}

nav ul ul li a {
      color: #000; padding: 8px 12px;
}


nav ul > li:hover > a {
    color: #ffffff;
    background: #0089b8;
}

nav ul li a:hover {
      color: #fff; background: #0089b8;}
      
 
nav ul li:hover {
     background: #0089b8;
}
 
nav ul ul {
      position: absolute;
      min-width: 200px;
      background: lightgrey;
      display: none;
}
 
nav ul ul li {
      display: block;
      background: #ffff;
}
 
nav ul li:hover ul {
      display: block;
}
 
nav ul li i {
      color: #292929;
      float: right;
      padding-left: 16px;
}
 
nav div {
      background: #0089b8;
      color: #fff;
      font-size: 17px;
      padding: 0.4em;
      cursor: pointer;
      display: none;
}
 
@media(max-width: 768px) {
      nav div {
            display: block; 
      }
 
      nav ul {
            display: none;
            position: static;
            background: #e3e3e3;
      }
 
      nav ul li {
            display: block;border-bottom: #c5bebe solid 1px !important;
      }
 
      nav ul ul {
            position: static;
            background: #e3e3e3;
      }
}
