-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.aspx
865 lines (827 loc) · 89.7 KB
/
index.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="epicurean.index" %>
<!doctype html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Epicurean - Food & Restaurant</title>
<link rel="icon" href="assets/images/fav.png" type="image/gif" sizes="20x20">
<!-- Box Icon CSS -->
<link rel="stylesheet" href="assets/css/boxicons.min.css">
<!-- Bootstrap Icon CSS -->
<link rel="stylesheet" href="assets/css/bootstrap-icons.css">
<!-- Swiper Carousel CSS -->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!-- Wow CSS -->
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!-- Odometer CSS -->
<link rel="stylesheet" href="assets/css/odometer.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- Meanmenu CSS -->
<link rel="stylesheet" href="assets/css/meanmenu.min.css">
<!-- Meanmenu CSS -->
<link rel="stylesheet" href="assets/css/YouTubePopUp.css">
<!-- Select2 CSS -->
<link rel="stylesheet" href="assets/css/select2.css">
<!-- Datepicker CSS -->
<link rel="stylesheet" href="assets/css/datepicker.css">
<!-- Jquery UI CSS -->
<link rel="stylesheet" href="assets/css/jquery-ui.css">
<!-- Main CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Custom Cursor -->
<div class="cursor d-none d-lg-block"></div>
<!-- Custom Cursor End -->
<!-- Preloader -->
<div class="preloader">
<div class="spinner-wrap">
<div class="preloader-logo">
<img src="assets/images/preloader.svg" alt="" class="img-fluid">
</div>
<div class="spinner"></div>
</div>
</div>
<!-- Preloader End -->
<!-- back to to button start-->
<a href="#" id="scroll-top" class="back-to-top-btn"><i class="bi bi-arrow-up"></i></a>
<!-- back to to button end-->
<!-- Header area -->
<div class="site-w rapper">
<header>
<div class="menu-area bg-white">
<div class="container large-container">
<div class="row align-items-center gy-4">
<div class="col-lg-5 d-none d-lg-block">
<div class="mainmenu">
<ul>
<li><a href="index">Home</a></li>
<li><a href="pages/menu">Menu</a></li>
<li><a href="pages/about">About</a></li>
<li><a href="pages/faq">Faq</a></li>
<li><a href="pages/contact">Contact</a></li>
</ul>
<div class="menu-btn-wrap flex-shrink-0 d-lg-none pb-5">
<% if (Session["user"] != "true")
{ %>
<a class="sign-btn common-btn mt-4" href="./pages/login">
<i class="bi bi-person-circle"></i>
<span>Sign in</span>
</a>
<% }
else
{ %>
<a class="sign-btn common-btn mt-4" href="./pages/logOut">
<i class="bi bi-box-arrow-right"></i>
<span>Log Out</span>
</a>
<% }%>
</div>
</div>
</div>
<div class="col-lg-2 col-md-12 ">
<div class="menu-logo-wrap text-center">
<a href='index'>
<img src="assets/images/logo.svg" alt=""></a>
</div>
</div>
<div class="col-lg-5 hamburger-menu position-relative col-md-12">
<div class="d-flex menu-info-item align-items-center justify-content-lg-end">
<div class="menu-meta d-flex align-items-center">
<a class="cart-icon order-lg-2 cart-toggle" href="/pages/cart"><i class="bi bi-cart3"></i></a>
<a class="cart-icon order-lg-2 cart-toggle" href="/pages/orders"><i class="bi bi-sort-up"></i></a>
</div>
<div class="menu-btn-wrap flex-shrink-0 d-none d-lg-block">
<% if (Session["user"] != "true")
{ %>
<a class="common-btn sign-btn" href="./pages/login">
<i class="bi bi-person-circle"></i>
<span>Sign in</span>
</a>
<% }
else
{ %>
<a class="common-btn sign-btn" href="./pages/logOut">
<i class="bi bi-box-arrow-right"></i>
<span>Log Out</span>
</a>
<% } %>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="hero-area pizza overflow-hidden position-relative z-index-one">
<div class="container large-container">
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="hero-info text-center">
<span class="hero-tag">WELCOME TO OUR</span>
<h1 class="wow fadeInUp" data-wow-delay="1000ms" data-wow-duration="1000ms">Epicureans Artisanal Pizza Experience</h1>
</div>
</div>
</div>
<div class="row pt-60 justify-content-between gy-4">
<div class="col-lg-3 order-1 order-lg-0">
<div class="hero-cta-box">
<div class="single-hero-cta-box ">
<div class="hero-pizza-img-pagination d-flex flex-column"></div>
</div>
<div class="single-hero-cta-box ">
<div class="swiper hero-pizza-info-slide">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="pizza-slide-info">
<svg width="27" height="21" viewBox="0 0 27 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.9 20.5C0.566667 20.5 0.3 20.4 0.1 20.2C-0.0333333 19.9333 -0.0333333 19.6333 0.1 19.3L7.2 0.800002C7.4 0.266668 7.76667 0 8.3 0H11.9C12.2333 0 12.4667 0.100001 12.6 0.300002C12.8 0.500004 12.8667 0.76667 12.8 1.1L7.2 19.7C7 20.2333 6.6 20.5 6 20.5H0.9ZM14.2 20.5C13.8667 20.5 13.6 20.4 13.4 20.2C13.2667 19.9333 13.2667 19.6333 13.4 19.3L20.5 0.800002C20.7 0.266668 21.0667 0 21.6 0H25.2C25.5333 0 25.7667 0.100001 25.9 0.300002C26.1 0.500004 26.1667 0.76667 26.1 1.1L20.5 19.7C20.3 20.2333 19.9 20.5 19.3 20.5H14.2Z" fill="#101113" />
</svg>
<p class="mt-3">The perfect piece of cheesy and dreamy. Taste the magic in every bite.</p>
</div>
</div>
<div class="swiper-slide">
<div class="pizza-slide-info">
<svg width="27" height="21" viewBox="0 0 27 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.9 20.5C0.566667 20.5 0.3 20.4 0.1 20.2C-0.0333333 19.9333 -0.0333333 19.6333 0.1 19.3L7.2 0.800002C7.4 0.266668 7.76667 0 8.3 0H11.9C12.2333 0 12.4667 0.100001 12.6 0.300002C12.8 0.500004 12.8667 0.76667 12.8 1.1L7.2 19.7C7 20.2333 6.6 20.5 6 20.5H0.9ZM14.2 20.5C13.8667 20.5 13.6 20.4 13.4 20.2C13.2667 19.9333 13.2667 19.6333 13.4 19.3L20.5 0.800002C20.7 0.266668 21.0667 0 21.6 0H25.2C25.5333 0 25.7667 0.100001 25.9 0.300002C26.1 0.500004 26.1667 0.76667 26.1 1.1L20.5 19.7C20.3 20.2333 19.9 20.5 19.3 20.5H14.2Z" fill="#101113" />
</svg>
<p class="mt-3">The perfect piece of cheesy and dreamy. Taste the magic in every bite.</p>
</div>
</div>
<div class="swiper-slide">
<div class="pizza-slide-info">
<svg width="27" height="21" viewBox="0 0 27 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.9 20.5C0.566667 20.5 0.3 20.4 0.1 20.2C-0.0333333 19.9333 -0.0333333 19.6333 0.1 19.3L7.2 0.800002C7.4 0.266668 7.76667 0 8.3 0H11.9C12.2333 0 12.4667 0.100001 12.6 0.300002C12.8 0.500004 12.8667 0.76667 12.8 1.1L7.2 19.7C7 20.2333 6.6 20.5 6 20.5H0.9ZM14.2 20.5C13.8667 20.5 13.6 20.4 13.4 20.2C13.2667 19.9333 13.2667 19.6333 13.4 19.3L20.5 0.800002C20.7 0.266668 21.0667 0 21.6 0H25.2C25.5333 0 25.7667 0.100001 25.9 0.300002C26.1 0.500004 26.1667 0.76667 26.1 1.1L20.5 19.7C20.3 20.2333 19.9 20.5 19.3 20.5H14.2Z" fill="#101113" />
</svg>
<p class="mt-3">The perfect piece of cheesy and dreamy. Taste the magic in every bite.</p>
</div>
</div>
</div>
</div>
</div>
<div class="single-hero-cta-box">
<a class='common-btn bg-orange border-radius-50' href='food-menu-01.html'><span>Explore Our Menu</span></a>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="swiper hero-pizza-img-slide">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="d-flex justify-content-center">
<img class="w-100 hero-pizza-food-img" src="assets/images/pizza/hero-pizza-1.png" alt="">
</div>
</div>
<div class="swiper-slide">
<div class="d-flex justify-content-center">
<img class="w-100 hero-pizza-food-img" src="assets/images/pizza/hero-pizza-2.png" alt="">
</div>
</div>
<div class="swiper-slide">
<div class="d-flex justify-content-center">
<img class="w-100 hero-pizza-food-img" src="assets/images/pizza/hero-pizza-3.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3 d-none d-lg-block">
<div class="hero-cta-box right">
<div class="single-hero-cta-box">
<div class="hero-cta-info-wrap">
<h2>80+</h2>
<p>Menu Items For You</p>
</div>
</div>
<div class="single-hero-cta-box">
<div class="hero-cta-info-wrap">
<h2>12+</h2>
<p>Years We Serve You</p>
</div>
</div>
<div class="single-hero-cta-box">
<div class="hero-cta-info-wrap">
<h2>100+</h2>
<p>Great Master Chef</p>
</div>
</div>
</div>
<div class="row pt-60">
<div class="col-lg-12">
<div class="slider-button-wrap slider-button-wrap-coffee orange d-flex justify-content-lg-end">
<div class="hero-pizza-img-button-prev slide-btn-prev">
<i class="bi bi-play-fill"></i>
</div>
<div class="hero-pizza-img-button-next slide-btn-next">
<i class="bi bi-play-fill"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<img class="h-100 position-absolute z-index-minus-one start-50 translate-middle-x top-0" src="assets/images/pizza/hero-vector.png" alt="">
</div>
<!-- Hero End -->
<!-- Time -->
<div class="time-period-area position-relative z-index-one overflow-hidden">
<div class="container large-container">
<div class="row justify-content-between align-items-center gy-4">
<div class="col-lg-5 text-center text-lg-start">
<div class="section-title text-center text-lg-start">
<h2 class="mt-2 text_color_white">We Offer You More Than 50% Discount in</h2>
</div>
</div>
<div class="col-lg-6">
<div class="row gy-5 cta-wrap justify-content-start" id="timer">
<div class="col-lg-4 col-6 cta-single cta-single-orange wow fadeInLeft" data-wow-delay="00ms" data-wow-duration="1000ms">
<div class="coming-soon-time-wrap">
<div class="coming-soon-single-time text-center">
<div class="time-wrap-round">
<h2 class="text_color_white" id="hours">...</h2>
</div>
<h4 class="text_color_white">Hours</h4>
</div>
</div>
</div>
<div class="col-lg-4 col-6 cta-single cta-single-orange wow fadeInLeft" data-wow-delay="200ms" data-wow-duration="1000ms">
<div class="coming-soon-time-wrap">
<div class="coming-soon-single-time text-center">
<div class="time-wrap-round">
<h2 class="text_color_white" id="minutes">...</h2>
</div>
<h4 class="text_color_white">Minutes</h4>
</div>
</div>
</div>
<div class="col-lg-4 col-6 cta-single cta-single-orange wow fadeInLeft" data-wow-delay="400ms" data-wow-duration="1000ms">
<div class="coming-soon-time-wrap">
<div class="coming-soon-single-time text-center">
<div class="time-wrap-round">
<h2 class="text_color_white" id="seconds">...</h2>
</div>
<h4 class="text_color_white">Seconds</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<svg class="position-absolute z-index-minus-one top-0 start-0" width="177" height="139" viewBox="0 0 177 139" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.1" d="M46.2675 -4.26877C46.2675 -4.26877 52.8851 -22.8601 72.123 -28.365C91.3609 -33.87 112.199 -27.9126 123.911 -10.3797C135.299 6.66698 136.097 24.7436 129.961 37.2434C124.007 49.3565 105.534 56.4832 105.534 56.4832M112.331 98.0199C112.331 98.0199 119.793 96.2018 127.969 105.911C138.428 118.334 129.978 136.774 129.978 136.774C127.39 127.601 114.737 130.265 103.52 128.688C92.3028 127.111 90.3116 111.769 92.0273 103.745C93.743 95.7207 101.12 90.1754 106.749 90.5796C111.636 90.93 110.702 99.7352 104.56 97.5022C95.4202 94.178 93.7832 80.7982 123.045 61.1434C152.306 41.4885 174.469 72.9283 174.469 72.9283C174.469 72.9283 168.94 72.0612 158.886 78.3515C148.834 84.6461 152.167 86.4556 139.161 91.441C126.154 96.4222 105.474 85.2031 105.474 85.2031M105.475 85.2074C105.475 85.2074 142.348 55.9609 152.491 65.1631C162.634 74.3653 119.558 69.8499 119.558 69.8499M99.8343 105.784C99.8343 105.784 117.789 115.273 120.43 117.526C123.07 119.78 122.082 125.287 118.126 124.261C114.165 123.233 112.093 104.964 112.093 104.964M127.094 78.198C127.094 78.198 134.484 77.3381 140.959 80.3983M-28.6235 35.5325C-23.4479 20.7264 -6.18066 3.21785 19.9274 -2.3833C46.0355 -7.98444 64.7061 -2.93865 80.5491 11.5271C96.3964 25.9915 106.881 62.0194 101.612 79.1592C96.3486 96.3017 85.7316 120.303 52.7757 129.994C21.0683 139.319 -9.50319 126.895 -25.8957 99.7427C-40.4535 75.6277 -33.8019 50.3442 -28.6235 35.5325ZM8.24337 57.9082C6.13394 59.6569 7.30411 65.4412 10.6987 65.2438C14.0947 65.0508 17.578 61.6863 15.9749 59.3967C14.3689 57.1129 10.7863 55.802 8.24337 57.9082ZM64.8743 23.2846C65.2809 20.7847 61.4904 18.0903 59.4594 20.5252C57.4241 22.9616 57.0059 27.3761 59.2201 27.6635C61.4385 27.9495 64.3843 26.2983 64.8743 23.2846ZM18.4359 78.0208C18.1427 80.5346 22.0492 83.0534 23.9696 80.5281C25.8901 78.0028 26.1098 73.5745 23.883 73.3904C21.6603 73.2049 18.7883 74.9918 18.4359 78.0208ZM101.604 -14.7367C100.906 -13.6727 107.845 -2.54426 105.034 -0.617343C102.223 1.30958 100.727 -2.05847 102.075 -3.00484C103.424 -3.94697 112.934 3.91484 114.11 3.07775C115.287 2.2449 109.044 -10.4046 111.833 -10.9136C114.625 -11.4282 115.816 -8.23644 114.214 -7.48771C112.614 -6.74465 102.302 -15.8008 101.604 -14.7367ZM44.7571 10.1173C50.1738 15.7635 44.2386 64.5861 36.9603 60.299C29.6834 56.0162 54.2331 13.3574 61.5819 12.5726C68.9307 11.7878 92.6652 36.2849 88.0068 44.0059C83.3483 51.7269 39.5915 70.1236 38.7833 65.0957C37.975 60.0679 81.417 45.9568 86.4073 52.0948C91.3977 58.2329 92.3233 62.778 91.2478 72.4325C90.1724 82.087 89.2916 94.5968 79.4186 95.7641C69.5499 96.93 35.6682 74.8007 39.9258 69.6673C44.1833 64.5339 70.7747 94.9254 69.2242 106.452C67.9347 116.06 35.4731 129.671 28.1676 118.198C19.6249 104.78 30.6213 71.1208 34.5126 71.7858C38.4038 72.4508 30.2191 112.194 15.0451 115.702C-0.130421 119.205 -15.6814 95.7671 -15.1793 85.1344C-14.6771 74.5017 27.9786 63.3808 30.4121 67.5155C32.8442 71.646 -15.4872 75.6551 -20.6434 71.6061C-25.7997 67.5571 -21.1057 30.7185 -6.18343 28.0829C8.73887 25.4473 36.7665 58.7456 33.3018 62.3492C29.8371 65.9528 -3.09236 29.8319 3.22644 18.512C9.54524 7.19217 37.3037 2.34082 44.7571 10.1173Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" />
</svg>
</div>
<!-- Time End -->
<!-- Choose -->
<div class="choose-orange-area pt-120 pb-120 position-relative z-index-one">
<div class="container large-container">
<div class="row">
<div class="col-lg-12">
<div class="section-title section-title-coffee orange text-center">
<span>Why Choose Us</span>
<h2 class="mt-2">Choose The Best Pizza</h2>
</div>
</div>
</div>
<div class="row pt-60 justify-content-between gy-4">
<div class="col-lg-4 col-xl-3 order-1 order-lg-0">
<div class="row h-100 gy-4">
<div class="col-12 wow fadeInUp" data-wow-delay="00ms" data-wow-duration="1000ms">
<div class="choose-orange-box">
<svg class="choose-orange-icon" width="69" height="69" viewBox="0 0 69 69" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.283 18.3281C17.0268 18.3281 17.6306 17.7243 17.6306 16.9805C17.6306 16.224 17.0121 15.6328 16.283 15.6328C15.5391 15.6328 14.9353 16.2366 14.9353 16.9805C14.9353 17.7185 15.5333 18.3281 16.283 18.3281Z" fill="currentColor" />
<path d="M18.9783 33.1523C18.2339 33.1523 17.6306 33.7556 17.6306 34.5C17.6306 35.2444 18.2339 35.8476 18.9783 35.8476H40.5408C41.2851 35.8476 41.8884 35.2444 41.8884 34.5C41.8884 33.7556 41.2851 33.1523 40.5408 33.1523C40.5408 28.4087 37.4901 24.4199 33.3034 22.9665C33.6214 22.3895 33.8025 21.7273 33.8025 21.0234C33.8025 18.794 31.9889 16.9805 29.7595 16.9805C27.5301 16.9805 25.7165 18.794 25.7165 21.0234C25.7165 21.7294 25.8987 22.3932 26.2182 22.9717C22.0079 24.44 18.9783 28.4482 18.9783 33.1523ZM28.4119 21.0234C28.4119 20.2801 29.0162 19.6758 29.7595 19.6758C30.5023 19.6758 31.1072 20.2801 31.1072 21.0234C31.1072 21.7668 30.5023 22.3711 29.7595 22.3711C29.0162 22.3711 28.4119 21.7668 28.4119 21.0234ZM29.7595 25.0664C34.2199 25.0664 37.8455 28.6756 37.8455 33.1523H21.6736C21.6736 28.694 25.3007 25.0664 29.7595 25.0664Z" fill="currentColor" />
<path d="M2.99218 28.9625L4.3551 31.173L3.55704 33.6535C2.60262 36.621 3.80709 39.8001 6.48345 41.3841L8.69129 42.6938L9.12559 45.2465C9.50146 47.4517 10.9244 49.2568 12.8638 50.1502L6.8251 60.2213C6.24077 61.1967 7.05726 62.418 8.18381 62.2464L15.6491 61.1099L18.3965 68.143C18.8045 69.1874 20.2369 69.3053 20.8102 68.3414L29.273 54.1126L29.7421 53.9062H29.7832L30.2401 54.1068L38.625 68.3367C39.1936 69.3016 40.6318 69.1911 41.0413 68.143L43.7893 61.1099L51.254 62.2464C52.3769 62.4175 53.195 61.2036 52.6164 60.2271L46.6473 50.1544C48.5956 49.2616 50.0222 47.4549 50.3975 45.247L50.8334 42.6959L53.0386 41.3872C55.7176 39.8001 56.9216 36.621 55.9677 33.6567L55.1691 31.1724L56.5331 28.9572C58.1608 26.3103 57.7523 22.9412 55.5407 20.7655L53.6951 18.943L53.8793 16.354C54.1041 13.2397 52.1721 10.4349 49.1794 9.53256L46.7452 8.80082L45.7229 6.44348C44.6705 4.0177 42.2832 2.45 39.6405 2.45C38.7261 2.45 38.2929 2.59792 35.866 3.03749C34.5526 2.16836 33.0144 0 29.7637 0C26.7572 0 25.1574 1.87198 23.6497 3.0517C21.2103 2.6095 20.8312 2.44842 19.8795 2.44842C17.2421 2.44842 14.8563 4.01559 13.8008 6.44243L12.7806 8.79924L10.3427 9.53151C7.35206 10.4364 5.42059 13.2407 5.64538 16.3493L5.82963 18.9451L3.98608 20.7586C1.77192 22.9386 1.36288 26.3114 2.99218 28.9625ZM19.9037 64.5932L17.7669 59.1247C17.5379 58.5372 16.9315 58.1877 16.3087 58.2824L10.6096 59.1505L15.637 50.7666L17.858 50.8798L19.3951 52.9002C20.6386 54.5432 22.6132 55.5234 24.6773 55.5234C24.8926 55.5234 25.1053 55.5118 25.3169 55.4918L19.9037 64.5932ZM43.1292 58.283C42.5059 58.1882 41.8999 58.5377 41.671 59.1247L39.54 64.5796L34.1836 55.4892C34.4026 55.5113 34.6237 55.5239 34.8469 55.5239C36.9047 55.5239 38.8777 54.5464 40.128 52.9071L41.6678 50.8772L43.8767 50.7666L48.8467 59.1537L43.1292 58.283ZM5.87648 22.6796L7.84427 20.7444C7.849 20.7397 7.85374 20.7349 7.85795 20.7302C8.33279 20.2496 8.57758 19.591 8.5302 18.924L8.33332 16.1571C8.20013 14.3125 9.34722 12.649 11.1208 12.1126L13.7218 11.3314C14.3714 11.1413 14.9016 10.6733 15.1816 10.0379L16.2734 7.51581C16.8999 6.07498 18.3154 5.14425 19.88 5.14425C20.7117 5.14425 22.8338 5.69964 23.5876 5.76912C23.6303 5.77334 23.674 5.77544 23.7161 5.77492C24.6242 5.77176 25.0843 5.38009 25.8476 4.72943C27.3547 3.44284 28.2844 2.69531 29.7637 2.69531C31.8294 2.69531 32.7238 4.13878 34.3383 5.26797C34.8605 5.68595 35.5307 5.83598 35.9666 5.75754C38.694 5.27007 39.0109 5.14531 39.6405 5.14531C41.2087 5.14531 42.6254 6.07603 43.2502 7.51581L44.3452 10.0416C44.6221 10.6644 45.1506 11.1334 45.7992 11.3308L48.4019 12.1136C50.1775 12.6485 51.3241 14.3125 51.1903 16.1613L50.9945 18.9198C50.9429 19.5963 51.1898 20.258 51.6731 20.7349L53.6488 22.6848C54.9612 23.9762 55.2028 25.975 54.2378 27.5443L52.7796 29.9122C52.4254 30.4918 52.3427 31.1945 52.5506 31.8357L53.4019 34.4816C53.9678 36.2409 53.2534 38.1266 51.6636 39.0689L49.301 40.4707C48.7135 40.8213 48.3134 41.4083 48.205 42.0721L47.7401 44.7938C47.4559 46.4673 46.1561 47.7507 44.4958 48.0113C44.4458 48.0155 44.3957 48.0234 44.3457 48.0334C44.2515 48.045 44.1557 48.0539 44.0515 48.0592L41.3604 48.1934C40.6771 48.2255 40.0464 48.5572 39.6274 49.1063L37.9823 51.2751C37.2411 52.2475 36.0687 52.8281 34.8469 52.8281C34.2688 52.8281 33.7114 52.7033 33.1902 52.4564C33.1781 52.4507 33.1665 52.4454 33.1544 52.4401C30.6075 51.362 30.5491 51.2109 30.0653 51.2109H29.4589C28.9703 51.2109 28.8472 51.3915 26.3687 52.4443C25.8465 52.676 25.3675 52.8281 24.6773 52.8281C23.4523 52.8281 22.2816 52.2469 21.5424 51.2709L19.8995 49.1115C19.482 48.5588 18.8445 48.225 18.1628 48.1966C14.3636 47.9976 15.807 48.0903 15.0458 48.0155C13.3781 47.7628 12.0694 46.4746 11.7825 44.7938L11.3203 42.0784C11.2113 41.4183 10.8186 40.8361 10.2421 40.4807C10.2358 40.4765 10.2295 40.4728 10.2227 40.4686L7.85743 39.0652C6.26972 38.1255 5.55641 36.2398 6.12232 34.4789L6.96987 31.8457C7.18202 31.203 7.0999 30.4991 6.74035 29.9059L5.28688 27.549C4.32036 25.9761 4.56251 23.973 5.87648 22.6796Z" fill="currentColor" />
<path d="M29.7595 46.6289C40.1628 46.6289 48.6267 38.165 48.6267 27.7617C48.6267 17.3584 40.1628 8.89453 29.7595 8.89453C26.0292 8.89453 22.4248 9.98266 19.3373 12.0415C18.7177 12.4542 18.5503 13.2907 18.9635 13.9103C19.3762 14.5294 20.2127 14.6968 20.8323 14.2836C23.4755 12.5216 26.563 11.5898 29.7595 11.5898C38.6767 11.5898 45.9314 18.8445 45.9314 27.7617C45.9314 36.6789 38.6767 43.9336 29.7595 43.9336C20.8423 43.9336 13.5876 36.6789 13.5876 27.7617C13.5876 25.4928 14.1088 23.2613 14.6252 22.0558C14.9185 21.3714 14.6015 20.5791 13.9177 20.2859C13.2339 19.9927 12.4411 20.3101 12.1479 20.994C11.3851 22.7738 10.8923 25.4307 10.8923 27.7617C10.8923 38.165 19.3557 46.6289 29.7595 46.6289Z" fill="currentColor" />
</svg>
<div class="choose-orange-info">
<h2 class="h2">The Highest Quality</h2>
<p>Indulge in the exquisite perfection of our pizza, crafted with premium ingredients and a mastery that transcends taste.</p>
</div>
</div>
</div>
<div class="col-12 wow fadeInUp" data-wow-delay="200ms" data-wow-duration="1000ms">
<div class="choose-orange-box">
<svg width="65" height="65" viewBox="0 0 65 65" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3688_1526)">
<path d="M59.3144 57.4215H57.6883C57.0848 45.3664 47.9337 35.527 36.1871 33.8514V32.8863C36.1871 30.9235 34.5903 29.3262 32.6269 29.3262C30.6636 29.3262 29.0668 30.9235 29.0668 32.8863V33.8514C17.3202 35.527 8.16913 45.3664 7.56561 57.4215H5.93951C5.23879 57.4215 4.66998 57.9898 4.66998 58.691C4.66998 62.1698 7.50064 65 10.9795 65H54.2744C57.7537 65 60.5839 62.1698 60.5839 58.691C60.5839 57.9898 60.0151 57.4215 59.3144 57.4215ZM31.6059 32.8863C31.6059 32.3235 32.0636 31.8652 32.6269 31.8652C33.1903 31.8652 33.648 32.3235 33.648 32.8863V33.6198C33.3093 33.6064 32.9691 33.5975 32.6269 33.5975C32.2848 33.5975 31.9446 33.6064 31.6059 33.6198V32.8863ZM32.6269 36.1365C44.6374 36.1365 54.4857 45.5727 55.1462 57.4215H10.1081C10.7682 45.5727 20.6165 36.1365 32.6269 36.1365ZM54.2744 62.4609H10.9795C9.34543 62.4609 7.95142 61.4165 7.42923 59.9606H57.8247C57.3025 61.4165 55.908 62.4609 54.2744 62.4609Z" fill="currentColor" />
<path d="M38.2173 39.6348C37.5488 39.423 36.8352 39.7935 36.624 40.462C36.4122 41.1305 36.7822 41.8436 37.4507 42.0553C40.7316 43.0943 43.6436 45.0134 45.8722 47.6056C46.1231 47.8977 46.4782 48.0474 46.8353 48.0474C47.1284 48.0474 47.4229 47.9468 47.6625 47.7405C48.1941 47.2832 48.2546 46.4818 47.7973 45.9502C45.2608 43 41.9481 40.8165 38.2173 39.6348Z" fill="currentColor" />
<path d="M32.6602 38.8809H32.627C31.9257 38.8809 31.3574 39.4492 31.3574 40.1504C31.3574 40.8511 31.9257 41.4199 32.627 41.4199H32.6602C33.3614 41.4199 33.9297 40.8511 33.9297 40.1504C33.9297 39.4492 33.3614 38.8809 32.6602 38.8809Z" fill="currentColor" />
<path d="M54.7485 0H10.3467C6.95168 0 4.18945 2.76222 4.18945 6.15723V17.71C4.18945 21.105 6.95168 23.8672 10.3467 23.8672H28.0631L31.7626 27.5667C32.0105 27.8146 32.3354 27.9386 32.6607 27.9386C32.9855 27.9386 33.3103 27.8146 33.5583 27.5667L37.2578 23.8672H54.7485C58.1435 23.8672 60.9058 21.105 60.9058 17.71V6.15723C60.9058 2.76222 58.1435 0 54.7485 0ZM58.3667 17.71C58.3667 19.705 56.7436 21.3281 54.7485 21.3281H36.7316C36.3949 21.3281 36.072 21.462 35.834 21.7001L32.6602 24.8739L29.4864 21.7001C29.2483 21.462 28.9255 21.3281 28.5888 21.3281H10.3467C8.35163 21.3281 6.72852 19.705 6.72852 17.71V6.15723C6.72852 4.16218 8.35163 2.53906 10.3467 2.53906H54.7485C56.7436 2.53906 58.3667 4.16218 58.3667 6.15723V17.71Z" fill="currentColor" />
<path d="M48.877 18.624C49.1254 18.624 49.3739 18.5516 49.5886 18.4058C50.626 17.7036 55.8009 14.0344 55.8009 10.7663C55.8009 8.09882 53.7622 5.92871 51.2559 5.92871C50.4108 5.92871 49.5866 6.18212 48.877 6.6453C48.1673 6.18212 47.3431 5.92871 46.4976 5.92871C43.9918 5.92871 41.9531 8.09882 41.9531 10.7663C41.9531 14.0344 47.1279 17.7036 48.1648 18.4058C48.3801 18.5516 48.6285 18.624 48.877 18.624ZM44.4921 10.7663C44.4921 9.49927 45.3917 8.46777 46.4976 8.46777C47.0337 8.46777 47.538 8.70928 47.9184 9.14717C48.1594 9.42488 48.509 9.58407 48.877 9.58407C49.2449 9.58407 49.5941 9.42439 49.8356 9.14717C50.2159 8.70928 50.7203 8.46777 51.2563 8.46777C52.3622 8.46777 53.2618 9.49927 53.2618 10.7663C53.2618 12.0284 50.8552 14.3235 48.877 15.7963C46.8983 14.323 44.4921 12.0284 44.4921 10.7663Z" fill="currentColor" />
<path d="M31.9153 18.4058C32.1301 18.5516 32.3785 18.624 32.627 18.624C32.8754 18.624 33.1239 18.5516 33.3386 18.4058C34.376 17.7036 39.5509 14.0344 39.5509 10.7663C39.5509 8.09882 37.5122 5.92871 35.0059 5.92871C34.1608 5.92871 33.3366 6.18212 32.627 6.6453C31.9173 6.18212 31.0931 5.92871 30.2476 5.92871C27.7418 5.92871 25.7031 8.09882 25.7031 10.7663C25.7031 14.0344 30.8779 17.7036 31.9153 18.4058ZM30.2476 8.46777C30.7837 8.46777 31.288 8.70928 31.6684 9.14717C31.9094 9.42488 32.259 9.58407 32.627 9.58407C32.9949 9.58407 33.3441 9.42439 33.5856 9.14717C33.9659 8.70928 34.4703 8.46777 35.0063 8.46777C36.1122 8.46777 37.0118 9.49927 37.0118 10.7663C37.0118 12.0284 34.6052 14.3235 32.627 15.7963C30.6483 14.323 28.2421 12.0284 28.2421 10.7663C28.2421 9.49927 29.1417 8.46777 30.2476 8.46777Z" fill="currentColor" />
<path d="M16.377 6.6453C15.6673 6.18212 14.8431 5.92871 13.9976 5.92871C11.4918 5.92871 9.45306 8.09882 9.45306 10.7663C9.45306 14.0344 14.6279 17.7036 15.6653 18.4058C15.8801 18.5516 16.1285 18.624 16.377 18.624C16.6249 18.624 16.8739 18.5516 17.0886 18.4058C18.126 17.7036 23.3004 14.0344 23.3004 10.7663C23.3004 8.09882 21.2617 5.92871 18.7559 5.92871C17.9108 5.92871 17.0866 6.18212 16.377 6.6453ZM20.7618 10.7663C20.7618 12.0284 18.3552 14.3235 16.377 15.7963C14.3983 14.323 11.9921 12.0284 11.9921 10.7663C11.9921 9.49927 12.8917 8.46777 13.9976 8.46777C14.5337 8.46777 15.038 8.70928 15.4184 9.14717C15.6594 9.42488 16.009 9.58407 16.377 9.58407C16.7449 9.58407 17.0941 9.42439 17.3356 9.14717C17.7159 8.70928 18.2203 8.46777 18.7563 8.46777C19.8622 8.46777 20.7618 9.49927 20.7618 10.7663Z" fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_3688_1526">
<rect width="65" height="65" fill="white" />
</clipPath>
</defs>
</svg>
<div class="choose-orange-info">
<h2 class="h2">Best Food Taste</h2>
<p>Savor the symphony of flavors in every bite, as our meticulously curated dishes elevate your taste buds to new heights of culinary ecstasy.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-xl-5">
<div class="choose-orange-img overflow-hidden position-relative h-100 d-flex align-items-center justify-content-center">
<img src="assets/images/pizza/choose-pizza.png" alt="">
</div>
</div>
<div class="col-lg-4 col-xl-3">
<div class="row h-100 gy-4">
<div class="col-12 wow fadeInUp" data-wow-delay="400ms" data-wow-duration="1000ms">
<div class="choose-orange-box">
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M42.6609 53.6254H20.7874C20.6114 53.6254 20.4374 53.5865 20.2781 53.5117C10.874 49.0878 4.79736 39.5202 4.79736 29.1373C4.79736 28.4771 5.33266 27.9414 5.99327 27.9414H57.4545C58.1151 27.9414 58.6504 28.4771 58.6504 29.1373C58.6504 39.5202 52.5741 49.0878 43.1701 53.5118C43.011 53.5866 42.837 53.6254 42.6609 53.6254ZM21.058 51.2336H42.3903C50.4641 47.328 55.7891 39.2397 56.2289 30.3333H7.21887C7.6588 39.2398 12.9837 47.328 21.058 51.2336Z" fill="currentColor" />
<path d="M17.5188 45.3567C17.2396 45.3567 16.9593 45.2594 16.7326 45.0616C13.8285 42.5265 11.7107 39.2461 10.6084 35.5741C10.4185 34.9412 10.7774 34.2746 11.41 34.0847C12.0418 33.8955 12.7092 34.2537 12.8991 34.8859C13.8719 38.1257 15.7415 41.0213 18.3055 43.2599C18.803 43.6943 18.8545 44.4497 18.4199 44.9472C18.1836 45.218 17.8518 45.3567 17.5188 45.3567Z" fill="currentColor" />
<path d="M51.022 60.1835H12.4262C9.95836 60.1835 7.95068 58.1755 7.95068 55.708C7.95068 53.2407 9.95836 51.2334 12.4262 51.2334H51.022C53.4895 51.2334 55.4972 53.2407 55.4972 55.708C55.4972 58.1755 53.4895 60.1835 51.022 60.1835ZM12.4262 53.6252C11.2773 53.6252 10.3426 54.5596 10.3426 55.708C10.3426 56.8572 11.2773 57.7916 12.4262 57.7916H51.022C52.1708 57.7916 53.1052 56.8572 53.1052 55.708C53.1052 54.5596 52.1708 53.6252 51.022 53.6252H12.4262Z" fill="currentColor" />
<path d="M49.5226 30.333H36.4514C36.0399 30.333 35.6568 30.1212 35.4384 29.7724C35.2195 29.4235 35.1953 28.9867 35.3745 28.616L45.1133 8.47806C46.1084 6.42084 47.932 4.85515 50.1159 4.18251C52.2992 3.50897 54.6876 3.77841 56.6671 4.91915C58.6467 6.05975 60.0762 7.99076 60.5898 10.2168C61.1037 12.4436 60.6638 14.8068 59.3829 16.6995L50.5128 29.8075C50.2908 30.1359 49.9198 30.333 49.5226 30.333ZM38.3581 27.9411H48.888L57.4022 15.3587C58.3248 13.9946 58.6292 12.3594 58.2594 10.7547C57.8891 9.14993 56.8995 7.81387 55.4731 6.99172C54.0474 6.16945 52.3952 5.98411 50.8197 6.46846C49.2456 6.95358 47.9839 8.03646 47.2669 9.51985L38.3581 27.9411Z" fill="currentColor" />
<path d="M10.0773 30.1648C9.56737 30.1648 9.09517 29.8363 8.93594 29.3239C8.46324 27.8055 8.22388 26.2218 8.22388 24.618C8.22388 15.8913 15.324 8.79102 24.0511 8.79102C29.3173 8.79102 34.2229 11.3994 37.1745 15.7682C37.5439 16.3154 37.4003 17.0592 36.8529 17.429C36.3052 17.798 35.5616 17.654 35.1921 17.1073C32.6861 13.3972 28.5214 11.1828 24.051 11.1828C16.6428 11.1828 10.6156 17.2101 10.6156 24.6178C10.6156 25.9804 10.8188 27.325 11.2195 28.6136C11.4157 29.2443 11.0633 29.9146 10.4326 30.111C10.3149 30.1477 10.1949 30.1648 10.0773 30.1648Z" fill="currentColor" />
<path d="M30.242 30.3331H17.8604C17.4789 30.3331 17.1204 30.1509 16.8949 29.8434C15.7745 28.311 15.1824 26.5039 15.1824 24.6173C15.1824 19.7268 19.1611 15.748 24.0512 15.748C28.9413 15.748 32.92 19.7267 32.92 24.6173C32.92 26.5031 32.3278 28.3102 31.2075 29.8425C30.9824 30.1509 30.6234 30.3331 30.242 30.3331ZM18.4996 27.9412H29.6027C30.2096 26.9345 30.528 25.7969 30.528 24.6173C30.528 21.0457 27.6227 18.1399 24.0512 18.1399C20.4797 18.1399 17.5743 21.0457 17.5743 24.6173C17.5743 25.7969 17.8928 26.9352 18.4996 27.9412Z" fill="currentColor" />
<path d="M34.6179 15.6946C34.4695 15.6946 34.3189 15.6672 34.173 15.6082C33.5597 15.3621 33.2624 14.6661 33.5084 14.0533L35.7992 8.34599L28.0091 6.41191L26.1521 10.5144C25.8796 11.1171 25.1711 11.3825 24.5692 11.1108C23.9674 10.8383 23.7008 10.1298 23.9728 9.52858L26.2408 4.51815C26.4786 3.99117 27.0579 3.71316 27.6186 3.85012L37.7091 6.35495C38.0451 6.43828 38.3281 6.66317 38.4858 6.97076C38.6434 7.27911 38.6597 7.64033 38.531 7.96109L35.7284 14.9437C35.541 15.4111 35.0921 15.6946 34.6179 15.6946Z" fill="currentColor" />
<path d="M59.0522 60.1839H4.39598C3.73525 60.1839 3.19995 59.6482 3.19995 58.9879C3.19995 58.3277 3.73538 57.792 4.39598 57.792H59.0522C59.7129 57.792 60.2481 58.3277 60.2481 58.9879C60.2481 59.6482 59.713 60.1839 59.0522 60.1839Z" fill="currentColor" />
<path d="M58.698 16.7218C58.4724 16.7218 58.2445 16.6579 58.042 16.5249L54.8882 14.4507C54.3361 14.0878 54.1831 13.3467 54.5459 12.7946C54.9088 12.2426 55.6512 12.09 56.2023 12.4527L59.3561 14.527C59.9082 14.8899 60.0612 15.631 59.6984 16.1831C59.4686 16.5326 59.0867 16.7218 58.698 16.7218Z" fill="currentColor" />
</svg>
<div class="choose-orange-info">
<h2 class="h2">The Best Ingredients</h2>
<p>Experience pizza perfection with our premium blend of freshest, locally sourced ingredients, meticulously selected to elevate each slice to gastronomic excellence. </p>
</div>
</div>
</div>
<div class="col-12 wow fadeInUp" data-wow-delay="600ms" data-wow-duration="1000ms">
<div class="choose-orange-box">
<svg width="68" height="68" viewBox="0 0 68 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_3688_1560)">
<path d="M11.707 59.7718C14.4899 60.7771 17.4279 61.2851 20.3868 61.2726C23.6178 61.2615 26.8242 60.7093 29.8728 59.639C36.0009 57.5075 41.0892 53.541 44.2002 48.4704C47.3533 43.3314 48.1068 37.6752 46.3219 32.5436C46.2873 32.4459 46.2474 32.3501 46.2024 32.2567C46.6502 32.5738 47.163 32.7875 47.7035 32.8822C48.244 32.977 48.7988 32.9505 49.3278 32.8047L66.1926 24.6214C66.5737 24.4382 66.9146 24.1811 67.1953 23.865C67.4761 23.5489 67.6912 23.1801 67.828 22.7801C67.9649 22.38 68.0208 21.9567 67.9925 21.5349C67.9642 21.113 67.8522 20.701 67.6631 20.3229L67.4142 19.8252C67.0471 19.0879 66.4083 18.5217 65.6323 18.2456C64.8563 17.9695 64.0034 18.0051 63.2531 18.3449L47.3712 25.5965C46.5799 25.816 45.8826 26.2894 45.3864 26.9439C44.8903 27.5983 44.6228 28.3976 44.6251 29.2188C44.6249 29.6404 44.6968 30.0589 44.8376 30.4563L44.5251 30.6647C40.356 28.5796 30.2447 30.2606 20.7975 33.5468C20.2424 33.7398 19.689 33.9387 19.1373 34.1436C18.0933 30.2757 20.7951 27.4605 20.9421 27.3113L19.4368 25.8116C18.4072 26.925 17.6371 28.2527 17.1818 29.6992C16.6442 31.3935 16.6293 33.2105 17.1391 34.9134C15.4391 35.5922 13.8055 36.3098 12.2597 37.0555C11.4024 33.8731 11.3263 30.5894 11.4431 28.2166C11.466 27.7377 11.3929 27.259 11.2283 26.8087C11.0636 26.3584 10.8106 25.9455 10.4841 25.5944C10.1576 25.2432 9.76425 24.9609 9.32712 24.7639C8.88998 24.5669 8.41789 24.4592 7.93856 24.4473C7.45924 24.4353 6.98236 24.5192 6.53593 24.6941C6.08949 24.869 5.68252 25.1314 5.3389 25.4658C4.99528 25.8002 4.72196 26.1998 4.53498 26.6414C4.348 27.0829 4.25114 27.5573 4.25008 28.0368V35.5513C4.24976 35.7035 4.18912 35.8493 4.08145 35.9569C3.97377 36.0644 3.82785 36.1249 3.67567 36.125C3.31984 36.1249 2.96751 36.1952 2.63894 36.3317C2.31037 36.4683 2.01205 36.6685 1.76115 36.9208C1.51025 37.1731 1.31172 37.4725 1.177 37.8019C1.04227 38.1312 0.974001 38.4839 0.97612 38.8397C1.02322 40.5637 1.33043 42.2706 1.88735 43.9028C0.261588 45.6433 -0.319865 47.221 0.159456 48.5995C1.94459 53.7311 6.04557 57.6988 11.707 59.7718ZM29.1747 57.6312C23.5087 59.602 17.5648 59.6537 12.4376 57.7764C8.64923 56.3893 5.65085 54.0701 3.72507 51.0913C4.83605 51.3087 5.96656 51.4104 7.09851 51.3949C7.74938 51.3949 8.44443 51.3696 9.18367 51.3189C12.847 51.0676 17.2559 50.1936 21.8828 48.8199C21.9758 48.8348 24.5093 48.0049 25.6847 47.5961C28.3657 46.6682 30.9969 45.6021 33.5676 44.4021L33.6218 44.3768C36.4015 43.0687 38.8889 41.6775 40.9342 40.2752C42.7642 39.0205 44.1426 37.8332 45.0695 36.7133C45.8689 45.1983 39.3871 54.0792 29.1747 57.6312ZM40.2363 36.2484C40.0124 38.153 39.6394 38.5453 39.6238 38.5611L39.6443 38.5817C38.7647 39.1807 37.8 39.778 36.7623 40.3676C37.4556 38.9952 37.9137 37.5162 38.1173 35.9922C38.1523 35.7349 38.2794 35.499 38.4749 35.3281C38.6704 35.1571 38.9213 35.0628 39.181 35.0625C39.331 35.0625 39.4793 35.0942 39.6161 35.1556C39.753 35.217 39.8753 35.3066 39.975 35.4187C40.0747 35.5307 40.1496 35.6626 40.1946 35.8057C40.2397 35.9487 40.254 36.0997 40.2366 36.2487L40.2363 36.2484ZM64.1289 20.2805C64.3788 20.1678 64.6627 20.1564 64.9209 20.2486C65.179 20.3407 65.3915 20.5294 65.5136 20.7748L65.7625 21.2725C65.8257 21.399 65.8631 21.5368 65.8723 21.6779C65.8816 21.819 65.8627 21.9606 65.8165 22.0942C65.7704 22.2279 65.6981 22.351 65.6037 22.4564C65.5094 22.5618 65.395 22.6472 65.2672 22.7078L52.0607 29.1411C52.0499 28.6157 51.9277 28.0986 51.7021 27.6241C51.4765 27.1495 51.1527 26.7282 50.7521 26.3882L64.1289 20.2805ZM48.3438 27.625C48.6763 27.6246 49.0006 27.7284 49.2711 27.9216C49.5416 28.1149 49.7449 28.388 49.8523 28.7027C49.9597 29.0173 49.9659 29.3577 49.87 29.6761C49.7741 29.9944 49.5809 30.2747 49.3176 30.4777L48.7332 30.7626C48.5442 30.8125 48.3474 30.8252 48.1535 30.8001L48.4024 30.6342C48.52 30.5574 48.6212 30.4582 48.7002 30.3421C48.7792 30.226 48.8344 30.0954 48.8626 29.9579C48.8908 29.8203 48.8915 29.6785 48.8646 29.5407C48.8377 29.4029 48.7837 29.2718 48.7058 29.155C48.6279 29.0381 48.5277 28.9379 48.4108 28.8601C48.2939 28.7822 48.1628 28.7283 48.025 28.7015C47.8872 28.6746 47.7454 28.6753 47.6078 28.7036C47.4703 28.7319 47.3397 28.7871 47.2237 28.8662L46.7525 29.1803C46.7628 28.7648 46.9348 28.3697 47.2321 28.0792C47.5293 27.7887 47.9282 27.6258 48.3438 27.625ZM19.3713 38.9303L21.0038 37.5699C20.618 37.1103 20.2715 36.6191 19.9679 36.1014C20.4749 35.9143 20.9853 35.7313 21.4953 35.5537C27.3058 33.5327 32.9703 32.2505 37.4436 31.9437C39.5252 31.8011 41.2798 31.8842 42.5171 32.1845C43.5239 32.4286 44.1621 32.8039 44.3142 33.2413C44.4662 33.6786 44.1986 34.3689 43.5609 35.1851C43.1917 35.6459 42.7863 36.0764 42.3484 36.4725C42.4381 35.6379 42.1955 34.8016 41.6731 34.1447C41.1508 33.4877 40.3906 33.0629 39.5573 32.9622C38.724 32.8616 37.8846 33.0931 37.2208 33.6069C36.5571 34.1206 36.1223 34.875 36.0107 35.7069C35.471 39.6795 33.1226 41.9946 32.4676 42.571C30.0256 43.7016 27.5285 44.7088 24.9856 45.589C23.9016 45.966 22.8251 46.3167 21.7561 46.6411C17.5583 45.831 14.5902 43.2943 12.9282 39.091C14.5129 38.318 16.2007 37.5748 17.9595 36.873C18.3617 37.6033 18.8346 38.2924 19.3713 38.9303ZM3.26727 38.4198C3.32064 38.3658 3.38425 38.3229 3.45437 38.2938C3.52449 38.2646 3.59973 38.2498 3.67567 38.25C4.39135 38.2492 5.07748 37.9646 5.58355 37.4585C6.08961 36.9524 6.37427 36.2663 6.37508 35.5506V28.0368C6.37533 27.6458 6.53073 27.271 6.80714 26.9946C7.08356 26.7182 7.45839 26.5628 7.8493 26.5625C8.04915 26.5626 8.2469 26.6034 8.43052 26.6823C8.61414 26.7612 8.77981 26.8766 8.91744 27.0215C9.05508 27.1664 9.16182 27.3378 9.23117 27.5252C9.30052 27.7126 9.33103 27.9122 9.32086 28.1118C9.16892 31.1988 9.32684 35.7401 10.9421 39.8447C11.8725 42.2088 13.1884 44.1542 14.853 45.6264C15.801 46.4625 16.868 47.1531 18.019 47.6755C15.589 48.3043 13.1185 48.7646 10.6251 49.0531L9.7375 48.8895C7.3644 48.494 5.56214 46.9947 4.38064 44.4334C3.59187 42.666 3.15725 40.7611 3.10139 38.8264C3.10064 38.751 3.11493 38.6762 3.14341 38.6064C3.17189 38.5366 3.214 38.4732 3.26727 38.4198ZM2.16665 47.9014C2.01963 47.4789 2.26294 46.8345 2.82965 46.0783C3.45688 47.2698 4.314 48.3253 5.35149 49.1837C4.88435 49.1401 4.42073 49.0647 3.96387 48.9579C2.95755 48.7138 2.31952 48.3389 2.16705 47.9019V47.9013L2.16665 47.9014Z" fill="currentColor" />
<path d="M9.5625 13.8125C8.93207 13.8125 8.3158 13.9994 7.79162 14.3497C7.26744 14.6999 6.85889 15.1978 6.61764 15.7802C6.37638 16.3626 6.31326 17.0035 6.43625 17.6219C6.55924 18.2402 6.86282 18.8081 7.3086 19.2539C7.75438 19.6997 8.32234 20.0033 8.94065 20.1263C9.55897 20.2492 10.1999 20.1861 10.7823 19.9449C11.3647 19.7036 11.8626 19.2951 12.2128 18.7709C12.5631 18.2467 12.75 17.6304 12.75 17C12.7491 16.1549 12.4129 15.3447 11.8154 14.7471C11.2178 14.1496 10.4076 13.8134 9.5625 13.8125ZM9.5625 18.0625C9.35236 18.0625 9.14693 18.0002 8.97221 17.8834C8.79748 17.7667 8.6613 17.6007 8.58088 17.4066C8.50046 17.2125 8.47942 16.9988 8.52042 16.7927C8.56141 16.5866 8.66261 16.3973 8.8112 16.2487C8.95979 16.1001 9.14911 15.9989 9.35522 15.9579C9.56132 15.9169 9.77496 15.938 9.9691 16.0184C10.1632 16.0988 10.3292 16.235 10.4459 16.4097C10.5627 16.5844 10.625 16.7899 10.625 17C10.6247 17.2817 10.5126 17.5518 10.3135 17.751C10.1143 17.9501 9.8442 18.0622 9.5625 18.0625Z" fill="currentColor" />
<path d="M20.1875 9.5625C20.1875 8.93207 20.0006 8.3158 19.6503 7.79162C19.3001 7.26744 18.8022 6.85889 18.2198 6.61764C17.6374 6.37638 16.9965 6.31326 16.3782 6.43625C15.7598 6.55924 15.1919 6.86282 14.7461 7.3086C14.3003 7.75438 13.9967 8.32234 13.8737 8.94065C13.7508 9.55897 13.8139 10.1999 14.0551 10.7823C14.2964 11.3647 14.7049 11.8626 15.2291 12.2128C15.7533 12.5631 16.3696 12.75 17 12.75C17.8451 12.7491 18.6553 12.4129 19.2529 11.8154C19.8504 11.2178 20.1866 10.4076 20.1875 9.5625ZM15.9375 9.5625C15.9375 9.35236 15.9998 9.14693 16.1166 8.97221C16.2333 8.79748 16.3993 8.6613 16.5934 8.58088C16.7875 8.50046 17.0012 8.47942 17.2073 8.52042C17.4134 8.56141 17.6027 8.66261 17.7513 8.8112C17.8999 8.95979 18.0011 9.14911 18.0421 9.35522C18.0831 9.56132 18.062 9.77496 17.9816 9.9691C17.9012 10.1632 17.765 10.3292 17.5903 10.4459C17.4156 10.5627 17.2101 10.625 17 10.625C16.7183 10.6247 16.4482 10.5126 16.2491 10.3135C16.0499 10.1143 15.9378 9.8442 15.9375 9.5625Z" fill="currentColor" />
<path d="M13.8125 21.25H15.9375V23.375H13.8125V21.25Z" fill="currentColor" />
<path d="M12.75 30.8125H14.875V32.9375H12.75V30.8125Z" fill="currentColor" />
<path d="M19.125 40.375H21.25V42.5H19.125V40.375Z" fill="currentColor" />
<path d="M2.125 20.1875H4.25V22.3125H2.125V20.1875Z" fill="currentColor" />
<path d="M11.0982 48.6964L12.2769 46.9284C9.68017 45.1972 9.56555 43.6022 9.5625 43.5352C9.56343 43.5531 9.5625 43.5624 9.5625 43.5624H7.4375C7.4375 43.8381 7.54016 46.3249 11.0982 48.6964Z" fill="currentColor" />
<path d="M21.5806 16.4278C22.0195 15.7638 22.5161 15.1399 23.0648 14.5632L21.5612 13.0615C21.4184 13.2044 18.0625 16.6019 18.0625 20.1878H20.1875C20.1875 19.1044 20.6692 17.8041 21.5806 16.4278Z" fill="currentColor" />
</g>
<defs>
<clipPath id="clip0_3688_1560">
<rect width="68" height="68" fill="white" />
</clipPath>
</defs>
</svg>
<div class="choose-orange-info">
<h2 class="h2">Well Cooked Food</h2>
<p>Savor the epitome of culinary expertise with our meticulously well-cooked dishes, where every bite is a testament to precision, flavor, and perfection.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<img class="position-absolute start-0 top-0 z-index-minus-one" src="assets/images/pizza/onion.png" alt="">
<img class="position-absolute end-0 bottom-0 z-index-minus-one" src="assets/images/pizza/leaf.png" alt="">
</div>
<!-- Choose End -->
<!-- Product -->
<div class="coffee-product-area pb-120 position-relative z-index-one">
<div class="container large-container">
<div class="row align-items-center gy-3">
<div class="col-lg-7">
<div class="section-title section-title-coffee orange">
<span class="only-left-sp">Special Deals</span>
<h2 class="mt-2">Our Featured Deals</h2>
</div>
</div>
<div class="col-lg-5">
<div class="slider-button-wrap slider-button-wrap-coffee orange d-flex justify-content-lg-end">
<div class="coffee-product-button-prev slide-btn-prev">
<i class="bi bi-play-fill"></i>
</div>
<div class="coffee-product-button-next slide-btn-next">
<i class="bi bi-play-fill"></i>
</div>
</div>
</div>
</div>
<div class="row pt-60 wow fadeInUp" data-wow-delay="00ms" data-wow-duration="1000ms">
<div class="col-lg-12">
<div class="swiper coffee-product-slide">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="coffee-product-box pizza-product-box">
<div class="coffee-product-img position-relative overflow-hidden">
<img class="w-100" src="assets/images/pizza/special-pizza-1.png" alt="">
<div class="coffee-product-hover text-center d-flex flex-column justify-content-between position-absolute top-50 start-50 translate-middle">
<div class="coffee-product-cart">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.66675 1.6665H3.11675C4.01675 1.6665 4.72508 2.4415 4.65008 3.33317L3.95841 11.6332C3.84175 12.9915 4.91674 14.1582 6.28341 14.1582H15.1584C16.3584 14.1582 17.4084 13.1748 17.5001 11.9832L17.9501 5.73317C18.0501 4.34984 17.0001 3.22483 15.6084 3.22483H4.85009" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.5417 18.3333C14.117 18.3333 14.5833 17.867 14.5833 17.2917C14.5833 16.7164 14.117 16.25 13.5417 16.25C12.9664 16.25 12.5 16.7164 12.5 17.2917C12.5 17.867 12.9664 18.3333 13.5417 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6.87492 18.3333C7.45021 18.3333 7.91658 17.867 7.91658 17.2917C7.91658 16.7164 7.45021 16.25 6.87492 16.25C6.29962 16.25 5.83325 16.7164 5.83325 17.2917C5.83325 17.867 6.29962 18.3333 6.87492 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.5 6.6665H17.5" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<h2 class="h2 text_color_white mt-3"><a href='cart.html'>Add Cart</a></h2>
</div>
<a class='text_color_white coffee-product-details-btn' href='shop-details.html'>View Details</a>
</div>
</div>
<div class="coffee-product-info mt-4">
<h2 class="h2">Pepperoni Perfection Pizza</h2>
<ul class="rating custom-ul mt-3 mb-3 d-flex align-items-center">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<h3 class="d-flex align-items-center">$25.00 <del>$50</del></h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="coffee-product-box pizza-product-box">
<div class="coffee-product-img position-relative overflow-hidden">
<img class="w-100" src="assets/images/pizza/special-pizza-2.png" alt="">
<div class="coffee-product-hover text-center d-flex flex-column justify-content-between position-absolute top-50 start-50 translate-middle">
<div class="coffee-product-cart">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.66675 1.6665H3.11675C4.01675 1.6665 4.72508 2.4415 4.65008 3.33317L3.95841 11.6332C3.84175 12.9915 4.91674 14.1582 6.28341 14.1582H15.1584C16.3584 14.1582 17.4084 13.1748 17.5001 11.9832L17.9501 5.73317C18.0501 4.34984 17.0001 3.22483 15.6084 3.22483H4.85009" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.5417 18.3333C14.117 18.3333 14.5833 17.867 14.5833 17.2917C14.5833 16.7164 14.117 16.25 13.5417 16.25C12.9664 16.25 12.5 16.7164 12.5 17.2917C12.5 17.867 12.9664 18.3333 13.5417 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6.87492 18.3333C7.45021 18.3333 7.91658 17.867 7.91658 17.2917C7.91658 16.7164 7.45021 16.25 6.87492 16.25C6.29962 16.25 5.83325 16.7164 5.83325 17.2917C5.83325 17.867 6.29962 18.3333 6.87492 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.5 6.6665H17.5" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<h2 class="h2 text_color_white mt-3"><a href='cart.html'>Add Cart</a></h2>
</div>
<a class='text_color_white coffee-product-details-btn' href='shop-details.html'>View Details</a>
</div>
</div>
<div class="coffee-product-info mt-4">
<h2 class="h2">Four Cheese Delight Pizza</h2>
<ul class="rating custom-ul mt-3 mb-3 d-flex align-items-center">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<h3 class="d-flex align-items-center">$20.00 <del>$40</del></h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="coffee-product-box pizza-product-box">
<div class="coffee-product-img position-relative overflow-hidden">
<img class="w-100" src="assets/images/pizza/special-pizza-3.png" alt="">
<div class="coffee-product-hover text-center d-flex flex-column justify-content-between position-absolute top-50 start-50 translate-middle">
<div class="coffee-product-cart">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.66675 1.6665H3.11675C4.01675 1.6665 4.72508 2.4415 4.65008 3.33317L3.95841 11.6332C3.84175 12.9915 4.91674 14.1582 6.28341 14.1582H15.1584C16.3584 14.1582 17.4084 13.1748 17.5001 11.9832L17.9501 5.73317C18.0501 4.34984 17.0001 3.22483 15.6084 3.22483H4.85009" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.5417 18.3333C14.117 18.3333 14.5833 17.867 14.5833 17.2917C14.5833 16.7164 14.117 16.25 13.5417 16.25C12.9664 16.25 12.5 16.7164 12.5 17.2917C12.5 17.867 12.9664 18.3333 13.5417 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6.87492 18.3333C7.45021 18.3333 7.91658 17.867 7.91658 17.2917C7.91658 16.7164 7.45021 16.25 6.87492 16.25C6.29962 16.25 5.83325 16.7164 5.83325 17.2917C5.83325 17.867 6.29962 18.3333 6.87492 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.5 6.6665H17.5" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<h2 class="h2 text_color_white mt-3"><a href='cart.html'>Add Cart</a></h2>
</div>
<a class='text_color_white coffee-product-details-btn' href='shop-details.html'>View Details</a>
</div>
</div>
<div class="coffee-product-info mt-4">
<h2 class="h2">Truffle Mushroom Feast</h2>
<ul class="rating custom-ul mt-3 mb-3 d-flex align-items-center">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<h3 class="d-flex align-items-center">$15.00 <del>$20</del></h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="coffee-product-box pizza-product-box">
<div class="coffee-product-img position-relative overflow-hidden">
<img class="w-100" src="assets/images/pizza/special-pizza-4.png" alt="">
<div class="coffee-product-hover text-center d-flex flex-column justify-content-between position-absolute top-50 start-50 translate-middle">
<div class="coffee-product-cart">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.66675 1.6665H3.11675C4.01675 1.6665 4.72508 2.4415 4.65008 3.33317L3.95841 11.6332C3.84175 12.9915 4.91674 14.1582 6.28341 14.1582H15.1584C16.3584 14.1582 17.4084 13.1748 17.5001 11.9832L17.9501 5.73317C18.0501 4.34984 17.0001 3.22483 15.6084 3.22483H4.85009" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.5417 18.3333C14.117 18.3333 14.5833 17.867 14.5833 17.2917C14.5833 16.7164 14.117 16.25 13.5417 16.25C12.9664 16.25 12.5 16.7164 12.5 17.2917C12.5 17.867 12.9664 18.3333 13.5417 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6.87492 18.3333C7.45021 18.3333 7.91658 17.867 7.91658 17.2917C7.91658 16.7164 7.45021 16.25 6.87492 16.25C6.29962 16.25 5.83325 16.7164 5.83325 17.2917C5.83325 17.867 6.29962 18.3333 6.87492 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.5 6.6665H17.5" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<h2 class="h2 text_color_white mt-3"><a href='cart.html'>Add Cart</a></h2>
</div>
<a class='text_color_white coffee-product-details-btn' href='shop-details.html'>View Details</a>
</div>
</div>
<div class="coffee-product-info mt-4">
<h2 class="h2">Epicurean Supreme Taste</h2>
<ul class="rating custom-ul mt-3 mb-3 d-flex align-items-center">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<h3 class="d-flex align-items-center">$10.00 <del>$30</del></h3>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="coffee-product-box pizza-product-box">
<div class="coffee-product-img position-relative overflow-hidden">
<img class="w-100" src="assets/images/pizza/special-pizza-2.png" alt="">
<div class="coffee-product-hover text-center d-flex flex-column justify-content-between position-absolute top-50 start-50 translate-middle">
<div class="coffee-product-cart">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.66675 1.6665H3.11675C4.01675 1.6665 4.72508 2.4415 4.65008 3.33317L3.95841 11.6332C3.84175 12.9915 4.91674 14.1582 6.28341 14.1582H15.1584C16.3584 14.1582 17.4084 13.1748 17.5001 11.9832L17.9501 5.73317C18.0501 4.34984 17.0001 3.22483 15.6084 3.22483H4.85009" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.5417 18.3333C14.117 18.3333 14.5833 17.867 14.5833 17.2917C14.5833 16.7164 14.117 16.25 13.5417 16.25C12.9664 16.25 12.5 16.7164 12.5 17.2917C12.5 17.867 12.9664 18.3333 13.5417 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M6.87492 18.3333C7.45021 18.3333 7.91658 17.867 7.91658 17.2917C7.91658 16.7164 7.45021 16.25 6.87492 16.25C6.29962 16.25 5.83325 16.7164 5.83325 17.2917C5.83325 17.867 6.29962 18.3333 6.87492 18.3333Z" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.5 6.6665H17.5" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<h2 class="h2 text_color_white mt-3"><a href='cart.html'>Add Cart</a></h2>
</div>
<a class='text_color_white coffee-product-details-btn' href='shop-details.html'>View Details</a>
</div>
</div>
<div class="coffee-product-info mt-4">
<h2 class="h2">Four Cheese Delight Pizza</h2>
<ul class="rating custom-ul mt-3 mb-3 d-flex align-items-center">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<h3 class="d-flex align-items-center">$20.00 <del>$40</del></h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<img class="position-absolute z-index-minus-one start-0 bottom-0" src="assets/images/pizza/frame.png" alt="">
</div>
<!-- Product End -->
<!-- Food Menu -->
<div class="coffee-food-menu-area pt-120 pb-120 position-relative z-index-one">
<div class="container large-container">
<div class="row">
<div class="col-lg-12">
<div class="section-title section-title-coffee orange text-center">
<span>Our Main Menu</span>
<h2 class="mt-2">Choose The Best Pizza</h2>
</div>
</div>
</div>
<div class="row pt-60">
<div class="col-lg-12">
<div class="menu-book-box-wrap pizzamenu-book-box-wrap">
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<div class="menu-book-box d-flex justify-content-between align-items-center">
<div class="menu-book-info-wrap d-flex flex-column flex-xl-row align-items-xl-center">
<div class="menu-book-img flex-shrink-0">
<img class="w-100" src="<%# "uploads/" + Eval("ImageFileName") %>" alt="">
</div>
<div class="menu-book-info">
<h2 class="h2 mb-1"><%# Eval("Name") %></h2>
<p><%# Eval("Description") %></p>
</div>
</div>
<div class="dots"></div>
<div class="menu-book-price">
<h2>₹<%# Eval("Price") %></h2>
<% if (Session["user"] == "true")
{ %>
<a href="/pages/addToCart?id=<%# Eval("Id") %>">
<svg
class="add-cart-button float-end"
style="margin-top: 10px"
width="26"
height="26"
viewBox="0 0 26 26"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<circle
cx="13"
cy="13"
r="12.25"
stroke="currentColor"
stroke-width="1.5" />
<path
d="M13 8.5V13M13 13V17.5M13 13H17.5M13 13L8.5 13"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
<% } %>
</div>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</div>
</div>
<div class="row pt-60">
<div class="col-lg-12 text-center">
<a class='common-btn style-border-orange border-radius-50 wow fadeInUp' data-wow-delay='.4s' href='pages/menu' style='visibility: hidden; animation-delay: 0.4s; animation-name: none;'><span>View All Menu</span></a>
</div>
</div>
</div>
<img class="position-absolute z-index-minus-one end-0 bottom-0" src="assets/images/pizza/pizza-sp.png" alt="">
</div>
<!-- Food Menu -->
<!-- Testimonial -->
<div class="testimonial-area pt-120 pb-120 position-relative z-index-one overflow-hidden">
<div class="container">
<div class="row align-items-center gy-3">
<div class="col-lg-7">
<div class="section-title section-title-coffee orange">
<span class="only-left-sp">Our Testimonial</span>
<h2 class="mt-2">Our Featured Deals</h2>
</div>
</div>
<div class="col-lg-5 d-none d-lg-block">
<div class="slider-button-wrap slider-button-wrap-coffee orange d-flex justify-content-lg-end">
<div class="pizza-testimonial-button-prev slide-btn-prev">
<i class="bi bi-play-fill"></i>
</div>
<div class="pizza-testimonial-button-next slide-btn-next">
<i class="bi bi-play-fill"></i>
</div>
</div>
</div>
</div>
<div class="row pt-60 gy-4">
<div class="col-lg-5">
<div class="pizza-testimonial-img text-start text-lg-end">
<img src="assets/images/testimonial/pizza.png" alt="">
</div>
</div>
<div class="col-lg-7">
<div class="swiper pizza-testimonial-slide">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="pizza-testimonial-info">
<p class="pizza-testimonial-info-text">"Epicurean has become my daily escape into a world of exquisite coffee. The team's dedication of delivering a top-notch experience is evident in every cup. They have turned me into a coffee enthusiast!"</p>
<div class="pizza-testimonial-author-box d-flex justify-content-between align-items-baseline position-relative z-index-one">
<div class="pizza-testimonial-author">
<h2 class="h2 mb-2">Mia Anderson</h2>
<p>Client From Envato</p>
</div>
<ul class="rating custom-ul d-flex align-items-center ">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<svg class="position-absolute z-index-minus-one end-0" width="93" height="60" viewBox="0 0 93 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.3">
<path opacity="0.1" d="M82.5047 0.00740724C83.1765 0.00740729 83.8184 0.36711 84.1505 0.986388L92.779 17.0062C93.0552 17.5179 93.0738 18.1298 92.8275 18.6564C92.5812 19.1829 92.1035 19.5686 91.5362 19.691C89.144 20.2175 83.1578 22.0717 79.2951 27.9234C77.3881 30.8158 76.6081 33.7528 76.3282 36.1075L89.771 36.1075C90.801 36.1075 91.637 36.9382 91.637 37.9617L91.637 70.1459C91.637 71.1693 90.801 72 89.771 72L53.6635 72C52.6334 72 51.7975 71.1693 51.7975 70.1459L51.7975 42.0779C51.7975 31.6168 55.4325 21.6712 62.0382 14.0692C62.4151 13.6353 62.8033 13.2015 63.1951 12.7824C68.3341 7.26082 74.7756 2.88874 81.8217 0.129775C82.0457 0.0407782 82.277 -9.2475e-07 82.5047 -9.05117e-07L82.5047 0.00740724ZM88.3939 16.7206L81.6613 4.22002C75.7348 6.78615 70.3233 10.5983 65.9382 15.3078C65.5762 15.6972 65.2179 16.0976 64.8671 16.4981C58.8473 23.4252 55.5332 32.5142 55.5332 42.0816L55.5332 68.2954L87.9087 68.2954L87.9087 39.8195L74.3315 39.8195C73.8314 39.8195 73.35 39.6193 72.9992 39.2633C72.6484 38.9073 72.458 38.4252 72.4655 37.9283C72.5327 34.9061 73.2268 30.3634 76.1752 25.8949C79.8027 20.3993 84.9678 17.8628 88.3901 16.7243L88.3939 16.7206Z" fill="#270A05" />
<path opacity="0.1" d="M30.7073 0.00371461C31.3791 0.00371467 32.021 0.363425 32.3532 0.982742L40.9816 17.0034C41.2578 17.5151 41.2765 18.127 41.0302 18.6536C40.7838 19.1802 40.3061 19.5659 39.7389 19.6883C37.3466 20.2149 31.3604 22.0691 27.4978 27.9211C25.5907 30.8137 24.8107 33.7508 24.5308 36.1057L37.9736 36.1057C39.0037 36.1057 39.8396 36.9364 39.8396 37.9599L39.8396 70.1458C39.8396 71.1693 39.0037 72 37.9736 72L1.86613 72C0.836082 72 0.000106885 71.1693 0.000106976 70.1458L0.000109463 42.0763C0.000110391 31.6147 3.63512 21.6686 10.2408 14.0662C10.6178 13.6323 11.0096 13.1984 11.3978 12.7794C16.5368 7.25747 22.9783 2.88519 30.0244 0.129798C30.2483 0.0407934 30.4797 -9.2475e-07 30.7073 -9.05117e-07L30.7073 0.00371461ZM36.5965 16.7178L29.8639 4.21654C23.9374 6.7828 18.526 10.5914 14.1408 15.3049C13.7788 15.6905 13.4205 16.0911 13.0697 16.4953C7.04993 23.4227 3.73589 32.5122 3.73588 42.0838L3.73588 68.2989L36.1113 68.2989L36.1113 39.8216L22.5342 39.8216C22.0341 39.8216 21.5526 39.6213 21.2018 39.2653C20.851 38.9093 20.6607 38.4272 20.6681 37.9303C20.7316 34.9079 21.4295 30.365 24.3815 25.8963C28.0091 20.4003 33.1742 17.8637 36.5965 16.7252L36.5965 16.7178Z" fill="#270A05" />
</g>
</svg>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="pizza-testimonial-info">
<p class="pizza-testimonial-info-text">"Epicurean has become my daily escape into a world of exquisite coffee. The team's dedication of delivering a top-notch experience is evident in every cup. They have turned me into a coffee enthusiast!"</p>
<div class="pizza-testimonial-author-box d-flex justify-content-between align-items-baseline position-relative z-index-one">
<div class="pizza-testimonial-author">
<h2 class="h2 mb-2">Mia Anderson</h2>
<p>Client From Envato</p>
</div>
<ul class="rating custom-ul d-flex align-items-center ">
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
<li><i class="bi bi-star-fill"></i></li>
</ul>
<svg class="position-absolute z-index-minus-one end-0" width="93" height="60" viewBox="0 0 93 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.3">
<path opacity="0.1" d="M82.5047 0.00740724C83.1765 0.00740729 83.8184 0.36711 84.1505 0.986388L92.779 17.0062C93.0552 17.5179 93.0738 18.1298 92.8275 18.6564C92.5812 19.1829 92.1035 19.5686 91.5362 19.691C89.144 20.2175 83.1578 22.0717 79.2951 27.9234C77.3881 30.8158 76.6081 33.7528 76.3282 36.1075L89.771 36.1075C90.801 36.1075 91.637 36.9382 91.637 37.9617L91.637 70.1459C91.637 71.1693 90.801 72 89.771 72L53.6635 72C52.6334 72 51.7975 71.1693 51.7975 70.1459L51.7975 42.0779C51.7975 31.6168 55.4325 21.6712 62.0382 14.0692C62.4151 13.6353 62.8033 13.2015 63.1951 12.7824C68.3341 7.26082 74.7756 2.88874 81.8217 0.129775C82.0457 0.0407782 82.277 -9.2475e-07 82.5047 -9.05117e-07L82.5047 0.00740724ZM88.3939 16.7206L81.6613 4.22002C75.7348 6.78615 70.3233 10.5983 65.9382 15.3078C65.5762 15.6972 65.2179 16.0976 64.8671 16.4981C58.8473 23.4252 55.5332 32.5142 55.5332 42.0816L55.5332 68.2954L87.9087 68.2954L87.9087 39.8195L74.3315 39.8195C73.8314 39.8195 73.35 39.6193 72.9992 39.2633C72.6484 38.9073 72.458 38.4252 72.4655 37.9283C72.5327 34.9061 73.2268 30.3634 76.1752 25.8949C79.8027 20.3993 84.9678 17.8628 88.3901 16.7243L88.3939 16.7206Z" fill="#270A05" />
<path opacity="0.1" d="M30.7073 0.00371461C31.3791 0.00371467 32.021 0.363425 32.3532 0.982742L40.9816 17.0034C41.2578 17.5151 41.2765 18.127 41.0302 18.6536C40.7838 19.1802 40.3061 19.5659 39.7389 19.6883C37.3466 20.2149 31.3604 22.0691 27.4978 27.9211C25.5907 30.8137 24.8107 33.7508 24.5308 36.1057L37.9736 36.1057C39.0037 36.1057 39.8396 36.9364 39.8396 37.9599L39.8396 70.1458C39.8396 71.1693 39.0037 72 37.9736 72L1.86613 72C0.836082 72 0.000106885 71.1693 0.000106976 70.1458L0.000109463 42.0763C0.000110391 31.6147 3.63512 21.6686 10.2408 14.0662C10.6178 13.6323 11.0096 13.1984 11.3978 12.7794C16.5368 7.25747 22.9783 2.88519 30.0244 0.129798C30.2483 0.0407934 30.4797 -9.2475e-07 30.7073 -9.05117e-07L30.7073 0.00371461ZM36.5965 16.7178L29.8639 4.21654C23.9374 6.7828 18.526 10.5914 14.1408 15.3049C13.7788 15.6905 13.4205 16.0911 13.0697 16.4953C7.04993 23.4227 3.73589 32.5122 3.73588 42.0838L3.73588 68.2989L36.1113 68.2989L36.1113 39.8216L22.5342 39.8216C22.0341 39.8216 21.5526 39.6213 21.2018 39.2653C20.851 38.9093 20.6607 38.4272 20.6681 37.9303C20.7316 34.9079 21.4295 30.365 24.3815 25.8963C28.0091 20.4003 33.1742 17.8637 36.5965 16.7252L36.5965 16.7178Z" fill="#270A05" />
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="pizza-testimonial-pagination mt-3 mt-lg-5 common-pagination"></div>
</div>
</div>
</div>
</div>
<img class="testimonial-anim-1 d-none d-lg-block position-absolute z-index-minus-one" src="assets/images/testimonial/testimonial-anim-1.svg" alt="">
<img class="testimonial-anim-2 d-none d-lg-block position-absolute z-index-minus-one" src="assets/images/testimonial/testimonial-anim-2.svg" alt="">
</div>
<!-- Testimonial End -->
<!-- Footer -->
<div class="footer-area footer-area-coffee">
<div class="container large-container">
<div class="row justify-content-between copyright-wrap">
<div class="col-lg-2 col-md-6">
<div class="footer-box">
<h2 class="h2 text-white footer-title">Product</h2>
<ul class="footer-list custom-ul">
<li><a href="#">Breakfast</a></li>
<li><a href="#">Lunch</a></li>
<li><a href="#">Desserts</a></li>
<li><a href="#">Dinner</a></li>
<li><a href="#">Book a table</a></li>
<li><a href="#">Our Chefs</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="footer-box">
<h2 class="h2 text-white footer-title">Information</h2>
<ul class="footer-list custom-ul">
<li><a href='faq.html'>FAQ</a></li>
<li><a href='blog-standard.html'>Blog</a></li>
<li><a href='contact-01.html'>Support</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="footer-box">
<h2 class="h2 text-white footer-title">Company</h2>
<ul class="footer-list custom-ul">
<li><a href='about.html'>About us</a></li>
<li><a href='reservation.html'>Our Menu</a></li>
<li><a href='contact-01.html'>Contact us</a></li>
<li><a href='index.html'>Epicurean</a></li>
</ul>
</div>
</div>
</div>
<div class="row align-items-center mt-4">
<div class="col-lg-4 text-center text-lg-start">
<a class='footer-logo ' href='index'>
<img src="assets/images/logo-two.svg" alt=""></a>
</div>
<div class="col-lg-4">
<ul class="footer-menu custom-ul d-flex justify-content-center mt-3 mb-3 mt-lg-0 mb-lg-0">
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Cookies</a></li>
</ul>
</div>
<div class="col-lg-4">
<ul class="custom-ul social-list chefs-social-list d-flex justify-content-center justify-content-lg-end align-items-center">
<li><a href="#"><i class="bx bxl-facebook"></i></a></li>
<li><a href="#"><i class="bx bxl-linkedin"></i></a></li>
<li><a href="#"><i class="bx bxl-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Footer End -->
</div>
<!-- Jquery JS -->
<script src="assets/js/jquery-3.7.1.min.js"></script>
<!-- Bootstrap JS -->
<script src="assets/js/bootstrap.bundle.min.js"></script>
<!-- Swiper Carousel JS -->
<script src="assets/js/swiper-bundle.min.js"></script>
<!-- Magnific Popup JS -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Wow JS -->
<script src="assets/js/wow.min.js"></script>
<!-- Odometer JS -->
<script src="assets/js/odometer.min.js"></script>
<script src="assets/js/viewport.jquery.js"></script>
<!-- Mean menu JS -->
<script src="assets/js/jquery.meanmenu.min.js"></script>
<!-- YouTubePopUp JS -->
<script src="assets/js/YouTubePopUp.js"></script>
<!-- Datepicker JS -->
<script src="assets/js/datepicker.js"></script>
<!-- Select2 JS -->
<script src="assets/js/select2.js"></script>
<!-- Jquery UI JS -->
<script src="assets/js/jquery-ui.min.js"></script>
<!-- Main JS -->
<script src="assets/js/main.js"></script>
</body>
</html>