-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
1857 lines (1849 loc) · 292 KB
/
admin.php
File metadata and controls
1857 lines (1849 loc) · 292 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>ECL Cold Store_1</title>
<meta name="emoji" content="charset="UTF-8"">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="assets/img/android-chrome-512x512.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton&subset=latin-ext&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=DM+Sans&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Outfit&display=swap">
<link rel="stylesheet" href="assets/css/Satoshi%20Black.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Black%20Italic.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Bold.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Bold%20Italic.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Italic.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Light.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Light%20Italic.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Medium.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Medium%20Italic.css">
<link rel="stylesheet" href="assets/css/Satoshi%20Regular.css">
<link rel="stylesheet" href="assets/css/swiper-icons.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css">
<link rel="stylesheet" href="assets/css/Footer-Dark-Multi-Column-icons.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<link rel="stylesheet" href="assets/css/products_and_tabs.css">
<link rel="stylesheet" href="assets/css/search-bar-ui.css">
<link rel="stylesheet" href="https://unpkg.com/dropzone@5/dist/min/dropzone.min.css">
</head>
<body style="font-family: 'Satoshi Regular';">
<section>
<div class="grid" style="display: grid;grid-template-columns: 0.5fr 1.5fr;grid-template-rows: 1fr;gap: 0px 0px;height: 100vh;padding: 8px;">
<div class="panel" style="padding: 8px;width: 240px;"><img src="assets/img/ECL_logo.png" style="width: 100%;margin-bottom: 18px;">
<ul class="nav nav-tabs" style="border-color: transparent;gap: 10px;display: flex;flex-direction: column;width: 100%;color: #6C737F;">
<li class="nav-item"><a class="nav-link active navv" href="#tab-1" role="tab" data-bs-toggle="tab" style="border-style: none;font-size: 16px;"><img src="assets/img/Home.svg" width="17" style="width: 20px;">Overview</a></li>
<li class="nav-item"><a class="nav-link navv" href="#tab-2" style="width: 100%;font-size: 16px;" role="tab" data-bs-toggle="tab"><img src="assets/img/mdi_meat-outline.svg" width="17" style="width: 20px;">Products</a></li>
<li class="nav-item"><a class="nav-link navv" href="#tab-3" style="width: 100%;font-size: 16px;" role="tab" data-bs-toggle="tab"><img src="assets/img/file-02.svg" width="17" style="width: 20px;">Blog</a></li>
<li class="nav-item"><a class="nav-link navv" href="#tab-4" style="width: 100%;font-size: 16px;" role="tab" data-bs-toggle="tab"><img src="assets/img/truck-02.svg" width="17" style="width: 20px;">Orders</a></li>
</ul>
</div>
<div class="contentt" style="border-radius: 18px;border: 1.5px solid #E5E7EB;width: 82vw;">
<div class="tab-content" style="height: 100%;width: 100%;">
<div id="tab-1" class="tab-pane" role="tabpanel" style="border-radius: 18px;height: 100%;width: 100%;background: var(--bs-blue);"></div>
<div id="tab-2" class="tab-pane" role="tabpanel" style="border-radius: 18px;height: 98vh;overflow: scroll;padding: 16px;">
<h2 style="margin-top: 25px;margin-bottom: 24px;font-weight: bold;">Products</h2>
<div style="display: flex;justify-content: space-between;margin-bottom: 20px;">
<div style="display: flex;"><span class="search-bar" style="width: 590px;border: solid 1px;border-radius: 7px;"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" style="font-size: 25px;color: #000;">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.319 14.4326C20.7628 11.2941 20.542 6.75347 17.6569 3.86829C14.5327 0.744098 9.46734 0.744098 6.34315 3.86829C3.21895 6.99249 3.21895 12.0578 6.34315 15.182C9.22833 18.0672 13.769 18.2879 16.9075 15.8442C16.921 15.8595 16.9351 15.8745 16.9497 15.8891L21.1924 20.1317C21.5829 20.5223 22.2161 20.5223 22.6066 20.1317C22.9971 19.7412 22.9971 19.1081 22.6066 18.7175L18.364 14.4749C18.3493 14.4603 18.3343 14.4462 18.319 14.4326ZM16.2426 5.28251C18.5858 7.62565 18.5858 11.4246 16.2426 13.7678C13.8995 16.1109 10.1005 16.1109 7.75736 13.7678C5.41421 11.4246 5.41421 7.62565 7.75736 5.28251C10.1005 2.93936 13.8995 2.93936 16.2426 5.28251Z" fill="currentColor"></path>
</svg><input type="search" class="search-box" placeholder="Search for meat, sausage, fish etc"></span>
<div style="margin-left: 38px;display: flex;align-items: center;"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-filter" style="font-size: 32px;">
<path d="M6 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"></path>
</svg><select class="form-control" style="border: none;background: #fff;">
<option value="12" selected="">No fitters</option>
<option value="13">This is item 2</option>
<option value="14">This is item 3</option>
</select></div>
</div><button class="btn btn-primary" id="add_product" type="button" style="display: flex;align-items: center;height: 50px;width: 144px;padding: 8px;"><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24" fill="none" style="font-size: 25px;">
<path d="M12 4C11.4477 4 11 4.44772 11 5V11H5C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13H11V19C11 19.5523 11.4477 20 12 20C12.5523 20 13 19.5523 13 19V13H19C19.5523 13 20 12.5523 20 12C20 11.4477 19.5523 11 19 11H13V5C13 4.44772 12.5523 4 12 4Z" fill="currentColor"></path>
</svg><strong> Add Product</strong></button>
</div>
<div class="products-container1" style="width: 100%;">
<div class="tabs"><input type="radio" id="tab_1" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_2" class="tabs__radio" name="tabs-products" checked=""><input type="radio" id="tab_3" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_4" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_5" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_6" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_7" class="tabs__radio" name="tabs-products"><input type="radio" id="tab_8" class="tabs__radio" name="tabs-products">
<nav>
<div class="products-tabs" style="padding-left: 1px;">
<div class="swiper mySlider-nav_adm" style="height: 100%;">
<div class="swiper-wrapper" style="height: 100%;">
<div class="swiper-slide">
<div class="tab_item tab_item1">
<div class="tab0_img_p">
<div class="tab0_img"></div>
</div><label class="form-label tab_item_style tab_1" for="tab_1"><br><span style="margin-top: 85px;margin-left: 19px;">All</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item2">
<div class="tab1_img_p">
<div class="tab1_img"></div>
</div><label class="form-label tab_item_style tab_1" for="tab_2"><br><span style="margin-top: 85px;margin-left: 16px;">Beef</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item3">
<div class="tab2_img_p">
<div class="tab2_img"></div>
</div><label class="form-label tab_item_style tab_3" for="tab_3" style="width: 100px;"><span class="span-text">Goat Meat</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item4">
<div class="tab3_img_p">
<div class="tab3_img"></div>
</div><label class="form-label tab_item_style tab_4" for="tab_4" style="display: flex;align-items: center;"><span style="margin-top: 85px;margin-left: 4px;">Chicken</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item5">
<div class="tab4_img_p">
<div class="tab4_img"></div>
</div><label class="form-label tab_item_style tab_5" for="tab_5" style="display: flex;align-items: center;"><span style="margin-top: 85px;margin-left: 16px;">Pork</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item6">
<div class="tab5_img_p">
<div class="tab5_img"></div>
</div><label class="form-label tab_item_style tab_6" for="tab_6" style="display: flex;align-items: center;"><span style="margin-top: 85px;margin-left: 16px;">Fish</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item7">
<div class="tab6_img_p">
<div class="tab6_img"></div>
</div><label class="form-label tab_item_style tab_7" for="tab_7" style="display: flex;align-items: center;"><span style="margin-top: 85px;margin-left: 8px;">Turkey</span></label>
</div>
</div>
<div class="swiper-slide">
<div class="tab_item tab_item8">
<div class="tab7_img_p" style="border-color: #D2D2D2;">
<div class="tab7_img"></div>
</div><label class="form-label tab_item_style tab_8" for="tab_8" style="display: flex;align-items: center;"><span style="margin-top: 85px;margin-left: 4px;">Sausage</span></label>
</div>
</div>
</div>
</div>
</div>
</nav>
<section class="products-placeholder" style="margin-left: 0px;">
<div class="content content-1">
<div class="swiper mySlider-1">
<div class="grid-placeholder">
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2080.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2079.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Boneless meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2081.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Cow Thigs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2082.png" style="object-position: center;height: 255px;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef feet</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A7985-removebg.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Pork Feet</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Turkey Wings</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(3).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><button class="btn btn-primary" type="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></button></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(4).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Pork Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(1).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Full Guinea Fowl</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/sausage.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Sadia Grill Sausage</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/file_2023-09-17_01.09.16.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Live Guinea Fowl</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content content-2">
<div class="swiper mySlider-2">
<div class="grid-placeholder">
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2079.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Boneless Meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2080.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2081.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Cow Thighs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2082.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Cow Feet</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A7981-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Cow Feet (Smoked)</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2080.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2079.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Boneless Meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305'">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2080.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2081.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Cow Thighs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2080.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Beef Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" id="edit_product" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Edit Item</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content content-3">
<div class="swiper mySlider-3">
<div class="grid-placeholder">
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(12).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Live Goat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(2).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(9).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Tripe </h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(3).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(14).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Rib Chops</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(3).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(10).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Tripe (Exotic)</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(13).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Loin Chops</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(9).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Tripe (Local)</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(2).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Goat Meat</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content content-4">
<div class="swiper mySlider-4">
<div class="grid-placeholder">
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image%2071.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Full Chicken</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Wings</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/eiliv-aceron-DNQLBdGdld0-unsplash%202.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Breast</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><button class="btn btn-primary" type="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></button></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(6).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Thighs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(8).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Back</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/raw-chicken-meat-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Full Chicken</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A8059-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Wings</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A7976-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Thighs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A7973.jpg" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Chicken Thighs</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 505px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/raw-chicken-meat-removebg-preview.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Full Chicken</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="content content-5">
<div class="swiper mySlider-5">
<div class="grid-placeholder">
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/685A7985-removebg.png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Pork Feet</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>
</div>
</div>
</div>
<div class="swiper-slide" style="background-color: transparent;">
<div class="card products-item" style="width: 300px;margin-right: 73px;background: #EBEBEB;height: 525px;border-radius: 6px;border: 1px solid #EBEBEB;"><img class="card-img-top w-100 d-block item-image" src="assets/img/image-removebg-preview%20(11).png" style="object-fit: contain;object-position: center;">
<div class="card-body" style="height: 298px;padding: 16px 0px;background: #ffffff;border-radius: 6px;border-top-left-radius: 0px;border-top-right-radius: 0px;">
<div style="display: flex;align-items: center;justify-content: space-between;margin-bottom: 20px;margin-top: 8px;">
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">Pork Cut</h3>
<h3 style="margin: 0px 16px;font-family: 'Anton';font-size: 21.8px;">₵ 30.00</h3>
</div>
<div style="margin: 0px 16px;">
<p><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -32 576 576" width="1em" height="1em" fill="currentColor" style="color: #F9A61C;">
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path>
</svg> 4.5 </p>
</div>
<p class="card-text" style="margin: 0px 16px;margin-bottom: 30px;">We Offer Free Delivery of Products to Your Doorstep.</p>
<div style="display: flex;align-items: center;justify-content: space-between;padding: 0px 16px;margin-bottom: 10px;"><a class="btn btn-primary" role="button" style="background: #0085FF;border-style: none;padding: 9px 24px;display: flex;" href="tel:233553696305">Order Now <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor" viewBox="0 0 16 16" class="bi bi-bag" style="font-weight: bold;font-size: 20px;">
<path d="M8 1a2.5 2.5 0 0 1 2.5 2.5V4h-5v-.5A2.5 2.5 0 0 1 8 1zm3.5 3v-.5a3.5 3.5 0 1 0-7 0V4H1v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4h-3.5zM2 5h12v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5z"></path>
</svg></a></div>