nav.nav-menu {
    top: 0px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    z-index: 999;
    padding: 14px 22px;
  }
  .nav-brand {
    height: 40px;
  }
  .nav-wrapper {
    display: block;
    margin: 0 0 0 auto;
  }
  .menu {
    display: inline-flex;
    align-items: center;
    padding: 0 0;
    margin: 0 0;
  }
  .menu li {
    list-style: none;
  }
  .menu li a {
    color: #444;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    padding: 0 0 4px 0 !important;
    line-height: 22px !important;
  }
  .menu li a:hover {
    color: #00659B !important;
  }
  @media screen and (max-width: 1199.98px) {
    .nav-menu {
      height: 80px !important;
    }
    .nav-wrapper {
      display: none;
    }
    .nav-wrapper ul {
      flex-direction: column;
    }
    .nav-wrapper ul li {
      margin: 30px 0;
    }
    .nav-wrapper ul li a {
      color: #00659B;
      font-size: 18px;
    }
    .nav-btn {
      height: 48px;
      width: 48px;
      z-index: 999;
      border-radius: 50%;
      border: none;
      margin: 0 0 0 auto;
    }
    .nav-btn i {
      height: 3px;
      width: 24px;
      display: block;
      background: #ff0000;
      border-radius: 3px;
      margin-left: 12px;
    }
    .nav-btn i:nth-child(1) {
      margin-top: 14px;
    }
    .nav-btn i:nth-child(2) {
      margin-top: 5px;
      opacity: 1;
    }
    .nav-btn i:nth-child(3) {
      margin-top: 5px;
    }
    nav.scroll-active {
        background: #fff;
        transition: ease-in-out 0.25s;
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
      }
  }
  #nav:checked + .nav-btn {
    transform: rotate(45deg);
  }
  #nav:checked + .nav-btn i {
    background: #000;
    transition: transform 0.15s ease;
  }
  #nav:checked + .nav-btn i:nth-child(1) {
    transform: translateY(8px) rotate(180deg);
  }
  #nav:checked + .nav-btn i:nth-child(2) {
    opacity: 0;
  }
  #nav:checked + .nav-btn i:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
  }
  #nav:checked ~ .nav-wrapper {
    height:500px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 998;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
  }
  .hidden {
    display: none !important;
  }
  nav.scroll-active {
    background: #fff;
    transition: ease-in-out 0.25s;
  }

  #Top_bar.is-sticky {
    height: 100px !important;
  }