-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1212 lines (1140 loc) · 104 KB
/
index.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>
<head>
<base href="/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>PodHub | Vape shop - вейпи, PODіки, картриджі, рідини та більше</title>
<meta itemprop="name" content="PodHub | Vape shop - вейпи, PODіки, картриджі, рідини та більше" />
<meta name="twitter:title" content="PodHub | Vape shop - вейпи, PODіки, картриджі, рідини та більше" />
<meta property="og:title" content="PodHub | Vape shop - вейпи, PODіки, картриджі, рідини та більше" />
<meta name="description" content="Ласкаво просимо до PodHub, вашого надійного магазину для всіх потреб у вейпах та одноразках. Ми пропонуємо широкий вибір вейпів, одноразок, pods, картриджів та жижок найвищої якості. У PodHub ви знайдете все необхідне для задоволення ваших вейпінгових потреб. Ми гарантуємо якість, доступні ціни та швидку доставку по всій Україні Новою поштою. Адреса: м. Вінниця, вул. Немирівське шосе 94Е (ЖК Сімейний Комфорт, біля маг. Калина). Графік роботи: з 9:00 до 21:00. Підпишіться на наші новини, щоб першими дізнаватися про нові надходження та акційні пропозиції. Завітайте до PodHub - вашого надійного партнера у світі вейпінгу!" />
<meta itemprop="description" content="Ласкаво просимо до PodHub, вашого надійного магазину для всіх потреб у вейпах та одноразках. Ми пропонуємо широкий вибір вейпів, одноразок, pods, картриджів та жижок найвищої якості. У PodHub ви знайдете все необхідне для задоволення ваших вейпінгових потреб. Ми гарантуємо якість, доступні ціни та швидку доставку по всій Україні Новою поштою. Адреса: м. Вінниця, вул. Немирівське шосе 94Е (ЖК Сімейний Комфорт, біля маг. Калина). Графік роботи: з 9:00 до 21:00. Підпишіться на наші новини, щоб першими дізнаватися про нові надходження та акційні пропозиції. Завітайте до PodHub - вашого надійного партнера у світі вейпінгу!" />
<meta name="twitter:description" content="Ласкаво просимо до PodHub, вашого надійного магазину для всіх потреб у вейпах та одноразках. Ми пропонуємо широкий вибір вейпів, одноразок, pods, картриджів та жижок найвищої якості. У PodHub ви знайдете все необхідне для задоволення ваших вейпінгових потреб. Ми гарантуємо якість, доступні ціни та швидку доставку по всій Україні Новою поштою. Адреса: м. Вінниця, вул. Немирівське шосе 94Е (ЖК Сімейний Комфорт, біля маг. Калина). Графік роботи: з 9:00 до 21:00. Підпишіться на наші новини, щоб першими дізнаватися про нові надходження та акційні пропозиції. Завітайте до PodHub - вашого надійного партнера у світі вейпінгу!" />
<meta property="og:description" content="Ласкаво просимо до PodHub, вашого надійного магазину для всіх потреб у вейпах та одноразках. Ми пропонуємо широкий вибір вейпів, одноразок, pods, картриджів та жижок найвищої якості. У PodHub ви знайдете все необхідне для задоволення ваших вейпінгових потреб. Ми гарантуємо якість, доступні ціни та швидку доставку по всій Україні Новою поштою. Адреса: м. Вінниця, вул. Немирівське шосе 94Е (ЖК Сімейний Комфорт, біля маг. Калина). Графік роботи: з 9:00 до 21:00. Підпишіться на наші новини, щоб першими дізнаватися про нові надходження та акційні пропозиції. Завітайте до PodHub - вашого надійного партнера у світі вейпінгу!" />
<meta itemprop="image" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta name="twitter:image:src" content="https://podhubvape.shop/img/bull.image.jpg" />
<meta property="og:image" content="https://podhubvape.shop/img/bull.image.jpg" />
<link rel="icon" type="image/x-icon" href="img/favicon.jpg" />
<meta name="keywords" content="waw, web art work, server render, template" />
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800&display=swap"
rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Amatic+SC:400,700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/aos.css" />
<link rel="stylesheet" href="css/ionicons.min.css" />
<link rel="stylesheet" href="css/bootstrap-datepicker.css" />
<link rel="stylesheet" href="css/jquery.timepicker.css" />
<link rel="stylesheet" href="css/flaticon.css" />
<link rel="stylesheet" href="css/icomoon.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/index.css" />
<style>
:root {
--primary_color: {
{
{
variables.primary_color || "#e0dc10"
}
}
}
;
}
.social-links {
display: flex;
align-items: center;
}
.social-links__wrap a svg {
width: 32px;
height: 32px;
}
.social-links__wrap a .instagram {
width: 30px;
height: 30px;
}
.social-links__wrap a .telegram {
width: 28px;
height: 28px;
}
.social-links__wrap {
margin-right: 30px;
}
.social-links__wrap a {
margin-left: 15px;
}
.nav-link__cart {
padding: 0 !important;
display: flex !important;
align-items: center;
}
.icon-shopping_cart {
font-size: 29px;
}
@media screen and (max-width: 479px) {
.social-links__wrap a svg {
width: 22px;
height: 22px;
}
.social-links__wrap a .instagram {
width: 24px;
height: 24px;
}
.social-links__wrap a .telegram {
width: 22px;
height: 22px;
}
.social-links__wrap a {
margin-left: 10px;
}
.social-links__wrap {
margin-right: 20px;
}
.icon-shopping_cart {
font-size: 20px;
}
}
</style>
</head>
<body class="goto-here">
<!--
<div class="py-1 bg-primary">
<div class="container">
</div>
</div>
-->
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="/">Podhub</a>
<div class="burger-wrap">
<div class="burger"></div>
</div>
<div class="header__navigation">
<a href="/">Головна</a>
<a href="/shop">Товари</a>
</div>
<div class="social-links">
<div class="social-links__wrap">
<a href="https://t.me/Pod_Hub_Vape_Shop">
<svg class="telegram" data-name="Layer 1" id="Layer_1" viewBox="0 0 508.33 508.36"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-1 {
fill: #2ca3db;
fill-rule: evenodd;
}
.cls-2 {
fill: #fff;
}
</style>
</defs>
<path class="cls-1"
d="M485,29.72c11.45,15.13,16.61,40.21,19.15,70.7,3.36,45.5,4.71,100.1,6,156.52-1.67,57.47-2.35,115.43-6,156.52-2.88,31.54-9,52.66-19.22,65.47-13,12.79-37.94,23.59-73.5,26.15-43.25,3.69-96.61,3.65-155.48,5.1-65.44-1.12-109.82-.64-156.38-5.08-36.32-2.52-60.08-13.19-74.7-26.07-10.83-14.54-14-30-17-66.24-3.75-41.85-4.58-98.56-6-155.54C4,200.57,4.13,143.44,7.9,100.74,10.43,67.05,14.42,44.4,24.65,30,39,17.77,63.48,11.69,100,8.69c50-5.85,102.06-7,155.88-6.87,55.39.09,108.56,1.67,156,6.34,32,2.56,58.48,8.07,73.07,21.56Z"
transform="translate(-1.83 -1.82)"></path>
<path class="cls-2"
d="M378.92,125.44l-264.48,102c-18.05,7.24-17.94,17.31-3.29,21.8l66,20.59,25.24,77.38c3.07,8.47,1.56,11.83,10.45,11.83,6.86,0,9.91-3.13,13.73-6.86,2.43-2.38,16.86-16.41,33-32.08l68.61,50.7c12.63,7,21.74,3.36,24.89-11.73l45-212.24C402.66,128.35,391,120,378.92,125.44ZM187.46,265.11l148.68-93.8c7.42-4.5,14.23-2.08,8.64,2.88L217.48,289.05l-5,52.87Z"
id="path9" transform="translate(-1.83 -1.82)"></path>
</svg>
</a>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx">
<svg class="instagram" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style>
.cls-3 {
fill: url(#Nepojmenovaný_přechod_27);
}
.cls-4 {
fill: #fff;
}
</style>
<linearGradient gradientUnits="userSpaceOnUse" id="Nepojmenovaný_přechod_27" x1="328.27"
x2="183.73" y1="508.05" y2="3.95">
<stop offset="0" stop-color="#ffdb73"></stop>
<stop offset="0.08" stop-color="#fdad4e"></stop>
<stop offset="0.15" stop-color="#fb832e"></stop>
<stop offset="0.19" stop-color="#fa7321"></stop>
<stop offset="0.23" stop-color="#f6692f"></stop>
<stop offset="0.37" stop-color="#e84a5a"></stop>
<stop offset="0.48" stop-color="#e03675"></stop>
<stop offset="0.55" stop-color="#dd2f7f"></stop>
<stop offset="0.68" stop-color="#b43d97"></stop>
<stop offset="0.97" stop-color="#4d60d4"></stop>
<stop offset="1" stop-color="#4264db"></stop>
</linearGradient>
</defs>
<rect class="cls-3" height="465.06" rx="107.23" ry="107.23" width="465.06" x="23.47"
y="23.47"></rect>
<path class="cls-4"
d="M331,115.22a66.92,66.92,0,0,1,66.65,66.65V330.13A66.92,66.92,0,0,1,331,396.78H181a66.92,66.92,0,0,1-66.65-66.65V181.87A66.92,66.92,0,0,1,181,115.22H331m0-31H181c-53.71,0-97.66,44-97.66,97.66V330.13c0,53.71,44,97.66,97.66,97.66H331c53.71,0,97.66-44,97.66-97.66V181.87c0-53.71-43.95-97.66-97.66-97.66Z">
</path>
<path class="cls-4"
d="M256,198.13A57.87,57.87,0,1,1,198.13,256,57.94,57.94,0,0,1,256,198.13m0-31A88.87,88.87,0,1,0,344.87,256,88.87,88.87,0,0,0,256,167.13Z">
</path>
<circle class="cls-4" cx="346.81" cy="163.23" r="21.07"></circle>
</svg>
</a>
<a href="https://www.tiktok.com/@pod.hub.shop">
<svg id="Apple" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-6 {
fill: #000000;
}
.cls-7 {
fill: #fff;
}
.cls-8 {
fill: #ff004f;
}
</style>
</defs>
<rect height="427.97" rx="71.15" width="427.97" x="42.01" y="42.95" class="cls-6"></rect>
<path class="cls-6"
d="M389.39,221.92V164.85c-74.6-3.15-77-70.94-77-77.31v-.48H254.73V309.33h0a45.66,45.66,0,1,1-32.36-43.71V206.76a104.57,104.57,0,0,0-13.32-.85A103.42,103.42,0,1,0,312.47,309.33c0-1.45,0-2.89-.1-4.32V195.56C338.92,219.85,389.39,221.92,389.39,221.92Z">
</path>
<path class="cls-7"
d="M406.37,236V178.9c-74.61-3.15-77-70.94-77-77.31v-.48H271.71V323.38h0a45.66,45.66,0,1,1-32.36-43.7V220.81A104.57,104.57,0,0,0,226,220,103.42,103.42,0,1,0,329.45,323.38c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M313.82,101.11c2.78,15.14,10.9,38.81,34.57,52.66-18.09-21.07-19-48.26-19-52.18v-.48Z">
</path>
<path class="cls-8"
d="M406.37,236V178.9a106.46,106.46,0,0,1-17-2v44.95s-50.47-2.07-77-26.36V304.91c.06,1.43.1,2.87.1,4.32a103.43,103.43,0,0,1-160.72,86.1,103.41,103.41,0,0,0,177.7-71.95c0-1.45,0-2.89-.1-4.32V209.61C355.9,233.9,406.37,236,406.37,236Z">
</path>
<path class="cls-8"
d="M222.37,265.53a45.69,45.69,0,0,0-33.19,84.85,45.69,45.69,0,0,1,50.17-70.7V220.81A104.57,104.57,0,0,0,226,220c-1.23,0-2.44,0-3.66.07Z">
</path>
</svg>
</a>
<a href="https://www.youtube.com/@PODHUBVapeShop">
<svg enable-background="new 0 0 32 32" id="Layer_1" version="1.0" viewBox="0 0 32 32"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path
d="M31.67,9.179c0,0-0.312-2.353-1.271-3.389c-1.217-1.358-2.58-1.366-3.205-1.443C22.717,4,16.002,4,16.002,4 h-0.015c0,0-6.715,0-11.191,0.347C4.171,4.424,2.809,4.432,1.591,5.79C0.633,6.826,0.32,9.179,0.32,9.179S0,11.94,0,14.701v2.588 c0,2.763,0.32,5.523,0.32,5.523s0.312,2.352,1.271,3.386c1.218,1.358,2.815,1.317,3.527,1.459C7.677,27.919,15.995,28,15.995,28 s6.722-0.012,11.199-0.355c0.625-0.08,1.988-0.088,3.205-1.446c0.958-1.034,1.271-3.386,1.271-3.386s0.32-2.761,0.32-5.523v-2.588 C31.99,11.94,31.67,9.179,31.67,9.179z"
fill="#E02F2F"></path>
<polygon fill="#FFFFFF" points="12,10 12,22 22,16 "></polygon>
</g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
<g></g>
</svg>
</a>
<a href="tel:+380930935126">
<svg viewBox="0 0 24 24" fill="#82ae46" xmlns="http://www.w3.org/2000/svg">
<path d="M20 10.999h2C22 5.869 18.127 2 12.99 2v2C17.052 4 20 6.943 20 10.999z" />
<path
d="M13 8c2.103 0 3 .897 3 3h2c0-3.225-1.775-5-5-5v2zm3.422 5.443a1.001 1.001 0 0 0-1.391.043l-2.393 2.461c-.576-.11-1.734-.471-2.926-1.66-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 0 0 .043-1.391L6.859 3.513a1 1 0 0 0-1.391-.087l-2.17 1.861a1 1 0 0 0-.29.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.323 21 17.705 21c.202 0 .326-.006.359-.008a.992.992 0 0 0 .648-.291l1.86-2.171a1 1 0 0 0-.086-1.391l-4.064-3.696z" />
</svg>
</a>
</div>
<div class="ml-auto ml-auto--desktop">
<a href="/checkout" class="nav-link__cart nav-link cta cta-colored"><span
class="icon-shopping_cart"></span> <span id="cartCounter">0</span></a>
</div>
</div>
</div>
</nav>
<!-- END nav -->
<section id="home-section" class="hero d-flex justify-content-center align-items-center">
<div class="overlay"></div>
<div class="hero-content container">
<h1 class="mb-2 text-white" id="hero-title">POD системи, комплектуючі, рідини, та щомісячні розіграші
серед клієнтів.</h1>
<h2 class="subheading mb-4 text-white" id="hero-text">Оффлайн магазини з можливістю доставки по місту та
доставка по Україні.</h2>
</div>
</section>
<script>
let view = true;
function insertImage() {
const heroText = document.getElementById("hero-text");
const img = document.createElement("img");
img.src = "img/beef.svg";
img.alt = "";
img.style.width = "300px";
img.style.marginBottom = "10px";
heroText.prepend(img); // Вставляємо зображення на початку
}
function changeView() {
const heroSection = document.getElementById("home-section");
const heroTitle = document.getElementById("hero-title");
const heroText = document.getElementById("hero-text");
// Оновлюємо фонові зображення залежно від ширини екрану
if (window.innerWidth > 768) {
heroSection.style.backgroundImage = "url('img/bg.jpg')";
heroText.innerHTML = ""; // Очищаємо текст
insertImage(); // Додаємо зображення
heroTitle.textContent = "POD системи, комплектуючі, рідини, та щомісячні розіграші серед клієнтів.";
} else {
heroSection.style.backgroundImage = "url('img/mobile.png')";
heroText.innerHTML = ""; // Очищаємо текст
insertImage(); // Додаємо зображення
heroTitle.textContent = "POD системи, комплектуючі, рідини, та щомісячні розіграші серед клієнтів.";
}
}
setInterval(changeView, 5000); // Change view every 5 seconds
// Initial view setup
changeView();
window.addEventListener("resize", changeView); // Recalculate on resize
</script>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center mb-3 pb-3">
<div class="col-md-12 heading-section text-center ftco-animate">
<span class="subheading">Товари</span>
<h2 class="mb-4">Хіти продажу</h2>
</div>
</div>
</div>
<!-- <div class="container">
<div class="row">
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"></a>
<img class="img-fluid" src="products/product1.jpg" alt="Colorlib Template" />
<span class="status">30%</span>
<div class="overlay"></div>
<div class="text py-3 pb-4 px-3 text-center">
<h3>Картриджі XROS series 2ML 0.6|0.8|1.0|1.2 ohm (Vaporesso)</h3>
<div class="d-flex">
<div class="pricing">
<p class="price">
<span class="price-sale">150 грн</span>
</p>
</div>
</div>
<div class="web-cart">
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex addProductButton" product="{"id":1,"name":"Картриджі XROS series 2ML 0.6|0.8|1.0|1.2 ohm (Vaporesso)","price":150,"thumb":"products/product1.jpg"}">
<a href="/checkout"
class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="mobile-cart">
<div class="m-auto d-flex addProductButton" product="{"id":1,"name":"Картриджі XROS series 2ML 0.6|0.8|1.0|1.2 ohm (Vaporesso)","price":150,"thumb":"products/product1.jpg"}">
<a href="/checkout" class="buy-now d-flex justify-content-center align-items-center">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"></a>
<img class="img-fluid" src="products/product2.jpg" alt="Colorlib Template" />
<span class="status">30%</span>
<div class="overlay"></div>
<div class="text py-3 pb-4 px-3 text-center">
<h3>Vaporesso XROS MINI POD KIT</h3>
<div class="d-flex">
<div class="pricing">
<p class="price">
<span class="price-sale">700 грн</span>
</p>
</div>
</div>
<div class="web-cart">
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex addProductButton" product="{"id":2,"name":"Vaporesso XROS MINI POD KIT","price":700,"thumb":"products/product2.jpg"}">
<a href="/checkout"
class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="mobile-cart">
<div class="m-auto d-flex addProductButton" product="{"id":2,"name":"Vaporesso XROS MINI POD KIT","price":700,"thumb":"products/product2.jpg"}">
<a href="/checkout" class="buy-now d-flex justify-content-center align-items-center">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"></a>
<img class="img-fluid" src="products/product3.jpg" alt="Colorlib Template" />
<span class="status">30%</span>
<div class="overlay"></div>
<div class="text py-3 pb-4 px-3 text-center">
<h3>VAPORESSO XROS 4 MINI POD KIT</h3>
<div class="d-flex">
<div class="pricing">
<p class="price">
<span class="price-sale">850 грн</span>
</p>
</div>
</div>
<div class="web-cart">
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex addProductButton" product="{"id":3,"name":"VAPORESSO XROS 4 MINI POD KIT","price":850,"thumb":"products/product3.jpg"}">
<a href="/checkout"
class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="mobile-cart">
<div class="m-auto d-flex addProductButton" product="{"id":3,"name":"VAPORESSO XROS 4 MINI POD KIT","price":850,"thumb":"products/product3.jpg"}">
<a href="/checkout" class="buy-now d-flex justify-content-center align-items-center">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 ftco-animate">
<div class="product">
<a href="#" class="img-prod"></a>
<img class="img-fluid" src="products/product4.jpg" alt="Colorlib Template" />
<span class="status">30%</span>
<div class="overlay"></div>
<div class="text py-3 pb-4 px-3 text-center">
<h3>VAPORESSO XROS 4 POD KIT</h3>
<div class="d-flex">
<div class="pricing">
<p class="price">
<span class="price-sale">1250 грн</span>
</p>
</div>
</div>
<div class="web-cart">
<div class="bottom-area d-flex px-3">
<div class="m-auto d-flex addProductButton" product="{"id":4,"name":"VAPORESSO XROS 4 POD KIT","price":1250,"thumb":"products/product4.jpg"}">
<a href="/checkout"
class="buy-now d-flex justify-content-center align-items-center mx-1">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
<div class="mobile-cart">
<div class="m-auto d-flex addProductButton" product="{"id":4,"name":"VAPORESSO XROS 4 POD KIT","price":1250,"thumb":"products/product4.jpg"}">
<a href="/checkout" class="buy-now d-flex justify-content-center align-items-center">
<span><i class="ion-ios-cart"></i></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>-->
<div class="container">
<div class="row" id="products">
</div>
</div>
</section>
<script type="module">
function loadOrder() {
let order = localStorage.getItem("order");
if (order) {
document.getElementById("cartCounter").innerHTML = (
JSON.parse(order).products || []
).length.toString();
return JSON.parse(order);
} else {
// If no order exists, initialize an empty order
return { products: [] };
}
}
// Function to save order info to local storage
function saveOrder(order) {
document.getElementById("cartCounter").innerHTML =
order.products.length.toString();
localStorage.setItem("order", JSON.stringify(order));
}
document.addEventListener("DOMContentLoaded", function () {
const order = loadOrder();
let buttons = document.querySelectorAll(".addProductButton");
const clicked = (button) => {
return () => {
const product = JSON.parse(button.getAttribute("product"));
const getProduct = order.products.find(
(p) => p.id === product.id
);
if (getProduct) {
getProduct.quantity++;
} else {
order.products.push({ ...product, quantity: 1 });
}
console.log(order);
saveOrder(order);
};
};
buttons.forEach(function (button) {
button.addEventListener("click", clicked(button));
});
});
</script>
<hr />
<section class="about-us">
<div class="container">
<div class="row justify-content-center mb-3 pb-3">
<div class="col-md-12 heading-section text-center ftco-animate">
<h2 class="mb-4">Про нас</h2>
</div>
</div>
<div class="about-us-wrap">
<div class="about-us-text">
<div class="about-us-text__description">
<span class="pod">PODHUB</span> – це більше, ніж просто магазин для вейперів. <span>Ми пропонуємо широкий асортимент под-систем,
рідин та аксесуарів,</span> гарантуючи високу якість продукції та обслуговування. Наші клієнти завжди
можуть розраховувати на індивідуальний підхід та професійну підтримку.
</div>
<div class="about-us-text__description">
Завдяки <span>швидкій доставці по місту та Україні</span>, регулярним розіграшам подарунків для постійних
клієнтів та кваліфікованим консультаціям, PODHUB стає вашим надійним партнером у світі вейпінгу.
</div>
<div class="about-us-trigers">
<div class="about-us-trigers__item">
<div class="about-us-trigers__wrap">
<div class="about-us-trigers__img">
<svg width="36" height="36" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_34_141)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M10.62 14.58L8.1 17.1L16.2 25.2L34.2 7.2L31.68 4.68L16.2 20.16L10.62 14.58ZM32.4 18C32.4 25.92 25.92 32.4 18 32.4C10.08 32.4 3.6 25.92 3.6 18C3.6 10.08 10.08 3.6 18 3.6C19.44 3.6 20.7 3.78 21.96 4.14L24.84 1.26C22.68 0.54 20.34 0 18 0C8.1 0 0 8.1 0 18C0 27.9 8.1 36 18 36C27.9 36 36 27.9 36 18H32.4Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_34_141">
<rect width="36" height="36" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="about-us-trigers__title">
Гарантійне обслуговування
</div>
<div class="about-us-trigers__description">
Ми забезпечуємо гарантійний ремонт под-систем протягом 10-14 днів, обмін або повернення
товару при наявності чека та заводського пакування. Картриджі, випаровувачі та рідини
підлягають поверненню лише у нерозпакованому вигляді.
</div>
</div>
</div>
<div class="about-us-trigers__item">
<div class="about-us-trigers__wrap">
<div class="about-us-trigers__img">
<svg width="36" height="36" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_34_141)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M10.62 14.58L8.1 17.1L16.2 25.2L34.2 7.2L31.68 4.68L16.2 20.16L10.62 14.58ZM32.4 18C32.4 25.92 25.92 32.4 18 32.4C10.08 32.4 3.6 25.92 3.6 18C3.6 10.08 10.08 3.6 18 3.6C19.44 3.6 20.7 3.78 21.96 4.14L24.84 1.26C22.68 0.54 20.34 0 18 0C8.1 0 0 8.1 0 18C0 27.9 8.1 36 18 36C27.9 36 36 27.9 36 18H32.4Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_34_141">
<rect width="36" height="36" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="about-us-trigers__title">
Кваліфікована консультація
</div>
<div class="about-us-trigers__description">
Працівники мережі PODHUB надають кваліфіковані консультації з вибору девайсів, рідин та
аксесуарів. Наші експерти допоможуть вам знайти ідеальний продукт для ваших потреб.
</div>
</div>
</div>
<div class="about-us-trigers__item">
<div class="about-us-trigers__wrap">
<div class="about-us-trigers__img">
<svg width="36" height="36" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_34_141)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M10.62 14.58L8.1 17.1L16.2 25.2L34.2 7.2L31.68 4.68L16.2 20.16L10.62 14.58ZM32.4 18C32.4 25.92 25.92 32.4 18 32.4C10.08 32.4 3.6 25.92 3.6 18C3.6 10.08 10.08 3.6 18 3.6C19.44 3.6 20.7 3.78 21.96 4.14L24.84 1.26C22.68 0.54 20.34 0 18 0C8.1 0 0 8.1 0 18C0 27.9 8.1 36 18 36C27.9 36 36 27.9 36 18H32.4Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_34_141">
<rect width="36" height="36" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="about-us-trigers__title">
Розіграші подарунків
</div>
<div class="about-us-trigers__description">
Ми цінуємо наших постійних клієнтів! Регулярно проводимо розіграші приємних подарунків,
щоб ваш вейпінг приносив ще більше задоволення.
</div>
</div>
</div>
<div class="about-us-trigers__item">
<div class="about-us-trigers__wrap">
<div class="about-us-trigers__img">
<svg width="36" height="36" viewBox="0 0 36 36" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_34_141)">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M10.62 14.58L8.1 17.1L16.2 25.2L34.2 7.2L31.68 4.68L16.2 20.16L10.62 14.58ZM32.4 18C32.4 25.92 25.92 32.4 18 32.4C10.08 32.4 3.6 25.92 3.6 18C3.6 10.08 10.08 3.6 18 3.6C19.44 3.6 20.7 3.78 21.96 4.14L24.84 1.26C22.68 0.54 20.34 0 18 0C8.1 0 0 8.1 0 18C0 27.9 8.1 36 18 36C27.9 36 36 27.9 36 18H32.4Z"
fill="#82AE46" />
</g>
<defs>
<clipPath id="clip0_34_141">
<rect width="36" height="36" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="about-us-trigers__title">
Доставка по місту та Україні
</div>
<div class="about-us-trigers__description">
Пропонуємо оперативну доставку по всьому місту та Україні. Замовляйте продукцію PODHUB
та отримуйте її максимально швидко та зручно.
</div>
</div>
</div>
</div>
</div>
<div class="about-us-img">
<svg width="1756" height="2415" viewBox="0 0 1756 2415" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M878.106 1908.19C1290.76 1908.19 1625.28 1573.67 1625.28 1161.02C1625.28 748.365 1290.76 413.845 878.106 413.845C465.455 413.845 130.936 748.365 130.936 1161.02C130.936 1573.67 465.455 1908.19 878.106 1908.19Z"
fill="black" />
<g filter="url(#filter0_d_31_134)">
<path
d="M878.106 363.465C437.626 363.465 80.5557 720.545 80.5557 1161.02C80.5557 1601.49 437.636 1958.57 878.106 1958.57C1318.58 1958.57 1675.66 1601.49 1675.66 1161.02C1675.66 720.545 1318.58 363.465 878.106 363.465ZM878.106 1908.19C465.456 1908.19 130.936 1573.67 130.936 1161.02C130.936 748.365 465.456 413.845 878.106 413.845C1290.76 413.845 1625.28 748.365 1625.28 1161.02C1625.28 1573.67 1290.76 1908.19 878.106 1908.19Z"
fill="url(#paint0_linear_31_134)" />
</g>
<path
d="M878.106 1784.45C1222.42 1784.45 1501.54 1505.33 1501.54 1161.02C1501.54 816.704 1222.42 537.585 878.106 537.585C533.795 537.585 254.676 816.704 254.676 1161.02C254.676 1505.33 533.795 1784.45 878.106 1784.45Z"
fill="black" />
<path
d="M91.1858 533.965L195.886 10.4653H425.156C493.426 10.4653 548.176 26.5253 587.906 58.1953C630.316 92.0253 652.736 141.125 652.736 200.215C652.736 245.325 641.186 285.975 618.416 321.035C595.806 355.865 563.796 383.085 523.276 401.935C484.686 419.895 439.356 429.005 388.536 429.005H354.446L333.456 533.955H91.1758L91.1858 533.965ZM395.866 221.585C404.806 221.585 408.896 219.885 409.776 219.205C409.846 219.015 409.966 218.655 410.096 218.065C408.666 217.945 406.986 217.875 405.026 217.875H396.376L395.636 221.575H395.866V221.585Z"
fill="#1E1E1E" />
<path
d="M557.876 95.8655C526.756 71.0555 482.516 58.6455 425.156 58.6455H235.386L149.966 485.775H293.966L314.956 380.825H388.546C432.476 380.825 470.616 373.305 502.956 358.245C535.296 343.195 560.316 322.045 578.006 294.785C595.706 267.535 604.546 236.005 604.546 200.205C604.546 155.455 588.986 120.685 557.866 95.8655H557.876ZM442.246 254.825C431.266 264.795 415.796 269.775 395.876 269.775H336.896L356.856 169.705H405.026C421.706 169.705 434.816 173.065 444.386 179.775C453.936 186.485 458.726 197.575 458.726 213.035C458.726 230.935 453.236 244.865 442.256 254.825H442.246Z"
fill="#A100FF" />
<path
d="M843.745 543.725C792.035 543.725 746.045 533.785 707.075 514.175C666.805 493.925 635.035 465.265 612.665 429.005C590.295 392.745 578.945 350.875 578.945 304.555C578.945 258.235 586.905 219.235 602.615 182.285C618.355 145.215 640.895 112.595 669.625 85.3353C698.185 58.2253 732.375 37.0553 771.235 22.4153C809.505 8.01528 851.555 0.705322 896.225 0.705322C947.925 0.705322 993.905 10.6454 1032.9 30.2554C1073.19 50.5254 1104.95 79.1853 1127.31 115.425C1149.69 151.685 1161.03 193.565 1161.03 239.885C1161.03 286.205 1153.07 325.165 1137.37 362.145C1121.6 399.255 1099.06 431.875 1070.36 459.115C1041.78 486.245 1007.59 507.415 968.735 522.045C930.475 536.445 888.425 543.745 843.755 543.745L843.745 543.725ZM884.015 213.615C874.015 213.615 865.695 215.345 858.575 218.905C850.985 222.705 844.665 227.835 839.265 234.585C833.235 242.125 828.785 250.645 825.675 260.625C822.265 271.565 820.535 283.475 820.535 296.015C820.535 304.345 821.975 311.115 824.945 316.695C827.295 321.115 830.255 324.155 834.535 326.535C839.645 329.385 846.835 330.815 855.945 330.815C866.115 330.815 874.685 329.085 881.425 325.655C888.925 321.845 895.225 316.685 900.685 309.845C906.725 302.295 911.175 293.785 914.275 283.815C917.685 272.875 919.415 260.965 919.415 248.415C919.415 239.915 917.975 232.945 915.145 227.705C912.805 223.375 909.785 220.345 905.365 217.875C900.305 215.055 893.095 213.615 884.005 213.615H884.015Z"
fill="#1E1E1E" />
<path
d="M1011.24 73.2952C978.896 57.0352 940.546 48.8853 896.216 48.8853C857.166 48.8853 821.166 55.0952 788.216 67.4952C755.266 79.9152 726.786 97.5051 702.786 120.275C678.776 143.065 660.166 170.005 646.956 201.125C633.736 232.245 627.126 266.725 627.126 304.555C627.126 342.385 635.976 375.035 653.666 403.705C671.366 432.385 696.376 454.865 728.716 471.125C761.056 487.395 799.396 495.535 843.736 495.535C882.786 495.535 918.786 489.325 951.736 476.925C984.686 464.515 1013.16 446.935 1037.16 424.145C1061.16 401.365 1079.77 374.415 1092.99 343.295C1106.2 312.175 1112.82 277.695 1112.82 239.875C1112.82 202.055 1103.97 169.395 1086.28 140.715C1068.58 112.035 1043.57 89.5652 1011.23 73.2952H1011.24ZM960.286 298.145C955.406 313.805 948.086 327.735 938.316 339.935C928.556 352.145 916.856 361.705 903.236 368.615C889.606 375.535 873.846 378.985 855.946 378.985C838.046 378.985 823.496 375.535 811.096 368.615C798.686 361.705 789.126 351.935 782.416 339.325C775.706 326.725 772.346 312.275 772.346 296.005C772.346 278.515 774.786 261.935 779.666 246.275C784.546 230.615 791.866 216.675 801.636 204.475C811.396 192.265 823.196 182.715 837.026 175.795C850.856 168.885 866.516 165.425 884.006 165.425C901.496 165.425 916.436 168.885 928.856 175.795C941.256 182.715 950.826 192.375 957.536 204.775C964.246 217.195 967.606 231.725 967.606 248.405C967.606 265.905 965.166 282.485 960.286 298.135V298.145Z"
fill="#A100FF" />
<path
d="M1061.99 533.965L1166.69 10.4653H1399.01C1450.81 10.4653 1496.67 19.2853 1535.32 36.6753C1576.31 55.1253 1608.53 82.1454 1631.06 116.995C1653.6 151.875 1665.02 193.215 1665.02 239.875C1665.02 286.535 1656.98 325.025 1641.13 361.145C1625.22 397.375 1602.58 428.945 1573.83 454.985C1545.36 480.795 1511.39 500.715 1472.88 514.185C1435.37 527.315 1393.88 533.975 1349.58 533.975H1061.98L1061.99 533.965ZM1354.47 325.325C1370.54 325.325 1383.39 322.285 1392.66 316.275C1402.37 309.995 1409.56 301.715 1414.65 290.965C1420.56 278.455 1423.44 264.535 1423.44 248.415C1423.44 240.645 1422.26 234.545 1420.04 230.765C1418.92 228.865 1416.92 226.345 1411.46 223.815C1406.81 221.665 1398 219.105 1382.54 219.105H1367.17L1346.05 325.315H1354.46L1354.47 325.325Z"
fill="#1E1E1E" />
<path
d="M1590.61 143.165C1573.12 116.115 1548.1 95.2654 1515.56 80.6254C1483.01 65.9854 1444.17 58.6553 1399.02 58.6553H1206.2L1120.78 485.785H1349.6C1388.65 485.785 1424.44 480.095 1456.99 468.705C1489.53 457.325 1517.7 440.845 1541.5 419.275C1565.3 397.715 1583.8 371.895 1597.03 341.785C1610.24 311.685 1616.86 277.715 1616.86 239.885C1616.86 202.055 1608.11 170.225 1590.62 143.175L1590.61 143.165ZM1458.2 311.575C1449.25 330.495 1436.13 345.545 1418.84 356.725C1401.55 367.925 1380.09 373.505 1354.47 373.505H1287.35L1327.62 170.925H1382.54C1402.07 170.925 1418.44 173.975 1431.66 180.075C1444.87 186.175 1454.85 194.935 1461.56 206.315C1468.27 217.705 1471.63 231.745 1471.63 248.415C1471.63 271.605 1467.15 292.655 1458.21 311.575H1458.2Z"
fill="#A100FF" />
<path
d="M346.736 2403.91L379.516 2240.02H343.346L310.566 2403.91H58.3262L167.326 1858.9H419.566L388.056 2016.45H424.226L455.736 1858.9H707.976L598.966 2403.91H346.736Z"
fill="#1E1E1E" />
<path
d="M465.357 2066.61H326.867L358.377 1909.07H208.457L119.517 2353.75H269.437L302.217 2189.85H440.707L407.927 2353.75H557.847L646.787 1909.07H496.857L465.357 2066.61Z"
fill="#06F80A" />
<path
d="M854.506 2414.08C799.766 2414.08 752.526 2403.01 714.106 2381.17C673.336 2358 643.936 2324.93 626.716 2282.87C610.036 2242.15 606.866 2195.33 617.306 2143.71L674.266 1858.91H926.466L866.276 2160.66C863.646 2174.61 863.516 2183.24 863.876 2188.02C863.996 2189.6 864.166 2190.79 864.336 2191.67C866.076 2192.04 868.836 2192.41 872.926 2192.41C878.346 2192.41 882.586 2191.62 885.196 2190.13C885.316 2190.06 887.916 2188.52 891.546 2181.48C894.816 2175.13 899.576 2163.08 903.716 2141.62L960.106 1858.9H1209.83L1147.65 2169.83C1132.36 2247.25 1099.62 2307.9 1050.36 2349.97C1000.56 2392.51 934.666 2414.08 854.516 2414.08H854.506Z"
fill="#1E1E1E" />
<path
d="M1001.25 1909.07L952.966 2151.1C948.726 2173.13 943.116 2190.91 936.136 2204.46C929.146 2218.02 920.466 2227.76 910.086 2233.68C899.706 2239.62 887.316 2242.57 872.926 2242.57C861.066 2242.57 850.906 2240.77 842.436 2237.17C833.956 2233.58 827.286 2227.96 822.426 2220.34C817.556 2212.72 814.696 2203.19 813.846 2191.75C812.996 2180.32 814.056 2166.77 817.026 2151.09L865.306 1909.06H715.386L666.476 2153.64C657.996 2195.57 660.226 2232.31 673.146 2263.86C686.066 2295.41 707.976 2319.98 738.896 2337.55C769.806 2355.12 808.346 2363.91 854.516 2363.91C922.696 2363.91 977.126 2346.55 1017.78 2311.82C1058.44 2277.1 1085.33 2226.49 1098.46 2159.99L1148.64 1909.06H1001.26L1001.25 1909.07Z"
fill="#06F80A" />
<path
d="M1067.11 2403.91L1176.11 1858.9H1452.92C1516.88 1858.9 1565.26 1870.85 1600.85 1895.42C1641.2 1923.28 1662.53 1964.68 1662.53 2015.15C1662.53 2054.6 1650.6 2088.92 1627.08 2117.14C1623.85 2121.02 1620.44 2124.76 1616.87 2128.36C1633.98 2151.8 1642.84 2180.1 1642.84 2212.08C1642.84 2257.29 1629 2295.61 1601.72 2325.97C1576.89 2353.58 1544.12 2373.99 1504.31 2386.63C1468.21 2398.09 1428.05 2403.91 1384.95 2403.91H1067.12H1067.11Z"
fill="#1E1E1E" />
<path
d="M1553.61 2136.17C1547.31 2131.82 1540.43 2128 1533 2124.7C1556.08 2114.99 1574.6 2101.76 1588.55 2085.03C1604.43 2065.97 1612.37 2042.69 1612.37 2015.15C1612.37 1981.27 1599.03 1955.12 1572.35 1936.7C1545.67 1918.28 1505.86 1909.07 1452.92 1909.07H1217.24L1128.31 2353.75H1384.95C1423.06 2353.75 1457.79 2348.78 1489.13 2338.82C1520.47 2328.87 1545.56 2313.41 1564.41 2292.44C1583.25 2271.48 1592.68 2244.7 1592.68 2212.08C1592.68 2179.46 1579.66 2154.17 1553.61 2136.17ZM1416.71 2013.89C1428.99 2013.89 1438.63 2016.11 1445.62 2020.56C1452.61 2025.01 1456.1 2031.9 1456.1 2041.21C1456.1 2049.26 1454.4 2056.14 1451.02 2061.86C1447.63 2067.58 1442.23 2072.02 1434.82 2075.2C1427.41 2078.38 1417.99 2079.96 1406.55 2079.96H1330.45L1343.66 2013.89H1416.71ZM1429.73 2238.77C1420.2 2245.55 1408.02 2248.94 1393.2 2248.94H1296.64L1310.62 2179.06H1407.18C1416.92 2179.06 1425.5 2181.5 1432.91 2186.36C1440.31 2191.23 1444.03 2198.54 1444.03 2208.28C1444.03 2221.84 1439.27 2232 1429.74 2238.77H1429.73Z"
fill="#06F80A" />
<g filter="url(#filter1_d_31_134)">
<path d="M768.386 984.425L819.256 932.025L725.996 844.575L777.806 926.935L768.386 984.425Z"
fill="#0F0F0F" />
<path d="M921.735 1220.86L943.455 1075.97L914.615 1047.14L921.735 1220.86Z" fill="#0F0F0F" />
<path d="M936.966 932.025L987.826 984.425L978.406 926.935L1030.22 844.575L936.966 932.025Z"
fill="#0F0F0F" />
<path d="M834.476 1220.86L841.596 1047.14L812.766 1075.97L834.476 1220.86Z" fill="#0F0F0F" />
<path
d="M1298.77 727.995C1298.77 727.995 1181.08 759.745 1119.83 764.425C1103.47 765.675 1091.36 762.735 1083.08 747.875C1080.56 743.345 1075.92 740.045 1073.1 735.645C1067.32 726.625 1059.18 725.055 1049.4 726.345C1008.13 731.785 966.876 737.385 925.526 742.205C909.756 744.045 894.096 747.985 878.106 747.265C862.106 747.995 846.446 744.045 830.686 742.205C789.346 737.385 748.086 731.785 706.816 726.345C697.036 725.055 688.896 726.625 683.116 735.645C680.296 740.045 675.645 743.355 673.135 747.875C664.865 762.735 652.755 765.675 636.385 764.425C575.145 759.745 457.446 727.995 457.446 727.995L353.135 656.975L251.226 645.895L317.456 701.305L366.116 800.505C366.116 800.505 424.446 847.835 467.826 859.885C498.336 868.355 529.426 874.145 560.346 880.735C561.526 880.985 562.686 881.295 564.016 883.305C551.436 887.125 538.955 891.335 526.255 894.705C477.375 907.675 441.056 936.525 416.176 980.355C407.866 994.995 407.746 994.485 422.426 1002.91C473.276 1032.08 527.426 1046.25 586.266 1039.86C586.896 1039.79 587.585 1040.2 589.375 1040.69C581.475 1060.19 573.666 1079.57 565.776 1098.92C536.586 1170.52 507.466 1242.16 477.986 1313.64C475.166 1320.47 475.826 1325.06 480.436 1330.7C503.656 1359.06 529.256 1385.03 559.346 1410C546.816 1409.11 536.516 1409.33 526.446 1411.4C496.116 1417.62 474.755 1441.6 471.505 1473.13C469.435 1493.2 471.886 1512.57 482.906 1529.98C485.486 1534.05 485.096 1537.59 484.336 1541.85C478.826 1572.87 482.356 1602.11 501.986 1628.04C526.016 1659.79 573.676 1675.86 610.726 1662.08C624.926 1656.8 637.816 1657.15 651.726 1659.27C689.746 1665.08 722.456 1650.24 738.946 1619.89C757.156 1586.37 753.005 1547.1 728.375 1518.51C726.375 1516.19 721.946 1514.69 725.106 1509.95C728.216 1505.28 731.376 1508.55 734.266 1509.57C746.516 1513.9 757.586 1519.6 767.546 1528.74C785.966 1545.65 809.196 1555.66 831.106 1570.05V1552.23C842.296 1556.89 852.745 1560.78 862.755 1565.56C868.015 1568.07 873.046 1568.97 878.116 1568.29C883.186 1568.97 888.206 1568.07 893.476 1565.56C903.486 1560.78 913.925 1556.89 925.125 1552.23V1570.05C947.035 1555.67 970.266 1545.65 988.686 1528.74C998.646 1519.6 1009.73 1513.89 1021.97 1509.57C1024.86 1508.55 1028.02 1505.28 1031.13 1509.95C1034.29 1514.69 1029.86 1516.2 1027.86 1518.51C1003.22 1547.09 999.076 1586.37 1017.29 1619.89C1033.78 1650.24 1066.5 1665.09 1104.51 1659.27C1118.42 1657.14 1131.31 1656.8 1145.51 1662.08C1182.57 1675.85 1230.22 1659.78 1254.25 1628.04C1273.88 1602.11 1277.41 1572.88 1271.9 1541.85C1271.14 1537.58 1270.75 1534.05 1273.33 1529.98C1284.35 1512.56 1286.8 1493.2 1284.73 1473.13C1281.47 1441.6 1260.11 1417.63 1229.79 1411.4C1219.72 1409.34 1209.42 1409.11 1196.89 1410C1226.98 1385.03 1252.58 1359.06 1275.8 1330.7C1280.41 1325.07 1281.07 1320.47 1278.25 1313.64C1248.77 1242.15 1219.65 1170.52 1190.46 1098.92C1182.57 1079.57 1174.76 1060.19 1166.86 1040.69C1168.65 1040.19 1169.33 1039.79 1169.97 1039.86C1228.81 1046.25 1282.96 1032.08 1333.81 1002.91C1348.49 994.485 1348.37 994.995 1340.06 980.355C1315.18 936.525 1278.86 907.675 1229.98 894.705C1217.28 891.335 1204.8 887.125 1192.22 883.305C1193.55 881.295 1194.72 880.985 1195.89 880.735C1226.81 874.155 1257.89 868.365 1288.41 859.885C1331.79 847.835 1390.12 800.505 1390.12 800.505L1438.78 701.305L1505.01 645.895L1403.1 656.975L1298.79 727.995H1298.77ZM674.076 925.825C685.936 936.075 698.406 945.615 711.036 955.785C712.966 950.835 710.196 948.465 708.826 945.885C700.696 930.685 692.566 915.465 683.956 900.535C681.366 896.035 680.196 891.725 680.226 886.635C680.376 863.035 681.496 839.355 679.926 815.865C678.586 795.915 682.686 779.245 698.016 765.965C698.806 765.285 699.426 764.385 700.026 763.515C703.366 758.615 707.796 757.265 713.696 758.055C750.276 762.935 786.845 767.875 823.495 772.125C841.655 774.235 859.746 778.015 878.106 777.625C896.466 778.015 914.556 774.235 932.716 772.125C969.366 767.875 1005.94 762.935 1042.52 758.055C1048.43 757.265 1052.85 758.605 1056.19 763.515C1056.78 764.385 1057.41 765.285 1058.2 765.965C1073.53 779.245 1077.63 795.915 1076.29 815.865C1074.72 839.355 1075.84 863.045 1075.99 886.635C1076.02 891.725 1074.86 896.045 1072.26 900.535C1063.65 915.465 1055.52 930.685 1047.39 945.885C1046.01 948.455 1043.25 950.835 1045.18 955.785C1057.82 945.615 1070.28 936.065 1082.14 925.825C1088.4 920.415 1092.11 920.135 1096.46 927.915C1101.43 936.795 1107.46 945.105 1113.34 953.445C1116.93 958.535 1117.07 961.835 1110.69 964.785C1066.31 985.335 1022 1006.02 977.776 1026.91C972.996 1029.17 970.766 1027.21 968.036 1024.06C954.426 1008.39 940.726 992.795 927.046 977.195C925.706 975.665 924.825 973.555 921.495 973.145C920.195 984.805 918.846 996.455 917.606 1008.12C917.196 1012.03 920.096 1014.58 922.016 1017.43C932.856 1033.47 943.726 1049.49 954.796 1065.38C957.556 1069.34 958.796 1072.98 958.076 1078.05C950.526 1131.27 943.126 1184.52 936.196 1237.82C935.346 1244.35 932.976 1247.24 926.966 1248.18C924.546 1248.56 922.086 1249.1 919.836 1250.03C905.816 1255.88 891.926 1257.69 878.086 1256.96C864.256 1257.69 850.366 1255.88 836.336 1250.03C834.086 1249.09 831.626 1248.55 829.206 1248.18C823.206 1247.24 820.826 1244.35 819.976 1237.82C813.046 1184.51 805.646 1131.27 798.096 1078.05C797.376 1072.98 798.625 1069.34 801.375 1065.38C812.445 1049.49 823.316 1033.47 834.156 1017.43C836.076 1014.58 838.986 1012.03 838.566 1008.12C837.326 996.455 835.986 984.805 834.676 973.145C831.336 973.555 830.465 975.665 829.125 977.195C815.445 992.795 801.745 1008.39 788.135 1024.06C785.405 1027.21 783.186 1029.17 778.396 1026.91C734.176 1006.02 689.866 985.335 645.486 964.785C639.106 961.835 639.246 958.535 642.836 953.445C648.716 945.105 654.746 936.795 659.716 927.915C664.066 920.135 667.776 920.415 674.036 925.825H674.076ZM1033.03 1277.2C1037.53 1283.48 1040.77 1290.79 1045.87 1296.48C1052.86 1304.27 1051.69 1311.96 1048.79 1320.66C1042.85 1338.5 1037.38 1356.5 1030.92 1376.94C1024.7 1360.96 1027.35 1346.42 1024.8 1332.63C1023.27 1324.4 1023.11 1315.9 1022.56 1307.51C1022.31 1303.74 1019.9 1302.2 1017.11 1300.45C998.636 1288.91 980.486 1276.85 961.736 1265.8C953.706 1261.07 951.895 1255.65 953.385 1246.87C957.835 1220.63 961.826 1194.31 965.316 1167.93C966.786 1156.84 971.475 1147.11 975.745 1137.17C982.415 1121.67 989.836 1106.5 996.436 1090.98C999.056 1084.81 1002.72 1082.36 1008.23 1086.25C1025.52 1098.48 1039.2 1094.39 1053.73 1080.11C1067.16 1066.91 1083.27 1056.45 1098.2 1044.78C1100.1 1043.29 1101.88 1040.78 1104.51 1041.73C1107.94 1042.97 1106.68 1046.47 1106.98 1049.12C1109.71 1073.49 1112.33 1097.88 1115.15 1122.24C1116.48 1133.76 1115.2 1144.1 1108.01 1154.13C1096.63 1170.02 1086.61 1186.89 1074.62 1205.51C1068.35 1184.85 1061.41 1167.67 1052.69 1148.64C1047.99 1171.5 1043.68 1192.23 1039.49 1212.97C1036.3 1228.78 1033.61 1244.7 1029.96 1260.39C1028.46 1266.84 1029.28 1271.93 1033.04 1277.19L1033.03 1277.2ZM999.786 1040.14C999.786 1040.14 1056.95 1011.98 1073.59 1003.02C1079.12 1000.04 1082.78 1016.81 1082.78 1016.81V1032.22L1054.67 1050.6H1028.99L999.796 1040.15L999.786 1040.14ZM726.276 1260.41C722.626 1244.71 719.945 1228.79 716.745 1212.99C712.555 1192.24 708.246 1171.52 703.546 1148.66C694.826 1167.69 687.886 1184.86 681.616 1205.53C669.626 1186.91 659.606 1170.04 648.226 1154.15C641.036 1144.12 639.756 1133.77 641.086 1122.26C643.906 1097.9 646.535 1073.51 649.255 1049.14C649.555 1046.49 648.296 1042.99 651.726 1041.75C654.356 1040.8 656.126 1043.31 658.036 1044.8C672.966 1056.47 689.075 1066.94 702.505 1080.13C717.035 1094.41 730.715 1098.5 748.005 1086.27C753.515 1082.37 757.166 1084.83 759.796 1091C766.396 1106.52 773.816 1121.69 780.486 1137.19C784.766 1147.13 789.446 1156.85 790.916 1167.95C794.406 1194.33 798.406 1220.66 802.846 1246.89C804.336 1255.68 802.515 1261.09 794.495 1265.82C775.745 1276.87 757.585 1288.93 739.125 1300.47C736.325 1302.22 733.916 1303.76 733.676 1307.53C733.126 1315.92 732.966 1324.42 731.436 1332.65C728.876 1346.43 731.526 1360.97 725.316 1376.96C718.856 1356.51 713.376 1338.52 707.446 1320.68C704.546 1311.98 703.386 1304.29 710.366 1296.5C715.466 1290.82 718.706 1283.5 723.206 1277.22C726.966 1271.96 727.786 1266.87 726.286 1260.42L726.276 1260.41ZM673.436 1032.21V1016.8C673.436 1016.8 677.095 1000.04 682.625 1003.01C699.265 1011.97 756.426 1040.13 756.426 1040.13L727.236 1050.58H701.556L673.446 1032.2L673.436 1032.21ZM480.676 831.815C449.356 822.285 419.706 810.265 399.776 782.025C395.986 776.655 370.986 725.645 370.986 725.645L324.766 680.505L376.726 706.345C376.726 706.345 413.736 740.435 423.116 745.195C466.066 766.985 511.286 780.635 559.416 786.825C577.066 789.095 612.516 791.385 612.516 791.385L645.196 793.625C645.196 793.625 649.076 793.985 649.086 796.135C649.116 803.485 650.066 811.215 647.986 817.985C647.276 820.295 638.595 821.155 633.625 820.975C588.975 819.385 544.596 815.545 501.076 804.525C481.176 799.485 422.806 767.675 402.796 753.395C409.296 761.525 437.516 795.255 456.676 804.035C475.836 812.805 568.816 849.215 568.816 849.215C568.816 849.215 581.985 852.185 589.745 854.585C586.165 855.065 568.716 852.725 568.716 852.725C568.716 852.725 509.586 840.625 480.676 831.825V831.815ZM582.916 1009.64C574.146 1009.36 565.356 1009.57 559.316 1009.57C521.366 1011.54 488.536 1002.63 457.026 987.645C450.486 984.535 448.986 981.575 454.016 975.025C475.026 947.635 503.506 932.275 535.716 922.485C538.266 921.715 540.146 921.075 541.926 923.955C554.566 944.515 574.506 950.325 596.926 950.395C602.906 950.415 603.976 952.245 602.726 957.635C599.336 972.275 596.166 986.965 593.186 1001.69C591.996 1007.6 588.816 1009.83 582.926 1009.64H582.916ZM575.885 1186.54C580.985 1152.92 585.836 1119.26 590.766 1085.61C591.336 1085.49 591.916 1085.38 592.486 1085.26C592.956 1086.82 593.676 1088.34 593.856 1089.93C596.886 1117.5 599.876 1145.07 602.776 1172.66C603.266 1177.35 605.026 1181.34 607.556 1185.3C630.646 1221.43 653.546 1257.69 676.676 1293.81C679.446 1298.14 681.386 1302.32 680.676 1307.55C679.646 1315.2 679.146 1322.94 677.796 1330.54C674.176 1350.95 672.016 1370.88 688.686 1387.49C690.646 1389.45 694.316 1393.43 689.306 1396.24C685.626 1398.3 681.656 1403.12 677.056 1399.26C668.176 1391.83 659.866 1383.72 651.326 1375.88C648.886 1373.64 649.436 1370.85 649.856 1368.02C652.656 1349.27 654.986 1330.44 658.396 1311.8C659.436 1306.1 657.746 1302.64 654.656 1298.54C629.666 1265.43 604.886 1232.16 579.926 1199.03C577.066 1195.23 575.095 1191.67 575.875 1186.55L575.885 1186.54ZM555.046 1346.82C554.356 1349.78 553.596 1353.95 551.516 1355.08C548.196 1356.89 546.545 1352.33 544.245 1350.45C534.975 1342.9 527.846 1333.34 520.086 1324.38C516.746 1320.52 514.596 1316.8 516.926 1311.17C529.926 1279.78 542.606 1248.25 555.446 1216.78C555.656 1216.26 556.466 1215.98 557.616 1215.12C564.206 1223.57 635.936 1301.16 640.476 1310.6C644.206 1318.36 575.216 1257.67 573.466 1266.04C567.826 1293.07 561.336 1319.92 555.046 1346.81V1346.82ZM704.586 1457.96C717.356 1450.51 730.126 1443.06 742.896 1435.6C732.926 1454.37 721.315 1471.06 710.755 1488.38C706.685 1495.05 702.746 1496.16 695.516 1494.6C669.446 1488.97 646.686 1500.19 636.016 1524.02C668.446 1510.67 696.756 1513.53 716.906 1544.2C730.946 1565.58 728.666 1594.59 712.906 1615.43C700.176 1632.26 676.116 1640.41 654.806 1634.66C668.516 1625.69 679.386 1615.11 681.336 1597.23C653.316 1614.1 618.226 1611.56 592.596 1591.29C581.316 1582.36 572.876 1571.26 569.166 1557.12C565.476 1543.09 565.705 1529.06 570.255 1515.08C558.455 1517.72 547.156 1531.16 545.836 1547.28C542.106 1593.05 564.416 1622.22 608.216 1638.33C578.466 1647.32 553.276 1642.17 531.576 1623.49C505.376 1600.92 501.406 1571.71 509.736 1539.79C511.556 1532.83 512.176 1527.51 506.546 1520.93C491.416 1503.25 490.976 1471.36 504.076 1452.7C516.766 1434.63 538.125 1428.5 562.625 1436.31C554.745 1445.12 544.966 1452.72 544.956 1467.25C567.046 1451.32 589.486 1451.48 612.366 1462.08C617.266 1464.35 620.275 1461.69 623.745 1459.58C661.495 1436.59 699.205 1413.53 737.005 1390.62C740.885 1388.27 744.486 1384.1 750.396 1386.62C733.376 1407.48 716.526 1428.12 699.666 1448.77C693.506 1454.64 688.306 1461.25 684.226 1468.91C692.056 1466.8 698.636 1462.96 704.586 1457.95V1457.96ZM993.026 1457.82C991.356 1480.41 980.986 1497.76 962.446 1510.51C956.646 1514.5 955.006 1511.94 955.016 1506.2C955.016 1499.69 955.016 1493.17 955.016 1483.88C943.596 1495.57 935.636 1506.69 924.516 1514.71C913.306 1522.79 901.326 1529.29 888.766 1534.81C885.206 1536.37 881.656 1536.46 878.106 1535.71C874.546 1536.46 870.996 1536.37 867.446 1534.81C854.896 1529.3 842.906 1522.79 831.696 1514.71C820.576 1506.69 812.626 1495.57 801.196 1483.88C801.196 1493.18 801.196 1499.69 801.196 1506.2C801.196 1511.93 799.566 1514.49 793.766 1510.51C775.226 1497.76 764.856 1480.41 763.186 1457.82C762.726 1451.62 764.976 1448.14 770.586 1445.57C806.246 1429.25 842.076 1420.75 878.096 1421.21C914.116 1420.75 949.946 1429.25 985.606 1445.57C991.216 1448.14 993.465 1451.62 993.005 1457.82H993.026ZM993.186 1356.91C979.596 1349.6 966.066 1342.19 952.206 1334.65C953.216 1333.11 953.546 1331.93 954.286 1331.57C964.486 1326.55 964.966 1320.89 955.726 1314.59C949.036 1310.04 942.096 1305.83 935.516 1301.12C930.966 1297.86 928.176 1298.37 925.816 1303.59C918.716 1319.25 911.396 1334.8 903.596 1351.6C914.266 1350.1 922.086 1344.48 930.826 1341.52C933.806 1340.51 936.396 1338.46 938.736 1342.77C952.466 1368.13 966.366 1393.4 980.146 1418.73C980.406 1419.22 980.055 1420.04 979.875 1421.8C966.075 1417.66 952.526 1413.33 938.826 1409.56C920.856 1404.61 902.536 1400 884.066 1399.14C882.076 1399.05 880.096 1399.05 878.116 1399.1C876.136 1399.05 874.146 1399.05 872.166 1399.14C853.696 1400 835.376 1404.61 817.406 1409.56C803.706 1413.34 790.166 1417.66 776.356 1421.8C776.176 1420.04 775.816 1419.22 776.086 1418.73C789.876 1393.4 803.765 1368.13 817.495 1342.77C819.825 1338.47 822.416 1340.51 825.406 1341.52C834.146 1344.48 841.965 1350.1 852.635 1351.6C844.835 1334.8 837.516 1319.25 830.416 1303.59C828.046 1298.37 825.266 1297.85 820.716 1301.12C814.136 1305.83 807.205 1310.04 800.505 1314.59C791.245 1320.89 791.726 1326.55 801.946 1331.57C802.686 1331.93 803.016 1333.11 804.026 1334.65C790.166 1342.19 776.636 1349.6 763.046 1356.91C760.966 1358.03 757.355 1359.57 757.495 1355.66C757.965 1342 759.116 1328.35 760.426 1314.74C760.566 1313.25 763.306 1311.84 765.046 1310.69C781.456 1299.79 797.946 1289.02 814.326 1278.07C819.266 1274.77 824.146 1274.09 830.206 1274.74C846.176 1276.45 862.045 1278.61 878.125 1278.62C894.205 1278.62 910.086 1276.45 926.046 1274.74C932.106 1274.09 936.986 1274.77 941.926 1278.07C958.306 1289.02 974.796 1299.79 991.206 1310.69C992.936 1311.84 995.676 1313.25 995.826 1314.74C997.136 1328.35 998.275 1342 998.755 1355.66C998.895 1359.57 995.276 1358.02 993.206 1356.91H993.186ZM1252.15 1452.69C1265.25 1471.35 1264.81 1503.24 1249.68 1520.92C1244.05 1527.5 1244.68 1532.82 1246.49 1539.78C1254.82 1571.7 1250.86 1600.91 1224.65 1623.48C1202.95 1642.17 1177.76 1647.31 1148.01 1638.32C1191.81 1622.21 1214.13 1593.04 1210.39 1547.27C1209.07 1531.14 1197.77 1517.71 1185.97 1515.07C1190.52 1529.05 1190.75 1543.08 1187.06 1557.11C1183.34 1571.25 1174.91 1582.35 1163.63 1591.28C1138.01 1611.56 1102.91 1614.09 1074.89 1597.22C1076.84 1615.11 1087.71 1625.69 1101.42 1634.65C1080.11 1640.4 1056.05 1632.25 1043.32 1615.42C1027.56 1594.58 1025.28 1565.56 1039.32 1544.19C1059.47 1513.52 1087.78 1510.66 1120.21 1524.01C1109.54 1500.18 1086.78 1488.96 1060.71 1494.59C1053.48 1496.15 1049.54 1495.04 1045.47 1488.37C1034.9 1471.05 1023.29 1454.36 1013.33 1435.59C1026.1 1443.04 1038.87 1450.49 1051.64 1457.95C1057.58 1462.96 1064.16 1466.8 1072 1468.91C1067.91 1461.25 1062.72 1454.64 1056.56 1448.77C1039.71 1428.12 1022.85 1407.47 1005.83 1386.62C1011.75 1384.1 1015.34 1388.27 1019.22 1390.62C1057.02 1413.53 1094.73 1436.58 1132.48 1459.58C1135.95 1461.7 1138.96 1464.35 1143.86 1462.08C1166.74 1451.47 1189.19 1451.32 1211.27 1467.25C1211.27 1452.72 1201.48 1445.11 1193.6 1436.31C1218.1 1428.49 1239.47 1434.63 1252.15 1452.7V1452.69ZM1198.61 1215.12C1199.77 1215.98 1200.57 1216.25 1200.78 1216.78C1213.62 1248.24 1226.29 1279.77 1239.3 1311.17C1241.63 1316.8 1239.48 1320.52 1236.14 1324.38C1228.38 1333.34 1221.25 1342.9 1211.98 1350.45C1209.68 1352.33 1208.03 1356.89 1204.71 1355.08C1202.63 1353.95 1201.87 1349.78 1201.18 1346.82C1194.89 1319.93 1188.4 1293.08 1182.76 1266.05C1181.01 1257.67 1112.03 1318.36 1115.75 1310.61C1120.29 1301.16 1192.02 1223.58 1198.61 1215.13V1215.12ZM1180.34 1186.54C1181.12 1191.66 1179.15 1195.21 1176.29 1199.02C1151.34 1232.16 1126.55 1265.42 1101.56 1298.53C1098.47 1302.63 1096.77 1306.09 1097.82 1311.79C1101.23 1330.43 1103.56 1349.26 1106.36 1368.01C1106.78 1370.85 1107.33 1373.64 1104.89 1375.87C1096.36 1383.71 1088.04 1391.82 1079.16 1399.25C1074.55 1403.11 1070.59 1398.29 1066.91 1396.23C1061.89 1393.42 1065.56 1389.44 1067.53 1387.48C1084.2 1370.86 1082.05 1350.94 1078.42 1330.53C1077.07 1322.94 1076.57 1315.2 1075.54 1307.54C1074.84 1302.31 1076.77 1298.13 1079.54 1293.8C1102.67 1257.69 1125.56 1221.43 1148.66 1185.29C1151.19 1181.33 1152.95 1177.34 1153.44 1172.65C1156.34 1145.07 1159.34 1117.49 1162.36 1089.92C1162.53 1088.33 1163.26 1086.8 1163.73 1085.25C1164.3 1085.37 1164.88 1085.48 1165.45 1085.6C1170.38 1119.25 1175.23 1152.91 1180.33 1186.53L1180.34 1186.54ZM1214.3 923.955C1216.07 921.065 1217.96 921.705 1220.51 922.485C1252.72 932.275 1281.2 947.635 1302.21 975.025C1307.24 981.575 1305.74 984.535 1299.2 987.645C1267.69 1002.63 1234.86 1011.54 1196.91 1009.57C1190.87 1009.57 1182.08 1009.36 1173.31 1009.64C1167.42 1009.83 1164.25 1007.6 1163.05 1001.69C1160.07 986.955 1156.9 972.265 1153.51 957.635C1152.26 952.245 1153.33 950.415 1159.31 950.395C1181.72 950.335 1201.67 944.515 1214.31 923.955H1214.3ZM1385.24 725.645C1385.24 725.645 1360.24 776.655 1356.45 782.025C1336.52 810.265 1306.87 822.285 1275.55 831.815C1246.64 840.615 1187.51 852.715 1187.51 852.715C1187.51 852.715 1170.06 855.055 1166.48 854.575C1174.23 852.185 1187.41 849.205 1187.41 849.205C1187.41 849.205 1280.39 812.795 1299.55 804.025C1318.71 795.255 1346.93 761.515 1353.43 753.385C1333.43 767.665 1275.05 799.475 1255.15 804.515C1211.63 815.535 1167.25 819.375 1122.6 820.965C1117.62 821.145 1108.95 820.275 1108.24 817.975C1106.16 811.215 1107.11 803.485 1107.14 796.125C1107.14 793.975 1111.03 793.615 1111.03 793.615L1143.71 791.375C1143.71 791.375 1179.16 789.085 1196.81 786.815C1244.94 780.625 1290.16 766.975 1333.11 745.185C1342.49 740.425 1379.5 706.335 1379.5 706.335L1431.46 680.495L1385.24 725.635V725.645Z"
fill="#0F0F0F" />
<path
d="M1211.26 1467.25C1189.17 1451.32 1166.73 1451.48 1143.85 1462.08C1138.95 1464.35 1135.94 1461.69 1132.47 1459.58C1094.72 1436.59 1057.01 1413.53 1019.21 1390.62C1015.33 1388.27 1011.73 1384.1 1005.82 1386.62C1022.84 1407.48 1039.69 1428.12 1056.55 1448.77C1062.71 1454.64 1067.91 1461.25 1071.99 1468.91C1064.16 1466.8 1057.58 1462.96 1051.63 1457.95C1038.86 1450.5 1026.09 1443.05 1013.32 1435.59C1023.29 1454.36 1034.9 1471.05 1045.46 1488.37C1049.53 1495.04 1053.47 1496.15 1060.7 1494.59C1086.77 1488.96 1109.53 1500.18 1120.2 1524.01C1087.77 1510.66 1059.46 1513.52 1039.31 1544.19C1025.27 1565.57 1027.55 1594.58 1043.31 1615.42C1056.04 1632.25 1080.1 1640.4 1101.41 1634.65C1087.7 1625.68 1076.83 1615.1 1074.88 1597.22C1102.9 1614.09 1137.99 1611.55 1163.62 1591.28C1174.9 1582.35 1183.34 1571.25 1187.05 1557.11C1190.74 1543.08 1190.51 1529.05 1185.96 1515.07C1197.76 1517.71 1209.06 1531.15 1210.38 1547.27C1214.11 1593.04 1191.8 1622.21 1148 1638.32C1177.75 1647.31 1202.94 1642.16 1224.64 1623.48C1250.84 1600.91 1254.81 1571.7 1246.48 1539.78C1244.66 1532.82 1244.04 1527.5 1249.67 1520.92C1264.8 1503.24 1265.24 1471.35 1252.14 1452.69C1239.45 1434.62 1218.09 1428.49 1193.59 1436.3C1201.47 1445.11 1211.25 1452.71 1211.26 1467.24V1467.25Z"
fill="#F9F9F9" />
<path
d="M1039.47 1212.97C1043.66 1192.22 1047.97 1171.51 1052.67 1148.65C1061.39 1167.68 1068.33 1184.85 1074.6 1205.52C1086.59 1186.9 1096.61 1170.03 1107.99 1154.14C1115.18 1144.11 1116.46 1133.76 1115.13 1122.25C1112.31 1097.89 1109.68 1073.5 1106.96 1049.13C1106.66 1046.48 1107.92 1042.97 1104.49 1041.73C1101.86 1040.78 1100.09 1043.3 1098.18 1044.79C1083.25 1056.46 1067.14 1066.93 1053.71 1080.12C1039.18 1094.4 1025.5 1098.49 1008.21 1086.26C1002.7 1082.36 999.046 1084.81 996.416 1090.98C989.816 1106.5 982.396 1121.68 975.726 1137.18C971.446 1147.12 966.766 1156.84 965.296 1167.94C961.806 1194.32 957.806 1220.65 953.366 1246.88C951.876 1255.67 953.696 1261.08 961.716 1265.81C980.466 1276.86 998.626 1288.92 1017.09 1300.46C1019.89 1302.21 1022.3 1303.75 1022.54 1307.52C1023.09 1315.91 1023.25 1324.41 1024.78 1332.64C1027.34 1346.42 1024.69 1360.96 1030.9 1376.95C1037.36 1356.5 1042.84 1338.51 1048.77 1320.67C1051.67 1311.97 1052.83 1304.27 1045.85 1296.48C1040.75 1290.8 1037.51 1283.49 1033.01 1277.21C1029.25 1271.95 1028.43 1266.86 1029.93 1260.41C1033.58 1244.71 1036.26 1228.78 1039.46 1212.98L1039.47 1212.97Z"
fill="#5A0D82" />
<path
d="M1153.51 957.635C1156.9 972.275 1160.07 986.965 1163.05 1001.69C1164.24 1007.6 1167.42 1009.83 1173.31 1009.64C1182.08 1009.36 1190.87 1009.57 1196.91 1009.57C1234.86 1011.54 1267.69 1002.63 1299.2 987.645C1305.74 984.535 1307.24 981.575 1302.21 975.025C1281.2 947.635 1252.72 932.275 1220.51 922.485C1217.96 921.715 1216.08 921.075 1214.3 923.955C1201.66 944.515 1181.72 950.325 1159.3 950.395C1153.32 950.415 1152.25 952.245 1153.5 957.635H1153.51Z"
fill="#A500EA" />
<path
d="M1163.74 1085.26C1163.27 1086.82 1162.55 1088.34 1162.37 1089.93C1159.34 1117.5 1156.35 1145.07 1153.45 1172.66C1152.96 1177.35 1151.2 1181.34 1148.67 1185.3C1125.58 1221.43 1102.68 1257.69 1079.55 1293.81C1076.78 1298.14 1074.84 1302.32 1075.55 1307.55C1076.58 1315.2 1077.08 1322.94 1078.43 1330.54C1082.05 1350.95 1084.21 1370.88 1067.54 1387.49C1065.58 1389.45 1061.91 1393.43 1066.92 1396.24C1070.6 1398.3 1074.57 1403.12 1079.17 1399.26C1088.05 1391.83 1096.36 1383.72 1104.9 1375.88C1107.34 1373.64 1106.79 1370.85 1106.37 1368.02C1103.57 1349.27 1101.24 1330.44 1097.83 1311.8C1096.79 1306.1 1098.48 1302.64 1101.57 1298.54C1126.56 1265.43 1151.34 1232.16 1176.3 1199.03C1179.16 1195.23 1181.13 1191.67 1180.35 1186.55C1175.25 1152.93 1170.4 1119.27 1165.47 1085.62C1164.9 1085.5 1164.32 1085.39 1163.75 1085.27L1163.74 1085.26Z"
fill="#A500EA" />
<path
d="M1182.75 1266.05C1188.39 1293.08 1194.88 1319.93 1201.17 1346.82C1201.86 1349.78 1202.62 1353.95 1204.7 1355.08C1208.02 1356.89 1209.67 1352.33 1211.97 1350.45C1221.24 1342.9 1228.37 1333.34 1236.13 1324.38C1239.47 1320.52 1241.62 1316.8 1239.29 1311.17C1226.29 1279.78 1213.61 1248.25 1200.77 1216.78C1200.56 1216.26 1199.75 1215.98 1198.6 1215.12C1192.01 1223.57 1120.28 1301.16 1115.74 1310.6C1112.01 1318.36 1181 1257.67 1182.75 1266.04V1266.05Z"
fill="#5A0D82" />
<path
d="M1333.11 745.195C1290.16 766.985 1244.94 780.635 1196.81 786.825C1179.16 789.095 1143.71 791.385 1143.71 791.385L1111.03 793.625C1111.03 793.625 1107.15 793.985 1107.14 796.135C1107.11 803.485 1106.16 811.215 1108.24 817.985C1108.95 820.295 1117.63 821.155 1122.6 820.975C1167.25 819.385 1211.63 815.545 1255.15 804.525C1275.05 799.485 1333.42 767.675 1353.43 753.395C1346.93 761.525 1318.71 795.255 1299.55 804.035C1280.39 812.805 1187.41 849.215 1187.41 849.215C1187.41 849.215 1174.24 852.185 1166.48 854.585C1170.06 855.065 1187.51 852.725 1187.51 852.725C1187.51 852.725 1246.64 840.625 1275.55 831.825C1306.87 822.295 1336.52 810.275 1356.45 782.035C1360.24 776.665 1385.24 725.655 1385.24 725.655L1431.46 680.515L1379.5 706.355C1379.5 706.355 1342.49 740.445 1333.11 745.205V745.195Z"
fill="white" />
<path
d="M1401.26 632.465L1314.42 685.905L1258.75 709.655C1258.75 709.655 1169.52 728.385 1124 732.645C1114.34 733.545 1108.07 730.225 1102.57 722.865C1096.9 715.265 1090.07 708.505 1084.61 700.775C1079.5 693.545 1073.42 691.495 1064.85 692.645C1018.2 698.895 971.526 705.015 924.806 710.635C909.266 712.505 893.776 717.125 878.116 715.605C862.456 717.125 846.966 712.505 831.426 710.635C784.696 705.015 738.026 698.895 691.386 692.645C682.806 691.495 676.736 693.545 671.626 700.775C666.156 708.505 659.336 715.265 653.666 722.865C648.176 730.235 641.896 733.555 632.236 732.645C586.716 728.385 497.486 709.655 497.486 709.655L441.816 685.905L354.976 632.465L249.356 623.465L199.346 626.705L277.736 702.935C277.736 702.935 297.516 721.255 325.696 778.805C351.566 831.625 390.616 869.255 447.796 886.465C450.146 887.175 452.436 888.105 454.696 889.055C455.216 889.275 455.526 889.985 456.616 891.275C442.596 900.795 429.956 911.825 418.406 924.095C396.456 947.435 382.926 976.395 365.566 1002.8C363.326 1006.21 365.106 1007.86 367.916 1009.38C419.866 1037.53 470.996 1067.92 532.306 1071.07C540.936 1071.51 541.976 1074.81 538.876 1082.3C517.906 1133.01 497.226 1183.84 476.466 1234.63C465.156 1262.31 454.076 1290.09 442.436 1317.62C439.276 1325.1 440.386 1330.61 445.346 1336.78C458.576 1353.25 471.896 1369.62 486.566 1384.83C489.876 1388.26 492.246 1390.8 486.306 1394.43C439.176 1423.15 428.746 1486.74 449.776 1535.22C451.526 1539.26 452.426 1542.72 451.726 1547.22C440.566 1618.89 489.146 1684.76 561.436 1696.58C581.996 1699.94 602.336 1699.47 621.636 1691.66C631.306 1687.74 640.306 1689.43 649.456 1690.74C711.676 1699.66 764.506 1663.73 778.676 1602.5C779.076 1600.79 779.676 1599.11 779.946 1597.38C783.176 1576.82 783.216 1576.72 801.846 1586.61C823.296 1597.99 844.816 1609.28 865.956 1621.21C870.396 1623.71 874.206 1624.36 878.136 1623.51C882.066 1624.36 885.876 1623.71 890.316 1621.21C911.456 1609.27 932.976 1597.99 954.426 1586.61C973.056 1576.73 973.096 1576.83 976.326 1597.38C976.596 1599.11 977.196 1600.79 977.596 1602.5C991.766 1663.73 1044.6 1699.66 1106.82 1690.74C1115.97 1689.43 1124.96 1687.74 1134.64 1691.66C1153.94 1699.47 1174.28 1699.94 1194.84 1696.58C1267.13 1684.76 1315.71 1618.89 1304.55 1547.22C1303.85 1542.72 1304.74 1539.27 1306.5 1535.22C1327.53 1486.73 1317.1 1423.15 1269.97 1394.43C1264.02 1390.81 1266.4 1388.26 1269.71 1384.83C1284.38 1369.61 1297.7 1353.24 1310.93 1336.78C1315.89 1330.61 1317 1325.1 1313.84 1317.62C1302.2 1290.08 1291.12 1262.3 1279.81 1234.63C1259.05 1183.83 1238.36 1133.01 1217.4 1082.3C1214.3 1074.8 1215.34 1071.51 1223.97 1071.07C1285.27 1067.92 1336.4 1037.53 1388.36 1009.38C1391.16 1007.86 1392.95 1006.21 1390.71 1002.8C1373.35 976.385 1359.82 947.425 1337.87 924.095C1326.32 911.815 1313.68 900.785 1299.66 891.275C1300.75 889.985 1301.06 889.275 1301.58 889.055C1303.85 888.105 1306.13 887.175 1308.48 886.465C1365.65 869.255 1404.71 831.625 1430.58 778.805C1458.76 721.255 1478.54 702.935 1478.54 702.935L1556.93 626.705L1506.92 623.465L1401.3 632.465H1401.26ZM1438.76 701.315L1390.1 800.515C1390.1 800.515 1331.77 847.845 1288.39 859.895C1257.88 868.365 1226.79 874.155 1195.87 880.745C1194.69 880.995 1193.53 881.305 1192.2 883.315C1204.78 887.135 1217.26 891.345 1229.96 894.715C1278.84 907.685 1315.16 936.535 1340.04 980.365C1348.35 995.005 1348.47 994.495 1333.79 1002.92C1282.94 1032.09 1228.79 1046.26 1169.95 1039.87C1169.32 1039.8 1168.63 1040.21 1166.84 1040.7C1174.74 1060.2 1182.55 1079.58 1190.44 1098.93C1219.63 1170.53 1248.75 1242.17 1278.23 1313.65C1281.05 1320.48 1280.39 1325.07 1275.78 1330.71C1252.56 1359.07 1226.96 1385.04 1196.87 1410.01C1209.4 1409.12 1219.7 1409.34 1229.77 1411.41C1260.1 1417.63 1281.46 1441.61 1284.71 1473.14C1286.78 1493.21 1284.33 1512.58 1273.31 1529.99C1270.73 1534.06 1271.12 1537.6 1271.88 1541.86C1277.39 1572.88 1273.86 1602.12 1254.23 1628.05C1230.2 1659.8 1182.54 1675.87 1145.49 1662.09C1131.29 1656.81 1118.4 1657.16 1104.49 1659.28C1066.47 1665.09 1033.76 1650.25 1017.27 1619.9C999.056 1586.38 1003.21 1547.11 1027.84 1518.52C1029.84 1516.2 1034.27 1514.7 1031.11 1509.96C1028 1505.29 1024.84 1508.56 1021.95 1509.58C1009.7 1513.91 998.626 1519.61 988.666 1528.75C970.246 1545.66 947.016 1555.67 925.106 1570.06V1552.24C913.916 1556.9 903.466 1560.79 893.456 1565.57C888.196 1568.08 883.166 1568.98 878.096 1568.3C873.026 1568.98 868.006 1568.08 862.736 1565.57C852.726 1560.79 842.286 1556.9 831.086 1552.24V1570.06C809.176 1555.68 785.946 1545.66 767.526 1528.75C757.566 1519.61 746.486 1513.9 734.246 1509.58C731.356 1508.56 728.196 1505.29 725.086 1509.96C721.926 1514.7 726.356 1516.21 728.356 1518.52C752.996 1547.1 757.136 1586.38 738.926 1619.9C722.436 1650.25 689.716 1665.1 651.706 1659.28C637.796 1657.15 624.906 1656.81 610.706 1662.09C573.646 1675.86 525.996 1659.79 501.966 1628.05C482.336 1602.12 478.806 1572.89 484.316 1541.86C485.076 1537.59 485.466 1534.06 482.886 1529.99C471.866 1512.57 469.416 1493.21 471.486 1473.14C474.746 1441.61 496.106 1417.64 526.426 1411.41C536.496 1409.35 546.796 1409.12 559.326 1410.01C529.236 1385.04 503.636 1359.07 480.416 1330.71C475.806 1325.08 475.146 1320.48 477.966 1313.65C507.446 1242.16 536.566 1170.53 565.756 1098.93C573.646 1079.58 581.456 1060.2 589.356 1040.7C587.566 1040.2 586.886 1039.8 586.246 1039.87C527.406 1046.26 473.256 1032.09 422.406 1002.92C407.726 994.495 407.846 995.005 416.156 980.365C441.036 936.535 477.356 907.685 526.236 894.715C538.936 891.345 551.416 887.135 563.996 883.315C562.666 881.305 561.496 880.995 560.326 880.745C529.406 874.165 498.326 868.375 467.806 859.895C424.426 847.845 366.096 800.515 366.096 800.515L317.436 701.315L251.206 645.905L353.116 656.985L457.426 728.005C457.426 728.005 575.116 759.755 636.366 764.435C652.726 765.685 664.836 762.745 673.116 747.885C675.636 743.355 680.276 740.055 683.096 735.655C688.876 726.635 697.016 725.065 706.796 726.355C748.066 731.795 789.316 737.395 830.666 742.215C846.436 744.055 862.096 747.995 878.086 747.275C894.086 748.005 909.746 744.055 925.506 742.215C966.846 737.395 1008.11 731.795 1049.38 726.355C1059.16 725.065 1067.3 726.635 1073.08 735.655C1075.9 740.055 1080.55 743.365 1083.06 747.885C1091.33 762.745 1103.44 765.685 1119.81 764.435C1181.05 759.755 1298.75 728.005 1298.75 728.005L1403.06 656.985L1504.97 645.905L1438.74 701.315H1438.76Z"
fill="#06F80A" />
<path
d="M750.405 1386.62C744.485 1384.1 740.895 1388.27 737.015 1390.62C699.215 1413.53 661.505 1436.58 623.755 1459.58C620.285 1461.7 617.275 1464.35 612.375 1462.08C589.495 1451.47 567.045 1451.32 544.965 1467.25C544.965 1452.72 554.755 1445.11 562.635 1436.31C538.135 1428.49 516.765 1434.63 504.085 1452.7C490.985 1471.36 491.425 1503.25 506.555 1520.93C512.185 1527.51 511.555 1532.83 509.745 1539.79C501.415 1571.71 505.375 1600.92 531.585 1623.49C553.285 1642.18 578.475 1647.32 608.225 1638.33C564.425 1622.22 542.105 1593.05 545.845 1547.28C547.165 1531.15 558.465 1517.72 570.265 1515.08C565.715 1529.06 565.485 1543.09 569.175 1557.12C572.895 1571.26 581.325 1582.36 592.605 1591.29C618.225 1611.57 653.325 1614.1 681.345 1597.23C679.395 1615.12 668.525 1625.7 654.815 1634.66C676.125 1640.41 700.185 1632.26 712.915 1615.43C728.675 1594.59 730.955 1565.57 716.915 1544.2C696.765 1513.53 668.455 1510.67 636.025 1524.02C646.695 1500.19 669.455 1488.97 695.525 1494.6C702.755 1496.16 706.695 1495.05 710.765 1488.38C721.335 1471.06 732.945 1454.37 742.905 1435.6C730.135 1443.05 717.365 1450.5 704.595 1457.96C698.655 1462.97 692.075 1466.81 684.235 1468.92C688.325 1461.26 693.515 1454.65 699.675 1448.78C716.525 1428.13 733.385 1407.48 750.405 1386.63V1386.62Z"
fill="#F9F9F9" />
<path
d="M710.356 1296.47C703.366 1304.26 704.536 1311.96 707.436 1320.66C713.376 1338.5 718.846 1356.5 725.306 1376.94C731.526 1360.96 728.876 1346.42 731.426 1332.63C732.956 1324.4 733.116 1315.9 733.666 1307.51C733.916 1303.74 736.326 1302.2 739.116 1300.45C757.586 1288.91 775.736 1276.85 794.486 1265.8C802.516 1261.07 804.326 1255.65 802.836 1246.87C798.386 1220.63 794.396 1194.31 790.906 1167.93C789.436 1156.84 784.746 1147.11 780.476 1137.17C773.806 1121.67 766.386 1106.49 759.786 1090.97C757.166 1084.8 753.506 1082.35 747.996 1086.24C730.706 1098.47 717.026 1094.39 702.496 1080.11C689.066 1066.91 672.956 1056.45 658.026 1044.78C656.126 1043.29 654.346 1040.77 651.716 1041.72C648.286 1042.96 649.546 1046.47 649.246 1049.12C646.516 1073.49 643.896 1097.87 641.076 1122.23C639.746 1133.75 641.026 1144.1 648.216 1154.13C659.596 1170.02 669.616 1186.89 681.606 1205.51C687.876 1184.85 694.816 1167.67 703.536 1148.64C708.236 1171.5 712.546 1192.22 716.736 1212.96C719.926 1228.77 722.616 1244.7 726.266 1260.39C727.766 1266.84 726.946 1271.93 723.186 1277.19C718.686 1283.47 715.446 1290.77 710.346 1296.46L710.356 1296.47Z"
fill="#5A0D82" />
<path
d="M991.195 1310.69C974.785 1299.79 958.295 1289.02 941.915 1278.07C936.975 1274.77 932.095 1274.09 926.035 1274.74C910.065 1276.45 894.195 1278.61 878.115 1278.62C862.035 1278.62 846.155 1276.45 830.195 1274.74C824.135 1274.09 819.255 1274.77 814.315 1278.07C797.935 1289.02 781.445 1299.79 765.035 1310.69C763.305 1311.84 760.565 1313.25 760.415 1314.74C759.105 1328.35 757.965 1342 757.485 1355.66C757.345 1359.57 760.965 1358.02 763.035 1356.91C776.625 1349.6 790.155 1342.19 804.015 1334.65C803.005 1333.11 802.675 1331.93 801.935 1331.57C791.735 1326.55 791.255 1320.89 800.495 1314.59C807.185 1310.04 814.125 1305.83 820.705 1301.12C825.255 1297.86 828.045 1298.37 830.405 1303.59C837.505 1319.25 844.825 1334.8 852.625 1351.6C841.955 1350.1 834.135 1344.48 825.395 1341.52C822.415 1340.51 819.825 1338.46 817.485 1342.77C803.755 1368.13 789.855 1393.4 776.075 1418.73C775.815 1419.22 776.165 1420.04 776.345 1421.8C790.145 1417.66 803.695 1413.33 817.395 1409.56C835.365 1404.61 853.685 1400 872.155 1399.14C874.145 1399.05 876.125 1399.05 878.105 1399.1C880.085 1399.05 882.075 1399.05 884.055 1399.14C902.525 1400 920.845 1404.61 938.815 1409.56C952.515 1413.34 966.055 1417.66 979.865 1421.8C980.045 1420.04 980.405 1419.22 980.135 1418.73C966.345 1393.4 952.455 1368.13 938.725 1342.77C936.395 1338.47 933.805 1340.51 930.815 1341.52C922.075 1344.48 914.255 1350.1 903.585 1351.6C911.385 1334.8 918.705 1319.25 925.805 1303.59C928.175 1298.37 930.955 1297.85 935.505 1301.12C942.085 1305.83 949.015 1310.04 955.715 1314.59C964.975 1320.89 964.495 1326.55 954.275 1331.57C953.535 1331.93 953.205 1333.11 952.195 1334.65C966.055 1342.19 979.585 1349.6 993.175 1356.91C995.255 1358.03 998.865 1359.57 998.725 1355.66C998.255 1342 997.105 1328.35 995.795 1314.74C995.655 1313.25 992.915 1311.84 991.175 1310.69H991.195Z"
fill="#A500EA" />
<path
d="M985.616 1445.58C949.956 1429.26 914.126 1420.75 878.106 1421.21C842.086 1420.75 806.256 1429.26 770.596 1445.58C764.986 1448.15 762.736 1451.63 763.196 1457.83C764.866 1480.42 775.236 1497.77 793.776 1510.52C799.576 1514.51 801.216 1511.95 801.206 1506.21C801.206 1499.7 801.206 1493.18 801.206 1483.89C812.626 1495.58 820.586 1506.69 831.706 1514.71C842.916 1522.79 854.896 1529.3 867.456 1534.82C871.016 1536.38 874.566 1536.46 878.116 1535.71C881.676 1536.46 885.226 1536.38 888.776 1534.82C901.326 1529.31 913.316 1522.79 924.526 1514.71C935.646 1506.69 943.596 1495.58 955.026 1483.89C955.026 1493.19 955.026 1499.7 955.026 1506.21C955.026 1511.94 956.656 1514.5 962.456 1510.52C980.996 1497.77 991.366 1480.42 993.036 1457.83C993.496 1451.63 991.246 1448.15 985.636 1445.58H985.616Z"
fill="#5A0D82" />
<path
d="M593.165 1001.69C596.145 986.955 599.315 972.265 602.705 957.635C603.955 952.245 602.885 950.415 596.905 950.395C574.495 950.335 554.545 944.515 541.905 923.955C540.135 921.065 538.245 921.705 535.695 922.485C503.485 932.275 475.005 947.635 453.995 975.025C448.965 981.575 450.465 984.535 457.005 987.645C488.515 1002.63 521.345 1011.54 559.295 1009.57C565.335 1009.57 574.125 1009.36 582.895 1009.64C588.785 1009.83 591.955 1007.6 593.155 1001.69H593.165Z"
fill="#A500EA" />
<path
d="M654.665 1298.53C657.755 1302.63 659.455 1306.09 658.405 1311.79C654.995 1330.43 652.665 1349.26 649.865 1368.01C649.445 1370.85 648.895 1373.64 651.335 1375.87C659.865 1383.71 668.185 1391.82 677.065 1399.25C681.675 1403.11 685.635 1398.29 689.315 1396.23C694.335 1393.42 690.665 1389.44 688.695 1387.48C672.025 1370.86 674.175 1350.94 677.805 1330.53C679.155 1322.94 679.655 1315.2 680.685 1307.54C681.385 1302.31 679.455 1298.13 676.685 1293.8C653.555 1257.69 630.665 1221.43 607.565 1185.29C605.035 1181.33 603.275 1177.34 602.785 1172.65C599.885 1145.07 596.885 1117.49 593.865 1089.92C593.695 1088.33 592.965 1086.8 592.495 1085.25C591.925 1085.37 591.345 1085.48 590.775 1085.6C585.845 1119.25 580.995 1152.91 575.895 1186.53C575.115 1191.65 577.085 1195.2 579.945 1199.01C604.895 1232.15 629.685 1265.41 654.675 1298.52L654.665 1298.53Z"
fill="#A500EA" />
<path
d="M640.475 1310.6C635.935 1301.15 564.205 1223.57 557.615 1215.12C556.455 1215.98 555.655 1216.25 555.445 1216.78C542.605 1248.24 529.935 1279.77 516.925 1311.17C514.595 1316.8 516.745 1320.52 520.085 1324.38C527.845 1333.34 534.975 1342.9 544.245 1350.45C546.545 1352.33 548.195 1356.89 551.515 1355.08C553.595 1353.95 554.355 1349.78 555.045 1346.82C561.335 1319.93 567.825 1293.08 573.465 1266.05C575.215 1257.67 644.195 1318.36 640.475 1310.61V1310.6Z"
fill="#5A0D82" />
<path
d="M756.426 1040.14C756.426 1040.14 699.265 1011.98 682.625 1003.02C677.095 1000.04 673.436 1016.81 673.436 1016.81V1032.22L701.546 1050.6H727.226L756.416 1040.15L756.426 1040.14Z"
fill="#06F80A" />
<path
d="M1054.67 1050.59L1082.78 1032.21V1016.8C1082.78 1016.8 1079.12 1000.04 1073.59 1003.01C1056.95 1011.97 999.785 1040.13 999.785 1040.13L1028.98 1050.58H1054.66L1054.67 1050.59Z"
fill="#06F80A" />
<path
d="M589.736 854.575C581.986 852.185 568.806 849.205 568.806 849.205C568.806 849.205 475.826 812.795 456.666 804.025C437.506 795.255 409.286 761.515 402.786 753.385C422.786 767.665 481.166 799.475 501.066 804.515C544.586 815.535 588.966 819.375 633.616 820.965C638.596 821.145 647.266 820.275 647.976 817.975C650.056 811.215 649.106 803.485 649.076 796.125C649.076 793.975 645.186 793.615 645.186 793.615L612.506 791.375C612.506 791.375 577.056 789.085 559.406 786.815C511.276 780.625 466.056 766.975 423.106 745.185C413.726 740.425 376.716 706.335 376.716 706.335L324.756 680.495L370.976 725.635C370.976 725.635 395.976 776.645 399.766 782.015C419.696 810.255 449.346 822.275 480.666 831.805C509.576 840.605 568.706 852.705 568.706 852.705C568.706 852.705 586.156 855.045 589.736 854.565V854.575Z"
fill="white" />
<path
d="M1113.34 953.465C1116.94 958.545 1117.07 961.855 1110.69 964.795C1066.31 985.355 1022.01 1006.03 977.775 1026.93C973.015 1029.2 970.785 1027.23 968.055 1024.09C954.435 1008.42 940.735 992.835 927.065 977.225C925.705 975.675 924.845 973.585 921.495 973.155C920.205 984.825 918.845 996.465 917.625 1008.14C917.205 1012.06 920.105 1014.6 922.025 1017.46C932.865 1033.49 943.755 1049.52 954.805 1065.4C957.555 1069.36 958.805 1073 958.085 1078.06C950.545 1131.29 943.135 1184.53 936.215 1237.84C935.365 1244.36 932.995 1247.26 926.985 1248.19C924.575 1248.57 922.095 1249.1 919.845 1250.05C905.825 1255.89 891.935 1257.68 878.115 1256.96C864.285 1257.68 850.395 1255.89 836.355 1250.05C834.115 1249.1 831.655 1248.57 829.245 1248.19C823.235 1247.26 820.855 1244.36 820.015 1237.84C813.095 1184.52 805.675 1131.29 798.145 1078.06C797.425 1073 798.655 1069.36 801.425 1065.4C812.475 1049.52 823.365 1033.49 834.205 1017.46C836.135 1014.6 839.035 1012.06 838.605 1008.14C837.375 996.465 836.025 984.825 834.705 973.155C831.385 973.575 830.515 975.675 829.155 977.225C815.475 992.835 801.775 1008.42 788.165 1024.09C785.435 1027.22 783.215 1029.19 778.425 1026.93C734.215 1006.03 689.895 985.355 645.515 964.795C639.145 961.855 639.285 958.545 642.885 953.465C648.755 945.125 654.785 936.805 659.765 927.925C664.105 920.135 667.835 920.425 674.075 925.825C685.935 936.075 698.405 945.625 711.045 955.785C712.975 950.835 710.195 948.455 708.825 945.895C700.695 930.695 692.565 915.465 683.965 900.535C681.365 896.025 680.195 891.725 680.235 886.625C680.385 863.035 681.505 839.345 679.935 815.855C678.575 795.885 682.685 779.245 698.015 765.945C698.795 765.265 699.435 764.375 700.025 763.505C703.345 758.595 707.795 757.255 713.685 758.045C750.275 762.935 786.845 767.865 823.495 772.125C841.665 774.225 859.745 778.015 878.105 777.605C896.465 778.005 914.545 774.215 932.715 772.125C969.365 767.865 1005.94 762.935 1042.51 758.045C1048.42 757.265 1052.84 758.595 1056.19 763.505C1056.78 764.375 1057.42 765.265 1058.2 765.945C1073.53 779.245 1077.62 795.885 1076.28 815.855C1074.71 839.335 1075.84 863.035 1075.98 886.625C1076.02 891.725 1074.84 896.025 1072.25 900.535C1063.63 915.465 1055.5 930.685 1047.37 945.895C1045.99 948.455 1043.24 950.825 1045.17 955.785C1057.81 945.625 1070.26 936.075 1082.12 925.825C1088.39 920.425 1092.09 920.125 1096.46 927.925C1101.44 936.795 1107.45 945.115 1113.34 953.465ZM978.415 926.945L1030.21 844.575L936.955 932.025L987.835 984.415L978.415 926.945ZM1043.13 797.385C1032.67 799.565 959.185 822.775 949.235 824.915C943.035 826.245 936.865 827.645 930.625 828.425L893.845 871.455L910.025 811.675C909.855 811.635 888.595 808.115 878.115 808.355C867.635 808.125 846.375 811.635 846.205 811.675L862.365 871.455L825.585 828.425C819.355 827.645 813.195 826.245 806.975 824.915C797.045 822.775 723.545 799.565 713.085 797.385C726.385 811.165 802.255 845.725 815.235 858.475C833.425 876.325 852.095 893.685 870.505 911.305C872.945 913.635 877.515 919.165 877.515 919.165C877.515 919.165 883.295 913.635 885.735 911.305C904.155 893.685 922.835 876.325 941.025 858.475C954.005 845.725 1029.88 811.175 1043.15 797.385H1043.13ZM921.725 1220.86L943.455 1075.98L914.615 1047.14L921.725 1220.86ZM834.465 1220.86L841.605 1047.14L812.765 1075.98L834.465 1220.86ZM768.385 984.415L819.245 932.025L725.995 844.575L777.805 926.945L768.385 984.415Z"
fill="#A500EA" />
<path
d="M949.235 824.905C959.185 822.765 1032.67 799.555 1043.13 797.375C1029.85 811.155 953.985 845.715 941.005 858.465C922.815 876.315 904.145 893.675 885.715 911.295C883.275 913.625 877.495 919.155 877.495 919.155C877.495 919.155 872.925 913.625 870.485 911.295C852.085 893.675 833.405 876.315 815.215 858.465C802.235 845.715 726.365 811.165 713.065 797.375C723.525 799.555 797.025 822.765 806.955 824.905C813.185 826.235 819.345 827.635 825.565 828.415L862.345 871.445L846.185 811.665C846.355 811.625 867.615 808.105 878.095 808.345C888.575 808.115 909.835 811.625 910.005 811.665L893.825 871.445L930.605 828.415C936.855 827.635 943.015 826.235 949.215 824.905H949.235Z"
fill="#030304" />
</g>
<defs>
<filter id="filter0_d_31_134" x="0.555664" y="283.465" width="1755.1" height="1755.1"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset />
<feGaussianBlur stdDeviation="40" />
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.211765 0 0 0 0.8 0" />
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_31_134" />
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_31_134" result="shape" />
</filter>
<filter id="filter1_d_31_134" x="119.346" y="543.465" width="1517.58" height="1235.09"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha" />
<feOffset />
<feGaussianBlur stdDeviation="40" />
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.211765 0 0 0 0.8 0" />
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_31_134" />
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_31_134" result="shape" />
</filter>
<linearGradient id="paint0_linear_31_134" x1="878.106" y1="1958.57" x2="878.106" y2="363.465"
gradientUnits="userSpaceOnUse">
<stop stop-color="#CC00FF" />
<stop offset="1" stop-color="#15FF31" />
</linearGradient>
</defs>
</svg>
</div>
</div>
</div>
</section>
<section class="ftco-section ftco-partner">
<div class="container">
<div class="row">
<!-- <div class="col-sm ftco-animate">
<span class="partner"><img src="img/flavorlab.png" class="img-fluid" alt="Colorlib Template" /></span>
</div> -->
<div class="col-sm ftco-animate">
<span class="partner"><img src="img/vaporesso.png" class="img-fluid" alt="Colorlib Template" /></span>
</div>
<div class="col-sm ftco-animate">
<span class="partner"><img src="img/voopoo.png" class="img-fluid" alt="Colorlib Template" /></span>
</div>
<div class="col-sm ftco-animate">
<span class="partner"><img src="img/mixbar.png" class="img-fluid" alt="Colorlib Template" /></span>
</div>
</div>
</div>
</section>
<div id="template-products" style="display: none;">
<a href="/product-single#{id}">
<div class="col-md-6 col-lg-3 height-product">
<div class="product">
<img class="img-fluid" src="{thumb}" alt="Product Image" />
<h3 style="font-size: 18px; color: #2E2E2E; margin-top: 10px;">{name}</h3>
<div class="product__info">
<p class="price">
<span class="price-sale">{price} грн</span>
</p>
<div class="product__btn d-flex addProductButton" product="""">
<a href="/checkout" class="buy-now d-flex align-items-center">
<span><i class="ion-ios-cart" style="color: #FFFFFF; font-size: 24px;"></i></span>
</a>
</div>
</div>
</div>
</div>
</a>
</div>
<script type="module">
import Dom from "https://webart.work/api/wjst/dom";
const fetchProducts = async () => {
try {
const response = await fetch('https://webart.work/api/commerce/topProducts', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
commerce: '674d9cbe7f4e98c4f2482a20'
})
});
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const products = await response.json();
return products;
} catch (error) {
console.error('Error fetching products:', error);
return [];
}
};
const renderProducts = (products) => {
if (products.length === 0) {
console.warn('No products found for the specified commerce.');
return;
}
products.forEach((product, index) => {
Dom.add('products', Dom.template('products', {
name: product.name || 'No name',
description: product.description || '',
price: product.price || 0,
country: product.country || '',
volume: product.volume || '',
weight: product.weight || '',
priceType: product.priceType || '',
thumb: product.thumb || '',
thumbs: product.thumbs || '',
id: product._id || 'No ID',
}));
});
};
fetchProducts().then((products) => {
console.log('Fetched products:', products);
renderProducts(products);
});
</script>
<footer class="ftco-footer ftco-section">
<div class="container">
<div class="row">
<div class="mouse">
<a href="#" class="mouse-icon">
<div class="mouse-wheel">
<span class="ion-ios-arrow-up"></span>
</div>
</a>
</div>
</div>
<div class="row mb-5">
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2">
<strong>POD HUB</strong>
</h2>
<p>
POD HUB | Vape Shop - пропонуємо широкий вибір POD систем, комплектуючих до них, рідини
найвищої якості. <br> Оффлайн магазини з можливістю доставки по місту та доставка по
Україні.
Доступні ціни, швидка доставка, сертифікована продукція.
<br> POD HUB - улюблене місце людей, які цінують якісну консультацію та сертифіковану
продукцію.
</p>
<!-- <ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-5">
<li class="ftco-animate"><a href="#"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="#"><span class="icon-facebook"></span></a></li>
</ul> -->
</div>
</div>
<!-- <div class="col-md">
<div class="ftco-footer-widget mb-4 ml-md-5">
<h2 class="ftco-heading-2"><strong>Меню</strong></h2>
<ul class="list-unstyled">
<li><a href="#" class="py-2 d-block">Товари</a></li>
<li><a href="#" class="py-2 d-block">About</a></li>
<li><a href="#" class="py-2 d-block">Journal</a></li>
<li><a href="#" class="py-2 d-block">Contact Us</a></li>
</ul>
</div>
</div> -->
<div class="col-md">
<div class="ftco-footer-widget mb-4">
<h2 class="ftco-heading-2"><strong>Є питання?</strong></h2>
<div class="block-23 mb-3">
<ul>
<li>
<a><span class="icon"><svg viewBox="0 0 24 24" height="20px" width="20px"
xmlns="http://www.w3.org/2000/svg">
<defs>
<style>
.cls-9 {
fill: #232323;
}
</style>
</defs>
<path class="cls-9"
d="M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm3.707,14.707a1,1,0,0,1-1.414,0l-3-3A1,1,0,0,1,11,12V6a1,1,0,0,1,2,0v5.586l2.707,2.707A1,1,0,0,1,15.707,15.707Z" />
</svg></span><span class="text">Графік роботи: <br>з
9:00 до 21:00.</span></a>
</li>
<li>
<a href="tel:+380930935126"><span class="icon"><svg viewBox="0 0 512 512"
xmlns="http://www.w3.org/2000/svg" height="17px" width="17px">
<path
d="M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z" />
</svg></span><span class="text">+38 0930 9351 26</span></a>
</li>
<li>
<a href="https://t.me/Pod_Hub_Vape_Shop"><span class="icon"><svg
viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg" height="22px"
width="22px">
<path
d="M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z" />
</svg></span><span class="text">Telegram</span></a>
</li>
<li>
<a href="https://www.instagram.com/pod_hub_vape_shop?igsh=a3ZkdGx2b2IzYmQx"><span
class="icon"><svg viewBox="0 0 24 24" height="24px" width="24px"
xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M0 0h24v24H0z" fill="none" />
<path