index.blade.php 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. @extends('views.layouts.master')
  2. @section('content')
  3. <!--=====================================
  4. BANNER PART START
  5. =======================================-->
  6. <section class="banner-part">
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-lg-3">
  10. <div class="banner-category">
  11. <div class="banner-category-head"> <i class="fas fa-bars"></i> <span>top categories</span> </div>
  12. <ul class="banner-category-list">
  13. <li class="banner-category-item"> <a href="#"> <i class="flaticon-vegetable"></i> <span>vegetables</span> </a>
  14. <div class="banner-category-dropdown">
  15. <h5>vegetables item</h5>
  16. <div class="banner-sub-category">
  17. <ul>
  18. <li><a href="#">carrot</a></li>
  19. <li><a href="#">broccoli</a></li>
  20. <li><a href="#">asparagus</a></li>
  21. <li><a href="#">cauliflower</a></li>
  22. <li><a href="#">cucumber</a></li>
  23. </ul>
  24. <ul>
  25. <li><a href="#">eggplant</a></li>
  26. <li><a href="#">green pepper</a></li>
  27. <li><a href="#">lettuce</a></li>
  28. <li><a href="#">mushrooms</a></li>
  29. <li><a href="#">onion</a></li>
  30. </ul>
  31. <ul>
  32. <li><a href="#">potato</a></li>
  33. <li><a href="#">pumpkin</a></li>
  34. <li><a href="#">tomato</a></li>
  35. <li><a href="#">beetroot</a></li>
  36. <li><a href="#">zucchini</a></li>
  37. </ul>
  38. <ul>
  39. <li><a href="#">radish</a></li>
  40. <li><a href="#">artichoke</a></li>
  41. <li><a href="#">cabbage</a></li>
  42. <li><a href="#">celery</a></li>
  43. <li><a href="#">parsley</a></li>
  44. </ul>
  45. </div>
  46. </div>
  47. </li>
  48. <li class="banner-category-item"> <a href="#"> <i class="flaticon-groceries"></i> <span>groceries</span> </a>
  49. <div class="banner-category-dropdown">
  50. <h5>groceries item</h5>
  51. <div class="banner-sub-category">
  52. <ul>
  53. <li><a href="#">Butter</a></li>
  54. <li><a href="#">Rice</a></li>
  55. <li><a href="#">Bread</a></li>
  56. <li><a href="#">Pasta</a></li>
  57. <li><a href="#">Cooking oil</a></li>
  58. </ul>
  59. <ul>
  60. <li><a href="#">Cheese</a></li>
  61. <li><a href="#">Yogurt</a></li>
  62. <li><a href="#">Onions</a></li>
  63. <li><a href="#">Garlic</a></li>
  64. <li><a href="#">Pulses</a></li>
  65. </ul>
  66. <ul>
  67. <li><a href="#">Soup</a></li>
  68. <li><a href="#">Salt</a></li>
  69. <li><a href="#">Pepper</a></li>
  70. <li><a href="#">Herbs</a></li>
  71. <li><a href="#">Sugar</a></li>
  72. </ul>
  73. </div>
  74. </div>
  75. </li>
  76. <li class="banner-category-item"> <a href="#"> <i class="flaticon-fruit"></i> <span>fruits</span> </a>
  77. <div class="banner-category-dropdown">
  78. <h5>fruits item</h5>
  79. <div class="banner-sub-category">
  80. <ul>
  81. <li><a href="#">Apple</a></li>
  82. <li><a href="#">Orange</a></li>
  83. <li><a href="#">Watermelon</a></li>
  84. <li><a href="#">Pear</a></li>
  85. <li><a href="#">Cherry</a></li>
  86. </ul>
  87. <ul>
  88. <li><a href="#">Strawberry</a></li>
  89. <li><a href="#">Nectarine</a></li>
  90. <li><a href="#">Grape</a></li>
  91. <li><a href="#">Mango</a></li>
  92. <li><a href="#">Blueberry</a></li>
  93. </ul>
  94. </div>
  95. </div>
  96. </li>
  97. <li class="banner-category-item"> <a href="#"> <i class="flaticon-dairy-products"></i> <span>dairy farms</span> </a>
  98. <div class="banner-category-dropdown">
  99. <h5>dairy items</h5>
  100. <div class="banner-sub-category">
  101. <ul>
  102. <li><a href="#">Eggs</a></li>
  103. <li><a href="#">milk</a></li>
  104. <li><a href="#">Cheese</a></li>
  105. <li><a href="#">Butter</a></li>
  106. <li><a href="#">Shore</a></li>
  107. </ul>
  108. </div>
  109. </div>
  110. </li>
  111. <li class="banner-category-item"> <a href="#"> <i class="flaticon-crab"></i> <span>sea foods</span> </a>
  112. <div class="banner-category-dropdown">
  113. <h5>sea food items</h5>
  114. <div class="banner-sub-category">
  115. <ul>
  116. <li><a href="#">Lobster</a></li>
  117. <li><a href="#">Octopus</a></li>
  118. <li><a href="#">Shrimp</a></li>
  119. <li><a href="#">Oyster</a></li>
  120. <li><a href="#">Squid</a></li>
  121. </ul>
  122. </div>
  123. </div>
  124. </li>
  125. <li class="banner-category-item"> <a href="#"> <i class="flaticon-salad"></i> <span>diet foods</span> </a>
  126. <div class="banner-category-dropdown">
  127. <h5>diet food items</h5>
  128. <div class="banner-sub-category">
  129. <ul>
  130. <li><a href="#">Peanuts</a></li>
  131. <li><a href="#">Yogurt</a></li>
  132. <li><a href="#">vinegar</a></li>
  133. <li><a href="#">seeds</a></li>
  134. <li><a href="#">Coconuts</a></li>
  135. </ul>
  136. </div>
  137. </div>
  138. </li>
  139. <li class="banner-category-item"> <a href="#"> <i class="flaticon-dried-fruit"></i> <span>dry foods</span> </a>
  140. <div class="banner-category-dropdown">
  141. <h5>dry food items</h5>
  142. <div class="banner-sub-category">
  143. <ul>
  144. <li><a href="#">Almond</a></li>
  145. <li><a href="#">Peanut</a></li>
  146. <li><a href="#">Raisin</a></li>
  147. <li><a href="#">Walnut</a></li>
  148. <li><a href="#">Pistachio</a></li>
  149. </ul>
  150. </div>
  151. </div>
  152. </li>
  153. <li class="banner-category-item"> <a href="#"> <i class="flaticon-fast-food"></i> <span>fast foods</span> </a>
  154. <div class="banner-category-dropdown">
  155. <h5>fast food items</h5>
  156. <div class="banner-sub-category">
  157. <ul>
  158. <li><a href="#">burgar</a></li>
  159. <li><a href="#">pizza</a></li>
  160. <li><a href="#">Fries</a></li>
  161. <li><a href="#">chiken</a></li>
  162. <li><a href="#">dessert</a></li>
  163. </ul>
  164. </div>
  165. </div>
  166. </li>
  167. <li class="banner-category-item"> <a href="#"> <i class="flaticon-cheers"></i> <span>drinks</span> </a>
  168. <div class="banner-category-dropdown">
  169. <h5>drinks item</h5>
  170. <div class="banner-sub-category">
  171. <ul>
  172. <li><a href="#">Wine</a></li>
  173. <li><a href="#">Coffee</a></li>
  174. <li><a href="#">Lemonade</a></li>
  175. <li><a href="#">chocolate</a></li>
  176. <li><a href="#">Milkshake</a></li>
  177. </ul>
  178. </div>
  179. </div>
  180. </li>
  181. <li class="banner-category-item"> <a href="#"> <i class="flaticon-barbecue"></i> <span>meats</span> </a>
  182. <div class="banner-category-dropdown">
  183. <h5>meats item</h5>
  184. <div class="banner-sub-category">
  185. <ul>
  186. <li><a href="#">Pork</a></li>
  187. <li><a href="#">Beef</a></li>
  188. <li><a href="#">Mutton</a></li>
  189. <li><a href="#">Chicken</a></li>
  190. <li><a href="#">Turkey</a></li>
  191. </ul>
  192. </div>
  193. </div>
  194. </li>
  195. <li class="banner-category-item"> <a href="#"> <i class="flaticon-fish"></i> <span>fishes</span> </a>
  196. <div class="banner-category-dropdown">
  197. <h5>fishes item</h5>
  198. <div class="banner-sub-category">
  199. <ul>
  200. <li><a href="#">Blue Marlin</a></li>
  201. <li><a href="#">Flounder</a></li>
  202. <li><a href="#">Hogfish</a></li>
  203. <li><a href="#">Mako Shark</a></li>
  204. <li><a href="#">pompano</a></li>
  205. </ul>
  206. </div>
  207. </div>
  208. </li>
  209. </ul>
  210. </div>
  211. </div>
  212. <div class="col-lg-9">
  213. <div class="row">
  214. <div class="col-lg-12">
  215. <div class="home-grid-slider slider-dots">
  216. <div class="banner-wrap bg1">
  217. <div class="row align-items-center">
  218. <div class="col-md-6 col-lg-6">
  219. <div class="banner-content">
  220. <h2>we are delivered organic foods item within 24 hours.</h2>
  221. <a href="#" class="btn btn-inline"> <i class="fas fa-shopping-basket"></i> <span>shop now</span> </a> </div>
  222. </div>
  223. <div class="col-md-6 col-lg-6">
  224. <div class="banner-image"> <img src="/themes/pro/modunawa/resources/images/home/index/01.png" alt=""> </div>
  225. </div>
  226. </div>
  227. </div>
  228. <div class="banner-wrap bg2">
  229. <div class="row align-items-center">
  230. <div class="col-md-6 col-lg-6">
  231. <div class="banner-content">
  232. <h2>get your organic healthy foods item online today.</h2>
  233. <a href="#" class="btn btn-inline"> <i class="fas fa-shopping-basket"></i> <span>shop now</span> </a> </div>
  234. </div>
  235. <div class="col-md-6 col-lg-6">
  236. <div class="banner-image"> <img src="/themes/pro/modunawa/resources/images/home/index/02.png" alt=""> </div>
  237. </div>
  238. </div>
  239. </div>
  240. <div class="banner-wrap bg3">
  241. <div class="row align-items-center">
  242. <div class="col-md-6 col-lg-6">
  243. <div class="banner-content">
  244. <h2>we are delivered organic foods item within 24 hours.</h2>
  245. <a href="#" class="btn btn-inline"> <i class="fas fa-shopping-basket"></i> <span>shop now</span> </a> </div>
  246. </div>
  247. <div class="col-md-6 col-lg-6">
  248. <div class="banner-image"> <img src="/themes/pro/modunawa/resources/images/home/index/03.png" alt=""> </div>
  249. </div>
  250. </div>
  251. </div>
  252. </div>
  253. </div>
  254. <div class="col-md-6 col-lg-6">
  255. <div class="banner-promo"> <a href="#"><img src="/themes/pro/modunawa/resources/images/promo/home/04.jpg" alt="promo"></a> </div>
  256. </div>
  257. <div class="col-md-6 col-lg-6">
  258. <div class="banner-promo"> <a href="#"><img src="/themes/pro/modunawa/resources/images/promo/home/05.jpg" alt="promo"></a> </div>
  259. </div>
  260. </div>
  261. </div>
  262. </div>
  263. </div>
  264. </section>
  265. <!--=====================================
  266. BANNER PART END
  267. =======================================-->
  268. <!--=====================================
  269. INTRO PART START
  270. =======================================-->
  271. <section class="section intro-part">
  272. <div class="container">
  273. <div class="row intro-content">
  274. <div class="col-sm-6 col-lg-3">
  275. <div class="intro-wrap">
  276. <div class="intro-icon"> <i class="fas fa-truck"></i> </div>
  277. <div class="intro-content">
  278. <h5>free home delivery</h5>
  279. <p>Lorem ipsum dolor sit amet adipisicing elit nobis.</p>
  280. </div>
  281. </div>
  282. </div>
  283. <div class="col-sm-6 col-lg-3">
  284. <div class="intro-wrap">
  285. <div class="intro-icon"> <i class="fas fa-sync-alt"></i> </div>
  286. <div class="intro-content">
  287. <h5>instant return policy</h5>
  288. <p>Lorem ipsum dolor sit amet adipisicing elit nobis.</p>
  289. </div>
  290. </div>
  291. </div>
  292. <div class="col-sm-6 col-lg-3">
  293. <div class="intro-wrap">
  294. <div class="intro-icon"> <i class="fas fa-headset"></i> </div>
  295. <div class="intro-content">
  296. <h5>quick support system</h5>
  297. <p>Lorem ipsum dolor sit amet adipisicing elit nobis.</p>
  298. </div>
  299. </div>
  300. </div>
  301. <div class="col-sm-6 col-lg-3">
  302. <div class="intro-wrap">
  303. <div class="intro-icon"> <i class="fas fa-lock"></i> </div>
  304. <div class="intro-content">
  305. <h5>secure payment way</h5>
  306. <p>Lorem ipsum dolor sit amet adipisicing elit nobis.</p>
  307. </div>
  308. </div>
  309. </div>
  310. </div>
  311. </div>
  312. </section>
  313. <!--=====================================
  314. INTRO PART END
  315. =======================================-->
  316. <!--=====================================
  317. DEALS PART START
  318. =======================================-->
  319. <section class="section deals-part">
  320. <div class="container">
  321. <div class="row">
  322. <div class="col-lg-12">
  323. <div class="section-heading">
  324. <h2>best deals on items</h2>
  325. </div>
  326. </div>
  327. </div>
  328. <div class="row">
  329. <div class="col-lg-12">
  330. <div class="countdown deals-clock" data-countdown="2021/12/31"> <span class="countdown-time"><span>00</span><small>days</small></span> <span class="countdown-time"><span>00</span><small>hours</small></span> <span class="countdown-time"><span>00</span><small>minutes</small></span> <span class="countdown-time"><span>00</span><small>seconds</small></span> </div>
  331. </div>
  332. </div>
  333. <div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-4">
  334. <div class="col">
  335. <div class="product-card">
  336. <div class="product-media">
  337. <div class="product-label">
  338. <label class="label-text off">-10%</label>
  339. </div>
  340. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  341. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  342. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  343. </div>
  344. <div class="product-content">
  345. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  346. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  347. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  348. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  349. <div class="product-action">
  350. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  351. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  352. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  353. </div>
  354. </div>
  355. </div>
  356. </div>
  357. <div class="col">
  358. <div class="product-card">
  359. <div class="product-media">
  360. <div class="product-label">
  361. <label class="label-text off">-5%</label>
  362. <label class="label-text new">new</label>
  363. </div>
  364. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  365. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  366. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  367. </div>
  368. <div class="product-content">
  369. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  370. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  371. <h6 class="product-price"> <del>$34</del> <span>$28<small>/kilo</small></span> </h6>
  372. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  373. <div class="product-action">
  374. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  375. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  376. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  377. </div>
  378. </div>
  379. </div>
  380. </div>
  381. <div class="col">
  382. <div class="product-card">
  383. <div class="product-media">
  384. <div class="product-label">
  385. <label class="label-text off">-20%</label>
  386. </div>
  387. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  388. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic3.jpg" alt="product"> </a>
  389. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  390. </div>
  391. <div class="product-content">
  392. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  393. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  394. <h6 class="product-price"> <del>$34</del> <span>$28<small>/dozen</small></span> </h6>
  395. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  396. <div class="product-action">
  397. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  398. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  399. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. <div class="col">
  405. <div class="product-card">
  406. <div class="product-media">
  407. <div class="product-label">
  408. <label class="label-text off">-35%</label>
  409. </div>
  410. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  411. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic4.jpg" alt="product"> </a>
  412. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  413. </div>
  414. <div class="product-content">
  415. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  416. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  417. <h6 class="product-price"> <del>$34</del> <span>$28<small>/4 piece</small></span> </h6>
  418. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  419. <div class="product-action">
  420. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  421. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  422. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  423. </div>
  424. </div>
  425. </div>
  426. </div>
  427. <div class="col">
  428. <div class="product-card">
  429. <div class="product-media">
  430. <div class="product-label">
  431. <label class="label-text off">-15%</label>
  432. </div>
  433. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  434. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic5.jpg" alt="product"> </a>
  435. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  436. </div>
  437. <div class="product-content">
  438. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  439. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  440. <h6 class="product-price"> <del>$34</del> <span>$28<small>/kilo</small></span> </h6>
  441. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  442. <div class="product-action">
  443. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  444. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  445. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  446. </div>
  447. </div>
  448. </div>
  449. </div>
  450. <div class="col">
  451. <div class="product-card">
  452. <div class="product-media">
  453. <div class="product-label">
  454. <label class="label-text off">-18%</label>
  455. </div>
  456. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  457. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  458. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  459. </div>
  460. <div class="product-content">
  461. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  462. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  463. <h6 class="product-price"> <del>$34</del> <span>$28<small>/12 piece</small></span> </h6>
  464. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  465. <div class="product-action">
  466. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  467. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  468. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  469. </div>
  470. </div>
  471. </div>
  472. </div>
  473. <div class="col">
  474. <div class="product-card">
  475. <div class="product-media">
  476. <div class="product-label">
  477. <label class="label-text off">-30%</label>
  478. </div>
  479. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  480. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  481. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  482. </div>
  483. <div class="product-content">
  484. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  485. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  486. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  487. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  488. <div class="product-action">
  489. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  490. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  491. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  492. </div>
  493. </div>
  494. </div>
  495. </div>
  496. <div class="col">
  497. <div class="product-card">
  498. <div class="product-media">
  499. <div class="product-label">
  500. <label class="label-text off">-25%</label>
  501. </div>
  502. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  503. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  504. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  505. </div>
  506. <div class="product-content">
  507. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  508. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  509. <h6 class="product-price"> <del>$34</del> <span>$28<small>/6 piece</small></span> </h6>
  510. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  511. <div class="product-action">
  512. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  513. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  514. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  515. </div>
  516. </div>
  517. </div>
  518. </div>
  519. </div>
  520. <div class="row">
  521. <div class="col-lg-12">
  522. <div class="section-btn-25"> <a href="shop-4column.html" class="btn btn-inline"> <i class="fas fa-eye"></i> <span>view all deals</span> </a> </div>
  523. </div>
  524. </div>
  525. </div>
  526. </section>
  527. <!--=====================================
  528. DEALS PART END
  529. =======================================-->
  530. <!--=====================================
  531. FEATURED PART START
  532. =======================================-->
  533. <section class="section feature-part">
  534. <div class="container">
  535. <div class="row">
  536. <div class="col-lg-12">
  537. <div class="section-heading">
  538. <h2>our featured items</h2>
  539. </div>
  540. </div>
  541. </div>
  542. <div class="row row-cols-1 row-cols-md-1 row-cols-lg-2 row-cols-xl-2">
  543. <div class="col">
  544. <div class="feature-card">
  545. <div class="feature-media">
  546. <div class="feature-label">
  547. <label class="label-text feat">feature</label>
  548. </div>
  549. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  550. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  551. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  552. </div>
  553. <div class="feature-content">
  554. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  555. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  556. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  557. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  558. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  559. <div class="product-action">
  560. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  561. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  562. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  563. </div>
  564. </div>
  565. </div>
  566. </div>
  567. <div class="col">
  568. <div class="feature-card">
  569. <div class="feature-media">
  570. <div class="feature-label">
  571. <label class="label-text feat">feature</label>
  572. </div>
  573. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  574. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  575. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  576. </div>
  577. <div class="feature-content">
  578. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  579. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  580. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  581. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  582. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  583. <div class="product-action">
  584. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  585. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  586. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  587. </div>
  588. </div>
  589. </div>
  590. </div>
  591. <div class="col">
  592. <div class="feature-card">
  593. <div class="feature-media">
  594. <div class="feature-label">
  595. <label class="label-text feat">feature</label>
  596. </div>
  597. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  598. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic3.jpg" alt="product"> </a>
  599. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  600. </div>
  601. <div class="feature-content">
  602. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  603. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  604. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  605. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  606. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  607. <div class="product-action">
  608. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  609. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  610. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  611. </div>
  612. </div>
  613. </div>
  614. </div>
  615. <div class="col">
  616. <div class="feature-card">
  617. <div class="feature-media">
  618. <div class="feature-label">
  619. <label class="label-text feat">feature</label>
  620. </div>
  621. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  622. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic4.jpg" alt="product"> </a>
  623. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  624. </div>
  625. <div class="feature-content">
  626. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  627. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  628. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  629. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  630. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  631. <div class="product-action">
  632. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  633. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  634. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  635. </div>
  636. </div>
  637. </div>
  638. </div>
  639. <div class="col">
  640. <div class="feature-card">
  641. <div class="feature-media">
  642. <div class="feature-label">
  643. <label class="label-text feat">feature</label>
  644. </div>
  645. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  646. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic5.jpg" alt="product"> </a>
  647. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  648. </div>
  649. <div class="feature-content">
  650. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  651. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  652. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  653. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  654. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  655. <div class="product-action">
  656. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  657. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  658. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  659. </div>
  660. </div>
  661. </div>
  662. </div>
  663. <div class="col">
  664. <div class="feature-card">
  665. <div class="feature-media">
  666. <div class="feature-label">
  667. <label class="label-text feat">feature</label>
  668. </div>
  669. <button class="feature-wish wish"> <i class="fas fa-heart"></i> </button>
  670. <a class="feature-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  671. <div class="feature-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  672. </div>
  673. <div class="feature-content">
  674. <h6 class="feature-name"> <a href="product-video.html">fresh organic green chilis</a> </h6>
  675. <div class="feature-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3 Reviews)</a> </div>
  676. <h6 class="feature-price"> <span>$28<small>/piece</small></span> </h6>
  677. <p class="feature-desc">Lorem ipsum dolor sit consectetur adipisicing xpedita dicta amet olor ut eveniet commodi...</p>
  678. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  679. <div class="product-action">
  680. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  681. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  682. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  683. </div>
  684. </div>
  685. </div>
  686. </div>
  687. </div>
  688. <div class="row">
  689. <div class="col-lg-12">
  690. <div class="section-btn-25"> <a href="shop-4column.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all feature</span> </a> </div>
  691. </div>
  692. </div>
  693. </div>
  694. </section>
  695. <!--=====================================
  696. FEATURE PART END
  697. =======================================-->
  698. <!--=====================================
  699. PROMO PART START
  700. =======================================-->
  701. <section class="section promo-part">
  702. <div class="container">
  703. <div class="row">
  704. <div class="col-lg-12">
  705. <div class="promo-content" style="background: url(/themes/pro/modunawa/resources/images/promo/home/09.jpg) no-repeat center;">
  706. <h3>only <span>$45</span> per kilogram</h3>
  707. <h2>fresh Blueberries</h2>
  708. <a href="shop-4column.html" class="btn btn-inline"> <i class="fas fa-shopping-basket"></i> <span>shop now</span> </a> </div>
  709. </div>
  710. </div>
  711. </div>
  712. </section>
  713. <!--=====================================
  714. PROMO PART END
  715. =======================================-->
  716. <!--=====================================
  717. NEW ITEM PART START
  718. =======================================-->
  719. <section class="section newitem-part">
  720. <div class="container">
  721. <div class="row">
  722. <div class="col">
  723. <div class="section-heading">
  724. <h2>collected new items</h2>
  725. </div>
  726. </div>
  727. </div>
  728. <div class="row">
  729. <div class="col">
  730. <ul class="new-slider slider-arrow">
  731. <li>
  732. <div class="product-card">
  733. <div class="product-media">
  734. <div class="product-label">
  735. <label class="label-text new">new</label>
  736. </div>
  737. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  738. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  739. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  740. </div>
  741. <div class="product-content">
  742. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  743. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  744. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  745. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  746. <div class="product-action">
  747. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  748. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  749. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  750. </div>
  751. </div>
  752. </div>
  753. </li>
  754. <li>
  755. <div class="product-card">
  756. <div class="product-media">
  757. <div class="product-label">
  758. <label class="label-text new">new</label>
  759. </div>
  760. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  761. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  762. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  763. </div>
  764. <div class="product-content">
  765. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  766. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  767. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  768. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  769. <div class="product-action">
  770. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  771. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  772. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  773. </div>
  774. </div>
  775. </div>
  776. </li>
  777. <li>
  778. <div class="product-card">
  779. <div class="product-media">
  780. <div class="product-label">
  781. <label class="label-text new">new</label>
  782. </div>
  783. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  784. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  785. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  786. </div>
  787. <div class="product-content">
  788. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  789. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  790. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  791. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  792. <div class="product-action">
  793. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  794. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  795. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  796. </div>
  797. </div>
  798. </div>
  799. </li>
  800. <li>
  801. <div class="product-card">
  802. <div class="product-media">
  803. <div class="product-label">
  804. <label class="label-text new">new</label>
  805. </div>
  806. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  807. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  808. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  809. </div>
  810. <div class="product-content">
  811. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  812. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  813. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  814. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  815. <div class="product-action">
  816. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  817. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  818. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  819. </div>
  820. </div>
  821. </div>
  822. </li>
  823. <li>
  824. <div class="product-card">
  825. <div class="product-media">
  826. <div class="product-label">
  827. <label class="label-text new">new</label>
  828. </div>
  829. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  830. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  831. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  832. </div>
  833. <div class="product-content">
  834. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  835. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  836. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  837. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  838. <div class="product-action">
  839. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  840. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  841. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  842. </div>
  843. </div>
  844. </div>
  845. </li>
  846. <li>
  847. <div class="product-card">
  848. <div class="product-media">
  849. <div class="product-label">
  850. <label class="label-text new">new</label>
  851. </div>
  852. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  853. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  854. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  855. </div>
  856. <div class="product-content">
  857. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  858. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  859. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  860. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  861. <div class="product-action">
  862. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  863. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  864. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  865. </div>
  866. </div>
  867. </div>
  868. </li>
  869. </ul>
  870. </div>
  871. </div>
  872. <div class="row">
  873. <div class="col">
  874. <div class="section-btn-25"> <a href="shop-4column.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all new item</span> </a> </div>
  875. </div>
  876. </div>
  877. </div>
  878. </section>
  879. <!--=====================================
  880. NEW ITEM PART END
  881. =======================================-->
  882. <!--=====================================
  883. NICHE PART START
  884. =======================================-->
  885. <section class="section niche-part">
  886. <div class="container">
  887. <div class="row">
  888. <div class="col-lg-12">
  889. <div class="section-heading">
  890. <h2>Browse by Top Niche</h2>
  891. </div>
  892. </div>
  893. </div>
  894. <div class="row">
  895. <div class="col-lg-12">
  896. <ul class="nav nav-tabs">
  897. <li> <a href="#top-sales" class="tab-link active" data-bs-toggle="tab"> <i class="icofont-price"></i> <span>top sales</span> </a> </li>
  898. <li> <a href="#top-rate" class="tab-link" data-bs-toggle="tab"> <i class="icofont-star"></i> <span>top rating</span> </a> </li>
  899. <li> <a href="#top-disc" class="tab-link" data-bs-toggle="tab"> <i class="icofont-sale-discount"></i> <span>top discount</span> </a> </li>
  900. </ul>
  901. </div>
  902. </div>
  903. <div class="tab-pane fade show active" id="top-sales">
  904. <div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5">
  905. <div class="col">
  906. <div class="product-card">
  907. <div class="product-media">
  908. <div class="product-label">
  909. <label class="label-text sale">314</label>
  910. </div>
  911. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  912. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  913. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  914. </div>
  915. <div class="product-content">
  916. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  917. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  918. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  919. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  920. <div class="product-action">
  921. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  922. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  923. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  924. </div>
  925. </div>
  926. </div>
  927. </div>
  928. <div class="col">
  929. <div class="product-card">
  930. <div class="product-media">
  931. <div class="product-label">
  932. <label class="label-text sale">314</label>
  933. </div>
  934. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  935. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  936. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  937. </div>
  938. <div class="product-content">
  939. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  940. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  941. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  942. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  943. <div class="product-action">
  944. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  945. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  946. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  947. </div>
  948. </div>
  949. </div>
  950. </div>
  951. <div class="col">
  952. <div class="product-card">
  953. <div class="product-media">
  954. <div class="product-label">
  955. <label class="label-text sale">314</label>
  956. </div>
  957. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  958. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic3.jpg" alt="product"> </a>
  959. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  960. </div>
  961. <div class="product-content">
  962. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  963. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  964. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  965. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  966. <div class="product-action">
  967. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  968. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  969. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  970. </div>
  971. </div>
  972. </div>
  973. </div>
  974. <div class="col">
  975. <div class="product-card">
  976. <div class="product-media">
  977. <div class="product-label">
  978. <label class="label-text sale">314</label>
  979. </div>
  980. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  981. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic4.jpg" alt="product"> </a>
  982. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  983. </div>
  984. <div class="product-content">
  985. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  986. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  987. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  988. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  989. <div class="product-action">
  990. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  991. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  992. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  993. </div>
  994. </div>
  995. </div>
  996. </div>
  997. <div class="col">
  998. <div class="product-card">
  999. <div class="product-media">
  1000. <div class="product-label">
  1001. <label class="label-text sale">314</label>
  1002. </div>
  1003. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1004. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic5.jpg" alt="product"> </a>
  1005. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1006. </div>
  1007. <div class="product-content">
  1008. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1009. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1010. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1011. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1012. <div class="product-action">
  1013. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1014. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1015. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1016. </div>
  1017. </div>
  1018. </div>
  1019. </div>
  1020. <div class="col">
  1021. <div class="product-card">
  1022. <div class="product-media">
  1023. <div class="product-label">
  1024. <label class="label-text sale">314</label>
  1025. </div>
  1026. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1027. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  1028. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1029. </div>
  1030. <div class="product-content">
  1031. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1032. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1033. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1034. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1035. <div class="product-action">
  1036. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1037. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1038. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1039. </div>
  1040. </div>
  1041. </div>
  1042. </div>
  1043. <div class="col">
  1044. <div class="product-card product-disable">
  1045. <div class="product-media">
  1046. <div class="product-label">
  1047. <label class="label-text sale">314</label>
  1048. </div>
  1049. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1050. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  1051. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1052. </div>
  1053. <div class="product-content">
  1054. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1055. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1056. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1057. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1058. <div class="product-action">
  1059. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1060. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1061. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1062. </div>
  1063. </div>
  1064. </div>
  1065. </div>
  1066. <div class="col">
  1067. <div class="product-card">
  1068. <div class="product-media">
  1069. <div class="product-label">
  1070. <label class="label-text sale">314</label>
  1071. </div>
  1072. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1073. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  1074. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1075. </div>
  1076. <div class="product-content">
  1077. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1078. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1079. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1080. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1081. <div class="product-action">
  1082. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1083. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1084. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1085. </div>
  1086. </div>
  1087. </div>
  1088. </div>
  1089. <div class="col">
  1090. <div class="product-card">
  1091. <div class="product-media">
  1092. <div class="product-label">
  1093. <label class="label-text sale">314</label>
  1094. </div>
  1095. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1096. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  1097. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1098. </div>
  1099. <div class="product-content">
  1100. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1101. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1102. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1103. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1104. <div class="product-action">
  1105. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1106. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1107. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1108. </div>
  1109. </div>
  1110. </div>
  1111. </div>
  1112. <div class="col">
  1113. <div class="product-card">
  1114. <div class="product-media">
  1115. <div class="product-label">
  1116. <label class="label-text sale">314</label>
  1117. </div>
  1118. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1119. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  1120. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1121. </div>
  1122. <div class="product-content">
  1123. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1124. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1125. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1126. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1127. <div class="product-action">
  1128. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1129. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1130. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1131. </div>
  1132. </div>
  1133. </div>
  1134. </div>
  1135. </div>
  1136. </div>
  1137. <div class="tab-pane fade" id="top-rate">
  1138. <div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5">
  1139. <div class="col">
  1140. <div class="product-card">
  1141. <div class="product-media">
  1142. <div class="product-label">
  1143. <label class="label-text rate">4.8</label>
  1144. </div>
  1145. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1146. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic3.jpg" alt="product"> </a>
  1147. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1148. </div>
  1149. <div class="product-content">
  1150. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1151. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1152. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1153. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1154. <div class="product-action">
  1155. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1156. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1157. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1158. </div>
  1159. </div>
  1160. </div>
  1161. </div>
  1162. <div class="col">
  1163. <div class="product-card">
  1164. <div class="product-media">
  1165. <div class="product-label">
  1166. <label class="label-text rate">4.8</label>
  1167. </div>
  1168. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1169. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic4.jpg" alt="product"> </a>
  1170. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1171. </div>
  1172. <div class="product-content">
  1173. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1174. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1175. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1176. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1177. <div class="product-action">
  1178. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1179. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1180. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1181. </div>
  1182. </div>
  1183. </div>
  1184. </div>
  1185. <div class="col">
  1186. <div class="product-card">
  1187. <div class="product-media">
  1188. <div class="product-label">
  1189. <label class="label-text rate">4.8</label>
  1190. </div>
  1191. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1192. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic5.jpg" alt="product"> </a>
  1193. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1194. </div>
  1195. <div class="product-content">
  1196. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1197. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1198. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1199. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1200. <div class="product-action">
  1201. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1202. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1203. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1204. </div>
  1205. </div>
  1206. </div>
  1207. </div>
  1208. <div class="col">
  1209. <div class="product-card">
  1210. <div class="product-media">
  1211. <div class="product-label">
  1212. <label class="label-text rate">4.8</label>
  1213. </div>
  1214. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1215. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  1216. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1217. </div>
  1218. <div class="product-content">
  1219. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1220. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1221. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1222. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1223. <div class="product-action">
  1224. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1225. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1226. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1227. </div>
  1228. </div>
  1229. </div>
  1230. </div>
  1231. <div class="col">
  1232. <div class="product-card">
  1233. <div class="product-media">
  1234. <div class="product-label">
  1235. <label class="label-text rate">4.8</label>
  1236. </div>
  1237. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1238. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  1239. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1240. </div>
  1241. <div class="product-content">
  1242. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1243. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1244. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1245. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1246. <div class="product-action">
  1247. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1248. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1249. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1250. </div>
  1251. </div>
  1252. </div>
  1253. </div>
  1254. <div class="col">
  1255. <div class="product-card">
  1256. <div class="product-media">
  1257. <div class="product-label">
  1258. <label class="label-text rate">4.8</label>
  1259. </div>
  1260. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1261. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  1262. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1263. </div>
  1264. <div class="product-content">
  1265. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1266. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1267. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1268. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1269. <div class="product-action">
  1270. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1271. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1272. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1273. </div>
  1274. </div>
  1275. </div>
  1276. </div>
  1277. <div class="col">
  1278. <div class="product-card product-disable">
  1279. <div class="product-media">
  1280. <div class="product-label">
  1281. <label class="label-text rate">4.8</label>
  1282. </div>
  1283. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1284. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  1285. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1286. </div>
  1287. <div class="product-content">
  1288. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1289. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1290. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1291. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1292. <div class="product-action">
  1293. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1294. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1295. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1296. </div>
  1297. </div>
  1298. </div>
  1299. </div>
  1300. <div class="col">
  1301. <div class="product-card">
  1302. <div class="product-media">
  1303. <div class="product-label">
  1304. <label class="label-text rate">4.8</label>
  1305. </div>
  1306. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1307. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  1308. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1309. </div>
  1310. <div class="product-content">
  1311. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1312. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1313. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1314. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1315. <div class="product-action">
  1316. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1317. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1318. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1319. </div>
  1320. </div>
  1321. </div>
  1322. </div>
  1323. <div class="col">
  1324. <div class="product-card">
  1325. <div class="product-media">
  1326. <div class="product-label">
  1327. <label class="label-text rate">4.8</label>
  1328. </div>
  1329. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1330. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  1331. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1332. </div>
  1333. <div class="product-content">
  1334. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1335. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1336. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1337. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1338. <div class="product-action">
  1339. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1340. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1341. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1342. </div>
  1343. </div>
  1344. </div>
  1345. </div>
  1346. <div class="col">
  1347. <div class="product-card">
  1348. <div class="product-media">
  1349. <div class="product-label">
  1350. <label class="label-text rate">4.8</label>
  1351. </div>
  1352. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1353. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  1354. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1355. </div>
  1356. <div class="product-content">
  1357. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1358. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1359. <h6 class="product-price"> <span>$28<small>/piece</small></span> </h6>
  1360. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1361. <div class="product-action">
  1362. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1363. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1364. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1365. </div>
  1366. </div>
  1367. </div>
  1368. </div>
  1369. </div>
  1370. </div>
  1371. <div class="tab-pane fade" id="top-disc">
  1372. <div class="row row-cols-2 row-cols-md-3 row-cols-lg-4 row-cols-xl-5">
  1373. <div class="col">
  1374. <div class="product-card">
  1375. <div class="product-media">
  1376. <div class="product-label">
  1377. <label class="label-text off">-10%</label>
  1378. </div>
  1379. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1380. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  1381. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1382. </div>
  1383. <div class="product-content">
  1384. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1385. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1386. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1387. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1388. <div class="product-action">
  1389. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1390. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1391. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1392. </div>
  1393. </div>
  1394. </div>
  1395. </div>
  1396. <div class="col">
  1397. <div class="product-card">
  1398. <div class="product-media">
  1399. <div class="product-label">
  1400. <label class="label-text off">-10%</label>
  1401. </div>
  1402. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1403. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  1404. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1405. </div>
  1406. <div class="product-content">
  1407. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1408. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1409. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1410. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1411. <div class="product-action">
  1412. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1413. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1414. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1415. </div>
  1416. </div>
  1417. </div>
  1418. </div>
  1419. <div class="col">
  1420. <div class="product-card">
  1421. <div class="product-media">
  1422. <div class="product-label">
  1423. <label class="label-text off">-10%</label>
  1424. </div>
  1425. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1426. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic8.jpg" alt="product"> </a>
  1427. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1428. </div>
  1429. <div class="product-content">
  1430. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1431. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1432. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1433. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1434. <div class="product-action">
  1435. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1436. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1437. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1438. </div>
  1439. </div>
  1440. </div>
  1441. </div>
  1442. <div class="col">
  1443. <div class="product-card">
  1444. <div class="product-media">
  1445. <div class="product-label">
  1446. <label class="label-text off">-10%</label>
  1447. </div>
  1448. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1449. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic1.jpg" alt="product"> </a>
  1450. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1451. </div>
  1452. <div class="product-content">
  1453. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1454. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1455. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1456. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1457. <div class="product-action">
  1458. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1459. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1460. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1461. </div>
  1462. </div>
  1463. </div>
  1464. </div>
  1465. <div class="col">
  1466. <div class="product-card">
  1467. <div class="product-media">
  1468. <div class="product-label">
  1469. <label class="label-text off">-10%</label>
  1470. </div>
  1471. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1472. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic2.jpg" alt="product"> </a>
  1473. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1474. </div>
  1475. <div class="product-content">
  1476. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1477. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1478. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1479. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1480. <div class="product-action">
  1481. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1482. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1483. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1484. </div>
  1485. </div>
  1486. </div>
  1487. </div>
  1488. <div class="col">
  1489. <div class="product-card">
  1490. <div class="product-media">
  1491. <div class="product-label">
  1492. <label class="label-text off">-10%</label>
  1493. </div>
  1494. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1495. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic3.jpg" alt="product"> </a>
  1496. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1497. </div>
  1498. <div class="product-content">
  1499. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1500. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1501. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1502. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1503. <div class="product-action">
  1504. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1505. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1506. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1507. </div>
  1508. </div>
  1509. </div>
  1510. </div>
  1511. <div class="col">
  1512. <div class="product-card">
  1513. <div class="product-media">
  1514. <div class="product-label">
  1515. <label class="label-text off">-10%</label>
  1516. </div>
  1517. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1518. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic4.jpg" alt="product"> </a>
  1519. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1520. </div>
  1521. <div class="product-content">
  1522. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1523. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1524. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1525. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1526. <div class="product-action">
  1527. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1528. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1529. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1530. </div>
  1531. </div>
  1532. </div>
  1533. </div>
  1534. <div class="col">
  1535. <div class="product-card">
  1536. <div class="product-media">
  1537. <div class="product-label">
  1538. <label class="label-text off">-10%</label>
  1539. </div>
  1540. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1541. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic5.jpg" alt="product"> </a>
  1542. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1543. </div>
  1544. <div class="product-content">
  1545. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1546. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1547. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1548. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1549. <div class="product-action">
  1550. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1551. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1552. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1553. </div>
  1554. </div>
  1555. </div>
  1556. </div>
  1557. <div class="col">
  1558. <div class="product-card">
  1559. <div class="product-media">
  1560. <div class="product-label">
  1561. <label class="label-text off">-10%</label>
  1562. </div>
  1563. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1564. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic6.jpg" alt="product"> </a>
  1565. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1566. </div>
  1567. <div class="product-content">
  1568. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1569. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1570. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1571. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1572. <div class="product-action">
  1573. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1574. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1575. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1576. </div>
  1577. </div>
  1578. </div>
  1579. </div>
  1580. <div class="col">
  1581. <div class="product-card">
  1582. <div class="product-media">
  1583. <div class="product-label">
  1584. <label class="label-text off">-10%</label>
  1585. </div>
  1586. <button class="product-wish wish"> <i class="fas fa-heart"></i> </button>
  1587. <a class="product-image" href="product-video.html"> <img src="/themes/pro/modunawa/resources/images/product/pic7.jpg" alt="product"> </a>
  1588. <div class="product-widget"> <a title="Product Compare" href="compare.html" class="fas fa-random"></a> <a title="Product Video" href="https://youtu.be/9xzcVxSBbG8" class="venobox fas fa-play" data-autoplay="true" data-vbtype="video"></a> <a title="Product View" href="#" class="fas fa-eye" data-bs-toggle="modal" data-bs-target="#product-view"></a> </div>
  1589. </div>
  1590. <div class="product-content">
  1591. <div class="product-rating"> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="active icofont-star"></i> <i class="icofont-star"></i> <a href="product-video.html">(3)</a> </div>
  1592. <h6 class="product-name"> <a href="product-video.html">fresh green chilis</a> </h6>
  1593. <h6 class="product-price"> <del>$34</del> <span>$28<small>/piece</small></span> </h6>
  1594. <button class="product-add" title="Add to Cart"> <i class="fas fa-shopping-basket"></i> <span>add</span> </button>
  1595. <div class="product-action">
  1596. <button class="action-minus" title="Quantity Minus"><i class="icofont-minus"></i></button>
  1597. <input class="action-input" title="Quantity Number" type="text" name="quantity" value="1">
  1598. <button class="action-plus" title="Quantity Plus"><i class="icofont-plus"></i></button>
  1599. </div>
  1600. </div>
  1601. </div>
  1602. </div>
  1603. </div>
  1604. </div>
  1605. <div class="row">
  1606. <div class="col-lg-12">
  1607. <div class="section-btn-25"> <a href="shop-4column.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all niche</span> </a> </div>
  1608. </div>
  1609. </div>
  1610. </div>
  1611. </section>
  1612. <!--=====================================
  1613. NICHE PART END
  1614. =======================================-->
  1615. <!--=====================================
  1616. CATEGORY PART START
  1617. =======================================-->
  1618. <section class="section category-part">
  1619. <div class="container">
  1620. <div class="row">
  1621. <div class="col-12">
  1622. <div class="section-heading">
  1623. <h2>shop by categories</h2>
  1624. </div>
  1625. </div>
  1626. </div>
  1627. <div class="row">
  1628. <div class="col-lg-12">
  1629. <div class="category-slider slider-arrow">
  1630. <div class="category-wrap">
  1631. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/dairy.jpg" alt="category">
  1632. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1633. </div>
  1634. <div class="category-meta">
  1635. <h4>dairy items</h4>
  1636. <p>(25 items)</p>
  1637. </div>
  1638. </div>
  1639. <div class="category-wrap">
  1640. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/vegetables.jpg" alt="category">
  1641. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1642. </div>
  1643. <div class="category-meta">
  1644. <h4>vegetable items</h4>
  1645. <p>(25 items)</p>
  1646. </div>
  1647. </div>
  1648. <div class="category-wrap">
  1649. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/drinks.jpg" alt="category">
  1650. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1651. </div>
  1652. <div class="category-meta">
  1653. <h4>coffe & drinks</h4>
  1654. <p>(25 items)</p>
  1655. </div>
  1656. </div>
  1657. <div class="category-wrap">
  1658. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/fish.jpg" alt="category">
  1659. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1660. </div>
  1661. <div class="category-meta">
  1662. <h4>fish items</h4>
  1663. <p>(25 items)</p>
  1664. </div>
  1665. </div>
  1666. <div class="category-wrap">
  1667. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/groceries.jpg" alt="category">
  1668. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1669. </div>
  1670. <div class="category-meta">
  1671. <h4>grocery items</h4>
  1672. <p>(25 items)</p>
  1673. </div>
  1674. </div>
  1675. <div class="category-wrap">
  1676. <div class="category-media"> <img src="/themes/pro/modunawa/resources/images/category/meat.jpg" alt="category">
  1677. <div class="category-overlay"> <a href="shop-4column.html"><i class="fas fa-link"></i></a> </div>
  1678. </div>
  1679. <div class="category-meta">
  1680. <h4>meat items</h4>
  1681. <p>(25 items)</p>
  1682. </div>
  1683. </div>
  1684. </div>
  1685. </div>
  1686. </div>
  1687. <div class="row">
  1688. <div class="col-lg-12">
  1689. <div class="section-btn-50"> <a href="all-category.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all category</span> </a> </div>
  1690. </div>
  1691. </div>
  1692. </div>
  1693. </section>
  1694. <!--=====================================
  1695. CATEGORY PART END
  1696. =======================================-->
  1697. <!--=====================================
  1698. BRAND PART START
  1699. =======================================-->
  1700. <section class="section brand-part">
  1701. <div class="container">
  1702. <div class="row">
  1703. <div class="col-12">
  1704. <div class="section-heading">
  1705. <h2>shop by brands</h2>
  1706. </div>
  1707. </div>
  1708. </div>
  1709. <div class="brand-slider slider-arrow">
  1710. <div class="brand-wrap">
  1711. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/01.jpg" alt="brand">
  1712. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1713. </div>
  1714. <div class="brand-meta">
  1715. <h4>natural greeny</h4>
  1716. <p>(45 items)</p>
  1717. </div>
  1718. </div>
  1719. <div class="brand-wrap">
  1720. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/02.jpg" alt="brand">
  1721. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1722. </div>
  1723. <div class="brand-meta">
  1724. <h4>vegan lover</h4>
  1725. <p>(45 items)</p>
  1726. </div>
  1727. </div>
  1728. <div class="brand-wrap">
  1729. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/03.jpg" alt="brand">
  1730. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1731. </div>
  1732. <div class="brand-meta">
  1733. <h4>organic foody</h4>
  1734. <p>(45 items)</p>
  1735. </div>
  1736. </div>
  1737. <div class="brand-wrap">
  1738. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/04.jpg" alt="brand">
  1739. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1740. </div>
  1741. <div class="brand-meta">
  1742. <h4>ecomart limited</h4>
  1743. <p>(45 items)</p>
  1744. </div>
  1745. </div>
  1746. <div class="brand-wrap">
  1747. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/05.jpg" alt="brand">
  1748. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1749. </div>
  1750. <div class="brand-meta">
  1751. <h4>fresh fortune</h4>
  1752. <p>(45 items)</p>
  1753. </div>
  1754. </div>
  1755. <div class="brand-wrap">
  1756. <div class="brand-media"> <img src="/themes/pro/modunawa/resources/images/brand/06.jpg" alt="brand">
  1757. <div class="brand-overlay"> <a href="brand-single.html"><i class="fas fa-link"></i></a> </div>
  1758. </div>
  1759. <div class="brand-meta">
  1760. <h4>econature</h4>
  1761. <p>(45 items)</p>
  1762. </div>
  1763. </div>
  1764. </div>
  1765. <div class="row">
  1766. <div class="col-lg-12">
  1767. <div class="section-btn-50"> <a href="brand-list.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all brands</span> </a> </div>
  1768. </div>
  1769. </div>
  1770. </div>
  1771. </section>
  1772. <!--=====================================
  1773. BRAND PART END
  1774. =======================================-->
  1775. <!--=====================================
  1776. TESTIMONIAL PART START
  1777. =======================================-->
  1778. <section class="section testimonial-part">
  1779. <div class="container">
  1780. <div class="row">
  1781. <div class="col-12">
  1782. <div class="section-heading">
  1783. <h2>client's feedback</h2>
  1784. </div>
  1785. </div>
  1786. </div>
  1787. <div class="row">
  1788. <div class="col-lg-12">
  1789. <div class="testimonial-slider slider-arrow">
  1790. <div class="testimonial-card"> <i class="fas fa-quote-left"></i>
  1791. <p>Lorem ipsum dolor consectetur adipisicing elit neque earum sapiente vitae obcaecati magnam doloribus magni provident ipsam</p>
  1792. <h5>mahmud hasan</h5>
  1793. <ul>
  1794. <li class="fas fa-star"></li>
  1795. <li class="fas fa-star"></li>
  1796. <li class="fas fa-star"></li>
  1797. <li class="fas fa-star"></li>
  1798. <li class="fas fa-star"></li>
  1799. </ul>
  1800. <img src="/themes/pro/modunawa/resources/images/avatar/01.jpg" alt="testimonial"> </div>
  1801. <div class="testimonial-card"> <i class="fas fa-quote-left"></i>
  1802. <p>Lorem ipsum dolor consectetur adipisicing elit neque earum sapiente vitae obcaecati magnam doloribus magni provident ipsam</p>
  1803. <h5>mahmud hasan</h5>
  1804. <ul>
  1805. <li class="fas fa-star"></li>
  1806. <li class="fas fa-star"></li>
  1807. <li class="fas fa-star"></li>
  1808. <li class="fas fa-star"></li>
  1809. <li class="fas fa-star"></li>
  1810. </ul>
  1811. <img src="/themes/pro/modunawa/resources/images/avatar/02.jpg" alt="testimonial"> </div>
  1812. <div class="testimonial-card"> <i class="fas fa-quote-left"></i>
  1813. <p>Lorem ipsum dolor consectetur adipisicing elit neque earum sapiente vitae obcaecati magnam doloribus magni provident ipsam</p>
  1814. <h5>mahmud hasan</h5>
  1815. <ul>
  1816. <li class="fas fa-star"></li>
  1817. <li class="fas fa-star"></li>
  1818. <li class="fas fa-star"></li>
  1819. <li class="fas fa-star"></li>
  1820. <li class="fas fa-star"></li>
  1821. </ul>
  1822. <img src="/themes/pro/modunawa/resources/images/avatar/03.jpg" alt="testimonial"> </div>
  1823. <div class="testimonial-card"> <i class="fas fa-quote-left"></i>
  1824. <p>Lorem ipsum dolor consectetur adipisicing elit neque earum sapiente vitae obcaecati magnam doloribus magni provident ipsam</p>
  1825. <h5>mahmud hasan</h5>
  1826. <ul>
  1827. <li class="fas fa-star"></li>
  1828. <li class="fas fa-star"></li>
  1829. <li class="fas fa-star"></li>
  1830. <li class="fas fa-star"></li>
  1831. <li class="fas fa-star"></li>
  1832. </ul>
  1833. <img src="/themes/pro/modunawa/resources/images/avatar/04.jpg" alt="testimonial"> </div>
  1834. </div>
  1835. </div>
  1836. </div>
  1837. </div>
  1838. </section>
  1839. <!--=====================================
  1840. TESTIMONIAL PART END
  1841. =======================================-->
  1842. <!--=====================================
  1843. BLOG PART START
  1844. =======================================-->
  1845. <section class="section blog-part">
  1846. <div class="container">
  1847. <div class="row">
  1848. <div class="col-12">
  1849. <div class="section-heading">
  1850. <h2>Read our articles</h2>
  1851. </div>
  1852. </div>
  1853. </div>
  1854. <div class="row">
  1855. <div class="col-lg-12">
  1856. <div class="blog-slider slider-arrow">
  1857. <div class="blog-card">
  1858. <div class="blog-media"> <a class="blog-img" href="#"> <img src="/themes/pro/modunawa/resources/images/blog/01.jpg" alt="blog"> </a> </div>
  1859. <div class="blog-content">
  1860. <ul class="blog-meta">
  1861. <li> <i class="fas fa-user"></i> <span>admin</span> </li>
  1862. <li> <i class="fas fa-calendar-alt"></i> <span>february 02, 2021</span> </li>
  1863. </ul>
  1864. <h4 class="blog-title"> <a href="blog-details.html">Voluptate blanditiis provident Lorem ipsum dolor sit amet</a> </h4>
  1865. <p class="blog-desc"> Lorem ipsum dolor sit, amet consectetur adipisicing elit. Alias autem recusandae deleniti nam dignissimos sequi ... </p>
  1866. <a class="blog-btn" href="#"> <span>read more</span> <i class="icofont-arrow-right"></i> </a> </div>
  1867. </div>
  1868. <div class="blog-card">
  1869. <div class="blog-media"> <a class="blog-img" href="#"> <img src="/themes/pro/modunawa/resources/images/blog/02.jpg" alt="blog"> </a> </div>
  1870. <div class="blog-content">
  1871. <ul class="blog-meta">
  1872. <li> <i class="fas fa-user"></i> <span>admin</span> </li>
  1873. <li> <i class="fas fa-calendar-alt"></i> <span>february 02, 2021</span> </li>
  1874. </ul>
  1875. <h4 class="blog-title"> <a href="blog-details.html">Voluptate blanditiis provident Lorem ipsum dolor sit amet</a> </h4>
  1876. <p class="blog-desc"> Lorem ipsum dolor sit, amet consectetur adipisicing elit. Alias autem recusandae deleniti nam dignissimos sequi ... </p>
  1877. <a class="blog-btn" href="#"> <span>read more</span> <i class="icofont-arrow-right"></i> </a> </div>
  1878. </div>
  1879. <div class="blog-card">
  1880. <div class="blog-media"> <a class="blog-img" href="#"> <img src="/themes/pro/modunawa/resources/images/blog/03.jpg" alt="blog"> </a> </div>
  1881. <div class="blog-content">
  1882. <ul class="blog-meta">
  1883. <li> <i class="fas fa-user"></i> <span>admin</span> </li>
  1884. <li> <i class="fas fa-calendar-alt"></i> <span>february 02, 2021</span> </li>
  1885. </ul>
  1886. <h4 class="blog-title"> <a href="blog-details.html">Voluptate blanditiis provident Lorem ipsum dolor sit amet</a> </h4>
  1887. <p class="blog-desc"> Lorem ipsum dolor sit, amet consectetur adipisicing elit. Alias autem recusandae deleniti nam dignissimos sequi ... </p>
  1888. <a class="blog-btn" href="#"> <span>read more</span> <i class="icofont-arrow-right"></i> </a> </div>
  1889. </div>
  1890. <div class="blog-card">
  1891. <div class="blog-media"> <a class="blog-img" href="#"> <img src="/themes/pro/modunawa/resources/images/blog/04.jpg" alt="blog"> </a> </div>
  1892. <div class="blog-content">
  1893. <ul class="blog-meta">
  1894. <li> <i class="fas fa-user"></i> <span>admin</span> </li>
  1895. <li> <i class="fas fa-calendar-alt"></i> <span>february 02, 2021</span> </li>
  1896. </ul>
  1897. <h4 class="blog-title"> <a href="blog-details.html">Voluptate blanditiis provident Lorem ipsum dolor sit amet</a> </h4>
  1898. <p class="blog-desc"> Lorem ipsum dolor sit, amet consectetur adipisicing elit. Alias autem recusandae deleniti nam dignissimos sequi ... </p>
  1899. <a class="blog-btn" href="#"> <span>read more</span> <i class="icofont-arrow-right"></i> </a> </div>
  1900. </div>
  1901. </div>
  1902. </div>
  1903. </div>
  1904. <div class="row">
  1905. <div class="col-lg-12">
  1906. <div class="section-btn-25"> <a href="blog-grid.html" class="btn btn-outline"> <i class="fas fa-eye"></i> <span>view all blog</span> </a> </div>
  1907. </div>
  1908. </div>
  1909. </div>
  1910. </section>
  1911. <!--=====================================
  1912. BLOG PART END
  1913. =======================================-->
  1914. <!--=====================================
  1915. NEWSLETTER PART START
  1916. =======================================-->
  1917. <section class="news-part" style="background: url(/themes/pro/modunawa/resources/images/newsletter.jpg) no-repeat center;">
  1918. <div class="container">
  1919. <div class="row align-items-center">
  1920. <div class="col-md-5 col-lg-6 col-xl-7">
  1921. <div class="news-text">
  1922. <h2>Get 20% Discount for Subscriber</h2>
  1923. <p>Lorem ipsum dolor consectetur adipisicing accusantium</p>
  1924. </div>
  1925. </div>
  1926. <div class="col-md-7 col-lg-6 col-xl-5">
  1927. <form class="news-form">
  1928. <input type="text" placeholder="Enter Your Email Address">
  1929. <button><span><i class="icofont-ui-email"></i>Subscribe</span></button>
  1930. </form>
  1931. </div>
  1932. </div>
  1933. </div>
  1934. </section>
  1935. <!--=====================================
  1936. NEWSLETTER PART END
  1937. =======================================-->
  1938. @endsection
  1939. @push('js')
  1940. <script>
  1941. </script>
  1942. @endpush