-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
1891 lines (1845 loc) · 90.6 KB
/
menu.html
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="fa">
<head>
<meta charset="utf-8">
<meta name="keywords" content="کافه, دهکده, دهکده المپیک, کافه کالیا, کافی, کافی شاپ, بوستان جوانمردان ایران, بوستان جوانمردان, پارک جوانمردان, پارک جوانمردان ایران, کافه رستوران, تهران, کافه رستوران تهران, کافه جوانمردان تهران, کافه المپیک, کافه میدان المپیک, کافه دهکده المپیک, کافه منطقه ۲۲ تهران, کافی شاپ منطقه ۲۲, کافه فضای باز تهران, بهترین کافه جوانمردان, بهترین کافی شاپ المپیک, کافه با موسیقی زنده تهران, کافه مناسب قرار عاشقانه, کافه با دسر خانگی تهران, کافه رمانتیک تهران, کافه حوالی میدان المپیک, کافه با نوشیدنی گرم تهران, کافه مخصوص قهوه خورها, کافه دنج در تهران, کافی شاپ با منوی ویژه, کافه برای دوستانهها, کافه صبحانه تهران, کافه نزدیک بام لند, کافه با قهوه حرفهای تهران, کافه برای مطالعه, کافی شاپ با ویو پارک, کافه برای قرار ملاقات, کافی شاپ با اینترنت رایگان, کافه با فضای آرام, کافه در بوستان جوانمردان, کافه دوستانه در تهران, کافه خانوادگی در تهران, کافه با فضای سبز, کافه هنری تهران, کافه با قهوه عالی, کافی شاپ نزدیک میدان المپیک, کافه نزدیک دهکده المپیک, کافه بوستان جوانمردان تهران, کافی شاپ در فضای باز, کافه مدرن تهران, کافه دنج و زیبا تهران, کافه پاتوق تهران, کافه مناسب جلسه کاری, کافه با کیک خانگی, کافه آرام تهران, کافی شاپ لوکس تهران, کافه شیک در تهران, کافه با طراحی خاص, کافه نوستالژی تهران, کافه جذاب تهران, کافه با منوی خلاقانه, کافه در نزدیکی پارک جوانمردان, کافه در منطقه المپیک, کافی شاپ با تراس, کافه با ویو تهران, کافه دنج و آرام, کافه ارگانیک تهران, کافه با صبحانه مفصل, کافه مناسب خانواده, کافه مخصوص قهوه تهران, کافه با منوی بینالمللی, کافه ویژه عاشقانه, کافه معروف تهران, کافه کوچک و دنج, کافه نزدیک مترو, کافه با موسیقی زنده, کافه فرهنگی تهران, کافی شاپ برای تولد, کافه دانشجویی تهران, کافه اقتصادی تهران, کافه دوستانه و آرام, کافی شاپ خیابانی تهران, کافه خیابانی جوانمردان, کافه در حاشیه پارک, کافه خلوت تهران, کافه مناسب قرار دوستانه, کافی شاپ دنج منطقه ۲۲, کافه کنار پارک جوانمردان, کافی شاپ در محوطه باز, کافه مناسب زوجها, کافه در هوای آزاد, کافه فرهنگی هنری, کافی شاپ نزدیک بام تهران, کافه آرام و شیک, کافه دنج برای قرار, کافه مناسب جشن تولد, کافه برای آخر هفته, کافی شاپ صبحانه کامل, کافه شبانه تهران, کافه با انواع دمنوش, کافه با قلیان, کافه قلیان تهران, کافه با قلیان عربی, کافه با قلیان سنتی, کافه با قلیان میوهای, بهترین کافه قلیان تهران, کافه قلیان منطقه ۲۲, کافه با قلیان در فضای باز, کافه با قلیان جوانمردان, کافه با قلیان و چای, کافه قلیان با ویو تهران, کافه با قلیان و قهوه, کافه قلیان لوکس, کافه دنج با قلیان, کافه قلیان المپیک, کافه با منوی قلیان, کافه با قلیان عربی در تهران, کافه با قلیان ارزان, کافه با قلیان شیک, کافه قلیان شبانه, کافه قلیان دوستانه, کافه با قلیان و غذا, کافه با قلیان تهران منطقه ۵, کافه با قلیان نزدیکی میدان المپیک, کافه با قلیان خلوت, کافه قلیان سنتی تهران">
<meta name="description" content="منوی کافه کالیا، کافه رستورانی دنج و دوستداشتنی در دهکده المپیک، بوستان جوانمردان ایران - تهران">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<link rel="canonical" href="https://cafekalya.ir/menu.html">
<meta name="robots" content="index, follow">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="به کافه کالیا خوش اومدید!☕️">
<meta name="twitter:description" content="🍹 دسرهای خوشمزه و نوشیدنیهای تازه 🍂 آرامش تو دل شهر ☕️ بهترین جا برای یه دورهمی دوستانه ">
<meta name="twitter:image" content="https://cafekalya.ir/img/menu@1920×1080.jpeg">
<meta property="og:type" content="website">
<meta property="og:site_name" content="وبسایت کالیا">
<meta property="og:title" content="به کافه کالیا خوش اومدید!☕️">
<meta property="og:description" content="🍹 دسرهای خوشمزه و نوشیدنیهای تازه 🍂 آرامش تو دل شهر ☕️ بهترین جا برای یه دورهمی دوستانه ">
<meta property="og:url" content="https://cafekalya.ir/menu.html">
<meta property="og:image" content="https://cafekalya.ir/img/menu@1920×1080.jpeg">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="./css/animate.min.css">
<link rel="stylesheet" type="text/css" href="./css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="./css/all.min.css">
<link href='https://fonts.googleapis.com/css?family=Noto+Sans+Arabic:100..900,700,40&display=swap&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Noto+Kufi+Arabic:100..900,40&display=swap&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<title>منو - کافه کالیا - دهکده المپیک، بوستان جوانمردان</title>
<script>
function goBack() {
window.history.back();
}
</script>
<!-- Standard favicon for most browsers -->
<link rel="icon" href="/favicons/favicon.png" type="image/x-icon">
<!-- PNG icons for modern browsers -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/16x16.png">
<!-- Apple Touch Icon for iOS devices -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/180x180.png">
<!-- Android Chrome icon -->
<link rel="manifest" href="/favicons/menu.webmanifest">
<!-- Analytics -->
<!-- Analytics END -->
</head>
<body>
<!-- Preloader -->
<div id="page-loading-blocs-notifaction" class="page-preloader"></div>
<!-- Preloader END -->
<!-- Main container -->
<div class="page-container">
<!-- bloc-1 -->
<div class="bloc sticky-nav bgc-4949 d-bloc bloc-bg-texture texture-paper " id="bloc-1">
<div class="container bloc-no-padding">
<div class="row">
<div class="text-left offset-lg-0 align-self-center text-lg-center col-sm-3 col-lg-2 col-5 col-md-3">
<div class="text-center">
<a href="#" class="btn btn-lg btn-back btn-wire" onclick="goBack()"><span class="icon-spacer ion ion-android-arrow-back icon-2941"></span>بازگشت<br></a>
</div>
</div>
<div class="text-left col-sm-9 offset-lg-1 col-lg-9 col-7 col-md-6 offset-md-0">
<h1 class="mb-4 float-lg-none menu-page-title btn-resize-mode h1-style animated puffIn text-lg-left text-sm-left text-left text-md-left" data-appear-anim-style="puffIn" onclick="goBack()">
<strong>کافه کالیا</strong>
<div>
دهکده المپیک
</div>
<div>
بوستان جوانمردان<br>
</div>
</h1>
</div>
</div>
<div class="row no-gutters">
<div class="text-left col-lg-6 col-md-6 col-sm-6 col-4">
<nav class="navbar navbar-light row navbar-expand-md flex-column pt-0 pb-0">
</nav>
</div>
</div>
</div>
</div>
<!-- bloc-1 END -->
<section>
<!-- bloc-1 -->
<div class="bloc b-parallax bloc-bg-texture texture-paper d-bloc" id="bloc-1">
<div class="parallax bg-Nude-20Minimalist-20Beauty-20Feminine-20Makeup-20Artist-20Business-20Card bg-br-edge">
</div>
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-cold-coffee-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
ویژهٔ روز • سهشنبه ۱۵ آبان 🍂
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
</div>
</div>
</div>
<!-- bloc-1 END -->
</section>
<!-- bloc-5 -->
<div class="bloc b-parallax d-bloc" id="bloc-5">
<div class="parallax bg-pattern-transparent bgc-598">
</div>
<div class="container bloc-md-sm bloc-md">
<div class="row voffset">
<div class="col-lg-12 mb-3">
<h3 class="text-center text-lg-center review-discount-head mx-auto d-block animSpeedSlow animLoopInfinite text-md-center animated floating" data-appear-anim-style="floating">
با نشر نظر <strong>واقعیت</strong> دربارهٔ کالیا <strong>۲۰٪</strong> <strong>تخفیف</strong> بگیر 🙂✌🏼
</h3>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://behtarino.com/p/zttawbcduq~%DA%A9%D8%A7%D9%81%D9%87-%DA%A9%D8%A7%D9%84%DB%8C%D8%A7" class="btn btn-lg share-review btn-button-style btn-d behtarino btn-clean animated floating animLoopInfinite animSpeedSlow" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>بهترینو<br></a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://neshan.org/maps/places/86550dd857efa877bd7386ac8180cd4c/تهران+اندیشه+-+جوانمردان+کافه+کالیا" class="btn btn-d btn-lg share-review btn-button-style neshan btn-clean animated floating animSpeedSlow animLoopInfinite" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>نشان<br></a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://balad.ir/p/6D89h2LMOVMEZS?preview=true#15/35.75245/51.27355" class="btn btn-d btn-lg share-review btn-button-style balad btn-clean animSpeedSlow animated floating animLoopInfinite" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>بلد</a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://maps.app.goo.gl/8yhSVTv4xkqqPdYb6" class="btn btn-d btn-lg share-review btn-button-style google-map btn-clean animLoopInfinite animSpeedSlow animated floating" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>گوگل مپ</a>
</div>
</div>
</div>
</div>
<!-- bloc-5 END -->
<section>
<!-- hot-beverages -->
<div class="bloc b-parallax bg-bl-edge bloc-bg-texture texture-paper l-bloc" id="hot-beverages">
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-hot-beverages-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md bloc-md-sm">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
♨️ قهوههای گرم
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
<div class="col-12 col-lg-6 mb-4">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-md-center text-center container-div-0-style">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/cappuccino.webp"><img src="img/lazyload-ph.png" data-src="img/cappuccino.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite img-cappucci-style lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="98" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
کاپوچینو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، شیر کامل، فوم شیر
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/latte.webp"><img src="img/lazyload-ph.png" data-src="img/latte.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
لاته<br>
</h4>
<p class="menu-item-info">
قهوهٔ تازهدم، شیر کامل، فوم شیر<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۰۰
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/mocha-coffee-.webp"><img src="img/lazyload-ph.png" data-src="img/mocha-coffee-.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite img-mocha-coffe-style lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
موکا
</h4>
<p class="menu-item-info p-style">
اسپرسوی تازهدم، شیر، سیروپ و گرانول شکلات
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۰۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/espresso.webp"><img src="img/lazyload-ph.png" data-src="img/espresso.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
اسپرسو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۳۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/double-espresso.webp"><img src="img/lazyload-ph.png" data-src="img/double-espresso.png" class="img-fluid float-lg-none drink-thumb float-none img-espress-style animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 menu-item-title">
دوبل اسپرسو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/turkish-coffee.webp"><img src="img/lazyload-ph.png" data-src="img/turkish-coffee.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
قهوهٔ ترک
</h4>
<p class="menu-item-info">
گرانول قهوه، دمشده در آب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۵۵<br>
</h4>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-center container-div-hot-beverages-style">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/black-cup-of-coffee.webp"><img src="img/lazyload-ph.png" data-src="img/black-cup-of-coffee.png" class="img-fluid float-lg-none drink-thumb float-none img-protected none pr-lg-0 animLoopInfinite animated pulse lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آمریکانو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، آب جوش
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/hot-chocolate.webp"><img src="img/lazyload-ph.png" data-src="img/hot-chocolate.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
هات چاکلت
</h4>
<p class="menu-item-info">
گرانول شکلات، آب جوش
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/cortado.webp"><img src="img/lazyload-ph.png" data-src="img/cortado.png" class="img-fluid float-lg-none drink-thumb float-none animLoopInfinite animated pulse lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
ماکیاتو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، فوم شیر
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/affogato.webp"><img src="img/lazyload-ph.png" data-src="img/affogato.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آفوگاتو
</h4>
<p class="menu-item-info">
اسپرسو دوبل، یک اسکوپ بستنی وانیلی، عصارهٔ وانیل
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-center pr-lg-0">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/cortado-2.webp"><img src="img/lazyload-ph.png" data-src="img/cortado-2.png" class="img-fluid float-lg-none drink-thumb float-none animated pulse animLoopInfinite lazyload" alt="drink thumb" data-appear-anim-style="pulse" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
کارامل ماکیاتو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، فوم شیر، سیروپ کارامل
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۵
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- hot-beverages END -->
</section>
<section>
<!-- cold-coffee -->
<div class="bloc bg-tl-edge b-parallax bloc-bg-texture texture-paper l-bloc" id="cold-coffee">
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-cold-coffee-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
🧊 قهوههای سرد
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
<div class="col-12 col-lg-6 mb-4">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/iced-caramel-macchiato-.webp"><img src="img/lazyload-ph.png" data-src="img/iced-caramel-macchiato-.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animLoopInfinite animSpeedLazy lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
فراپاچینو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، شیر شیک شده، سیروپ کارامل، خامهٔ زدهشده
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۳۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/iced-americano.webp"><img src="img/lazyload-ph.png" data-src="img/iced-americano.png" class="img-fluid float-lg-none drink-thumb float-none animLoopInfinite animSpeedLazy animated floating lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آیس آمریکانو
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، آب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۵
</h4>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/ice-latte.webp"><img src="img/lazyload-ph.png" data-src="img/ice-latte.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animLoopInfinite animSpeedLazy lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آیس لاته
</h4>
<p class="menu-item-info">
قهوهٔ تازهدم، شیر کامل، شیر شیک شده<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/mocha.webp"><img src="img/lazyload-ph.png" data-src="img/mocha.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animLoopInfinite animSpeedLazy lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آیس موکا
</h4>
<p class="menu-item-info">
اسپرسوی تازهدم، شیر شیک شده، سیروپ و گرانول شکلات
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۰۵
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- cold-coffee END -->
</section>
<section>
<!-- juice-cocktail -->
<div class="bloc b-parallax bloc-bg-texture texture-paper l-bloc" id="juice-cocktail">
<div class="parallax bg-anar bgc-5967">
</div>
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-juice-cocktail-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
🧉 آبمیوه و کوکتل
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
<div class="col-12 col-lg-6 mb-4">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/pomegranate-juice.webp"><img src="img/lazyload-ph.png" data-src="img/pomegranate-juice.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 float-md-none lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آب انار
</h4>
<p class="menu-item-info">
آب انار ۱۰۰٪ طبیعی
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۸۰
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/carrot-ice-cream.webp"><img src="img/lazyload-ph.png" data-src="img/carrot-ice-cream.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
هویج بستنی
</h4>
<p class="menu-item-info">
آب هویج، یک اسکوپ بستنی زعفرانی سنتی
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۵
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/apple-juice.webp"><img src="img/lazyload-ph.png" data-src="img/apple-juice.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آب سیب<br>
</h4>
<p class="menu-item-info">
آب ۱۰۰٪ طبیعی سیب<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۸۰
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/banana-with-milk.webp"><img src="img/lazyload-ph.png" data-src="img/banana-with-milk.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیرموز
</h4>
<p class="menu-item-info p-style">
شیر تازهٔ پرچرب، موز، شکر
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/lemonade.webp"><img src="img/lazyload-ph.png" data-src="img/lemonade.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
لیموناد
</h4>
<p class="menu-item-info">
سودا، آب لیموی تازه، شکر، یخ کراش
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/mojito-.webp"><img src="img/lazyload-ph.png" data-src="img/mojito-.png" class="img-fluid float-lg-none drink-thumb float-none animLoopInfinite animated shake animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
موهیتو
</h4>
<p class="menu-item-info">
آب، آب لیموی تازه، برگهای نعنا، سیروپ نعنا، شکر، یخ کراش<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۸۵
</h4>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/red-drink.webp"><img src="img/lazyload-ph.png" data-src="img/red-drink.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
مخصوص کالیا<br>
</h4>
<p class="menu-item-info">
ترکیب آب میوههای قرمز پاییزی
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۰۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/celery-juice.webp"><img src="img/lazyload-ph.png" data-src="img/celery-juice.png" class="img-fluid drink-thumb animated shake animLoopInfinite animSpeed10 float-lg-none lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آب کرفس<br>
</h4>
<p class="menu-item-info">
آب ۱۰۰٪ طبیعی کرفس
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/apple-celery.webp"><img src="img/lazyload-ph.png" data-src="img/apple-celery.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
سیب-کرفس
</h4>
<p class="menu-item-info">
آب ۱۰۰٪ طبیعی سیب و کرفس<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۶۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/orange-juice.webp"><img src="img/lazyload-ph.png" data-src="img/orange-juice.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
آب پرتقال
</h4>
<p class="menu-item-info">
آب ۱۰۰٪ طبیعی پرتقال<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۲۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/fizzy-mojito.webp"><img src="img/lazyload-ph.png" data-src="img/fizzy-mojito.png" class="img-fluid float-lg-none drink-thumb float-none animated shake animLoopInfinite animSpeed10 lazyload" alt="drink thumb" data-appear-anim-style="shake" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
فیزی موهیتو
</h4>
<p class="menu-item-info">
سودا، آب لیموی تازه، برگهای نعنا، سیروپ نعنا، شکر، یخ کراش<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- juice-cocktail END -->
</section>
<!-- bloc-6 -->
<div class="bloc b-parallax d-bloc" id="bloc-6">
<div class="parallax bg-pattern-transparent bgc-3399">
</div>
<div class="container bloc-md-sm bloc-md">
<div class="row voffset">
<div class="col-lg-12 mb-3">
<h3 class="text-center text-lg-center review-discount-head mx-auto d-block animSpeedSlow animLoopInfinite text-md-center animated floating" data-appear-anim-style="floating">
با نشر نظر <strong>واقعیت</strong> دربارهٔ کالیا <strong>۲۰٪</strong> <strong>تخفیف</strong> بگیر 🙂✌🏼
</h3>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://behtarino.com/p/zttawbcduq~%DA%A9%D8%A7%D9%81%D9%87-%DA%A9%D8%A7%D9%84%DB%8C%D8%A7" class="btn btn-lg share-review btn-button-style btn-d behtarino btn-clean animated floating animLoopInfinite animSpeedSlow" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>بهترینو<br></a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://neshan.org/maps/places/86550dd857efa877bd7386ac8180cd4c/تهران+اندیشه+-+جوانمردان+کافه+کالیا" class="btn btn-d btn-lg share-review btn-button-style neshan btn-clean animated floating animSpeedSlow animLoopInfinite" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>نشان<br></a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://balad.ir/p/6D89h2LMOVMEZS?preview=true#15/35.75245/51.27355" class="btn btn-d btn-lg share-review btn-button-style balad btn-clean animSpeedSlow animated floating animLoopInfinite" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>بلد</a>
</div>
<div class="col-lg-3 mb-3 col-sm-6 col-6 col-md-3">
<a href="https://maps.app.goo.gl/8yhSVTv4xkqqPdYb6" class="btn btn-d btn-lg share-review btn-button-style google-map btn-clean animLoopInfinite animSpeedSlow animated floating" data-appear-anim-style="floating" target="_blank"><span class="icon-spacer fa fa-external-link-alt"></span>گوگل مپ</a>
</div>
</div>
</div>
</div>
<!-- bloc-6 END -->
<section>
<!-- bloc-6 -->
<div class="bloc bg-b-edge l-bloc bloc-bg-texture texture-paper" id="bloc-6">
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-bloc-6-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
🥛 میلکشیک
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
<div class="col-12 col-lg-6 mb-4">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/vanila-shake.webp"><img src="img/lazyload-ph.png" data-src="img/vanila-shake.png" class="img-fluid float-lg-none drink-thumb float-none animLoopInfinite animated wobble animSpeedSlow lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div class="text-left">
<h4 class="tc-7376 cap-heading menu-item-title">
شیک وانیل
</h4>
<p class="menu-item-info">
بستنی وانیلی، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/peanut-shake.webp"><img src="img/lazyload-ph.png" data-src="img/peanut-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک بادوم زمینی<br>
</h4>
<p class="menu-item-info">
کرهٔ بادام زمینی، بستنی وانیلی، شیر پرچرب<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۲۰<br>
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/strawberry-shake.webp"><img src="img/lazyload-ph.png" data-src="img/strawberry-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک توت فرنگی<br>
</h4>
<p class="menu-item-info p-style">
بستنی توت فرنگی، شیر پرچرب<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/banana-milkshake.webp"><img src="img/lazyload-ph.png" data-src="img/banana-milkshake.png" class="img-fluid float-lg-none drink-thumb float-none animLoopInfinite animSpeedSlow animated wobble float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک موز
</h4>
<p class="menu-item-info">
بستنی موز، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/shake.webp"><img src="img/lazyload-ph.png" data-src="img/shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک انبه
</h4>
<p class="menu-item-info">
بستنی انبه، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۵
</h4>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/bounty-shake.webp"><img src="img/lazyload-ph.png" data-src="img/bounty-shake.png" class="img-fluid drink-thumb animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک بونتی<br>
</h4>
<p class="menu-item-info">
کرهٔ نارگیل، بستنی شکلاتی، شیر پرچرب<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/nutella-shake.webp"><img src="img/lazyload-ph.png" data-src="img/nutella-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک نوتلا<br>
</h4>
<p class="menu-item-info">
اسپرد نوتلا، بستنی وانیلی، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/hobby-shake.webp"><img src="img/lazyload-ph.png" data-src="img/hobby-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک هابی
</h4>
<p class="menu-item-info">
کرهٔ فندق، کراش فندق، بستنی شکلاتی، شیر کامل
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/snickers-shake.webp"><img src="img/lazyload-ph.png" data-src="img/snickers-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک اسنیکرز
</h4>
<p class="menu-item-info">
بستنی بادوم زمینی، بستنی شکلاتی، کرهٔ بادوم زمینی، سیروپ کارامل
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/bloody-milkshake.webp"><img src="img/lazyload-ph.png" data-src="img/bloody-milkshake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک شاتوت
</h4>
<p class="menu-item-info">
بستنی شاتوت، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۹۰
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/coconut-shake.webp"><img src="img/lazyload-ph.png" data-src="img/coconut-shake.png" class="img-fluid float-lg-none drink-thumb float-none animated wobble animSpeedSlow animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="wobble" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
شیک نارگیل
</h4>
<p class="menu-item-info">
بستنی نارگیلی، شیر پرچرب
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۱۲۰
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-6 END -->
</section>
<section>
<!-- bloc-5 -->
<div class="bloc b-parallax d-bloc bloc-bg-texture texture-paper" id="bloc-5">
<div class="parallax bg-barg-2 bg-tl-edge">
</div>
<div class="bloc-bg-mask">
<svg class="svg-mask bloc-bloc-5-fill" viewBox="0 0 500 500" preserveAspectRatio="xMidYMid slice"><path d="m0 0h500v500h-500z"></path></svg>
</div>
<div class="container bloc-md bloc-lg-md">
<div class="row">
<div class="col-sm-10 offset-sm-1 col-md-8 offset-md-2 col-lg-6 offset-lg-3 text-md-left text-center">
<h2 class="mb-4 tc-7376 cap-heading text-center h2-style">
🫖 چای و دمنوش
</h2>
<div class="divider-h mx-auto primary-divider">
</div>
</div>
<div class="col-12 col-lg-6 mb-4">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/bordeaux-red-tea.webp"><img src="img/lazyload-ph.png" data-src="img/bordeaux-red-tea.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animSpeed10 animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
دمنوش انرژیبخش
</h4>
<p class="menu-item-info">
ترکیب ۸ نوع گیاه انرژیبخش
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۴۵
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/lavender-tea.webp"><img src="img/lazyload-ph.png" data-src="img/lavender-tea.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animSpeed10 animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
دمنوش گلگاوزبان<br>
</h4>
<p class="menu-item-info">
گلگاوزبان دم شده
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۵۵
</h4>
</div>
<div class="text-lg-center text-md-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/herbal-tea.webp"><img src="img/lazyload-ph.png" data-src="img/herbal-tea.png" class="img-fluid float-lg-none drink-thumb float-none animSpeed10 animLoopInfinite animated floating float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
دمنوش بهلیمو<br>
</h4>
<p class="menu-item-info p-style">
بهلیموی دم شده<br>
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/relaxing-tea.webp"><img src="img/lazyload-ph.png" data-src="img/relaxing-tea.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animSpeed10 animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
دمنوش آرامبخش
</h4>
<p class="menu-item-info">
ترکیب ۵ نوع گیاه آرامبخش
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۴۵
</h4>
</div>
<div class="text-lg-center text-center">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/thyme-tea.webp"><img src="img/lazyload-ph.png" data-src="img/thyme-tea.png" class="img-fluid float-lg-none drink-thumb float-none animated floating animSpeed10 animLoopInfinite float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
دمنوش آویشن
</h4>
<p class="menu-item-info">
آویشن دمشده
</p>
</div>
<div>
<h4 class="tc-7376 menu-price">
۳۵
</h4>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="blocs-grid-container menu-grid">
<div class="text-lg-center text-center ">
<picture><source type="image/webp" srcset="img/lazyload-ph.png" data-srcset="img/green-tea.webp"><img src="img/lazyload-ph.png" data-src="img/green-tea.png" class="img-fluid drink-thumb animSpeed10 animLoopInfinite animated floating img-green-t-style float-md-none lazyload" alt="drink thumb" data-appear-anim-style="floating" width="100" height="100"></picture>
</div>
<div>
<h4 class="tc-7376 cap-heading menu-item-title">
چای سبز
</h4>
<p class="menu-item-info">
چای سبز دم شده