body.menu-open {
        overflow: hidden;
      }

      /* =====================================================
           HAMBURGER BUTTON
        ===================================================== */
      .menu-button {
        position: fixed;
        top: 20px;
        right: 24px;
        width: 52px;
        height: 52px;
        border: 0;
        border-radius: 50%;
        background: #f45128;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 9998;
        padding: 0;
        transition:
          transform 0.25s ease,
          opacity 0.25s ease;
      }

      .menu-button:hover {
        transform: scale(1.05);
      }

      /* =====================================================
           HAMBURGER LINES
        ===================================================== */
      .hamburger {
        width: 27px;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff4d5;
        border-radius: 5px;
      }

      /* =====================================================
           HIDE HAMBURGER WHEN MENU OPEN
        ===================================================== */
      body.menu-open .menu-button {
        opacity: 0;
        pointer-events: none;
      }

      /* =====================================================
           DARK OVERLAY
        ===================================================== */
      .menu-overlay {
        position: fixed;
        inset: 0;
        background:
          rgba(0, 0, 0, 0.25);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
          opacity 0.4s ease,
          visibility 0.4s ease;
        z-index: 9998;
      }

      .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }

      /* =====================================================
           SIDE NAVIGATION
        ===================================================== */
      .side-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: 40%;
        max-width: 100%;
        height: 100%;
        min-height: 100%;
        background: #f24722;
        /*
                Start outside the screen
            */
        transform:
          translateX(100%);
        transition:
          transform 0.55s cubic-bezier(0.77,
            0,
            0.175,
            1);
        z-index: 9999;
        overflow-y: auto;
      }

      /* =====================================================
           OPEN
        ===================================================== */
      .side-navigation.active {
        transform:
          translateX(0);
      }

      /* =====================================================
           CLOSE BUTTON
        ===================================================== */
      .menu-close {
        position: absolute;
        top: 58px;
        right: 40px;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* X LINE 1 */
      .menu-close::before {
        content: "";
        position: absolute;
        width: 31px;
        height: 2px;
        background: #fff5d5;
        transform:
          rotate(45deg);
      }

      /* X LINE 2 */
      .menu-close::after {
        content: "";
        position: absolute;
        width: 31px;
        height: 2px;
        background: #fff5d5;
        transform:
          rotate(-45deg);
      }

      /* =====================================================
           NAVIGATION CONTENT
        ===================================================== */
      .navigation-content {
        width: 100%;
        min-height: 100%;
        padding:
          126px 30px 60px;
        display: flex;
        justify-content: center;
      }

      /* =====================================================
           NAVIGATION LINKS
        ===================================================== */
      .navigation-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
      }

      .navigation-menu li {
        margin-bottom: 19px;
      }

      .navigation-menu a {
        display: inline-block;
        color: #fff8d9;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;
        text-decoration: none;
        text-transform: uppercase;
        transition:
          opacity 0.25s ease,
          transform 0.25s ease;
      }

      @media (hover: hover) {
        .navigation-menu a:hover {
          opacity: 0.7;
          transform:
            translateX(-4px);
        }
      }

      /* =====================================================
           MOBILE
        ===================================================== */
      @media (max-width: 767.98px) {
        .menu-button {
          top: 18px;
          right: 18px;
          width: 51px;
          height: 51px;
        }

        .hamburger {
          width: 27px;
        }

        /*
                Similar width to your screenshot
            */
        .side-navigation {
			width: 100%;
          max-width: 100%
        }

        .menu-close {
          top: 54px;
          right: 32px;
        }

        .navigation-content {
          padding:
            135px 20px 50px;
        }

        .navigation-menu li {
          margin-bottom: 20px;
        }

        .navigation-menu a {
          font-size: 19px;
        }
      }

      /* =====================================================
           SMALL MOBILE
        ===================================================== */
      @media (max-width: 390px) {
        .side-navigation {
          width: calc(100% - 14px);
        }

        .menu-close {
          right: 27px;
        }

        .navigation-menu a {
          font-size: 18px;
        }
      }

      /* =====================================================
           MOBILE LANDSCAPE
        ===================================================== */
      @media (max-width: 991px) and (orientation: landscape) {
        .side-navigation {
          width: 360px;
        }

        .menu-close {
          top: 25px;
          right: 28px;
        }

        .navigation-content {
          padding:
            70px 25px 30px;
        }

        .navigation-menu li {
          margin-bottom: 10px;
        }

        .navigation-menu a {
          font-size: 15px;
        }
      }

      /* =====================================================
           DEMO SECTIONS
           You can remove this part
        ===================================================== */
      .demo-section {
        min-height: 500px;
        padding: 100px 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
      }

      .demo-section:nth-child(even) {
        background: #eee;
      }