.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 1000;
  }

  /* Menu links */
  .side-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
    transition: 0.3s;
  }

  .side-menu a:hover {
    background-color: #575757;
  }

  /* Button to open menu */
  .menu-btn {
    font-size: 24px;
    cursor: pointer;
    background-color: #df3f01;;
    color: white;
    border: none;
    padding: 10px;
    margin: 10px;
    display: none;
  }

  /* Overlay to close menu */
  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
  }
  .side-menu-open {
    width: 80%;
  }
  
  .overlay-visible {
    display: block;
  }
  .custom-mobile-list{
    list-style-type: none;
  }
  @media only screen and (max-width: 1199px) {
    .menu-btn{
        display: block;
    }
  }
  