
 
.nav > ul {
    list-style: none;  
    margin: 0;    
  } 

  .nav li {  
    line-height: 40px;
    text-align: left;
  }
  
  .nav a {
    text-decoration: none;
    color: #222;
    display: block;
    padding-left: 16px;  
    transition: .3s background-color;
  }
  
  .nav li:hover,
  .nav li:hover > a {
    background-color: #2b9890;
    color:#fff;
    font-weight: 600;
  }

  .nav li li:hover,
  .nav li li:hover > a {
    background-color: #2fccc0;
    color:#fff;
  }
  
  .nav a.active {
    background-color: #eee;
    color: #000;
    cursor: default;
  }
 
 
  
  @media screen and (min-width: 769px) {
    .nav {
      float:right; 
      margin-top:-10px;
      padding-right: 90px;
      display: block !important;
 
      width: 80%;
      max-width: 80%;
      position: relative;
      height:100%;
    }

    .nav > ul { 
        position: absolute;
        right: 90px;
    }
    
    .nav li { 
      width: 170px;
      border-bottom: none;
      height: 38px;
      line-height: 38px;   
      display: table-cell
    }
  
    .nav a {
      border-bottom: none;
    }
  
    .nav > ul > li {
      text-align: center;
    }
  
    .nav > ul > li > a {
      padding-left: 0; 
      font-weight: 600;  
      font-size:19px;
    }
  
    /* Sub Menus */
    .nav li ul {
      position: absolute;
      display: none ;
      width: inherit;
      z-index:88;  
      top:0 48px;
      margin-top: 0;
      border:2px #2b9890 solid;
      background-color: #fff; 
    }
  
    .nav li:hover ul {
      display: block;
    }
  
    .nav li ul li {
      display: block;
      width:100%; 
      height: 33px;
      line-height: 34px;  
    }

    .nav li ul li a {
        font-size: 14px; 
        font-weight: normal;
        letter-spacing: 0;
    }  
  }