strong {
    font-weight: 600;
  }
  
  header {
      display: flex;
      position: fixed;
      top:0px;
      width: 100%;
      height: 50px;
      background-color: rgb(118,198,145);
      background-image: linear-gradient(110deg, #00aeff 20%, #0055ca 60%) !important;
      box-shadow: 0px 4px 8px 1px #0000005e;
      color: #fff;
      justify-content: center;
      align-items: center;
      -webkit-tap-highlight-color: rgba(0,0,0,0);
      z-index:999;
  }
  
  #nav-container {
    position: fixed;
    top:0px;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    z-index:999;
  }
  #nav-container .bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: calc(100%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    background: #000;
  }
  #nav-container:focus-within .bg {
    visibility: visible;
    opacity: .6;
  }
  #nav-container * {
    visibility: visible;
  }
  
  .menu_button {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 50px;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    margin-left: 25px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }

  .menu_chat {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1000;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    border-radius: 0;
    height: 50px;
    width: 30px;
    top: 0px;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    right: 10px;
    color: white;
    font-size:18px;
  }

  .icon-bar {
    display: block;
    width: 50%;
    height: 2px;
    background: #fff;
    transition: .3s;
  }
  .icon-bar + .icon-bar {
    margin-top: 2px;
  }
  
  #nav-container:focus-within .menu_button {
    pointer-events: none;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0,4px,0) rotate(45deg);
  }
  #nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
  }
  #nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0,-4px,0) rotate(-45deg);
  }
  
  #nav-content {
    margin-top: 50px;
    padding: 20px 0px;
    width: 90%;
    max-width: 200px;
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 50px);
    background: #ececec;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateX(-100%);
    transition: transform .3s;
    will-change: transform;
    contain: paint;
  }
  
  #nav-content ul {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  #nav-content li a {
    padding: 10px 20px;
    display: block;
    text-transform: uppercase;
    transition: color .2s;
  }
  
  #nav-content li a:hover {
    color: #ffffff;
    background-image: linear-gradient(110deg, #00aeff 20%, #0055ca 60%) !important;
    transition: .2s;
  }
  
  #nav-content li:not(.small) + .small {
    margin-top: auto;
  }
  
  .small {
    display: flex;
    align-self: center;
  }
  
  .small a {
    font-size: 12px;
    font-weight: 400;
    color: #888;
  }
  .small a + a {
    margin-left: 15px;
  }
  
  #nav-container:focus-within #nav-content {
    transform: none;
  }
  
  
  #nav-content a,
  #nav-content a:visited,
  #nav-content a:focus,
  #nav-content a:active,
  #nav-content a:link {
    text-decoration: none;
    outline: 0;
  }
  
  #nav-content a {
    color: currentColor;
    transition: .2s ease-in-out;
  }
  
  #nav-content ul {
    padding: 0;
    list-style: none;
  }
  
  #nav-content ul ul{
      display:none;
  }
  
  ul.in{
      display:block !important;
  }

  li > ul > li{
      border-left: solid #0055ca 1.5px;
  }

  .nav-link.active{
    color: #ffffff !important;
    background-image: linear-gradient(110deg, #00aeff 20%, #0055ca 60%) !important;
  }