.menu{
    padding: 30px 0;
    position: relative;
    .shape-3{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        img{
            width: 180px;
        }
    }
    .section_heading{
        text-align: center;
        h6{
            font-size: 30px;
            color: $black;
            font-weight: 500; 
            display: inline-block;
            border-bottom: 2px solid #eb815bb4;
            padding: 12px 0;
        }
    }
  .menu_list{
       .menu_item{
        padding-top: 20px;
           h4{
            font-size: 22px;
            color: $primaryColor;
            font-weight: 500;
            line-height: 28px;
           }
           ul{
            padding-top: 5px;
            padding-right: 30px;
            li{
                display: flex;
                align-items: center ;
                justify-content: space-between;
                margin-bottom: 7px;

                span{
                    font-size: 16px;
                    color: $text;
                    font-weight: 400;
                }
                .amount{
                    font-size: 20px;
                    color: $black;
                    font-weight: 500;
                }
            }
           }
       }
  }
  .menu_img_list{
       padding-top: 40px;
      .menu_img{
          height: 260px;
          width: 100%;
         img{
            width: 100%;
            height: 100%;
            object-fit: cover;
         }
      }
  }
}