.nav-stickytop-wrapper {
    background: #fff;
    color: white;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 99;
    box-shadow: 0px 2px 4px 0px #0000004d;
  }
  
  @media (min-width: 1140px) {
    .nav-stickytop-wrapper {
      display: none;
    }
  }
  
  .nav-stickytop-header {
    background: #00a94f;
    color: white;
    width: 100%;
    z-index: 99;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
  }
  .nav-stickytop-body {
    display: none;
    height: 0;
    overflow: hidden;
    transition: height 1s ease-out; /* Adjust duration and easing as needed */
    height: 0;
    padding: 32px 16px 16px;
  }
  
  .nav-stickytop-body__title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    padding-bottom: 16px;
  }
  
  .nav-stickytop-body.active {
    display: block;
    height: auto;
  }
  
  .nav-stickytop-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-stickytop-body ul li {
    padding: 16px 0px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    line-height: 1.5;
    a {
      color: #666;
      display: flex;
      align-items: center;
  
      i {
        margin-right: 8px;
        font-size: 20px;
        line-height: 1;
      }
    }
  }
  .nav-stickytop-body ul li:last-of-type {
    border-bottom: none;
  }
  .nav-stickytop-body ul li a {
    font-weight: 600;
  }
  .nav-stickytop-body ul li.active a {
    color: #00a94f;
  }
  
  /* .nav-stickytop-body.level2 ul li{
    display:flex;
  } */
  .nav-stickytop-body.level2 ul li.active a{
    color: #00a94f;
  }