-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·1521 lines (1436 loc) · 174 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Green Traveller</title>
<meta name="description" content="Gain control of your travelling options.">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- Font Awesome if you need it -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link rel="stylesheet" href="https://unpkg.com/tailwindcss/dist/tailwind.min.css">
<!--Replace with your tailwind.css once created-->
<!--link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet"-->
<!-- Define your gradient here - use online tools to find a gradient matching your branding-->
<style>
.gradient {
background: linear-gradient(90deg, #26C281 0%, #26C281 100%);
}
</style>
</head>
<body class="leading-normal tracking-normal text-white gradient"
style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';">
<!--Nav-->
<nav id="header" class="fixed w-full z-30 top-0 text-white">
<div class="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 py-2">
<div class="pl-4 flex items-center">
<a class="toggleColour text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl" href="#">
<svg class="h-8 fill-current inline"
style="margin-top:-0.5rem"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="route"
role="img"
viewBox="0 0 390 390"
version="1.1"
id="svg_light">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
id="linearGradient1568">
<stop
style="stop-color:#808080;stop-opacity:1;"
offset="0"
id="stop1564" />
<stop
style="stop-color:#808080;stop-opacity:0;"
offset="1"
id="stop1566" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient916">
<stop
style="stop-color:#ff0000;stop-opacity:1;"
offset="0"
id="stop912" />
<stop
style="stop-color:#00ff00;stop-opacity:1"
offset="1"
id="stop914" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient916"
id="linearGradient918"
x1="219.74905"
y1="440.38715"
x2="485.05756"
y2="27.831438"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1568"
id="linearGradient1570"
x1="-0.0028713048"
y1="274.98511"
x2="550.00861"
y2="274.98511"
gradientUnits="userSpaceOnUse" />
</defs>
<path
id="path900-1-7"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.748974;stroke-opacity:1"
d="m 73.826539,193.85848 c -2.51293,0 -4.99641,0.12831 -7.44387,0.37843 -2.44754,0.25012 -4.85908,0.62206 -7.22904,1.11002 -2.36996,0.48796 -4.69852,1.09082 -6.97867,1.80431 -2.28007,0.71349 -4.51155,1.53762 -6.68959,2.46437 -2.17805,0.92674 -4.30293,1.95648 -6.36675,3.08417 -2.06381,1.12771 -4.06637,2.35337 -6.00364,3.66973 -1.93729,1.31637 -3.80811,2.7238 -5.60664,4.21654 -1.79853,1.49273 -3.52486,3.07076 -5.17251,4.72759 -1.64757,1.65681 -3.21682,3.39279 -4.7013,5.20138 -1.484394,1.80861 -2.884008,3.68984 -4.193008,5.63795 -1.30909,1.9481 -2.527926,3.96193 -3.649324,6.03724 -1.121486,2.0753 -2.145536,4.21207 -3.067026,6.40228 -0.921671,2.19021 -1.741143,4.43425 -2.450694,6.72708 -0.709551,2.29284 -1.30909,4.63448 -1.794307,7.01764 -0.485218,2.38316 -0.855036,4.80823 -1.103796,7.26943 C 1.127614,262.06782 1,264.56517 1,267.09211 c 0,1.26346 0.07095,2.56643 0.208887,3.90662 0.137761,1.34018 0.342338,2.71775 0.608969,4.12714 0.533443,2.81877 1.315736,5.76832 2.311406,8.81897 0.99567,3.05066 2.204717,6.20132 3.591579,9.42388 1.386771,3.22256 2.951447,6.51701 4.658284,9.85149 1.706838,3.33449 3.556017,6.7094 5.511794,10.09585 1.95578,3.38646 4.01825,6.78446 6.15183,10.1629 4.26719,6.75689 8.81879,13.4378 13.37048,19.80283 4.55168,6.36502 9.10337,12.41418 13.37056,17.9076 4.26718,5.49342 8.24986,10.43108 11.66363,14.57313 6.82743,8.28408 11.37912,13.38564 11.37912,13.38564 0,0 4.5516,-5.10156 11.37912,-13.38564 3.41377,-4.14205 7.39645,-9.07971 11.66363,-14.57313 4.267191,-5.49342 8.818781,-11.54258 13.370471,-17.9076 4.55159,-6.36503 9.10328,-13.04594 13.37047,-19.80283 2.13358,-3.37844 4.19596,-6.77644 6.15174,-10.1629 1.95586,-3.38645 3.80495,-6.76136 5.51188,-10.09585 1.70683,-3.33448 3.27151,-6.62893 4.65829,-9.85149 1.38677,-3.22256 2.59591,-6.37322 3.59157,-9.42388 0.99567,-3.05065 1.77797,-6.0002 2.31132,-8.81897 0.26672,-1.40939 0.47112,-2.78696 0.60897,-4.12714 0.13776,-1.34019 0.20898,-2.64316 0.20898,-3.90662 0,-2.52694 -0.1277,-5.02429 -0.37637,-7.48547 -0.24877,-2.4612 -0.61868,-4.88627 -1.10389,-7.26943 -0.48522,-2.38316 -1.08619,-4.7248 -1.79575,-7.01764 -0.70955,-2.29283 -1.52758,-4.53687 -2.44917,-6.72708 -0.92167,-2.19021 -1.94715,-4.32698 -3.06846,-6.40228 -1.12149,-2.07531 -2.33889,-4.08914 -3.64788,-6.03724 -1.30901,-1.94811 -2.70871,-3.82934 -4.1931,-5.63795 -1.48448,-1.80859 -3.05373,-3.54457 -4.7013,-5.20138 -1.64757,-1.65683 -3.37398,-3.23486 -5.17251,-4.72759 -1.79853,-1.49274 -3.66926,-2.90017 -5.60654,-4.21654 -1.93727,-1.31636 -3.94146,-2.54202 -6.00518,-3.66973 -2.06373,-1.12769 -4.18717,-2.15743 -6.36521,-3.08417 -2.178041,-0.92675 -4.411051,-1.75088 -6.691211,-2.46437 -2.28006,-0.71349 -4.60718,-1.31635 -6.97705,-1.80431 -2.36996,-0.48796 -4.7815,-0.8599 -7.22896,-1.11002 -2.44764,-0.25012 -4.93102,-0.37843 -7.44386,-0.37843 z m 0,48.82242 c 1.67837,0 3.31659,0.17 4.89833,0.49465 1.58165,0.32466 3.10645,0.80308 4.55905,1.41992 1.4526,0.61684 2.83209,1.37178 4.12341,2.24832 1.29122,0.87654 2.49397,1.87465 3.59158,2.97839 1.09759,1.10375 2.09012,2.31314 2.96186,3.61163 0.87165,1.29848 1.62234,2.68726 2.23579,4.148 0.61337,1.46073 1.08916,2.99403 1.41201,4.58455 0.32285,1.59051 0.49339,3.23794 0.49339,4.92575 0,1.68779 -0.17054,3.33523 -0.49339,4.92574 -0.32285,1.59051 -0.79864,3.12381 -1.41201,4.58455 -0.61345,1.46075 -1.36414,2.84803 -2.23579,4.14651 -0.87174,1.29849 -1.86427,2.50787 -2.96186,3.61162 -1.09761,1.10375 -2.30036,2.10186 -3.59158,2.97839 -1.29132,0.87654 -2.67081,1.63149 -4.12341,2.24833 -1.4526,0.61683 -2.9774,1.09525 -4.55905,1.41991 -1.58174,0.32466 -3.21996,0.49616 -4.89833,0.49616 -1.67846,0 -3.31677,-0.1715 -4.89842,-0.49616 -1.58165,-0.32466 -3.10646,-0.80308 -4.55905,-1.41991 -1.4526,-0.61684 -2.83372,-1.37179 -4.12493,-2.24833 -1.29132,-0.87653 -2.4939,-1.87464 -3.5915,-2.97839 -1.09769,-1.10375 -2.09021,-2.31313 -2.96186,-3.61162 -0.87165,-1.29848 -1.62242,-2.68576 -2.23588,-4.14651 -0.61337,-1.46074 -1.08907,-2.99404 -1.41201,-4.58455 -0.32285,-1.59051 -0.49186,-3.23795 -0.49186,-4.92574 0,-1.68781 0.16901,-3.33524 0.49186,-4.92575 0.32294,-1.59052 0.79864,-3.12382 1.41201,-4.58455 0.61346,-1.46074 1.36423,-2.84952 2.23588,-4.148 0.87165,-1.29849 1.86417,-2.50788 2.96186,-3.61163 1.0976,-1.10374 2.30018,-2.10185 3.5915,-2.97839 1.29121,-0.87654 2.67233,-1.63148 4.12493,-2.24832 1.45259,-0.61684 2.9774,-1.09526 4.55905,-1.41992 1.58165,-0.32465 3.21996,-0.49465 4.89842,-0.49465 z" />
<path
id="path896-9-0"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.748974;stroke-opacity:1"
d="m 276.36864,194.12817 c 2.47084,-11.01255 12.20773,-3.31415 11.38022,-32.40734 -9.55675,-1.8175 -17.74142,-8.26579 -25.42209,-16.41508 h -43.4866 c -2.50807,0 -4.98804,0.12779 -7.43191,0.37845 -2.44396,0.25066 -4.8528,0.62407 -7.22016,1.11297 -2.36726,0.48894 -4.69286,1.09402 -6.97122,1.80881 -2.27844,0.71479 -4.50956,1.53911 -6.6867,2.46734 -2.17715,0.92823 -4.30015,1.95937 -6.36369,3.08864 -2.06364,1.12929 -4.06755,2.35627 -6.00518,3.67421 -1.93764,1.31792 -3.80865,2.72684 -5.60807,4.221 -1.79934,1.49418 -3.52665,3.07406 -5.17538,4.73206 -1.64883,1.658 -3.21997,3.39493 -4.7058,5.20437 -1.48583,1.80944 -2.88687,3.69096 -4.19758,5.63943 -1.31053,1.94847 -2.53071,3.96364 -3.65373,6.03873 -1.123,2.0751 -2.1484,4.20999 -3.07142,6.3993 -0.92311,2.18932 -1.74285,4.43297 -2.45366,6.72412 -0.71081,2.29113 -1.31259,4.62961 -1.79879,7.01016 -0.48621,2.38057 -0.85746,4.80293 -1.10676,7.2605 -0.2493,2.45757 -0.37637,4.95137 -0.37637,7.47355 0,2.52218 0.12707,5.01448 0.37637,7.47206 0.2493,2.45756 0.62055,4.87993 1.10676,7.26049 0.4862,2.38054 1.08798,4.71904 1.79879,7.01017 0.71081,2.29113 1.53055,4.53478 2.45366,6.72411 0.92302,2.18932 1.94842,4.3242 3.07142,6.3993 1.12302,2.07509 2.3432,4.09027 3.65373,6.03874 1.31071,1.94847 2.71175,3.83147 4.19758,5.64092 1.48583,1.80943 3.05697,3.54635 4.7058,5.20437 1.64873,1.658 3.37604,3.23639 5.17538,4.73056 1.79942,1.49418 3.67043,2.90308 5.60807,4.22101 1.93763,1.31792 3.94154,2.54491 6.00518,3.6742 2.06354,1.12927 4.18654,2.1619 6.36369,3.09013 2.17714,0.92825 4.40826,1.75257 6.6867,2.46734 2.27836,0.71479 4.60396,1.31987 6.97122,1.80879 2.36736,0.48894 4.7762,0.86084 7.22016,1.11151 2.44387,0.25067 4.92384,0.37993 7.43191,0.37993 h 72.82644 c 1.66894,0 3.29971,0.17104 4.87616,0.49764 1.57653,0.32661 3.09792,0.80904 4.54872,1.42886 1.4508,0.61982 2.83147,1.3776 4.12341,2.25726 1.29203,0.87966 2.49605,1.88119 3.59607,2.98734 1.09993,1.10613 2.09596,2.31686 2.97066,3.61608 0.87479,1.29923 1.62835,2.68608 2.24477,4.14503 0.61634,1.45892 1.09464,2.99031 1.41937,4.57559 0.32483,1.58532 0.49636,3.22514 0.49636,4.90341 0,1.67828 -0.17153,3.3181 -0.49636,4.90341 -0.32473,1.58529 -0.80303,3.11515 -1.41937,4.5741 -0.61642,1.45896 -1.36998,2.8473 -2.24477,4.14652 -0.8747,1.29923 -1.87073,2.50996 -2.97066,3.61609 -1.10002,1.10614 -2.30404,2.10768 -3.59607,2.98733 -1.29194,0.87967 -2.67261,1.63745 -4.12341,2.25727 -1.4508,0.61981 -2.97219,1.10077 -4.54872,1.42736 -1.57645,0.32659 -3.20722,0.49913 -4.87616,0.49913 H 116.8073 c -12.24063,16.78747 -25.428521,32.76544 -38.680081,48.53636 l 213.539391,0.28606 c 2.50818,0.003 4.98662,-0.12926 7.43057,-0.37993 2.44387,-0.25067 4.85272,-0.62257 7.22007,-1.1115 2.36736,-0.48892 4.69286,-1.09401 6.97122,-1.8088 2.27845,-0.71477 4.50966,-1.53909 6.6868,-2.46733 2.17707,-0.92823 4.30006,-1.96087 6.36361,-3.09014 2.06362,-1.12929 4.06763,-2.35628 6.00526,-3.6742 1.93764,-1.31792 3.81008,-2.72684 5.6095,-4.221 1.79935,-1.49418 3.52666,-3.07257 5.17539,-4.73056 1.64891,-1.65803 3.21843,-3.39494 4.70426,-5.20438 1.48592,-1.80945 2.88697,-3.69245 4.19758,-5.64092 1.31063,-1.94847 2.5308,-3.96364 3.65373,-6.03873 1.12302,-2.0751 2.14994,-4.20999 3.07296,-6.39931 0.9231,-2.18932 1.74284,-4.43297 2.45366,-6.7241 0.7108,-2.29114 1.31258,-4.62964 1.7987,-7.01018 0.48621,-2.38055 0.85602,-4.80292 1.10533,-7.26049 0.24929,-2.45757 0.37789,-4.94988 0.37789,-7.47206 0,-2.52217 -0.1286,-5.01598 -0.37789,-7.47355 -0.24931,-2.45756 -0.61912,-4.87993 -1.10533,-7.26049 -0.48612,-2.38055 -1.0879,-4.71904 -1.7987,-7.01018 -0.71082,-2.29113 -1.53056,-4.53479 -2.45366,-6.7241 -0.92302,-2.18932 -1.94994,-4.32421 -3.07296,-6.39931 -1.12293,-2.0751 -2.3431,-4.09026 -3.65373,-6.03873 -1.31061,-1.94847 -2.71166,-3.82998 -4.19758,-5.63943 -1.48583,-1.80944 -3.05544,-3.54636 -4.70426,-5.20437 -1.64864,-1.658 -3.37604,-3.23788 -5.17539,-4.73205 -1.79942,-1.49417 -3.67186,-2.90308 -5.6095,-4.22101 -1.93763,-1.31793 -3.94164,-2.54491 -6.00526,-3.6742 -2.06355,-1.12928 -4.18654,-2.16042 -6.36361,-3.08865 -2.17714,-0.92823 -4.40835,-1.75255 -6.6868,-2.46734 -2.27836,-0.71478 -4.60386,-1.31987 -6.97122,-1.8088 -2.36735,-0.48891 -4.7762,-0.86232 -7.22007,-1.11298 -2.44395,-0.25066 -4.92239,-0.37844 -7.43057,-0.37844 h -72.82644 c -1.66893,0 -3.29961,-0.17255 -4.87615,-0.49913 -1.57643,-0.3266 -3.09926,-0.80755 -4.55007,-1.42737 -1.45088,-0.61981 -2.83002,-1.3776 -4.12196,-2.25726 -1.29212,-0.87966 -2.49605,-1.8812 -3.59607,-2.98733 -1.09993,-1.10613 -2.09596,-2.31686 -2.97067,-3.61609 -0.87479,-1.29923 -1.62835,-2.68756 -2.24477,-4.14651 -0.61633,-1.45896 -1.09607,-2.98882 -1.42089,-4.57412 -0.32474,-1.5853 -0.49492,-3.22513 -0.49492,-4.9034 0,-1.67827 0.17018,-3.3181 0.49492,-4.90341 0.32482,-1.58528 0.80456,-3.11665 1.42089,-4.57559 0.61642,-1.45897 1.36998,-2.8458 2.24477,-4.14504 0.87471,-1.29921 1.87074,-2.50995 2.97067,-3.61607 1.10002,-1.10615 2.30395,-2.10768 3.59607,-2.98735 1.29194,-0.87965 2.67108,-1.63744 4.12196,-2.25725 1.45081,-0.61982 2.97364,-1.10226 4.55007,-1.42886 1.57654,-0.32661 3.20722,-0.49765 4.87615,-0.49765 z" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3.80364;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 291.76265,167.04539 -0.25616,-8.80389 -8.25932,-2.02149 c -5.90009,-1.44406 -18.95015,-13.45507 -20.68177,-19.44796 -0.8473,-2.93241 -4.81324,-3.08595 -8.90899,-3.08595 -7.07638,0 -14.94852,-3.66268 -21.4646,-9.98695 -8.85247,-8.59195 -11.83893,-15.51468 -11.85097,-27.470563 -0.0116,-11.61181 2.63893,-18.53418 10.17206,-26.56628 4.2626,-4.545 4.60386,-5.60914 3.95977,-12.34986 -0.98488,-10.30738 1.96844,-19.45112 8.80523,-27.2616 7.98439,-9.12136 15.71743,-12.90555 27.0134,-13.219059 7.7588,-0.215345 9.54395,-0.787849 11.91732,-3.821964 1.53531,-1.962761 6.21587,-5.4428621 10.40115,-7.7335321 17.07861,-9.347275 39.15137,-2.822875 48.14986,14.2323681 3.01727,5.718857 3.75628,6.222087 9.3163,6.343767 9.28244,0.20315 16.84421,3.34278 24.0306,9.97739 8.49611,7.84379 11.88087,15.42231 11.92156,26.69234 0.0323,8.96952 -4.608,21.57566 -9.42047,25.592 -1.6641,1.38883 -1.22162,2.94593 2.58926,9.11063 6.24729,10.105993 7.29128,24.265653 2.51993,34.177153 -9.05496,18.80954 -31.27753,26.6667 -49.5395,17.51547 -7.16916,-3.59251 -7.8822,-3.69387 -10.12429,-1.43928 -2.72818,2.74357 -2.77803,14.9817 -0.11575,28.46406 1.20033,6.07876 2.59985,8.59665 6.53162,11.75138 5.45836,4.37956 6.70112,6.22325 2.87021,6.40845 -3.19912,0.15466 -44.81633,0.0569 -50.31105,0.007 0.257,-0.79113 -0.0834,-1.70561 1.16963,-3.38097 1.54385,-2.06423 5.17328,-5.10037 6.66754,-8.2712 2.07748,-4.40841 2.87431,-9.83324 2.89743,-15.41146 z"
id="path5267-5-5" />
</svg>
<svg
style="margin-top:-0.5rem"
class="h-8 fill-current inline"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
focusable="false"
data-prefix="fas"
data-icon="route"
role="img"
viewBox="0 0 390 390"
version="1.1"
id="svg_dark">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8">
<linearGradient
inkscape:collect="always"
id="linearGradient1568">
<stop
style="stop-color:#808080;stop-opacity:1;"
offset="0"
id="stop1564" />
<stop
style="stop-color:#808080;stop-opacity:0;"
offset="1"
id="stop1566" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient916">
<stop
style="stop-color:#ff0000;stop-opacity:1;"
offset="0"
id="stop912" />
<stop
style="stop-color:#00ff00;stop-opacity:1"
offset="1"
id="stop914" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient916"
id="linearGradient918"
x1="219.74905"
y1="440.38715"
x2="485.05756"
y2="27.831438"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1568"
id="linearGradient1570"
x1="-0.0028713048"
y1="274.98511"
x2="550.00861"
y2="274.98511"
gradientUnits="userSpaceOnUse" />
</defs>
<path
id="path900-1-7"
style="fill:rgb(45,55,72);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.748974;stroke-opacity:1"
d="m 73.826539,193.85848 c -2.51293,0 -4.99641,0.12831 -7.44387,0.37843 -2.44754,0.25012 -4.85908,0.62206 -7.22904,1.11002 -2.36996,0.48796 -4.69852,1.09082 -6.97867,1.80431 -2.28007,0.71349 -4.51155,1.53762 -6.68959,2.46437 -2.17805,0.92674 -4.30293,1.95648 -6.36675,3.08417 -2.06381,1.12771 -4.06637,2.35337 -6.00364,3.66973 -1.93729,1.31637 -3.80811,2.7238 -5.60664,4.21654 -1.79853,1.49273 -3.52486,3.07076 -5.17251,4.72759 -1.64757,1.65681 -3.21682,3.39279 -4.7013,5.20138 -1.484394,1.80861 -2.884008,3.68984 -4.193008,5.63795 -1.30909,1.9481 -2.527926,3.96193 -3.649324,6.03724 -1.121486,2.0753 -2.145536,4.21207 -3.067026,6.40228 -0.921671,2.19021 -1.741143,4.43425 -2.450694,6.72708 -0.709551,2.29284 -1.30909,4.63448 -1.794307,7.01764 -0.485218,2.38316 -0.855036,4.80823 -1.103796,7.26943 C 1.127614,262.06782 1,264.56517 1,267.09211 c 0,1.26346 0.07095,2.56643 0.208887,3.90662 0.137761,1.34018 0.342338,2.71775 0.608969,4.12714 0.533443,2.81877 1.315736,5.76832 2.311406,8.81897 0.99567,3.05066 2.204717,6.20132 3.591579,9.42388 1.386771,3.22256 2.951447,6.51701 4.658284,9.85149 1.706838,3.33449 3.556017,6.7094 5.511794,10.09585 1.95578,3.38646 4.01825,6.78446 6.15183,10.1629 4.26719,6.75689 8.81879,13.4378 13.37048,19.80283 4.55168,6.36502 9.10337,12.41418 13.37056,17.9076 4.26718,5.49342 8.24986,10.43108 11.66363,14.57313 6.82743,8.28408 11.37912,13.38564 11.37912,13.38564 0,0 4.5516,-5.10156 11.37912,-13.38564 3.41377,-4.14205 7.39645,-9.07971 11.66363,-14.57313 4.267191,-5.49342 8.818781,-11.54258 13.370471,-17.9076 4.55159,-6.36503 9.10328,-13.04594 13.37047,-19.80283 2.13358,-3.37844 4.19596,-6.77644 6.15174,-10.1629 1.95586,-3.38645 3.80495,-6.76136 5.51188,-10.09585 1.70683,-3.33448 3.27151,-6.62893 4.65829,-9.85149 1.38677,-3.22256 2.59591,-6.37322 3.59157,-9.42388 0.99567,-3.05065 1.77797,-6.0002 2.31132,-8.81897 0.26672,-1.40939 0.47112,-2.78696 0.60897,-4.12714 0.13776,-1.34019 0.20898,-2.64316 0.20898,-3.90662 0,-2.52694 -0.1277,-5.02429 -0.37637,-7.48547 -0.24877,-2.4612 -0.61868,-4.88627 -1.10389,-7.26943 -0.48522,-2.38316 -1.08619,-4.7248 -1.79575,-7.01764 -0.70955,-2.29283 -1.52758,-4.53687 -2.44917,-6.72708 -0.92167,-2.19021 -1.94715,-4.32698 -3.06846,-6.40228 -1.12149,-2.07531 -2.33889,-4.08914 -3.64788,-6.03724 -1.30901,-1.94811 -2.70871,-3.82934 -4.1931,-5.63795 -1.48448,-1.80859 -3.05373,-3.54457 -4.7013,-5.20138 -1.64757,-1.65683 -3.37398,-3.23486 -5.17251,-4.72759 -1.79853,-1.49274 -3.66926,-2.90017 -5.60654,-4.21654 -1.93727,-1.31636 -3.94146,-2.54202 -6.00518,-3.66973 -2.06373,-1.12769 -4.18717,-2.15743 -6.36521,-3.08417 -2.178041,-0.92675 -4.411051,-1.75088 -6.691211,-2.46437 -2.28006,-0.71349 -4.60718,-1.31635 -6.97705,-1.80431 -2.36996,-0.48796 -4.7815,-0.8599 -7.22896,-1.11002 -2.44764,-0.25012 -4.93102,-0.37843 -7.44386,-0.37843 z m 0,48.82242 c 1.67837,0 3.31659,0.17 4.89833,0.49465 1.58165,0.32466 3.10645,0.80308 4.55905,1.41992 1.4526,0.61684 2.83209,1.37178 4.12341,2.24832 1.29122,0.87654 2.49397,1.87465 3.59158,2.97839 1.09759,1.10375 2.09012,2.31314 2.96186,3.61163 0.87165,1.29848 1.62234,2.68726 2.23579,4.148 0.61337,1.46073 1.08916,2.99403 1.41201,4.58455 0.32285,1.59051 0.49339,3.23794 0.49339,4.92575 0,1.68779 -0.17054,3.33523 -0.49339,4.92574 -0.32285,1.59051 -0.79864,3.12381 -1.41201,4.58455 -0.61345,1.46075 -1.36414,2.84803 -2.23579,4.14651 -0.87174,1.29849 -1.86427,2.50787 -2.96186,3.61162 -1.09761,1.10375 -2.30036,2.10186 -3.59158,2.97839 -1.29132,0.87654 -2.67081,1.63149 -4.12341,2.24833 -1.4526,0.61683 -2.9774,1.09525 -4.55905,1.41991 -1.58174,0.32466 -3.21996,0.49616 -4.89833,0.49616 -1.67846,0 -3.31677,-0.1715 -4.89842,-0.49616 -1.58165,-0.32466 -3.10646,-0.80308 -4.55905,-1.41991 -1.4526,-0.61684 -2.83372,-1.37179 -4.12493,-2.24833 -1.29132,-0.87653 -2.4939,-1.87464 -3.5915,-2.97839 -1.09769,-1.10375 -2.09021,-2.31313 -2.96186,-3.61162 -0.87165,-1.29848 -1.62242,-2.68576 -2.23588,-4.14651 -0.61337,-1.46074 -1.08907,-2.99404 -1.41201,-4.58455 -0.32285,-1.59051 -0.49186,-3.23795 -0.49186,-4.92574 0,-1.68781 0.16901,-3.33524 0.49186,-4.92575 0.32294,-1.59052 0.79864,-3.12382 1.41201,-4.58455 0.61346,-1.46074 1.36423,-2.84952 2.23588,-4.148 0.87165,-1.29849 1.86417,-2.50788 2.96186,-3.61163 1.0976,-1.10374 2.30018,-2.10185 3.5915,-2.97839 1.29121,-0.87654 2.67233,-1.63148 4.12493,-2.24832 1.45259,-0.61684 2.9774,-1.09526 4.55905,-1.41992 1.58165,-0.32465 3.21996,-0.49465 4.89842,-0.49465 z" />
<path
id="path896-9-0"
style="fill:rgb(45,55,72);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.748974;stroke-opacity:1"
d="m 276.36864,194.12817 c 2.47084,-11.01255 12.20773,-3.31415 11.38022,-32.40734 -9.55675,-1.8175 -17.74142,-8.26579 -25.42209,-16.41508 h -43.4866 c -2.50807,0 -4.98804,0.12779 -7.43191,0.37845 -2.44396,0.25066 -4.8528,0.62407 -7.22016,1.11297 -2.36726,0.48894 -4.69286,1.09402 -6.97122,1.80881 -2.27844,0.71479 -4.50956,1.53911 -6.6867,2.46734 -2.17715,0.92823 -4.30015,1.95937 -6.36369,3.08864 -2.06364,1.12929 -4.06755,2.35627 -6.00518,3.67421 -1.93764,1.31792 -3.80865,2.72684 -5.60807,4.221 -1.79934,1.49418 -3.52665,3.07406 -5.17538,4.73206 -1.64883,1.658 -3.21997,3.39493 -4.7058,5.20437 -1.48583,1.80944 -2.88687,3.69096 -4.19758,5.63943 -1.31053,1.94847 -2.53071,3.96364 -3.65373,6.03873 -1.123,2.0751 -2.1484,4.20999 -3.07142,6.3993 -0.92311,2.18932 -1.74285,4.43297 -2.45366,6.72412 -0.71081,2.29113 -1.31259,4.62961 -1.79879,7.01016 -0.48621,2.38057 -0.85746,4.80293 -1.10676,7.2605 -0.2493,2.45757 -0.37637,4.95137 -0.37637,7.47355 0,2.52218 0.12707,5.01448 0.37637,7.47206 0.2493,2.45756 0.62055,4.87993 1.10676,7.26049 0.4862,2.38054 1.08798,4.71904 1.79879,7.01017 0.71081,2.29113 1.53055,4.53478 2.45366,6.72411 0.92302,2.18932 1.94842,4.3242 3.07142,6.3993 1.12302,2.07509 2.3432,4.09027 3.65373,6.03874 1.31071,1.94847 2.71175,3.83147 4.19758,5.64092 1.48583,1.80943 3.05697,3.54635 4.7058,5.20437 1.64873,1.658 3.37604,3.23639 5.17538,4.73056 1.79942,1.49418 3.67043,2.90308 5.60807,4.22101 1.93763,1.31792 3.94154,2.54491 6.00518,3.6742 2.06354,1.12927 4.18654,2.1619 6.36369,3.09013 2.17714,0.92825 4.40826,1.75257 6.6867,2.46734 2.27836,0.71479 4.60396,1.31987 6.97122,1.80879 2.36736,0.48894 4.7762,0.86084 7.22016,1.11151 2.44387,0.25067 4.92384,0.37993 7.43191,0.37993 h 72.82644 c 1.66894,0 3.29971,0.17104 4.87616,0.49764 1.57653,0.32661 3.09792,0.80904 4.54872,1.42886 1.4508,0.61982 2.83147,1.3776 4.12341,2.25726 1.29203,0.87966 2.49605,1.88119 3.59607,2.98734 1.09993,1.10613 2.09596,2.31686 2.97066,3.61608 0.87479,1.29923 1.62835,2.68608 2.24477,4.14503 0.61634,1.45892 1.09464,2.99031 1.41937,4.57559 0.32483,1.58532 0.49636,3.22514 0.49636,4.90341 0,1.67828 -0.17153,3.3181 -0.49636,4.90341 -0.32473,1.58529 -0.80303,3.11515 -1.41937,4.5741 -0.61642,1.45896 -1.36998,2.8473 -2.24477,4.14652 -0.8747,1.29923 -1.87073,2.50996 -2.97066,3.61609 -1.10002,1.10614 -2.30404,2.10768 -3.59607,2.98733 -1.29194,0.87967 -2.67261,1.63745 -4.12341,2.25727 -1.4508,0.61981 -2.97219,1.10077 -4.54872,1.42736 -1.57645,0.32659 -3.20722,0.49913 -4.87616,0.49913 H 116.8073 c -12.24063,16.78747 -25.428521,32.76544 -38.680081,48.53636 l 213.539391,0.28606 c 2.50818,0.003 4.98662,-0.12926 7.43057,-0.37993 2.44387,-0.25067 4.85272,-0.62257 7.22007,-1.1115 2.36736,-0.48892 4.69286,-1.09401 6.97122,-1.8088 2.27845,-0.71477 4.50966,-1.53909 6.6868,-2.46733 2.17707,-0.92823 4.30006,-1.96087 6.36361,-3.09014 2.06362,-1.12929 4.06763,-2.35628 6.00526,-3.6742 1.93764,-1.31792 3.81008,-2.72684 5.6095,-4.221 1.79935,-1.49418 3.52666,-3.07257 5.17539,-4.73056 1.64891,-1.65803 3.21843,-3.39494 4.70426,-5.20438 1.48592,-1.80945 2.88697,-3.69245 4.19758,-5.64092 1.31063,-1.94847 2.5308,-3.96364 3.65373,-6.03873 1.12302,-2.0751 2.14994,-4.20999 3.07296,-6.39931 0.9231,-2.18932 1.74284,-4.43297 2.45366,-6.7241 0.7108,-2.29114 1.31258,-4.62964 1.7987,-7.01018 0.48621,-2.38055 0.85602,-4.80292 1.10533,-7.26049 0.24929,-2.45757 0.37789,-4.94988 0.37789,-7.47206 0,-2.52217 -0.1286,-5.01598 -0.37789,-7.47355 -0.24931,-2.45756 -0.61912,-4.87993 -1.10533,-7.26049 -0.48612,-2.38055 -1.0879,-4.71904 -1.7987,-7.01018 -0.71082,-2.29113 -1.53056,-4.53479 -2.45366,-6.7241 -0.92302,-2.18932 -1.94994,-4.32421 -3.07296,-6.39931 -1.12293,-2.0751 -2.3431,-4.09026 -3.65373,-6.03873 -1.31061,-1.94847 -2.71166,-3.82998 -4.19758,-5.63943 -1.48583,-1.80944 -3.05544,-3.54636 -4.70426,-5.20437 -1.64864,-1.658 -3.37604,-3.23788 -5.17539,-4.73205 -1.79942,-1.49417 -3.67186,-2.90308 -5.6095,-4.22101 -1.93763,-1.31793 -3.94164,-2.54491 -6.00526,-3.6742 -2.06355,-1.12928 -4.18654,-2.16042 -6.36361,-3.08865 -2.17714,-0.92823 -4.40835,-1.75255 -6.6868,-2.46734 -2.27836,-0.71478 -4.60386,-1.31987 -6.97122,-1.8088 -2.36735,-0.48891 -4.7762,-0.86232 -7.22007,-1.11298 -2.44395,-0.25066 -4.92239,-0.37844 -7.43057,-0.37844 h -72.82644 c -1.66893,0 -3.29961,-0.17255 -4.87615,-0.49913 -1.57643,-0.3266 -3.09926,-0.80755 -4.55007,-1.42737 -1.45088,-0.61981 -2.83002,-1.3776 -4.12196,-2.25726 -1.29212,-0.87966 -2.49605,-1.8812 -3.59607,-2.98733 -1.09993,-1.10613 -2.09596,-2.31686 -2.97067,-3.61609 -0.87479,-1.29923 -1.62835,-2.68756 -2.24477,-4.14651 -0.61633,-1.45896 -1.09607,-2.98882 -1.42089,-4.57412 -0.32474,-1.5853 -0.49492,-3.22513 -0.49492,-4.9034 0,-1.67827 0.17018,-3.3181 0.49492,-4.90341 0.32482,-1.58528 0.80456,-3.11665 1.42089,-4.57559 0.61642,-1.45897 1.36998,-2.8458 2.24477,-4.14504 0.87471,-1.29921 1.87074,-2.50995 2.97067,-3.61607 1.10002,-1.10615 2.30395,-2.10768 3.59607,-2.98735 1.29194,-0.87965 2.67108,-1.63744 4.12196,-2.25725 1.45081,-0.61982 2.97364,-1.10226 4.55007,-1.42886 1.57654,-0.32661 3.20722,-0.49765 4.87615,-0.49765 z" />
<path
style="fill:rgb(45,55,72);fill-opacity:1;stroke:none;stroke-width:3.80364;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 291.76265,167.04539 -0.25616,-8.80389 -8.25932,-2.02149 c -5.90009,-1.44406 -18.95015,-13.45507 -20.68177,-19.44796 -0.8473,-2.93241 -4.81324,-3.08595 -8.90899,-3.08595 -7.07638,0 -14.94852,-3.66268 -21.4646,-9.98695 -8.85247,-8.59195 -11.83893,-15.51468 -11.85097,-27.470563 -0.0116,-11.61181 2.63893,-18.53418 10.17206,-26.56628 4.2626,-4.545 4.60386,-5.60914 3.95977,-12.34986 -0.98488,-10.30738 1.96844,-19.45112 8.80523,-27.2616 7.98439,-9.12136 15.71743,-12.90555 27.0134,-13.219059 7.7588,-0.215345 9.54395,-0.787849 11.91732,-3.821964 1.53531,-1.962761 6.21587,-5.4428621 10.40115,-7.7335321 17.07861,-9.347275 39.15137,-2.822875 48.14986,14.2323681 3.01727,5.718857 3.75628,6.222087 9.3163,6.343767 9.28244,0.20315 16.84421,3.34278 24.0306,9.97739 8.49611,7.84379 11.88087,15.42231 11.92156,26.69234 0.0323,8.96952 -4.608,21.57566 -9.42047,25.592 -1.6641,1.38883 -1.22162,2.94593 2.58926,9.11063 6.24729,10.105993 7.29128,24.265653 2.51993,34.177153 -9.05496,18.80954 -31.27753,26.6667 -49.5395,17.51547 -7.16916,-3.59251 -7.8822,-3.69387 -10.12429,-1.43928 -2.72818,2.74357 -2.77803,14.9817 -0.11575,28.46406 1.20033,6.07876 2.59985,8.59665 6.53162,11.75138 5.45836,4.37956 6.70112,6.22325 2.87021,6.40845 -3.19912,0.15466 -44.81633,0.0569 -50.31105,0.007 0.257,-0.79113 -0.0834,-1.70561 1.16963,-3.38097 1.54385,-2.06423 5.17328,-5.10037 6.66754,-8.2712 2.07748,-4.40841 2.87431,-9.83324 2.89743,-15.41146 z"
id="path5267-5-5" />
</svg>
Green Traveller
</a>
</div>
<div class="block lg:hidden pr-4">
<button id="nav-toggle" class="flex items-center p-1 text-gray-800 hover:text-gray-900">
<svg class="fill-current h-6 w-6" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><title>Menu</title>
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
</svg>
</button>
</div>
<div
class="w-full flex-grow lg:flex lg:items-center lg:w-auto hidden lg:block mt-2 lg:mt-0 bg-white lg:bg-transparent text-black p-4 lg:p-0 z-20"
id="nav-content">
<ul class="list-reset lg:flex justify-end flex-1 items-center">
<li class="mr-3">
<a class="inline-block py-2 px-4 text-black font-bold no-underline hover:text-gray-800 hover:text-underline" href="#features">Features</a>
</li>
<li class="mr-3">
<a class="inline-block text-black no-underline font-bold hover:text-gray-800 hover:text-underline py-2 px-4" href="#faq">FAQ</a>
</li>
<li class="mr-3">
<a class="inline-block text-black no-underline font-bold hover:text-gray-800 hover:text-underline py-2 px-4"
target="_blank" href="https://github.com/green-traveller/web" rel="noreferrer">Source Code <i
class="fas fa-external-link-alt"></i></a>
</li>
</ul>
<button id="navAction"
class="mx-auto lg:mx-0 hover:underline bg-white text-gray-800 font-bold rounded-full mt-4 lg:mt-0 py-4 px-8 shadow opacity-75"
onclick="window.open('https://green-traveller.github.io/web/')">
Launch App <i class="fas fa-rocket"></i>
</button>
</div>
</div>
<hr class="border-b border-gray-100 opacity-25 my-0 py-0" />
</nav>
<!--Hero-->
<div class="pt-24">
<div class="container px-3 mx-auto flex flex-wrap flex-col md:flex-row items-center">
<!--Left Col-->
<div class="flex flex-col w-full md:w-2/5 justify-center items-start text-center md:text-left">
<p class="uppercase tracking-loose w-full"></p>
<h1 class="my-4 text-5xl font-bold leading-tight">Gain control of your travelling options.</h1>
<p class="leading-normal text-2xl mb-8">An App to track your CO<sub>2</sub> emissions from transportation means for your iPhone and Android Smartphone.</p>
<button
class="mx-auto lg:mx-0 hover:underline bg-white text-gray-800 font-bold rounded-full my-6 py-4 px-8 shadow-lg"
onclick="window.open('https://green-traveller.github.io/web/')">
Launch App <i class="fas fa-rocket"></i>
</button>
</div>
<!--Right Col-->
<div class="w-full md:w-3/5 py-6 text-center">
<!--img class="w-full md:w-4/5 z-50" src="hero.png"-->
<svg class="w-full md:w-4/5 z-50" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 888 637.96158">
<title>adventure</title>
<circle cx="174.02316" cy="76.13114" r="30.99674" fill="#2f2e41" />
<path d="M235.61478,580.54458l19.04375-66.04535,6.483,2.02593s-7.69854,49.43272-19.85412,61.99349Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path
d="M308.14311,226.00667s2.43112,25.93191-3.24149,33.22527,3.64667,21.47486,3.64667,21.47486l17.01782,20.25931,25.12155-11.34521,3.64667-21.06968-2.43111-14.58671s-8.50891-8.50891-4.86224-23.906S308.14311,226.00667,308.14311,226.00667Z"
transform="translate(-156 -131.23696)" fill="#ffb9b9" />
<path
d="M308.14311,226.00667s2.43112,25.93191-3.24149,33.22527,3.64667,21.47486,3.64667,21.47486l17.01782,20.25931,25.12155-11.34521,3.64667-21.06968-2.43111-14.58671s-8.50891-8.50891-4.86224-23.906S308.14311,226.00667,308.14311,226.00667Z"
transform="translate(-156 -131.23696)" opacity="0.1" />
<polygon points="166.73 579.778 166.73 596.39 189.015 600.847 186.989 573.295 166.73 579.778" fill="#ffb9b9" />
<polygon points="233.586 573.295 228.723 596.39 238.448 603.278 255.466 590.718 253.44 570.863 233.586 573.295"
fill="#ffb9b9" />
<path
d="M347.041,730.05829s-8.50891-14.38252-24.31117-5.36792c0,0-2.8363,15.90276-5.67261,17.11832s-18.63856,24.31117,0,26.3371,27.95785-4.05186,27.95785-4.05186-3.64667,3.13776,2.02593,1.517,3.24149-10.53484,3.24149-10.53484Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path
d="M402.55149,720.33382s-12.56077,8.91409-14.5867,4.86223-5.26742-3.64667-5.26742-3.64667-11.34522,42.76822-4.05186,44.79415A24.58356,24.58356,0,0,0,392.827,765.611s9.72447-6.81038,9.72447-1.543,27.14748,4.88816,38.49269,4.483,5.26742-8.91409,5.26742-8.91409l-14.99189-14.5867-17.01782-24.71636S406.60335,713.44565,402.55149,720.33382Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path
d="M283.02156,449.26426l17.01782,163.29s9.31929,99.6758,10.94,101.29655,12.15559,6.88816,35.2512,0l-5.26742-130.46995,9.72447-81.03724,22.28524,55.91569s5.26742,150.32408,8.91409,150.32408,25.93192,7.29335,31.19934-1.62075,4.45705-104.94322,4.45705-104.94322-2.43112-151.53963-20.25931-156.40187S283.02156,449.26426,283.02156,449.26426Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<circle cx="174.02316" cy="81.80375" r="27.95785" fill="#ffb9b9" />
<path
d="M331.64391,290.83646s-2.83631-17.423-2.83631-20.6645-12.56077-5.26742-12.56077-5.26742-9.72447-10.94-11.7504-9.31928-32.82008,22.28524-37.68231,25.12154-10.12966,14.99189-9.72447,15.80226,25.52673,53.48458,25.52673,53.48458,10.94,32.4149,3.24149,49.43272-17.423,50.64827-3.24149,57.53644,83.06317,21.88,95.62394,8.91409,21.47487-16.61263,24.71636-16.61263-13.37115-56.32088-9.72447-61.5883-1.62075-38.0875-1.62075-38.0875l18.63857-52.269s-1.62075-29.17341-38.49269-35.65639L349.699,250.968Z"
transform="translate(-156 -131.23696)" fill="#575a89" />
<path
d="M255.87409,456.55761s-2.02593,19.44894-2.02593,25.12154-9.72447,38.89788,4.457,42.94974,12.966-44.1653,12.966-44.1653V455.74724Z"
transform="translate(-156 -131.23696)" fill="#ffb9b9" />
<path
d="M424.02636,438.32423s2.43112,18.63857,1.21556,22.69043,11.7504,39.30306-5.67261,41.329-12.966-42.13937-12.966-42.13937v-21.88Z"
transform="translate(-156 -131.23696)" fill="#ffb9b9" />
<path
d="M252.22741,574.0616l11.7504-62.39867h3.64668a24.5429,24.5429,0,0,1,3.64668,23.5008c-4.86224,13.77633-8.9141,38.89787-8.9141,38.89787Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path
d="M263.16744,291.64683l-6.07779,4.86223s-8.10372,128.84921-6.07779,138.57368-7.29336,23.5008.81037,24.71636,17.82819,6.483,22.28524,3.24149,5.26742-14.99189,6.88816-17.82819,4.457-36.46676,4.457-36.46676,8.50891-33.63045,3.24149-58.752-10.12965-50.64827-10.12965-50.64827Z"
transform="translate(-156 -131.23696)" fill="#575a89" />
<path
d="M391.61146,281.51718,410.25,297.31944l14.18151,82.658s8.9141,64.4246,2.02594,65.235-17.423-1.21556-21.88006,0-8.10372-2.02594-8.10372-2.02594-4.86224-25.93191-4.86224-26.3371S388.37,386.86558,388.37,386.86558l-4.05186-33.22526,6.07779-36.46676Z"
transform="translate(-156 -131.23696)" fill="#575a89" />
<path
d="M303.68606,664.01294s-2.63371,7.56482-6.26416,17.86464c-1.68559,4.78931-3.58594,10.17425-5.543,15.66451-1.26012,3.54944-2.54048,7.14344-3.80065,10.65234-2.00971,5.61184-3.96273,11.00082-5.66855,15.628-2.25286,6.10616-4.08025,10.89141-5.06077,13.124-4.457,10.12966-85.89947-6.07779-92.38245-10.12965s-8.10373-17.8282-8.9141-37.27713c-.00405-.1013-.00811-.2026-.00811-.30389-.10535-3.92626.89545-9.77309,2.56892-16.63289.83465-3.42788,1.83951-7.107,2.95783-10.92788,1.49921-5.12562,3.201-10.49837,4.9797-15.84683,7.64185-22.97406,16.64914-45.42947,16.64914-45.42947s15.80226-10.94,21.47486-18.23338,36.872-12.966,36.872-12.966c8.91409.40519,29.1734,34.846,37.27713,45.38085S303.68606,664.01294,303.68606,664.01294Z"
transform="translate(-156 -131.23696)" fill="#3f3d56" />
<circle cx="102.30521" cy="467.541" r="3.64668" fill="#2f2e41" />
<circle cx="107.97781" cy="471.59286" r="2.02593" fill="#2f2e41" />
<path
d="M297.4219,681.87758c-1.68559,4.78931-3.58594,10.17425-5.543,15.66451L181.57105,661.675c1.49921-5.12562,3.201-10.49837,4.9797-15.84683Z"
transform="translate(-156 -131.23696)" fill="#f2f2f2" />
<path
d="M288.07828,708.19443c-2.00971,5.61184-3.96273,11.00082-5.66855,15.628L176.0443,689.23578c-.10535-3.92626.89545-9.77309,2.56892-16.63289Z"
transform="translate(-156 -131.23696)" fill="#f2f2f2" />
<path d="M258.30521,599.58833s8.10372,35.65639,3.24149,67.26091,12.15558,61.18312,12.15558,61.18312"
transform="translate(-156 -131.23696)" fill="none" stroke="#2f2e41" stroke-miterlimit="10"
stroke-width="3" />
<path d="M263.97781,602.42464s-15.80226,57.53644-16.20744,65.64016-6.88817,66.04535-14.99189,72.12314"
transform="translate(-156 -131.23696)" fill="none" stroke="#2f2e41" stroke-miterlimit="10"
stroke-width="3" />
<path
d="M308.55947,195.98021s-6.32846-16.454,2.84781-21.83318l2.53138,7.27773s23.09887-13.92261,29.1109-10.75838l-5.69561,7.59415s26.89594,0,28.79448,10.442l-9.49269.31642s10.12554,6.64488,10.442,17.40326l-20.25106,1.26569,9.8091,5.69561s-36.705,5.06276-45.56489-9.49269Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path d="M303.07828,196.63067s7.29335,14.5867,17.01782,10.94,0-17.01782,0-17.01782l-6.483-3.24149Z"
transform="translate(-156 -131.23696)" fill="#2f2e41" />
<path
d="M932,426.75091,799.74956,261.48738A44.40268,44.40268,0,0,1,778.3615,272.287c-24.89751,4.90336-49.21219-12.0988-54.30837-37.97538a47.96607,47.96607,0,0,1,16.55848-46.72451L695.518,131.237,438.61481,350.80025l236.482,295.514Z"
transform="translate(-156 -131.23696)" fill="#f2f2f2" />
<circle cx="611.6739" cy="95.91464" r="37.28363" fill="#f2f2f2" />
<rect x="539.17344" y="391.09034" width="17.448" height="50.7929"
transform="translate(-281.46197 427.51701) rotate(-49.17044)" fill="#ffffff" />
<rect x="784.05171" y="628.18934" width="17.448" height="45.02318"
transform="translate(-373.90779 693.8884) rotate(-49.17044)" fill="#ffffff" />
<path
d="M843,531.04734V532.071q-.03493,3.85593-.221,7.67709a170.99032,170.99032,0,0,1-341.41084,2.23332q-.349-5.42629-.349-10.934a170.14342,170.14342,0,0,1,31.44133-98.83715q2.46012-3.4896,5.118-6.85119c1.22134-1.55872,2.47762-3.08251,3.74554-4.59465a171.02253,171.02253,0,0,1,238.29313-22.61261c2.05889,1.66336,4.08285,3.38488,6.06023,5.14132q2.373,2.11125,4.66444,4.3155A170.52787,170.52787,0,0,1,842.40676,516.6702Q843,523.78892,843,531.04734Z"
transform="translate(-156 -131.23696)" fill="#3f3d56" />
<path
d="M672.0096,723.55694c-106.14995,0-192.5096-86.35965-192.5096-192.5096a191.88044,191.88044,0,0,1,51.366-130.9151l4.26317,3.95647A186.0788,186.0788,0,0,0,485.316,531.04734c0,102.9432,83.7504,186.6936,186.6936,186.6936a185.217,185.217,0,0,0,134.02586-56.72532l4.1757,4.04849A190.98693,190.98693,0,0,1,672.0096,723.55694Z"
transform="translate(-156 -131.23696)" fill="#ffffff" />
<rect x="495.072" y="588.24878" width="48.8544" height="48.8544" fill="#ffffff" />
<path
d="M537.57858,425.359a.95129.95129,0,0,1,.23264.13959c.91892.75608-.23264,2.21008-.09306,3.40817.16285,1.53543,2.21008,1.87276,3.75714,2.024,1.54705.16285,3.50123,1.40747,2.76841,2.78005-3.88509,1.33768-7.8167.02326-11.78321-1.50053a170.1436,170.1436,0,0,0-31.4413,98.83711q0,5.51356.349,10.93408a4.41991,4.41991,0,0,0,1.05851.57c1.1632.442,2.51251.3606,3.58266.98872.84913.50018,1.4191,1.38421,2.26824,1.84949,2.43109,1.32605,5.80437-1.22136,8.07261.36059a20.85731,20.85731,0,0,1,1.66337,1.69828c2.09376,1.81459,5.53683.59323,7.95629,1.95417,1.55869.8724,2.3613,2.6172,3.1988,4.19915,2.08213,3.95488,5.45541,7.84,9.91046,8.154a26.68761,26.68761,0,0,1,4.21079.13958c1.37257.31406,2.72189,1.51216,2.50088,2.89637-.38386,2.38456.791,4.99013.47691,7.37469-.57,4.362-6.74656,6.26964-7.27,10.63164a26.26422,26.26422,0,0,1-.16285,2.87311c-.27917,1.13993-1.13993,2.07049-1.44237,3.21043-.5816,2.15192.96546,4.30384,2.6521,5.74621,1.69827,1.454,3.72224,2.71025,4.6528,4.73422.97709,2.15192.50018,4.6528.81424,6.99083.69792,5.10645,5.10645,8.88685,9.64293,11.32957a10.06848,10.06848,0,0,1,3.76877,2.74515c1.1632,1.68664,1.04688,3.90836,1.44236,5.92069.95383,4.92034,5.09482,8.97991,5.21114,13.9933.08142,3.571-1.896,6.80472-3.08248,10.16637a23.46244,23.46244,0,0,0-1.05851,10.9806,171.80947,171.80947,0,0,0,21.08881,15.29608,6.14415,6.14415,0,0,0,.8724-1.95417,3.86492,3.86492,0,0,0-1.803-4.00141,9.56227,9.56227,0,0,0,3.33839-2.14029,3.27477,3.27477,0,0,0,.60486-3.699c2.04723.2559,4.47832.38385,5.82763-1.18647,1.08178-1.25625,1.012-3.14064.5816-4.73422a19.52515,19.52515,0,0,1-1.1632-4.81565,86.62334,86.62334,0,0,0,14.21431-.47691,9.22747,9.22747,0,0,0-4.32711-5.42051c2.14029-.3606,4.08284-2.91964,4.75749-4.9785a12.68072,12.68072,0,0,0,.09306-6.4325,3.42171,3.42171,0,0,1-.06979-1.675,3.29552,3.29552,0,0,1,1.69827-1.64012q5.30419-3.0534,10.60838-6.09516a6.396,6.396,0,0,0,1.69827-1.24463c1.105-1.31441.9422-3.28022.37223-4.89707s-1.47727-3.14064-1.69827-4.83891c-.6514-5.08319,4.79238-8.73563,6.63024-13.528a20.31775,20.31775,0,0,0,1.00035-5.92069c.15121-2.16355.16285-4.66443-1.4889-6.04864-1.59358-1.33768-4.0712-1.03524-5.73457-2.27987-1.5238-1.13993-2.04724-3.33838-3.71061-4.25731-1.51216-.8375-3.39655-.30243-5.08319-.69792-2.95452-.68629-4.81564-4.09446-7.84-4.40853-1.69828-.18611-3.62919.65139-5.025-.33733-1.233-.884-1.27952-2.64046-1.51216-4.12936a11.53517,11.53517,0,0,0-9.3056-9.32886c-1.75643-.27917-3.66408-.17448-5.16461-1.13994-1.51216-.97708-2.19844-2.80331-3.39654-4.16425-1.90765-2.17519-4.932-2.95453-7.75854-3.61755q-5.75784-1.3435-11.504-2.69863c-2.0356-.48854-4.66443-.74445-5.76947,1.04688a7.86927,7.86927,0,0,0-.67466,2.15192,6.67341,6.67341,0,0,1-6.258,4.69933,7.39431,7.39431,0,0,0-4.35036-3.37328,27.44775,27.44775,0,0,1-3.53613-.8375,4.95427,4.95427,0,0,1-2.14029-6.87452,6.17223,6.17223,0,0,0-1.05851-7.40958c-1.95418-1.75643-4.78075-2.18682-7.40959-2.01234-.68628-1.50052.46528-3.18716,1.69828-4.28057,1.24462-1.08178,2.74515-2.15192,3.01268-3.7804.43039-2.559-2.8382-4.50159-5.31582-3.74551-2.47762.76772-4.05957,3.17554-5.10645,5.54847a16.73353,16.73353,0,0,1-2.05886,3.94325,4.042,4.042,0,0,1-3.90835,1.60521c-2.04724-.52344-2.82658-2.95453-3.28023-5.00176a32.61424,32.61424,0,0,1-1.09341-8.38667,10.948,10.948,0,0,1,3.16391-7.63059c3.38491-3.11738,8.596-2.815,13.16742-2.31477a3.35392,3.35392,0,0,1,.349-4.42016,5.02569,5.02569,0,0,1,4.55975-1.11667,6.256,6.256,0,0,1,3.52449,2.10539c1.30279,1.582,1.675,3.73387,2.6521,5.5252.98872,1.803,3.1988,3.33838,5.00176,2.37293,1.57032-.83751,1.81459-3.00106,1.43073-4.73423-.39548-1.72153-1.22136-3.40817-1.08177-5.17624.26753-3.36164,3.76877-5.39724,6.85125-6.78145s6.607-3.257,7.09552-6.607a6.17389,6.17389,0,0,1,.37222-1.90765,3.72933,3.72933,0,0,1,1.38421-1.30278c8.99153-5.944,18.14592-11.96933,28.42861-15.21466.53507-.17448.59323.01164,1.13993-.11632.76771-.442.25591-1.66337-.47691-2.15192s-1.7099-.8724-1.896-1.73316c-.128-.62813.24428-1.25626.33733-1.896a2.36721,2.36721,0,0,0-3.10574-2.39619c-.82587-1.09341.80261-2.3613,2.12865-2.73352a58.13863,58.13863,0,0,1,12.15544-1.97744,2.16447,2.16447,0,0,1,1.38421.23264,1.645,1.645,0,0,1,.10469,2.25661,12.73993,12.73993,0,0,1-1.84949,1.68664,5.08082,5.08082,0,0,0-1.32605,5.10644c2.15192,1.09341,4.47832,2.22172,6.86288,1.83786,2.37293-.38386,4.47832-3.05922,3.36165-5.18787-1.03525-1.98907-4.16425-2.44272-4.69933-4.61791-.62812-2.5474,2.9778-4.81564,2.16356-7.30489-.349-1.09341-1.44237-1.7448-2.27988-2.52415a6.882,6.882,0,0,1-1.50052-7.60732,8.66758,8.66758,0,0,1-7.58407-2.37293c-1.81459-1.82623-3.257-4.72259-5.83926-4.62954-2.3613.06979-4.3969,2.82658-6.607,1.98907-.5467-.20937-1.11667-.62812-1.64011-.38385a1.35575,1.35575,0,0,0-.6165,1.012c-.55833,2.687.40712,5.74621-1.05851,8.07261-1.59358,2.52414-5.28093,2.8731-7.21184,5.153-1.04688,1.233-1.454,2.89636-2.41945,4.19915s-3.00106,2.14029-4.16426,1.00035a5.73208,5.73208,0,0,0-1.55869-6.9792,14.98861,14.98861,0,0,0-3.44307-1.675,20.43352,20.43352,0,0,1-3.85019-2.14029,3.81527,3.81527,0,0,1-1.40747-1.51216,3.47684,3.47684,0,0,1,.093-2.39619,9.79355,9.79355,0,0,1,7.78181-6.44413c1.53542-.20937,3.32675-.13958,4.35037-1.31441.53507-.6165.81424-1.55869,1.60521-1.803a2.34021,2.34021,0,0,1,1.47727.17448c1.91928.67465,3.82693,1.34931,5.74621,2.024a3.93612,3.93612,0,0,0,2.04723.33732,1.37705,1.37705,0,0,0,1.19809-1.454c-.18611-.95382-1.65174-1.40747-1.51216-2.37292a1.50855,1.50855,0,0,1,.47692-.81424,20.55375,20.55375,0,0,1,16.29643-6.4325c.72118,1.1981-.41875,2.60557-1.38421,3.61755-.95382,1.02362-1.72154,2.83821-.55834,3.61755a3.06427,3.06427,0,0,0,1.5238.349,13.29118,13.29118,0,0,1,4.0712,1.233c1.98907.86076,3.94324,1.81459,5.85089,2.8382a7.37635,7.37635,0,0,1,.13959-3.76876,2.55938,2.55938,0,0,1,3.02432-1.64012c1.13993.442,1.72153,1.95418,2.94289,2.09376,1.61685.18612,2.25661-2.21008,1.582-3.699s-2.024-2.72189-2.12865-4.362c-.08143-1.09341.33733-2.45435-.53507-3.11738a2.31414,2.31414,0,0,0-1.03525-.37222q-10.95735-2.00652-21.92632-4.02467c-1.30279-.24428-3.17554-.05816-3.2337,1.25625-.03489.74445.62813,1.47727.33733,2.15192-.31406.72119-1.33768.663-2.08213.91893a2.827,2.827,0,0,0-1.62848,2.98942,8.14854,8.14854,0,0,0,1.37258,3.36165c-1.43074-.59323-3.58266-.69792-5.01339-1.30278a19.296,19.296,0,0,0-1.25626-4.82728,1.70385,1.70385,0,0,0-2.22171-1.37258c-1.88439.2908-3.76877.57-5.65315.86077a2.18661,2.18661,0,0,0-1.29116.50018c-.73281.77934-.01163,2.024-.03489,3.09411a2.89958,2.89958,0,0,1-2.245,2.50088,8.46226,8.46226,0,0,1-3.58265-.04653c-2.64047-.40712-5.2693-.81424-7.90976-1.22136a12.95718,12.95718,0,0,0,5.97884-4.00141c1.04688-1.233,1.60522-3.53613.09306-4.11773a3.60875,3.60875,0,0,0-1.37258-.10468c-3.58265.02326-6.40923-2.96616-9.75924-4.234a9.59326,9.59326,0,0,0-3.29186-.60487Z"
transform="translate(-156 -131.23696)" fill="#ffffff" />
<path
d="M842.779,539.74807a4.20005,4.20005,0,0,1-3.55939,1.68664c-3.64082-.31406-5.17624-5.56009-8.78216-6.15333a1.40537,1.40537,0,0,0-.95382.09306c-.53508.2908-.62813,1.012-.663,1.61685-.15121,3.001-.27917,6.11843.89567,8.88685,1.7099,4.04793,6.14169,7.44448,5.21113,11.73668-5.00176-2.31476-7.60733-7.933-8.78216-13.31864-1.18646-5.38561-1.37257-11.03876-3.4896-16.13358-1.61685,2.05886-4.99013.36059-6.45576-1.803-1.39584-2.04723-2.25661-4.42016-3.60592-6.50229-1.34931-2.07049-3.41981-3.93161-5.88579-4.04793-2.59394-.11632-4.85054,1.66337-6.828,3.35a15.80206,15.80206,0,0,0-4.24568,4.72259c-1.38421,2.79168-1.02362,6.07191-1.09341,9.17765-.06979,3.35-.77935,6.89778-3.07085,9.36376-2.2915,2.45435-6.51392,3.31512-9.03806,1.09341a10.1961,10.1961,0,0,1-2.52415-4.54811,221.31754,221.31754,0,0,1-6.83961-24.40394c-.41876,1.88439-2.08213,4.31547-3.66408,3.21043a3.26712,3.26712,0,0,1-.83751-1.0934c-2.95453-4.99013-8.40993-7.99119-13.93513-9.79415-5.51357-1.79133-11.31794-2.62883-16.77335-4.60627a42.88523,42.88523,0,0,1-8.71237-4.33874,6.86049,6.86049,0,0,0-.41875,7.00247,5.60935,5.60935,0,0,0,6.30455,2.64046c1.20972-.39549,2.23334-1.233,3.43144-1.65174,1.19809-.40712,2.81494-.20938,3.33838.95382.51181,1.105-.2559,2.44272.12795,3.60592.57,1.75643,3.2337,1.896,4.16426,3.50123a3.241,3.241,0,0,1-.8724,3.74551,15.67623,15.67623,0,0,1-3.51287,2.16355c-3.90835,2.17518-6.6884,5.88579-10.1082,8.77053-3.41981,2.89637-8.24709,5.00176-12.31829,3.15227.96545-4.92034-4.88544-8.52626-5.96722-13.42333-.36059-1.61685-.17448-3.32675-.67465-4.89707-.73282-2.27987-2.75679-3.83856-4.40853-5.5601a21.85517,21.85517,0,0,1-5.99048-15.87768c.093-2.024.46528-4.08283,0-6.06027-.45365-1.96581-2.09376-3.87345-4.11773-3.792-4.6179.20938-10.44554.55834-12.865-3.38491-.8724-1.40747-1.24463-3.46634.01163-4.54811a4.39171,4.39171,0,0,1,3.33838-.57c3.478.33733,6.94431.68629,10.42228,1.02361,2.43108.23264,5.05992.43039,7.15368-.8375s3.001-4.6528,1.05851-6.15333c-1.40747-1.09341-3.94325-1.03525-4.362-2.76841-.33733-1.454,1.26789-3.09412.39549-4.31548-.6165-.86076-2.01234-.62812-2.86148.02327a18.69439,18.69439,0,0,1-2.40782,2.10539c-1.66338.86077-3.64082.0349-5.43214-.52344s-4.18752-.60486-5.04829,1.05851c-.97709,1.84949.84913,4.29221-.10469,6.15333-1.27952,2.45435-5.58336,1.05851-7.37469,3.17554-2.04723,2.41945,1.39584,6.04864.70955,9.14275a5.69965,5.69965,0,0,1-5.61825-.31407,5.439,5.439,0,0,1-2.34967-5.07155c.16285-1.39584.89567-2.82657.40712-4.141a4.83418,4.83418,0,0,0-2.45435-2.245q-5.05992-2.80912-10.11984-5.595c-.94219,1.7448.24427,3.89672,1.73317,5.21114,1.47726,1.30278,3.33838,2.2915,4.31547,4.013a5.27443,5.27443,0,0,1-1.97744,6.95593,1.227,1.227,0,0,1-1.012.17448,1.40226,1.40226,0,0,1-.65139-.8724c-1.7797-4.57137-4.46669-9.073-8.74727-11.45752-4.29221-2.39619-10.44553-1.896-13.26048,2.117-.663.95382-1.11667,2.04723-1.69827,3.05921-3.08248,5.36236-9.71272,7.89813-15.90094,7.73528a3.06444,3.06444,0,0,1-1.73317-.40712c-1.00035-.68628-.95383-2.15192-.80261-3.36164.221-1.70991.43038-3.40818.65139-5.11808a4.099,4.099,0,0,1,1.12831-2.80332c1.15156-.90729,2.80331-.33732,4.26894-.36059a5.37747,5.37747,0,0,0,4.89707-3.7804,6.07682,6.07682,0,0,0-1.69827-6.04864c-.663-.62813-1.55869-1.4191-1.20973-2.26824a1.885,1.885,0,0,1,1.31442-.884c2.6172-.75608,5.39725-.95382,7.96792-1.86112,2.5823-.89566,5.08318-2.73352,5.69968-5.39725.18611-.81424.26753-1.803,1.00035-2.21008a3.23975,3.23975,0,0,1,1.1632-.23264,5.66134,5.66134,0,0,0,4.85054-5.89742c1.233-.86077,2.96616-.221,4.16426.69792,1.18646.91893,2.245,2.12865,3.699,2.52414,2.71025.74445,5.32745-1.66337,8.1424-1.675,1.18646,0,2.40782.41876,3.51286.01164,1.1283-.40712,1.803-1.5238,2.66373-2.34967.8724-.8375,2.38456-1.33768,3.18717-.442-.23264-1.68664-.45365-3.36165-.68629-5.03666a9.90135,9.90135,0,0,0,8.061-1.46563c-2.93126-.98872-5.85089-1.97744-8.78216-2.96616a1.89514,1.89514,0,0,1-.82587-.442c-.63976-.68629,0-1.75643.51181-2.53577,1.24462-1.87276,1.454-4.95524-.59323-5.8858-1.39584-.63976-2.98943.128-4.32711.8724-2.14028,1.18647-4.28057,2.38456-6.42086,3.571-.19774,1.22136,1.29115,1.91928,2.21008,2.73352a3.70647,3.70647,0,0,1-2.41946,6.479,4.64331,4.64331,0,0,1,.82588,3.92c-1.43074.10468-2.87311.20937-4.31548.31406a1.85325,1.85325,0,0,1-1.39584-.27917c-.46528-.40712-.39548-1.1283-.5118-1.73317a3.74393,3.74393,0,0,0-3.16391-2.75678,10.9223,10.9223,0,0,0-4.40853.40712,2.68616,2.68616,0,0,1-1.90764-.04653,1.903,1.903,0,0,1-.74445-.95382,4.86365,4.86365,0,0,1,.97709-4.67607,26.76673,26.76673,0,0,1,3.67571-3.38491,21.428,21.428,0,0,0,6.386-9.8872c2.37292-1.00035,4.82728-2.34966,7.21184-3.35a28.80944,28.80944,0,0,1,5.99048-2.01234,28.30911,28.30911,0,0,1,5.87416-.27917c2.67536.04653,5.36235.09306,8.03771.15122a19.34408,19.34408,0,0,1,7.03736,1.012c2.19845.9073,4.141,2.87311,4.29221,5.246a1.61075,1.61075,0,0,1-.52344,1.47727,1.885,1.885,0,0,1-1.012.23264c-2.22171.06979-3.1639.62813-5.38561.70955,1.40747,1.50053,2.98942,3.08248,5.03665,3.35,3.60592.46528,6.19986-3.2686,7.86323-6.51392a3.17423,3.17423,0,0,0,3.31512,2.94289,6.685,6.685,0,0,0,2.50088-.97709,49.19541,49.19541,0,0,1,23.32216-6.02537,2.51131,2.51131,0,0,1,1.91928-2.76842c1.66338-.32569,3.15228,1.105,3.95488,2.59394.791,1.48889,1.29116,3.21043,2.57068,4.3271,1.26788,1.11667,3.72224,1.05851,4.22241-.5467.48855-1.54706-1.1283-2.87311-2.466-3.792-1.34931-.9073-2.75679-2.59394-1.84949-3.94325,6.83962-1.52379,13.73739-3.036,20.75149-3.33839a8.83055,8.83055,0,0,0,3.4896-.60486,2.71244,2.71244,0,0,0,1.62848-2.8731,7.93083,7.93083,0,0,1-8.25872-3.11738c7.20021-.59323,14.73774-1.11667,21.65878.50018l6.06027,5.14134c-1.15156,1.1981-2.687,2.3264-1.84948,3.5245a2.5785,2.5785,0,0,0,2.12865.73281c1.46563.02327,2.93127.05816,4.38527.05816a170.52828,170.52828,0,0,1,52.06483,109.06163c-2.44272-.093-4.6877,3.00106-4.37363,5.69968.37222,3.129,2.62883,5.64152,4.24568,8.34015A12.70881,12.70881,0,0,1,843,532.071Z"
transform="translate(-156 -131.23696)" fill="#ffffff" />
<line y1="636.96158" x2="888" y2="636.96158" fill="none" stroke="#3f3d56" stroke-miterlimit="10"
stroke-width="2" />
<circle cx="366.35223" cy="65.26967" r="14.75556" fill="none" stroke="#3f3d56" stroke-miterlimit="10"
stroke-width="2" />
<circle cx="802.35223" cy="346.26967" r="14.75556" fill="none" stroke="#3f3d56" stroke-miterlimit="10"
stroke-width="2" />
<circle cx="701.61889" cy="199.26967" r="14.75556" fill="none" stroke="#3f3d56" stroke-miterlimit="10"
stroke-width="2" />
<circle cx="604.80775" cy="323.9214" r="16.55902" fill="#3f3d56" />
<circle cx="657.99881" cy="270.69736" r="21.82779" fill="#fff" />
<path
d="M836.0738,379.30567a30.86,30.86,0,0,0-43.63926.54048c-11.9014,12.1999-28.89284,73.81079-28.89284,73.81079s61.17118-18.51211,73.07258-30.712A30.86,30.86,0,0,0,836.0738,379.30567Zm-32.06129,32.86542a14.301,14.301,0,1,1,20.22307-.25047A14.301,14.301,0,0,1,804.01251,412.17109Z"
transform="translate(-156 -131.23696)" fill="#57b894" />
</svg>
</div>
</div>
</div>
<div class="relative -mt-12 lg:-mt-24" id="features">
<svg viewBox="0 0 1428 174" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-2.000000, 44.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path
d="M0,0 C90.7283404,0.927527913 147.912752,27.187927 291.910178,59.9119003 C387.908462,81.7278826 543.605069,89.334785 759,82.7326078 C469.336065,156.254352 216.336065,153.6679 0,74.9732496"
opacity="0.100000001"></path>
<path
d="M100,104.708498 C277.413333,72.2345949 426.147877,52.5246657 546.203633,45.5787101 C666.259389,38.6327546 810.524845,41.7979068 979,55.0741668 C931.069965,56.122511 810.303266,74.8455141 616.699903,111.243176 C423.096539,147.640838 250.863238,145.462612 100,104.708498 Z"
opacity="0.100000001"></path>
<path
d="M1046,51.6521276 C1130.83045,29.328812 1279.08318,17.607883 1439,40.1656806 L1439,120 C1271.17211,77.9435312 1140.17211,55.1609071 1046,51.6521276 Z"
id="Path-4" opacity="0.200000003"></path>
</g>
<g transform="translate(-4.000000, 76.000000)" fill="#FFFFFF" fill-rule="nonzero">
<path
d="M0.457,34.035 C57.086,53.198 98.208,65.809 123.822,71.865 C181.454,85.495 234.295,90.29 272.033,93.459 C311.355,96.759 396.635,95.801 461.025,91.663 C486.76,90.01 518.727,86.372 556.926,80.752 C595.747,74.596 622.372,70.008 636.799,66.991 C663.913,61.324 712.501,49.503 727.605,46.128 C780.47,34.317 818.839,22.532 856.324,15.904 C922.689,4.169 955.676,2.522 1011.185,0.432 C1060.705,1.477 1097.39,3.129 1121.236,5.387 C1161.703,9.219 1208.621,17.821 1235.4,22.304 C1285.855,30.748 1354.351,47.432 1440.886,72.354 L1441.191,104.352 L1.121,104.031 L0.457,34.035 Z"></path>
</g>
</g>
</svg>
</div>
<section class="bg-white border-b py-8">
<div class="container max-w-5xl mx-auto m-8">
<h1 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800">Features</h1>
<div class="w-full mb-4">
<div class="h-1 mx-auto gradient w-64 opacity-25 my-0 py-0 rounded-t"></div>
</div>
<div class="flex flex-wrap items-center">
<div class="w-5/6 sm:w-1/2 p-6">
<h3 class="text-3xl text-gray-800 font-bold leading-none mb-3">Search and plan routes.</h3>
<p class="text-gray-600 mb-8">
Select a start location and a destination to search a route.
Routes can be anything from your way to work or a little weekend trip.
Adjust parameters such as time of departure/arrival and passenger count.
</p>
<button class="mx-auto lg:mx-0 hover:underline font-bold rounded-full mt-4 lg:mt-0 py-4 px-8 shadow gradient text-white" onclick="window.open('https://green-traveller.github.io/web/')">
Launch App <i class="fas fa-rocket"></i>
</button>
</div>
<div class="w-full sm:w-1/2 p-6">
<svg class="w-full sm:h-64 mx-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1021.5 782.9541">
<title>
travel_plans
</title>
<ellipse cx="867" cy="757.4541" rx="154.5" ry="25.5" fill="#3f3d56" />
<path
d="M1086.92726,722.09273c-.30332,54.7845-32.9781,73.73034-73.15013,73.50793q-1.39969-.00775-2.78571-.04668-2.79235-.07572-5.52576-.28509c-36.2424-2.76785-64.30238-23.03216-64.0203-73.98162.29192-52.72638,68.0483-118.893,73.12939-123.78493.00441,0,.00441,0,.00891-.00442.193-.18644.29182-.27964.29182-.27964S1087.23055,667.31267,1086.92726,722.09273Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M1011.176,787.206l26.81-37.02458-26.89962,41.10481-.095,4.26772q-2.79235-.07572-5.52576-.28509l3.1697-54.791-.01994-.42423.04949-.08012.30106-5.17736L982.45672,693.293l26.61106,37.62393.0609,1.09866,2.39456-41.39673L988.8701,647.75744l22.9747,35.58578,2.73-85.84088.01046-.28566-.00155.28124-.74981,67.70287L1036.765,638.486,1013.70331,671.031l-.808,37.07476,21.47949-35.46462-21.59447,40.91538-.449,20.61545,31.16-49.35875L1012.171,741.36364Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<circle cx="852.45395" cy="198.3205" r="48.69502" fill="#2f2e41" />
<circle cx="845.20616" cy="215.33198" r="33.0677" fill="#ffb8b8" />
<path
d="M914.79429,291.72936s14.29954,33.0677,7.14977,36.64259-10.72466,19.66187-10.72466,19.66187l18.76815,39.32376,25.91793,16.087h15.19327s15.19327-67.92285,9.83094-75.96634-25.02421-12.51211-25.02421-12.51211-4.46861-10.72466-2.68116-20.55559S914.79429,291.72936,914.79429,291.72936Z"
transform="translate(-89.25 -58.52295)" fill="#ffb8b8" />
<path
d="M893.345,385.57013,870.10821,366.802s-42.00492-29.49281-36.64259-8.0435,29.49281,23.23677,29.49281,23.23677l40.21748,32.174Z"
transform="translate(-89.25 -58.52295)" fill="#ffb8b8" />
<path
d="M891.55752,483.87951s-10.72466,44.68608,0,105.45916l4.46861,24.13048s0,18.76815,4.46861,25.91793c0,0,11.61838,106.35287,17.87443,106.35287s25.91793-3.57489,27.70537-6.25605-34.85514-260.073-34.85514-260.073Z"
transform="translate(-89.25 -58.52295)" fill="#2f2e41" />
<path
d="M891.55752,483.87951s-10.72466,44.68608,0,105.45916l4.46861,24.13048s0,18.76815,4.46861,25.91793c0,0,11.61838,106.35287,17.87443,106.35287s25.91793-3.57489,27.70537-6.25605-34.85514-260.073-34.85514-260.073Z"
transform="translate(-89.25 -58.52295)" opacity="0.1" />
<path
d="M920.90816,738.60224l-13.84444,51.30584s-27.68887,16.28757-10.58692,19.54508,34.2039-3.25751,34.2039-3.25751l8.14378-23.617,8.14379-4.88627v25.24574h2.44313l5.70065-33.38952s-.81438-17.10195-5.70065-18.7307S942.082,740.231,942.082,740.231Z"
transform="translate(-89.25 -58.52295)" fill="#2f2e41" />
<path
d="M920.90816,738.60224l-13.84444,51.30584s-27.68887,16.28757-10.58692,19.54508,34.2039-3.25751,34.2039-3.25751l8.14378-23.617,8.14379-4.88627v25.24574h2.44313l5.70065-33.38952s-.81438-17.10195-5.70065-18.7307S942.082,740.231,942.082,740.231Z"
transform="translate(-89.25 -58.52295)" opacity="0.1" />
<path
d="M887.98264,482.09207s7.14977,26.81165,9.83094,31.28026c0,0,3.57488,75.96634,15.19326,101.88426l12.51211,33.0677S946.07454,745.74,940.71221,756.46461c0,0,27.70537,6.256,29.49282,0,0,0-.89372-51.83585,1.78744-58.98563s7.14977-46.47352-14.29955-75.07261v-86.691s33.96143-28.59909,14.29955-65.24168S887.98264,482.09207,887.98264,482.09207Z"
transform="translate(-89.25 -58.52295)" fill="#2f2e41" />
<path
d="M943.39338,751.10228l-15.19327,56.30446s-30.38653,17.87444-11.61838,21.44932,37.53631-3.57488,37.53631-3.57488l8.93721-25.91793,8.93722-5.36233v27.70537h2.68117l6.25605-36.64259s-.89372-18.76815-6.25605-20.55559-8.0435-11.61839-8.0435-11.61839Z"
transform="translate(-89.25 -58.52295)" fill="#2f2e41" />
<path
d="M923.88821,321.6974s-22.49975,12.9306-22.49975,13.82432,2.68117,15.19327,2.68117,15.19327-27.70537,27.70537-8.93722,51.83585c0,0,6.256,4.46861,6.256,18.76816v14.29954s-52.72957,33.06771-39.32375,43.79236,27.70537,8.93722,32.174,15.19327,30.38653-5.36233,35.74886-7.14977,6.25606-3.57489,10.72466,2.68116S970.205,485.667,970.205,485.667s16.087-4.46861,19.66187-4.46861a12.364,12.364,0,0,0,6.25606-1.78745l-38.43-39.32375,19.215-48.70783s-56.75132-35.302-56.75132-45.13294S923.88821,321.6974,923.88821,321.6974Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M958.58665,323.90334s-11.61838,16.087-2.68117,38.43,23.23676,48.261,23.23676,48.261l-22.343,7.14977H936.24361s-42.89864-7.14977-38.43,8.93722,34.85514,8.93721,34.85514,8.93721h17.87443s40.21748,4.46861,45.57981-2.68116c0,0,14.29954-.89372,8.04349-29.49281s-24.52189-77.55431-24.52189-77.55431Z"
transform="translate(-89.25 -58.52295)" fill="#ffb8b8" />
<ellipse cx="838.77557" cy="184.64213" rx="31.1867" ry="15.86692" fill="#2f2e41" />
<ellipse cx="877.827" cy="213.09768" rx="4.46861" ry="9.83094" fill="#ffb8b8" />
<circle cx="874.25212" cy="155.00577" r="26.81165" fill="#2f2e41" />
<circle cx="303" cy="166.9541" r="110" fill="#26c281" opacity="0.3" />
<circle cx="90" cy="472.9541" r="65" fill="#26c281" opacity="0.3" />
<circle cx="507" cy="472.9541" r="133" fill="#26c281" opacity="0.3" />
<path
d="M155.37988,316.55957l-1.95605-.417q.62841-2.94728,1.31006-5.875l1.94824.45361Q156.00464,313.6311,155.37988,316.55957Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M785.13672,300.03613c-1.02539-3.81054-2.13867-7.65869-3.30664-11.437l1.91015-.59082c1.17579,3.80176,2.2959,7.67383,3.32813,11.5083Zm-625.53711-.874-1.92969-.52539c1.04688-3.8457,2.18164-7.72852,3.37305-11.54053l1.90918.59668C161.76758,291.48145,160.64014,295.33984,159.59961,299.16211ZM778.1084,277.31152c-1.30957-3.73437-2.70117-7.48486-4.13867-11.14648l1.86132-.73047c1.44629,3.68408,2.84766,7.458,4.16407,11.21582Zm-611.38086-.95214-1.88574-.667c1.332-3.76269,2.75146-7.54834,4.21924-11.25244l1.85937.73633C169.46143,268.85791,168.05078,272.62061,166.72754,276.35938Zm602.69238-21.18311c-1.57422-3.61475-3.24023-7.25391-4.95117-10.81641l1.80273-.86621c1.72168,3.585,3.39844,7.24658,4.98243,10.88379Zm-593.896-1.01709-1.83106-.80566c1.60547-3.64942,3.30029-7.31788,5.03858-10.90332l1.7998.87207C178.80371,246.88574,177.11914,250.53174,175.52393,254.15918ZM759.11816,233.73c-1.84375-3.50049-3.77441-7.00879-5.73828-10.42725l1.73438-.99609c1.97558,3.43945,3.91894,6.96924,5.77344,10.4917ZM185.936,232.68115l-1.76661-.93847c1.87159-3.522,3.83252-7.0542,5.82862-10.49756l1.73047,1.00293C189.74463,225.67041,187.79541,229.18066,185.936,232.68115Zm561.3247-19.58984c-2.09082-3.3501-4.27539-6.7085-6.49023-9.98242l1.65625-1.1211c2.22949,3.29444,4.42676,6.67383,6.53125,10.044Zm-549.36133-1.0542-1.69238-1.06543c2.12158-3.36865,4.33594-6.74561,6.582-10.03662l1.65235,1.12695C202.209,205.3335,200.00781,208.68945,197.89941,212.03711Zm536.01465-18.667c-2.32129-3.17578-4.74609-6.3667-7.207-9.4834l1.57031-1.23926c2.47559,3.13623,4.915,6.34668,7.252,9.542Zm-522.56933-1.03418-1.60938-1.1875c2.3667-3.2085,4.82227-6.4126,7.29883-9.52344l1.56445,1.24512C216.1377,185.9624,213.69727,189.147,211.34473,192.33594ZM719.1543,174.67188c-2.56055-3.01124-5.21289-6.01709-7.88379-8.93409l1.47461-1.35058c2.6875,2.93457,5.35644,5.959,7.93261,8.98877Zm-492.96045-.99415-1.51856-1.30175c2.58887-3.019,5.27149-6.03418,7.97364-8.96143l1.46972,1.35645C231.43311,167.68066,228.7666,170.67725,226.19385,173.67773ZM703.0625,157.09668c-2.78027-2.82178-5.64648-5.62647-8.51953-8.33643l1.37305-1.45507c2.88964,2.727,5.77343,5.54882,8.57031,8.38818Zm-460.69971-.93506-1.41894-1.40918c2.80859-2.82812,5.70361-5.63818,8.60449-8.35205l1.36621,1.46045C248.03125,150.55811,245.1543,153.35107,242.36279,156.16162Zm443.35889-15.42187c-2.97559-2.60889-6.04-5.19776-9.10742-7.69434l1.26172-1.55078c3.08691,2.51172,6.16992,5.11621,9.16406,7.74121Zm-425.9585-.86133-1.3125-1.50928c3.00537-2.61279,6.09668-5.20312,9.18946-7.69922l1.25586,1.55664C265.82275,134.707,262.75,137.28174,259.76318,139.87842ZM667.22754,125.689c-3.15234-2.37988-6.39941-4.73779-9.64941-7.0083l1.14453-1.63964c3.27148,2.28466,6.53808,4.65722,9.71,7.05127ZM278.30127,124.915l-1.19824-1.60156c3.18945-2.38672,6.46142-4.74317,9.72461-7.00391l1.13867,1.64453C284.72314,120.2002,281.47119,122.54248,278.30127,124.915Zm369.37451-12.88477c-3.32617-2.146-6.73926-4.26025-10.14258-6.28271l1.02149-1.71973c3.4248,2.03565,6.8584,4.1626,10.20508,6.32178Zm-349.79785-.67675L296.7998,109.669c3.35108-2.144,6.78565-4.25342,10.208-6.27l1.01563,1.72363C304.62158,107.12646,301.208,109.22314,297.87793,111.35352ZM627.16309,99.8418c-3.46778-1.89258-7.02832-3.75-10.58106-5.52051l.89258-1.79c3.57422,1.78174,7.15723,3.65039,10.64648,5.55469Zm-308.77442-.57227-.95117-1.75976c3.49609-1.88965,7.0752-3.74024,10.63672-5.49952l.88574,1.793C325.41992,95.55176,321.86328,97.39111,318.38867,99.26953ZM605.80078,89.19385c-3.60058-1.63184-7.28906-3.22071-10.96387-4.72364l.75684-1.85156c3.69775,1.51221,7.41016,3.11182,11.0332,4.75391Zm-266.07715-.46143-.81884-1.82422c3.61914-1.624,7.32275-3.20507,11.00781-4.69824l.751,1.85352C347.001,85.54785,343.32031,87.11865,339.72363,88.73242Zm243.97754-8.57763c-3.72656-1.36475-7.52539-2.67676-11.2915-3.89991l.61816-1.90234c3.78906,1.231,7.61133,2.55127,11.36084,3.92432Zm-221.93554-.35254-.68165-1.87989c3.73438-1.355,7.54248-2.65673,11.31788-3.87011l.61181,1.90429C369.26172,77.16211,365.47754,78.45605,361.76563,79.80225Zm199.21289-7.02588c-3.80811-1.082-7.68506-2.106-11.523-3.04444l.47461-1.94238c3.86181.94385,7.76318,1.97461,11.59521,3.063ZM384.42676,72.521l-.541-1.92579c3.82715-1.0747,7.731-2.09375,11.60352-3.0288l.46924,1.94433C392.10986,70.43994,388.23,71.45264,384.42676,72.521Zm153.40088-5.4043c-3.873-.7959-7.81494-1.53027-11.71631-2.18311l.33008-1.97265c3.92529.65674,7.8916,1.396,11.78857,2.19677Zm-130.23438-.188-.39648-1.96c3.90429-.79053,7.87256-1.51807,11.79492-2.1626l.32422,1.97364C415.418,65.41992,411.47363,66.14307,407.59326,66.92871Zm106.729-3.7456c-3.92969-.50928-7.915-.95118-11.84522-1.31495l.18408-1.99121c3.95459.36573,7.96436.81055,11.918,1.32276Zm-83.21192-.11866-.25146-1.98437c3.94091-.49951,7.95215-.93311,11.92138-1.28906l.17871,1.99218C439.01367,62.13672,435.02734,62.56787,431.11035,63.06445Zm59.48047-2.07715c-3.94141-.22021-7.94824-.3706-11.90967-.44726l.03906-2c3.98487.07764,8.01661.229,11.98194.45019ZM454.84766,60.936l-.10547-1.99708c3.97119-.21044,8.0039-.35009,11.98535-.416l.0332,2C462.80322,60.58789,458.79541,60.72705,454.84766,60.936Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path d="M789.35449,317.668q-.61523-2.93115-1.28125-5.84229l1.94922-.44726q.67236,2.92968,1.28906,5.87939Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M792.05176,448.06885l-1.96289-.3877q.57861-2.92968,1.10547-5.87842l1.96875.35059Q792.63428,445.1211,792.05176,448.06885Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M472.25049,710.47705q-3.26075,0-6.50586-.06348l.03906-2c3.95361.07715,7.93457.082,11.89258.01856l.03223,2Q474.98462,710.47608,472.25049,710.47705ZM489.666,710.021l-.10547-1.998c3.95556-.208,7.9458-.49121,11.85986-.84082l.17773,1.99219C497.66016,709.52588,493.64551,709.811,489.666,710.021Zm-35.875-.05762c-3.96973-.22168-7.9834-.51856-11.9292-.88281l.18359-1.99219c3.92236.3623,7.91162.6582,11.85693.87891Zm59.70117-2.06934-.251-1.98437c3.93652-.49805,7.89551-1.07227,11.7666-1.707l.32324,1.97461C521.436,706.81494,517.45313,707.39209,513.49219,707.894Zm-83.521-.13281c-3.95166-.51269-7.9331-1.10254-11.834-1.75488l.33008-1.97266c3.87646.64746,7.83349,1.23438,11.76074,1.74317Zm107.12842-3.7334-.39551-1.96094c3.88086-.7832,7.78662-1.64746,11.60889-2.56738l.46777,1.94531C544.93506,702.36963,541.00488,703.23877,537.09961,704.02783Zm-130.72363-.21c-3.90137-.80078-7.8291-1.68262-11.67285-2.62109l.4746-1.94336c3.81983.93262,7.72315,1.80957,11.60059,2.60547Zm153.9834-5.38672-.53907-1.92578c3.79346-1.0625,7.625-2.21191,11.3877-3.418l.61035,1.9043C568.03223,696.20557,564.17676,697.36279,560.35938,698.43115Zm-177.2251-.28418c-3.82276-1.084-7.68457-2.25683-11.478-3.48633l.61621-1.90234c3.77051,1.22168,7.6084,2.3877,11.40772,3.46484Zm199.978-7.0039-.68066-1.88086c3.6958-1.33692,7.42334-2.7627,11.07861-4.23926l.749,1.85449C590.58105,688.36279,586.83057,689.79834,583.1123,691.14307Zm-222.79345-.38965c-3.73828-1.36621-7.50049-2.82129-11.18262-4.3252l.75586-1.85156c3.65918,1.49414,7.39844,2.94043,11.11328,4.29785Zm244.92431-8.54883-.8164-1.82617c3.59961-1.61035,7.21387-3.30762,10.74316-5.0459l.88281,1.79492C612.502,678.87549,608.86523,680.5835,605.24316,682.20459Zm-267.11865-.50977c-3.624-1.63867-7.2666-3.36621-10.82666-5.13574l.89063-1.791c3.53759,1.75879,7.1582,3.47656,10.76025,5.10449Zm288.54737-10.041-.94922-1.75977c3.47656-1.873,6.958-3.832,10.34765-5.82324l1.01367,1.72461C633.67188,667.79834,630.169,669.77,626.67188,671.65381Zm-310.002-.62695c-3.49414-1.9004-6.998-3.89161-10.415-5.917l1.02-1.7207c3.396,2.01367,6.87842,3.99219,10.35108,5.88086Zm330.60742-11.47168-1.07519-1.68555c3.31152-2.11133,6.64062-4.32129,9.89648-6.56934l1.13672,1.64649C653.959,655.20752,650.6084,657.43115,647.27734,659.55518Zm-351.21-.74024c-3.33984-2.14941-6.687-4.39062-9.94873-6.66308l1.14307-1.64063c3.24219,2.25781,6.56885,4.48535,9.88769,6.62207Zm370.87989-12.83887-1.19532-1.60351c3.15528-2.35254,6.31641-4.80078,9.39453-7.27637l1.25391,1.5586C673.30273,641.146,670.12207,643.60889,666.94727,645.97607Zm-390.52442-.8457c-3.16748-2.38281-6.34082-4.8623-9.43115-7.37012l1.25976-1.55273c3.07178,2.49219,6.22559,4.95605,9.37354,7.32519Zm409.15723-14.13965-1.3086-1.51172c2.98047-2.582,5.95508-5.25488,8.8418-7.94531l1.36328,1.46289C691.57324,625.70361,688.58008,628.39307,685.58008,630.99072Zm-427.74317-.9414c-2.99414-2.61621-5.977-5.32032-8.86523-8.03614l1.37012-1.457c2.8706,2.69922,5.835,5.38672,8.81152,7.98731ZM703.0791,614.68213l-1.416-1.41211c2.79492-2.80273,5.56738-5.68652,8.24121-8.57031l1.46679,1.35937C708.68066,608.96143,705.89063,611.86279,703.0791,614.68213Zm-462.67236-1.02246c-2.78662-2.81836-5.56348-5.73145-8.25391-8.65821l1.47266-1.35351c2.67383,2.90918,5.43359,5.80371,8.20361,8.60547Zm478.938-16.52344-1.51563-1.30469c2.58008-2.99609,5.13672-6.07519,7.59766-9.15332l1.5625,1.25C724.5127,591.02393,721.94043,594.12256,719.34473,597.13623Zm-495.12256-1.08789c-2.57471-3.0166-5.13086-6.12305-7.59766-9.23438l1.56738-1.24218c2.45166,3.09179,4.99219,6.17968,7.55176,9.17773Zm510.07275-17.60449-1.60742-1.19141c2.36035-3.18457,4.68555-6.44336,6.91016-9.68555l1.64843,1.13086C739.00879,571.96045,736.66992,575.23877,734.29492,578.44385Zm-524.92431-1.13477c-2.3501-3.19726-4.67188-6.48144-6.90137-9.75976l1.6543-1.125c2.21533,3.25879,4.52294,6.52246,6.85839,9.70117Zm538.46826-18.6084-1.68946-1.07031c2.11036-3.3291,4.19043-6.751,6.1836-10.16894l1.72851,1.00781C752.05566,551.90869,749.96191,555.35107,747.83887,558.70068Zm-551.90723-1.15625c-2.10742-3.35742-4.18213-6.80078-6.16553-10.23437l1.73145-1c1.97168,3.41211,4.03369,6.834,6.12842,10.17187ZM759.9043,538.01221l-1.76367-.94336c1.87011-3.49707,3.69335-7.06348,5.42089-10.60059l1.79688.87695C763.62109,530.90479,761.78613,534.49365,759.9043,538.01221ZM183.981,536.85693c-1.856-3.5039-3.67139-7.08886-5.39551-10.65429l1.80078-.8711c1.71338,3.54395,3.51758,7.10645,5.36231,10.58985Zm586.436-20.373-1.82812-.81055c1.59961-3.6084,3.15625-7.30273,4.626-10.97852l1.85743.74219C773.59277,509.13623,772.02734,512.853,770.417,516.48389Zm-596.83056-1.127c-1.59424-3.63183-3.14014-7.33886-4.59522-11.0166l1.85986-.73633c1.44581,3.65625,2.98243,7.33985,4.56641,10.94922Zm605.729-21.13281-1.88281-.67383c1.333-3.72949,2.6123-7.53027,3.80371-11.2959l1.90625.60352C781.94531,486.646,780.65723,490.47021,779.31543,494.22412Zm-614.50781-1.06055c-1.32324-3.74316-2.59473-7.5625-3.77832-11.35253l1.90918-.59571c1.17627,3.76563,2.43945,7.56153,3.75488,11.28223ZM786.54492,471.355l-1.92773-.5332c1.04687-3.791,2.03906-7.666,2.94922-11.51758l1.94726.46094C788.59668,463.64014,787.59863,467.53955,786.54492,471.355Zm-628.87158-1.02637c-1.041-3.82519-2.02539-7.72265-2.92578-11.58593l1.94824-.45313c.89453,3.83887,1.87256,7.71289,2.90723,11.51367Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path d="M152.20654,446.82959q-.57129-2.9502-1.08984-5.91943l1.9707-.34375q.51417,2.95019,1.083,5.88232Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M635.51465,448.9834l-1.85938-.73535c.72559-1.835,1.43067-3.71338,2.09668-5.58448l1.88477.6709C636.96289,445.22705,636.249,447.12744,635.51465,448.9834Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M472.25,559.97705c-2.39551,0-4.813-.04883-7.18555-.14453l.08106-1.99805c3.936.15918,7.959.18653,11.90771.07715l.05469,2Q474.68652,559.97755,472.25,559.97705Zm16.87793-.80176-.18945-1.99023c3.93847-.375,7.91064-.89258,11.80713-1.53613l.32617,1.97265C497.13037,558.27393,493.11182,558.79639,489.12793,559.17529ZM453.0542,558.939c-3.978-.43261-7.98877-1.00878-11.9209-1.71289l.35254-1.96875c3.88721.69532,7.85205,1.26563,11.78516,1.69336Zm59.82617-3.68945-.46191-1.94531c3.85058-.91406,7.71386-1.97168,11.48242-3.14551l.59473,1.91016C520.68311,553.25537,516.77539,554.32568,512.88037,555.24951Zm-83.52344-.55273c-3.88379-.97559-7.7788-2.09864-11.57714-3.33692l.62011-1.90234c3.75489,1.22461,7.605,2.335,11.44434,3.2998Zm106.5083-6.60547-.72558-1.86328c3.68066-1.43262,7.36181-3.01367,10.94043-4.69824l.85254,1.80859C543.312,545.04346,539.58838,546.64307,535.86523,548.09131ZM406.46191,547.229c-3.71045-1.501-7.41308-3.15039-11.00537-4.90234l.877-1.79687c3.55078,1.73144,7.21093,3.36132,10.87841,4.8457ZM557.646,537.83545l-.97461-1.74609c3.45507-1.92969,6.88427-4.001,10.19287-6.15723l1.09179,1.67578C564.60986,533.78857,561.14111,535.88428,557.646,537.83545Zm-172.83106-1.15527c-3.46631-1.9961-6.90723-4.1377-10.227-6.36524l1.11426-1.66015c3.28223,2.20214,6.68359,4.31933,10.11084,6.293ZM577.81738,524.689l-1.20508-1.5957c3.16114-2.38574,6.27588-4.90625,9.25782-7.49219l1.31054,1.51172C584.16455,519.728,581.01416,522.27686,577.81738,524.689Zm-212.99707-1.4248c-3.1665-2.4541-6.2832-5.0459-9.26269-7.70215l1.33105-1.49219c2.94531,2.625,6.02637,5.18653,9.15723,7.61426Zm231.18457-14.34863-1.41015-1.418c2.80468-2.79,5.54736-5.71094,8.15234-8.68164l1.50391,1.31836C601.61621,503.13916,598.8418,506.09326,596.00488,508.91553Zm-249.16259-1.666c-2.79688-2.85644-5.53174-5.84668-8.12842-8.88867l1.52148-1.29883c2.5669,3.00781,5.271,5.96485,8.03565,8.78906ZM611.87891,490.812l-1.58985-1.21289c2.39649-3.1416,4.71582-6.4082,6.89453-9.71094l1.66993,1.10157C616.64941,484.33057,614.30371,487.63525,611.87891,490.812Zm-280.668-1.874c-2.38477-3.21387-4.68653-6.54981-6.84131-9.91406l1.68457-1.07813c2.12988,3.3252,4.40527,6.623,6.76318,9.80078Zm293.9248-18.22461-1.74023-.98438c1.94433-3.44043,3.79492-6.99414,5.5-10.5625l1.80469.86231C628.97559,463.63818,627.10352,467.23291,625.13574,470.71338ZM318.2251,468.6665c-1.92334-3.51171-3.74658-7.13086-5.41895-10.75586l1.81641-.83789c1.65283,3.584,3.45557,7.16114,5.35644,10.63282Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M308.11475,446.73877c-.70752-1.86475-1.395-3.7749-2.04346-5.67822l1.89355-.64453c.64063,1.88134,1.32032,3.77,2.02,5.61279Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M311.20508,319.80225l-1.85547-.7461c.749-1.86377,1.53857-3.73437,2.34668-5.55908l1.8291.80957C312.72656,316.11084,311.9458,317.95947,311.20508,319.80225Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M318.78076,303.47217l-1.76758-.93457c1.88916-3.57276,3.92969-7.12647,6.065-10.56153l1.69824,1.05567C322.666,296.42773,320.64893,299.94043,318.78076,303.47217Zm305.35987-2.91309c-1.93262-3.49316-4.01661-6.96631-6.19239-10.32373l1.67774-1.08789c2.20117,3.396,4.30957,6.90967,6.26465,10.44287ZM331.48145,283.03223l-1.62159-1.1709c2.3667-3.27832,4.87842-6.51514,7.46534-9.62158l1.5371,1.28027C336.30469,276.59082,333.82129,279.791,331.48145,283.03223Zm279.57128-2.667c-2.39843-3.19287-4.94238-6.3457-7.55859-9.37011l1.51172-1.3086c2.64746,3.05909,5.21973,6.24756,7.64648,9.47754ZM346.88135,264.53955l-1.44531-1.38281c2.79492-2.92041,5.728-5.78125,8.71777-8.50293l1.34668,1.47949C352.54443,258.82373,349.64453,261.65186,346.88135,264.53955Zm248.42578-2.3706c-2.81836-2.835-5.77149-5.60791-8.77783-8.2417l1.31836-1.50391c3.04052,2.66357,6.02734,5.46826,8.87793,8.33545ZM364.67822,248.34082l-1.24121-1.56836c3.17285-2.51025,6.47168-4.93994,9.80469-7.22168l1.12988,1.65039C371.07617,243.457,367.81494,245.85889,364.67822,248.34082ZM577.20557,246.311c-3.17969-2.41895-6.48633-4.75879-9.82813-6.95411l1.09766-1.67187c3.38086,2.2207,6.72558,4.5874,9.9414,7.03418ZM384.53516,234.75049l-1.0127-1.72461c3.48584-2.04639,7.08887-3.99658,10.7085-5.79639l.89062,1.791C391.543,230.79932,387.98145,232.72754,384.53516,234.75049Zm172.55615-1.6499c-3.48926-1.96-7.08789-3.81934-10.69531-5.52735l.85546-1.80761c3.64942,1.72753,7.28956,3.60888,10.81934,5.59082Zm-151.00977-9.06006-.76367-1.84864c3.73633-1.543,7.57568-2.97314,11.41065-4.251l.63183,1.89746C413.56982,221.10156,409.7749,222.51514,406.08154,224.04053Zm129.26026-1.23535c-3.72608-1.45557-7.54785-2.7959-11.35938-3.98487l.59571-1.90918c3.85546,1.20264,7.72167,2.5586,11.49121,4.03076Zm-106.43555-6.37012-.498-1.937c3.91309-1.00635,7.91455-1.8877,11.89258-2.61914l.36133,1.96679C436.73,214.56885,432.7749,215.43994,428.90625,216.43506Zm83.46631-.7959c-3.88818-.92041-7.85938-1.71533-11.80371-2.36279l.32422-1.97364c3.98974.65479,8.00683,1.459,11.94043,2.39014Zm-59.80176-3.55811-.22461-1.9873c4.0044-.45215,8.08838-.771,12.13965-.94824l.0874,1.998C460.56738,211.31885,456.5293,211.63428,452.5708,212.08105Zm36.05859-.34082c-3.97021-.37207-8.01367-.61084-12.01709-.70947l.04883-1.999c4.04981.09961,8.13916.34082,12.15479.71728Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M632.05469,316.7998c-.77442-1.82714-1.58985-3.66113-2.42285-5.45117l1.8125-.84375c.84277,1.81055,1.668,3.666,2.45214,5.51367Z"
transform="translate(-89.25 -58.52295)" fill="#26c281" />
<path
d="M657.87115,384.24048A11.34613,11.34613,0,1,0,665.85,387.5636,11.18271,11.18271,0,0,0,657.87115,384.24048Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M612.62885,384.24048a11.34613,11.34613,0,1,0,7.97882,3.32312A11.24231,11.24231,0,0,0,612.62885,384.24048Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M635.25,321.47705a57,57,0,1,0,57,57A57,57,0,0,0,635.25,321.47705Zm11.0769,23.76923a5.45208,5.45208,0,0,1,5.50385,5.50384,5.53856,5.53856,0,1,1-5.50385-5.50384Zm-33.698,66.46154a16.15674,16.15674,0,1,1,16.14807-16.14807A16.20256,16.20256,0,0,1,612.62885,411.70782Zm25.39038-32.19232v15.57691a2.76923,2.76923,0,0,1-5.53846,0V383.68665c0-2.26728-2.76922-2.76923-10.64422-7.30384-1.02118-.60577-3.20191-1.67883-3.20191-4.69037a5.63583,5.63583,0,0,1,1.60956-3.87695l12.40967-11.95959a5.41486,5.41486,0,0,1,8.56726,1.14227l5.10577,10.40192h8.30774a2.76926,2.76926,0,0,1,0,5.53851H644.7c-1.85193,0-3.34039-3.98078-6.5769-8.91351l-8.4635,8.91351C632.75769,375.36163,638.01923,377.2309,638.01923,379.5155Zm19.85192,32.175a16.14807,16.14807,0,1,1,16.14808-16.14807A16.19891,16.19891,0,0,1,657.87115,411.69049Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M797.25,321.47705a57,57,0,1,0,57,57A57,57,0,0,0,797.25,321.47705Zm-15.10962,40.748a8.86392,8.86392,0,1,1-9.06921,8.86157A8.958,8.958,0,0,1,782.14038,362.2251Zm48.34039,38.40576h-6.0404v-8.86151H770.05963v8.86151h-6.0404V356.32318h6.0404v26.5846h24.1615V362.2251H818.4a11.94985,11.94985,0,0,1,12.08075,11.82116Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M166.3269,363.24628H149.36536a.69431.69431,0,0,0-.69226.69232v24.23077a.6943.6943,0,0,0,.69226.69226H166.3269a2.77736,2.77736,0,0,0,2.76923-2.76922V366.0155A2.77736,2.77736,0,0,0,166.3269,363.24628Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path d="M162.51923,394.054a4.15892,4.15892,0,1,0,4.48266,4.48266A4.16669,4.16669,0,0,0,162.51923,394.054Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path d="M129.30579,394.054a4.15892,4.15892,0,1,0,4.48266,4.48266A4.16669,4.16669,0,0,0,129.30579,394.054Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M143.13464,363.24628H126.2077a2.81428,2.81428,0,0,0-2.80383,2.80383V386.0578a2.81428,2.81428,0,0,0,2.80383,2.80383h16.92694a.6943.6943,0,0,0,.69226-.69226V363.9386A.69431.69431,0,0,0,143.13464,363.24628Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M146.25,321.47705a57,57,0,1,0,57,57A57,57,0,0,0,146.25,321.47705Zm27.69232,80.19232a6.94343,6.94343,0,0,1-6.92309,6.923H125.48077a6.94343,6.94343,0,0,1-6.92309-6.923V353.90009a5.55474,5.55474,0,0,1,5.53845-5.53846h44.30774a5.55474,5.55474,0,0,1,5.53845,5.53846Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path d="M166.5,353.20782H126a2.42884,2.42884,0,1,0,0,4.84614h40.5a2.42884,2.42884,0,1,0,0-4.84614Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M316.86536,380.03473c-1.14228,0-2.07691,1.69617-2.07691,3.80768s.93463,3.80768,2.07691,3.80768,2.077-1.69611,2.077-3.80768S318.00769,380.03473,316.86536,380.03473Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M301.63464,380.03473c-1.14233,0-2.077,1.69617-2.077,3.80768s.93463,3.80768,2.077,3.80768,2.07691-1.69611,2.07691-3.80768S302.77692,380.03473,301.63464,380.03473Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M309.25,321.47705a57,57,0,1,0,57,57A57,57,0,0,0,309.25,321.47705Zm-26.65387,55.06152,3.15-16.75384c.81348-4.55194,2.925-8.13464,6.88849-8.13464h5.9538l.34619-1.36731A5.535,5.535,0,0,1,304.3,346.11163h9.86542a5.5388,5.5388,0,0,1,5.36535,4.15387l.34613,1.38459h5.98847c3.87695,0,5.93658,3.51348,6.90582,8.11731v.01733l3.1673,16.77118a.69052.69052,0,0,1-.96924.76153l-4.39618-2.025a.65883.65883,0,0,1-.39807-.50189l-2.80384-14.81543c-.51922-1.90381-1.24615-2.76923-2.78656-2.76923H293.93268c-1.52307,0-2.35382.9173-2.7865,2.76923l-2.80389,14.81537a.69619.69619,0,0,1-.39808.50195l-4.37884,2.00769A.6948.6948,0,0,1,282.59613,376.53857Zm61.04425,10.78272-9.46728,23.52112c-4.75965,0-9.81348-3.80768-9.81348-3.80768-3.11542,1.575-9.19037,2.95959-13.725,3.21924-.48462.01727-.952.0346-1.38464.0346s-.9,0-1.38464-.0346c-4.53461-.25965-10.60956-1.66156-13.725-3.21924,0,0-5.05383,3.80768-9.81348,3.80768l-9.46728-23.52112a3.21588,3.21588,0,0,1-.225-1.15967,3.1269,3.1269,0,0,1,1.81726-2.83844l32.20966-14.79809a1.36006,1.36006,0,0,1,1.15961,0l32.22693,14.79809a3.1269,3.1269,0,0,1,1.81726,2.83844A3.21588,3.21588,0,0,1,343.64038,387.32129Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M472.25,321.47705a57,57,0,1,0,57,57A57,57,0,0,0,472.25,321.47705Zm26.258,62.55573c-.58851,0-2.54425-.01728-3.11542-.05188l-11.23267-.29425a.34012.34012,0,0,0-.29425.15576l-16.85766,25.2a2.75955,2.75955,0,0,1-2.33655,1.28076h-4.10193c-.96924,0-1.2981-.96924-.95191-1.8692l8.67115-24.73273a.34326.34326,0,0,0-.31153-.46728l-21.06347-.46735a1.41769,1.41769,0,0,0-1.14234.53656l-6.525,7.90961a2.79918,2.79918,0,0,1-2.18079,1.05578h-2.89038a.68934.68934,0,0,1-.65771-.91729l3.44427-11.89038a2.821,2.821,0,0,0,0-2.05964l-3.44427-11.89038a.68934.68934,0,0,1,.65771-.91729H437.083a2.74676,2.74676,0,0,1,2.18072,1.05578l6.40387,7.78845a1.39423,1.39423,0,0,0,1.14228.5365l21.18463-.31152a.33862.33862,0,0,0,.31158-.46728l-8.6712-24.7154c-.34613-.9-.01728-1.86926.952-1.86926h4.10193a2.78161,2.78161,0,0,1,2.33649,1.28076L483.86566,373.129a.32071.32071,0,0,0,.29425.15576l11.23267-.29425c.55389-.03461,2.52691-.05188,3.11542-.05188,7.68463,0,12.51342,2.49231,12.51342,5.55572S506.17529,384.03278,498.508,384.03278Z"
transform="translate(-89.25 -58.52295)" fill="#3f3d56" />
<path
d="M154.92236,570.61278a12,12,0,1,1,12-12A12.01375,12.01375,0,0,1,154.92236,570.61278Zm0-22a10,10,0,1,0,10,10A10.01114,10.01114,0,0,0,154.92236,548.61278Z"
transform="translate(-89.25 -58.52295)" fill="#f0f0f0" />
<path
d="M407.92236,301.61278a12,12,0,1,1,12-12A12.01375,12.01375,0,0,1,407.92236,301.61278Zm0-22a10,10,0,1,0,10,10A10.01114,10.01114,0,0,0,407.92236,279.61278Z"
transform="translate(-89.25 -58.52295)" fill="#f0f0f0" />
<path
d="M631.39387,630.98272l-13.4651-14.43621L632.365,603.08142l13.46509,14.43621ZM620.075,616.62121l11.39354,12.21526,12.21525-11.39354-11.39354-12.21526Z"
transform="translate(-89.25 -58.52295)" fill="#f0f0f0" />
</svg>
</div>
</div>
<div class="flex flex-wrap flex-col-reverse sm:flex-row items-center">
<div class="w-full sm:w-1/2 p-6 mt-6">
<svg class="w-5/6 sm:h-64 mx-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 982 469.75">
<title>subway</title>
<path
d="M1090,230.88V669.13a16.28,16.28,0,0,1-.37,3.45,15.43,15.43,0,0,1-15,12.3H124.32a15.29,15.29,0,0,1-14.18-9.81,15.9,15.9,0,0,1-1.14-5.94V230.88a15.53,15.53,0,0,1,15.32-15.75h950.36A15.53,15.53,0,0,1,1090,230.88Z"
transform="translate(-109 -215.13)" fill="#f2f2f2" />
<rect x="307" y="45" width="366" height="412" opacity="0.03" />
<rect x="355" y="100" width="114" height="214" rx="14.62" opacity="0.03" />
<rect x="620" y="315.13" width="114" height="214" rx="14.62" transform="translate(1245 629.13) rotate(-180)"
opacity="0.03" />
<rect x="26" y="52" width="262" height="262" rx="19.62" opacity="0.03" />
<rect x="801" y="267.13" width="262" height="262" rx="19.62" transform="translate(1755 581.13) rotate(-180)"
opacity="0.03" />
<polygon points="419.16 100 355 170.24 355 191.89 434.62 100 419.16 100" fill="#f2f2f2" />
<polygon points="469 172.3 355 283.64 355.5 303.5 469.5 191.89 469 172.3" fill="#f2f2f2" />
<polygon points="575.16 100 511 170.24 511 191.89 590.62 100 575.16 100" fill="#f2f2f2" />
<polygon points="625 172.3 511 283.64 511.5 303.5 625.5 191.89 625 172.3" fill="#f2f2f2" />
<polygon points="112.97 52 26 151.69 26 215.6 157 52 112.97 52" fill="#f2f2f2" />
<polygon points="228.44 52 26 251 26 266.12 255.24 52 228.44 52" fill="#f2f2f2" />
<polygon points="780.47 52.5 693.5 152.19 693.5 216.1 824.5 52.5 780.47 52.5" fill="#f2f2f2" />
<polygon points="895.94 52.5 693.5 251.5 693.5 266.62 922.74 52.5 895.94 52.5" fill="#f2f2f2" />
<path
d="M397,500.45v9.06a19.62,19.62,0,0,1-19.62,19.62H344.12c-1-.94-1.93-1.89-2.88-2.86-4.06-4.15-8.17-8.78-10.73-14.49-3.77-8.39-3.53-17.82-3.33-25.39,0-.73.05-1.45.07-2.19a29.14,29.14,0,0,1-53.59-7.93,28.47,28.47,0,0,1-.74-8,29,29,0,0,1,9.42-20.12l10.59,10.16-5.15-14.1a29.1,29.1,0,0,1,40.45,12.64q.47-10.83,1.07-21.62l-.12,0c-.61-.1-1.22-.23-1.81-.36l-1-.26c-.55-.16-1.1-.32-1.63-.5l-1-.35c-.54-.2-1.08-.44-1.6-.68a9,9,0,0,1-.84-.38c-.65-.31-1.27-.64-1.89-1-.14-.08-.28-.15-.42-.24-.74-.45-1.45-.93-2.14-1.44-.24-.16-.46-.36-.68-.53-.46-.36-.91-.73-1.34-1.1l-.76-.71c-.38-.36-.75-.73-1.1-1.1s-.5-.53-.74-.82-.67-.77-1-1.18l-.65-.84c-.34-.47-.66-.94-1-1.43-.16-.24-.33-.48-.48-.73-.43-.72-.83-1.45-1.2-2.21-.14-.29-.26-.6-.39-.88-.23-.5-.45-1-.65-1.53-.14-.34-.25-.7-.38-1.07s-.31-.94-.45-1.44-.2-.75-.3-1.14c0-.2-.11-.41-.15-.61h0a28.94,28.94,0,0,1,13.9-31.4l6.52,12.9-.19-15.62a29.14,29.14,0,0,1,34.21,14.78s0,0,0,0l.09.22c.14.27.26.53.39.81.23.52.46,1,.66,1.58.1.24.2.46.29.7.26.73.48,1.46.69,2.21.07.25.13.51.19.76.17.69.31,1.38.43,2.08,0,.13,0,.25.08.39.12.82.2,1.67.26,2.52,0,.22,0,.42,0,.65,0,.88.05,1.75,0,2.64a29.1,29.1,0,0,1-25.88,27.57c-1,17.08-1.69,34.21-2.13,51.19-.22,8.59-.16,15.65,2.63,21.87a34.65,34.65,0,0,0,5.76,8.5c0-.54,0-1.09,0-1.64a29.14,29.14,0,0,1,30.47-27.76h.08l6.6,13.07-.15-12A29.17,29.17,0,0,1,397,500.45Z"
transform="translate(-109 -215.13)" fill="#f2f2f2" />
<rect x="484" y="45" width="12" height="412" opacity="0.03" />
<path
d="M1089.63,672.58a15.43,15.43,0,0,1-15,12.3H124.32a15.29,15.29,0,0,1-14.18-9.81c43.13-10.93,157.55-19.78,305.86-23.91q12.39-.36,25.09-.64l1.57,0c2-.05,4.1-.08,6.16-.14q13.49-.29,27.3-.55l3.18-.06,10.9-.19,3.88-.06q11.49-.18,23.18-.32c24.69-.3,50-.48,75.74-.51h22.54q10.69,0,21.28,0l21.26.14c43.11.29,84.64,1,123.92,2l15.5.43q11.13.3,22,.66C944.72,655.92,1042.89,663.39,1089.63,672.58Z"
transform="translate(-109 -215.13)" fill="#3f3d56" />
<path
d="M397.5,557.63h0c0,6.07-4.4,11-9.82,11H145.32c-5.42,0-9.82-4.93-9.82-11h0c0-6.08,4.4-11,9.82-11H387.68C393.1,546.63,397.5,551.55,397.5,557.63Z"
transform="translate(-109 -215.13)" fill="#3f3d56" />
<rect x="515.82" y="109.38" width="34.86" height="60.15" fill="#3f3d56" />
<rect x="515.82" y="109.38" width="34.86" height="60.15" opacity="0.1" />
<path
d="M796.18,373.71c2.08-1.25,4.66-1.17,7.09-1a9,9,0,0,1,4.21.9c2.5,1.51,2.88,4.92,3,7.84.12,3.48.12,7.34-2.2,10-1.84,2.07-4.71,2.83-7.44,3.31a20.15,20.15,0,0,0-5.59,1.42,24.55,24.55,0,0,0-4.86,3.73c-3.25,2.77-7.57,5.49-11.83,6.16-2.86-5.77-3.6-11.3.87-16.26,2.47-2.74,5.66-4.85,8.34-7.39S792.91,375.68,796.18,373.71Z"
transform="translate(-109 -215.13)" fill="#a0616a" />
<path
d="M632,666.29a9.4,9.4,0,0,0-.7,3.79c.28,3,3.25,4.89,6,6.14,3.68,1.69,8.32,2.93,11.52.44,3.56-2.77,3-8.19,4.39-12.49.82-2.51,2.36-4.72,3.37-7.16,2.77-6.69,1.31-14.3-.19-21.38l-2.19-10.31a3.87,3.87,0,0,0-1-2.19c-1.61-1.41-9.16-1.92-11.08-.58-3.07,2.13-2.33,9.32-2.82,12.7A179.48,179.48,0,0,1,632,666.29Z"
transform="translate(-109 -215.13)" fill="#575a89" />
<path
d="M620.4,666.29a9.58,9.58,0,0,1,.7,3.79c-.28,3-3.25,4.89-6,6.14-3.68,1.69-8.33,2.93-11.52.44-3.56-2.77-3-8.19-4.4-12.49-.81-2.51-2.35-4.72-3.36-7.16-2.78-6.69-1.31-14.3.19-21.38l2.19-10.31a3.87,3.87,0,0,1,1-2.19c1.61-1.41,9.16-1.92,11.08-.58,3.06,2.13,2.32,9.32,2.81,12.7A179.5,179.5,0,0,0,620.4,666.29Z"
transform="translate(-109 -215.13)" fill="#575a89" />
<path
d="M645.74,357a4.67,4.67,0,0,1,1.17,2.07c.36,1.88-1.39,3.54-3.18,4.22s-3.79.84-5.41,1.87a9.39,9.39,0,0,0-3.42,5c-3.4,9.56.39,21.61,9.41,26.26,6.22,3.21,13.62,2.71,20.6,2.13a7.9,7.9,0,0,0,2.85-.6,7.26,7.26,0,0,0,2.32-2.1,40.91,40.91,0,0,0,7.48-35.64,4,4,0,0,0-.59-1.43c-1.8-2.47-6.14.57-8.69-1.11a5.19,5.19,0,0,1-1.69-2.4A51.3,51.3,0,0,1,663,342.42c-.08-.54-11.44,3.81-12.41,4.29-3.87,2-4.07.16-6.94,3.43C646.73,351,643.19,354.06,645.74,357Z"
transform="translate(-109 -215.13)" fill="#a0616a" />
<path
d="M645.74,357a4.67,4.67,0,0,1,1.17,2.07c.36,1.88-1.39,3.54-3.18,4.22s-3.79.84-5.41,1.87a9.39,9.39,0,0,0-3.42,5c-3.4,9.56.39,21.61,9.41,26.26,6.22,3.21,13.62,2.71,20.6,2.13a7.9,7.9,0,0,0,2.85-.6,7.26,7.26,0,0,0,2.32-2.1,40.91,40.91,0,0,0,7.48-35.64,4,4,0,0,0-.59-1.43c-1.8-2.47-6.14.57-8.69-1.11a5.19,5.19,0,0,1-1.69-2.4A51.3,51.3,0,0,1,663,342.42c-.08-.54-11.44,3.81-12.41,4.29-3.87,2-4.07.16-6.94,3.43C646.73,351,643.19,354.06,645.74,357Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M605.85,476.23q1,9.66,1.41,19.36c.29,6.21.41,12.57-1.48,18.49-1,3.32-2.71,6.42-3.6,9.78-1,3.95-1,8.09-.95,12.18a28.36,28.36,0,0,0,.66,7c.55,2.09,1.57,4,2.32,6,2.7,7.17,2.08,15.12,1.15,22.72-1.75,14.3-4.48,28.46-7.21,42.6L593.22,640a82.89,82.89,0,0,0,16.68,4.89c3.54.64,8.16.52,9.57-2.8a9.4,9.4,0,0,0,.21-4.69,47.85,47.85,0,0,1,2.42-21.1c1.94-5.49,4.87-10.62,6.36-16.25A58.24,58.24,0,0,0,630,589.23q.69-9.6.58-19.23c-.1-8.66-.65-17.53,1.94-25.8,3.39-10.82,12.07-20.46,11.06-31.76.21,12.45.43,24.91-.41,37.33a123.29,123.29,0,0,0-.6,15.48c.42,7.57,2.61,15.21,1,22.63-.66,3-1.92,5.9-2.25,9-.52,4.82,1.3,9.88-.31,14.46-1.39,4-5.26,7.16-5.14,11.37.08,3.15,2.53,5.84,5.39,7.17s6.08,1.55,9.22,1.75c3.4.22,7.52.08,9.23-2.87,2.09-3.59-1.22-7.83-1.84-11.93s1.57-8.1,3.53-11.78a151.63,151.63,0,0,0,17.72-67.38c.17-7.11-.16-14.23-.12-21.34a206.26,206.26,0,0,1,6-48.41C658.23,466.9,631.11,467.15,605.85,476.23Z"
transform="translate(-109 -215.13)" fill="#3c354c" />
<circle cx="539.75" cy="121.69" r="20.17" fill="#a0616a" />
<path
d="M664.15,366.23c-2.18,3.94-4.89,7.87-8.92,9.9s-9.66,1.51-12.19-2.23c-1.91-2.83-1.95-7.08-4.92-8.74-2.38-1.33-5.55-.09-7.2,2.08s-2.14,5-2.46,7.68a158.39,158.39,0,0,0-.7,20.32c.42,33.05,3.06,66.07,2.64,99.13a126.75,126.75,0,0,1-.89,15.46c12.17-3.08,24.42-6.16,37-6.94,6.07-.37,12.18-.2,18.2-1a112.47,112.47,0,0,0,12.27-2.6,2.73,2.73,0,0,0,1.45-.69,2.68,2.68,0,0,0,.5-1.52c1.24-11.69-2.85-23.2-4.66-34.81-1.7-10.83-1.4-21.89-2.86-32.76-2-15.25-7.51-30.1-7.39-45.49,0-5.59.82-11.27-.42-16.73-1-4.5-4.47-10.5-9.5-11.38C668.53,354.93,666.25,362.44,664.15,366.23Z"
transform="translate(-109 -215.13)" fill="#26c281" />
<path
d="M661.91,373.56c-6.17,12.29-12.44,24.85-14.45,38.47-1.81,12.28-.07,24.85-1.56,37.17-1.91,15.82-9.07,31.92-4.21,47.1,1.08,3.39,2.73,6.57,3.88,9.93,5,14.76,0,31.21,3.23,46.47a2.56,2.56,0,0,0,1.15,1.94c.85.37,1.78-.25,2.67-.53,3.85-1.23,6.5,3.66,9.55,6.32a10.27,10.27,0,0,0,11.2,1.36c5.71-2.94,7.23-10.26,8-16.63q5.75-45.7,7-91.83c.19-7,.29-14-.86-20.9-1.39-8.37-4.59-16.33-6.31-24.63-2.76-13.36-1.61-27.17-.86-40.79.21-4-.91-15.52-7.7-11.76C667.42,358.14,664.44,368.53,661.91,373.56Z"
transform="translate(-109 -215.13)" fill="#575a89" />
<path
d="M630.93,408.11c-.06,4.36-.13,8.79-1.47,12.94s-3.92,7.83-6,11.71c-5,9.5-6.81,20.38-7.06,31.1s1,21.42,1.83,32.11a409.16,409.16,0,0,1,.85,48.9,35.74,35.74,0,0,1,20.78-.87c4,1,8.77,2.64,11.9-.08,2.23-1.94,2.5-5.25,2.6-8.2q1.59-45.09,1-90.22a95.08,95.08,0,0,1,.33-11.82c.33-3,1-6.06,1-9.12,0-4.3-1.15-8.5-2.32-12.64l-10.55-37.39c-.69-2.46-1.43-5-3.14-6.92s-6.88-4.46-8.89-2c-1.74,2.16-.45,9.56-.48,12.22Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M629.57,407.42c-.06,4.36-.14,8.8-1.48,12.95s-3.91,7.82-6,11.71c-5,9.5-6.81,20.38-7.06,31.1s1,21.42,1.83,32.11a409,409,0,0,1,.85,48.89,35.86,35.86,0,0,1,20.79-.87c4,1.05,8.76,2.65,11.89-.07,2.23-1.94,2.5-5.25,2.61-8.21q1.58-45.09,1-90.22a94.92,94.92,0,0,1,.32-11.81,88,88,0,0,0,1-9.12c0-4.3-1.14-8.51-2.31-12.64l-10.55-37.39c-.7-2.47-1.44-5-3.15-6.93s-6.88-4.45-8.89-1.95c-1.73,2.15-.44,9.56-.48,12.21Z"
transform="translate(-109 -215.13)" fill="#575a89" />
<path
d="M633.83,361.61c-5.45.55-9.64,5.25-11.77,10.29s-2.75,10.58-4.37,15.8c-2.83,9.05-8.7,17.21-9.65,26.64-.88,8.9,2.76,17.93,1,26.69a54,54,0,0,1-2.11,6.91c-3.4,9.95-5.34,20.33-7.28,30.67L596.77,494c-2,10.85-4.07,22-2.21,32.87a10.27,10.27,0,0,1,13,.83c1,.93,1.83,2.11,3.14,2.31,2.25.32,3.63-2.36,4.22-4.55a136.39,136.39,0,0,0,4.25-23.89c.38-4.38.56-8.82,1.85-13,.82-2.63,2-5.1,2.9-7.71,2-6.17,1.73-12.81,2.56-19.24.71-5.57,2.24-11,3.11-16.54a138.43,138.43,0,0,0,1.19-20.36l.39-39.17c.05-5.07.39-10.8,4.25-14.08,2-1.67,7.19-3.21,6.71-6.35C641.66,362.17,636.07,361.39,633.83,361.61Z"
transform="translate(-109 -215.13)" fill="#ff6584" />
<path
d="M666.05,358c5.84-4.39,12.29-9,19.6-8.82a33,33,0,0,1,7.15,1.24l16.54,4.13a16.34,16.34,0,0,1-7.05,6.5,12,12,0,0,1,13.12,7.23c2.31,6.06-.73,12.7-3.42,18.61-4.6,10.09-8.42,20.83-8.38,31.93,0,5.63-3.89,11.2-4.27,16.82a33,33,0,0,0,.86,10.49,70.44,70.44,0,0,0,3.76,9.76c10.13,23.78,12.43,50.23,11.31,76.06l-22.58,0a10,10,0,0,0-3.69.47c-1.42.55-2.49,1.71-3.75,2.57a9.93,9.93,0,0,1-7.4,1.54c-2.41-11,1.4-22.18,3.28-33.24A164.25,164.25,0,0,0,682.94,485q.79-14.56.8-29.17c0-7.36-.18-14.87-2.61-21.81-1.2-3.44-2.94-6.69-4.07-10.16a61,61,0,0,1-2.1-10.65C672.44,394.62,668.57,376.57,666.05,358Z"
transform="translate(-109 -215.13)" fill="#ff6584" />
<path
d="M617.78,373.56c-1.7,1.24-2.2,3.5-2.95,5.47-1.88,4.94-5.87,8.74-8.49,13.32a53,53,0,0,0-3.72,8.82c-3.47,9.9-7,20.23-5.76,30.64.28,2.33.87,4.77,2.52,6.44,3.61,3.63,10.28,1.39,13.07-2.91s2.95-9.7,3.51-14.78c1.06-9.68,3.87-19,6-28.5a111,111,0,0,0,2.52-14.48c.15-1.5,1-4.84-.42-5.79C623.17,371.19,618.61,373,617.78,373.56Z"
transform="translate(-109 -215.13)" fill="#ff6584" />
<path
d="M728.06,400.23c2.49,3,5.52,6.17,9.38,6.07a13.3,13.3,0,0,0,5.41-1.81,259.71,259.71,0,0,1,40.33-16.07,18.76,18.76,0,0,0,4.39,21.18A139,139,0,0,0,754.07,423a28.74,28.74,0,0,0-6.17,4.29,40.82,40.82,0,0,1-3.86,3.92c-3.06,2.34-7.21,2.5-11.07,2.56a16.18,16.18,0,0,1-12.72-3.89l-27.62-19.75a2.95,2.95,0,0,1-.92-4.81l8.74-15.59c2-3.53,4.25-9.37,8.94-10s6.41,4.41,8.63,7.71A146.38,146.38,0,0,0,728.06,400.23Z"
transform="translate(-109 -215.13)" fill="#ff6584" />
<rect x="598.85" y="366.89" width="18.46" height="38.28" rx="4.1"
transform="translate(-208.34 35.5) rotate(-21.57)" fill="#3f3d56" />
<rect x="598.85" y="366.89" width="18.46" height="38.28" rx="4.1"
transform="translate(-208.34 35.5) rotate(-21.57)" opacity="0.1" />
<rect x="597.48" y="367.57" width="18.46" height="38.28" rx="4.1"
transform="translate(-208.69 35.04) rotate(-21.57)" fill="#3f3d56" />
<circle cx="496.34" cy="165.09" r="2.39" fill="#26c281" />
<path
d="M598.56,403.65c-1.24-1.54-2.79-2.82-3.88-4.46A17.1,17.1,0,0,1,592.4,392a66.48,66.48,0,0,1-.65-8.35,2.43,2.43,0,0,1,3-2.4,19.68,19.68,0,0,1,10.28,6.2,26.64,26.64,0,0,1,6.08,13.67,67.88,67.88,0,0,1,.57,7.81l.36,10.71c-2.61,0-6.41.73-8.91,0-3.59-1-2.14-.37-1.78-3.9C601.76,411.34,601.46,407.25,598.56,403.65Z"
transform="translate(-109 -215.13)" fill="#a0616a" />
<path
d="M605.61,415.1a9.61,9.61,0,0,1-4.23-.58c-2.74-1.15-4.31-4-5.67-6.63a94.86,94.86,0,0,1-.88,17.19c-.52,3-1.33,6-1.26,9.07a15.93,15.93,0,0,0,4.3,10.44,7.48,7.48,0,0,0,2.64,1.93c2.16.85,4.62.06,6.6-1.14a16.73,16.73,0,0,0,6.55-7.38c2-4.44,1.9-9.33,2-14.09.1-4.45,1.53-9.12,1.45-13.39C613.65,410.11,609.82,414.88,605.61,415.1Z"
transform="translate(-109 -215.13)" fill="#ff6584" />
<path
d="M625.69,329.74a27.63,27.63,0,0,0,23,1.28c-1.17,5.11,1.51,10.21,2.9,15.27,3.66,13.33-2,27.81-11,38.28a28,28,0,0,0,22.77-8.25,59.61,59.61,0,0,1-11.24,18.73c17.31-5.39,29.67-21.44,35.22-38.7,4.24-13.22,5-28.06-.78-40.67s-19.06-22.24-32.89-21.1c-10.09.83-19.32,7.27-24.45,16S622.92,330,625,340Z"
transform="translate(-109 -215.13)" fill="#3f3d56" />
<path
d="M651.63,346.29a36.14,36.14,0,0,1-1.27,21.77c3.57-8,4.94-16.82,2.64-25.19-1.39-5.06-4.08-10.16-2.91-15.27a27.61,27.61,0,0,1-23-1.28l-.28,4a27.65,27.65,0,0,0,22,.74C647.56,336.13,650.24,341.23,651.63,346.29Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path d="M627.61,313.77A42.51,42.51,0,0,0,625,340l.61-8.58A42.3,42.3,0,0,1,627.61,313.77Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M664.77,372.9a28.1,28.1,0,0,1-21.49,8.35c-.85,1.15-1.73,2.26-2.65,3.32a28,28,0,0,0,22.69-8.18C663.84,375.24,664.33,374.08,664.77,372.9Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M655.45,391c-1,1.41-2.13,2.77-3.29,4.08,16.29-5.07,28.2-19.59,34.16-35.67C680.27,373.44,669.62,385.81,655.45,391Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M819.5,257.63v-42h-22v442a11,11,0,1,0,22,0v-378h54v31.15c-19.18,1.2-34,9.17-34,18.85,0,8.9,12.6,16.39,29.59,18.44a79.45,79.45,0,0,0,9.41.56c21.54,0,39-8.52,39-19,0-7.2-8.2-13.46-20.3-16.68a70.76,70.76,0,0,0-13.7-2.17V279.63h110v31.15a74.56,74.56,0,0,0-9.2,1.15c-14.52,2.77-24.8,9.65-24.8,17.7a9.81,9.81,0,0,0,1.09,4.45c4.11,8.34,19.52,14.55,37.91,14.55,21.54,0,39-8.52,39-19,0-9.68-14.82-17.65-34-18.85V279.63H1091v-22Zm210,72c0,8.33-13.88,15.09-31,15.09s-31-6.76-31-15.09a7.3,7.3,0,0,1,.39-2.36c1.06-3.34,4.36-6.3,9.11-8.51a49.32,49.32,0,0,1,17.93-4.13h7.14C1017.51,315.48,1029.5,321.88,1029.5,329.63Zm-135.23-13c9.12,2.65,15.23,7.48,15.23,13,0,8.33-13.88,15.09-31,15.09a61.84,61.84,0,0,1-6.47-.33c-14-1.44-24.53-7.5-24.53-14.76,0-7.75,12-14.15,27.43-15h7.14A56.47,56.47,0,0,1,894.27,316.61Z"
transform="translate(-109 -215.13)" fill="#3f3d56" />
<rect x="381.22" y="232.37" width="3.52" height="107.47" fill="#575a89" />
<rect x="392.15" y="232.37" width="3.53" height="107.47" fill="#575a89" />
<circle cx="373.43" cy="444.42" r="6.02" fill="#575a89" />
<path
d="M461.11,550s6-4.88,11.27-3.19,19,3.38,21.4,12,0,103.45,0,103.45-11.64,3-14.83,1.5S476.13,648,476.13,648l-.93-84.11Z"
transform="translate(-109 -215.13)" fill="#26c281" />
<path
d="M461.11,550s6-4.88,11.27-3.19,19,3.38,21.4,12,0,103.45,0,103.45-11.64,3-14.83,1.5S476.13,648,476.13,648l-.93-84.11Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<path
d="M515.75,657.4,490.48,663l-.26-4.49-.17-88.47a26.94,26.94,0,0,0-10.58-21.37h0s13.09-.17,23.12,4.35c2.14,1,4.29,1.91,6.49,2.72,2.73,1,6.43,3.15,6.67,7.39.31,5.52,1.36,60.2,1.74,80.11a50.39,50.39,0,0,1-1.74,14.14Z"
transform="translate(-109 -215.13)" fill="#26c281" />
<rect x="379.57" y="224.39" width="5.87" height="9.2" fill="#535461" />
<rect x="379.57" y="224.39" width="5.87" height="9.2" opacity="0.1" />
<rect x="390.6" y="225.85" width="5.87" height="9.2" fill="#535461" />
<path
d="M505.47,441H499.6a5.83,5.83,0,0,0-5.16,3.43c-.08.18-.16.36-.24.56l-1.29-1.25-2.69-2.6-1.65-1.59S499.41,434,505.47,441Z"
transform="translate(-109 -215.13)" fill="#535461" />
<circle cx="399.03" cy="448.66" r="6.02" fill="#575a89" />
<circle cx="336.86" cy="440.44" r="6.02" fill="#575a89" />
<path
d="M457.17,548.69s-17.08,4.51-18,47.5-1.13,47.5-1.13,47.5.38,12.4,25.53,20.09H479L481.39,565S478.57,550,457.17,548.69Z"
transform="translate(-109 -215.13)" fill="#26c281" />
<path d="M455.67,615.34s-4.38-60.11,19.22-60.38l2.21,2.16S456.42,549.63,455.67,615.34Z"
transform="translate(-109 -215.13)" opacity="0.1" />
<circle cx="357.28" cy="453.91" r="6.02" fill="#575a89" />
<path
d="M499.67,440.94s0,0,0,0h-.06a5.83,5.83,0,0,0-5.16,3.43c-.08.18-.16.36-.24.56l-1.29-1.25a1.82,1.82,0,0,1,0-.33,3.41,3.41,0,0,1,1.28-2.22,5.06,5.06,0,0,1,4.89-.88C499.38,440.39,499.73,440.62,499.67,440.94Z"
transform="translate(-109 -215.13)" opacity="0.1" />
</svg>
</div>
<div class="w-full sm:w-1/2 p-6 mt-6">
<div class="align-middle">
<h3 class="text-3xl text-gray-800 font-bold leading-none mb-3">Make informed decisions.</h3>
<p class="text-gray-600 mb-8">
Choose from a selection of transportation means available for the searched route and compare the search results by CO<sub>2</sub> emission as well as duration and distance. Afterwards view your route comfortably in your usual Maps App.
</p>
<button class="mx-auto lg:mx-0 hover:underline font-bold rounded-full mt-4 lg:mt-0 py-4 px-8 shadow gradient text-white" onclick="window.open('https://green-traveller.github.io/web/')">
Launch App <i class="fas fa-rocket"></i>
</button>
</div>
</div>
</div>
<div class="flex flex-wrap items-center">
<div class="w-5/6 sm:w-1/2 p-6">
<h3 class="text-3xl text-gray-800 font-bold leading-none mb-3">Review your CO<sub>2</sub> emissions.</h3>
<p class="text-gray-600 mb-8">
Gain insight on your travel behaviour with a selection diagrams. Be confident in your travelling choices and habits.
</p>
<button class="mx-auto lg:mx-0 hover:underline font-bold rounded-full mt-4 lg:mt-0 py-4 px-8 shadow gradient text-white" onclick="window.open('https://green-traveller.github.io/web/')">
Launch App <i class="fas fa-rocket"></i>
</button>
</div>
<div class="w-full sm:w-1/2 p-6">
<svg class="w-full sm:h-64 mx-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 885.52801 664.18688">
<polygon points="885.132 641.931 617.731 641.931 617.731 639.746 885.528 639.746 885.132 641.931"
fill="#3f3d56" />
<circle cx="42.90795" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="7.70817" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="47.21252" r="7.70738" fill="#26c281" />
<circle cx="198.96651" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="47.21252" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="86.71687" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="126.22122" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="165.72557" r="7.70738" fill="#26c281" />
<circle cx="120.93723" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="165.72557" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="205.22993" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="244.73428" r="7.70738" fill="#26c281" />
<circle cx="159.95187" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="244.73428" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="284.23863" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="323.74298" r="7.70738" fill="#e6e6e6" />
<circle cx="42.90795" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="81.92259" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="120.93723" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="159.95187" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="198.96651" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="237.98114" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="276.99578" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="316.01042" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="355.02506" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<circle cx="394.0397" cy="363.24733" r="7.70738" fill="#e6e6e6" />
<polygon
points="320.375 305.854 411.849 145.565 228.803 145.565 137.232 304.171 228.803 462.778 411.946 462.778 503.347 304.468 320.375 305.854"
fill="#3f3d56" />
<polygon
points="526.065 291.005 526.236 290.708 434.665 132.102 434.567 132.102 343.093 292.391 526.065 291.005"
fill="#26c281" />
<path
d="M815.77709,256.51719q-2.23829-2.61483-2.23829-7.65653,0-4.99425,2.23829-7.61012a7.72119,7.72119,0,0,1,6.19557-2.615,7.8497,7.8497,0,0,1,6.26788,2.615q2.26047,2.61546,2.2613,7.61012,0,5.04231-2.2613,7.65653a7.84866,7.84866,0,0,1-6.26788,2.61545A7.72018,7.72018,0,0,1,815.77709,256.51719Zm8.88251-2.70912a10.65967,10.65967,0,0,0,.848-4.94741,10.2897,10.2897,0,0,0-.87263-4.87716,2.86536,2.86536,0,0,0-2.66229-1.53123,2.77625,2.77625,0,0,0-2.5908,1.53123,10.53654,10.53654,0,0,0-.84881,4.87716,10.66484,10.66484,0,0,0,.84881,4.92358,2.77451,2.77451,0,0,0,2.5908,1.53164A2.8611,2.8611,0,0,0,824.6596,253.80807ZM821.644,272.65566l19.41251-33.54891h5.23007L826.8264,272.65566Zm18.023-2.28513q-2.23952-2.61544-2.23829-7.70419,0-4.99364,2.23829-7.58629a8.81677,8.81677,0,0,1,12.48645,0q2.23707,2.592,2.23829,7.63353,0,5.04233-2.23829,7.65695a8.76015,8.76015,0,0,1-12.48645,0Zm8.88086-2.73295a10.668,10.668,0,0,0,.84881-4.924,10.29849,10.29849,0,0,0-.87182-4.87675,3.01858,3.01858,0,0,0-5.2539,0,10.546,10.546,0,0,0-.848,4.87675,10.68062,10.68062,0,0,0,.848,4.924,3.03878,3.03878,0,0,0,5.27691,0Z"
transform="translate(-157.23599 -117.90656)" fill="#3f3d56" />
<path
d="M159.47429,545.91473q-2.2383-2.61484-2.2383-7.65654,0-4.99425,2.2383-7.61011a7.72113,7.72113,0,0,1,6.19556-2.615,7.84966,7.84966,0,0,1,6.26788,2.615q2.26047,2.61544,2.2613,7.61011,0,5.04232-2.2613,7.65654a7.84868,7.84868,0,0,1-6.26788,2.61545A7.72017,7.72017,0,0,1,159.47429,545.91473Zm8.8825-2.70913a10.65965,10.65965,0,0,0,.848-4.94741,10.28968,10.28968,0,0,0-.87264-4.87716,2.86538,2.86538,0,0,0-2.66229-1.53123,2.77627,2.77627,0,0,0-2.5908,1.53123,10.53667,10.53667,0,0,0-.84881,4.87716,10.665,10.665,0,0,0,.84881,4.92358,2.77451,2.77451,0,0,0,2.5908,1.53164A2.86108,2.86108,0,0,0,168.35679,543.2056Zm-3.01561,18.84759,19.4125-33.54891h5.23007l-19.46016,33.54891Zm18.023-2.28513q-2.23951-2.61544-2.23829-7.70419,0-4.99363,2.23829-7.58629a8.81677,8.81677,0,0,1,12.48645,0q2.23707,2.592,2.2383,7.63353,0,5.04232-2.2383,7.65695a8.76015,8.76015,0,0,1-12.48645,0Zm8.88086-2.73295a10.668,10.668,0,0,0,.84881-4.924,10.29856,10.29856,0,0,0-.87181-4.87674,3.01857,3.01857,0,0,0-5.25391,0,10.546,10.546,0,0,0-.848,4.87674,10.68075,10.68075,0,0,0,.848,4.924,3.03877,3.03877,0,0,0,5.27691,0Z"
transform="translate(-157.23599 -117.90656)" fill="#3f3d56" />
<polygon
points="439.283 234.863 438.098 234.548 463.952 137.291 613.913 137.291 613.913 138.517 464.894 138.517 439.283 234.863"
fill="#2f2e41" />
<path
d="M783.40238,268.67652a12.866,12.866,0,1,1,12.866-12.866A12.88062,12.88062,0,0,1,783.40238,268.67652Zm0-24.50663A11.64065,11.64065,0,1,0,795.043,255.81054,11.65389,11.65389,0,0,0,783.40238,244.16989Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<circle cx="626.16639" cy="137.90398" r="4.90133" fill="#26c281" />
<polygon
points="249.956 330.343 251.141 330.658 225.287 427.914 75.326 427.914 75.326 426.689 224.345 426.689 249.956 330.343"
fill="#2f2e41" />
<path
d="M220.30856,532.34209a12.866,12.866,0,1,1-12.866,12.866A12.88063,12.88063,0,0,1,220.30856,532.34209Zm0,24.50663a11.64065,11.64065,0,1,0-11.64065-11.64065A11.65388,11.65388,0,0,0,220.30856,556.84872Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<circle cx="63.07256" cy="427.30151" r="4.90133" fill="#26c281" />
<rect x="719.1522" y="621.28014" width="18.60392" height="25.30133" fill="#a0616a" />
<rect x="813.66011" y="621.28014" width="18.60392" height="25.30133" fill="#a0616a" />
<path
d="M1002.40628,529.33449h0a11.03954,11.03954,0,0,1-10.90618-12.75032l3.047-19.42475.90619-5.77692h14.139l.74415,8.18572,2.94415,16.82373A11.03953,11.03953,0,0,1,1002.40628,529.33449Z"
transform="translate(-157.23599 -117.90656)" fill="#a0616a" />
<path
d="M863.99312,527.102h0a11.03955,11.03955,0,0,1-10.90618-12.75032l3.047-19.42475.90619-5.77692h14.139l.74415,8.18572,2.94416,16.82373A11.03954,11.03954,0,0,1,863.99312,527.102Z"
transform="translate(-157.23599 -117.90656)" fill="#a0616a" />
<polygon
points="834.496 626.489 812.172 625.745 775.708 405.475 739.244 626.489 717.664 625.745 711.711 371.243 836.729 371.243 834.496 626.489"
fill="#2f2e41" />
<path
d="M894.52594,782.05388c-18.94115.54786-33.76818-4.57266-43.48954-16.72781a8.02987,8.02987,0,0,1-.60774-9.1433h0a8.02808,8.02808,0,0,1,7.816-3.84338l6.15513.71943,12.81675-6.40421c-2.62194,15.24693,4.5096,15.53387,21.56892,10.42331l3.07336,15.751A7.73486,7.73486,0,0,1,894.52594,782.05388Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<path
d="M989.03385,782.05388c-18.94115.54786-33.76818-4.57266-43.48954-16.72781a8.02987,8.02987,0,0,1-.60774-9.1433h0a8.02808,8.02808,0,0,1,7.816-3.84338l6.15512.71943,12.72057-5.36672c-2.62194,15.24693,4.60579,14.49638,21.66511,9.38582l3.07336,15.751A7.73486,7.73486,0,0,1,989.03385,782.05388Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<circle cx="768.26655" cy="108.55613" r="29.76627" fill="#a0616a" />
<polygon points="798.033 162.88 766.034 164.368 764.546 130.881 792.08 120.463 798.033 162.88"
fill="#a0616a" />
<path
d="M1001.40653,499.56822c-43.63618-8.25687-93.35043-11.21495-126.50665,0l10.4182-218.78209,34.97536-10.41819,2.60455-4.09286,29.39419-4.837,14.139,4.46494,8.92988,13.39482,38.69616,21.58054C995.00944,374.56155,989.36749,441.50762,1001.40653,499.56822Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<path
d="M1022.24292,498.07991l-31.99874-3.72079c6.66972-32.49693,3.94209-74.76625,5.58118-117.20469,1.03954-26.91553,6.62166-51.41087,8.5578-81.48516h0c12.1356,3.16443,18.4186,14.43324,18.49091,27.71334C1023.217,386.36925,1029.16653,445.38669,1022.24292,498.07991Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<path
d="M883.08561,495.10328,851.831,492.87081l18.60392-105.67026,6.29835-87.93423c-.98006-12.82368,5.87386-20.275,16.02635-20.71265h0c22.177,26.2617,24.74848,62.45392,17.85977,103.43779Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
<path
d="M935.15668,248.34831l-3.83876-10.92767a35.84229,35.84229,0,0,0-28.39865-23.55116h0l-24.05749-.55155,6.67952-10.73421a32.63971,32.63971,0,0,1,30.94992-15.23426l24.04315,2.39663a21.77937,21.77937,0,0,1,19.525,23.69415l-2.205,23.64583A14.89339,14.89339,0,0,1,935.15668,248.34831Z"
transform="translate(-157.23599 -117.90656)" fill="#2f2e41" />
</svg>
</div>
</div>
<div class="flex flex-wrap flex-col-reverse sm:flex-row items-center">
<div class="w-full sm:w-1/2 p-6 mt-6">
<svg class="w-5/6 sm:h-64 mx-auto" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1009.54 839.64">
<defs>
<linearGradient id="f9d7795c-47ab-4264-adf8-fc9a284cd87a" x1="491.14" y1="640.96" x2="698.09" y2="640.96"
gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="gray" stop-opacity="0.25" />
<stop offset="0.54" stop-color="gray" stop-opacity="0.12" />
<stop offset="1" stop-color="gray" stop-opacity="0.1" />
</linearGradient>
</defs>
<title>personalization</title>
<path
d="M681.78,141.58c-64.72-2.25-126.36-23.14-185.22-46S379.4,47.39,316.23,35.28c-40.63-7.79-87.1-8.89-119.83,12.89-31.51,21-41.69,57.15-47.16,90.73-4.12,25.26-6.54,51.85,4.74,75.49,7.84,16.42,21.74,30.22,31.36,45.95,33.47,54.72,9.81,122.2-26.45,175.63-17,25.07-36.75,49-49.88,75.66s-19.2,57.25-7.71,84.47c11.38,27,38.51,47.24,67.9,61.49,59.69,28.95,130,37.23,198.61,41.92,151.83,10.39,304.46,5.89,456.69,1.39,56.34-1.67,112.92-3.36,168.34-12.07,30.78-4.84,62.55-12.51,84.9-31.05,28.36-23.53,35.39-63.37,16.38-92.88-31.88-49.49-120-61.78-142.31-114.89-12.26-29.24.33-61.8,18.16-88.92,38.24-58.16,102.33-109.19,105.7-175.67,2.32-45.66-28.49-91.39-76.13-113-49.93-22.64-119.18-19.8-156,17.69C805.59,128.71,738.93,143.56,681.78,141.58Z"
transform="translate(-95.23 -30.18)" fill="#26c281" opacity="0.1" />
<ellipse cx="483.49" cy="780.99" rx="303.97" ry="41.12" fill="#26c281" opacity="0.1" />
<path d="M428.24,688.75s21-3.36,33.6,11.48c0,0-9.24,7.28-29.12-2.8Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M426,688.42S412.6,705,419.17,723.27c0,0,10.92-4.37,12.11-26.63Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M414,661.31s8.4-15.4,42,6.16c0,0-4.48,10.36-19.32,9.52S417.87,669.43,414,661.31Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M411.79,660.2s-17.43-2-19.12,37.9c0,0,11.05,2.3,18.9-10.33S416.17,668.08,411.79,660.2Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M401.63,628.38s9.8-27.17,45.37-7.85c0,0-8.12,24.93-41.73,17.09Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M390.71,587.77s18.48-27.44,51.25-2c0,0-11.48,25.76-48.45,11.76Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M386.79,549.13s21.56-25.2,54,0c0,0-20.45,22.12-54,6.44Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M383.43,511.61s21.84-26.33,52.93-1.4c0,0-24.65,23.24-52.93,7.56Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M385.39,478.28s23-33.88,52.09-10.92c0,0-24.65,29.13-52.09,17.36Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M390.71,439.36s24.36-33.6,52.65-7.84c0,0-28.85,29.12-52.65,14Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M398.84,404.57s28.83-31.57,54-19c0,0-30.06,33.53-55.26,27.37Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M408.91,371.6s33.33-38.65,52.65-25.77c0,0-24.52,30-55,33.05Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M423.46,333.34s29.14-31.58,50.42-23.74c0,0-24.92,32.77-54.33,33.61Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M436.64,297.56s32.2-30.24,46.2-24.92c0,0-23.24,33.6-47.6,31.64Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M449.52,264.52s27.72-36.12,42.84-33.32c0,0-16.8,32.2-42.84,37Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M463.49,220s24.51-27.7,37.74-27.63c0,0-19.34,37-38.74,36.66Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M471.78,190.31l23.66-57.68s1.19,52.14-26.68,68.38Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M481.38,126.7s3.92-48.16,1.4-52.08c0,0,16.93,40-1.56,73.36Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M400.72,627.73s-24.55-15.21-40.43,22c0,0,21.84,14.5,43.31-12.51Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M389.93,586.22s-30.1-13.73-44.71,25.12c0,0,23.26,16,47.45-15.3Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M385.39,551.44s-21.56-25.2-54,0c0,0,20.44,22.12,54,6.44Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M382.7,511.61s-21.85-26.33-52.93-1.4c0,0,24.64,23.24,52.93,7.56Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M385.39,479.24s-15.32-37.95-48.62-21.63c0,0,18,33.66,47.27,27.93Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M392.64,439.17s-15.22-38.61-49-20.71c0,0,20.68,35.39,47.5,26.68Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path d="M402.08,404.77s-6-42.34-33.95-46.13c0,0,5.93,44.64,30.22,53.75Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M409.63,371.67s-2.35-51-25.5-52.77c0,0,.78,38.7,22.89,60Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M425.87,331.88s-6.91-42.4-29-47.59c0,0,2.74,41.07,26.81,58Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M439.26,297.87s-.24-44.18-13.74-50.67c0,0-8.37,40,9.83,56.31Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M450.55,264s-1.9-45.5-15.87-51.91c0,0-4.79,36,13.77,54.88Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M465.45,223.6s-.09-37-10.07-45.68c0,0-9.92,40.54,4.86,53.12Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M470.6,188.49l-9.7-61.59s-13.2,50.47,10.16,72.7Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M472.5,127.28s-24.93-41.39-24.41-46c0,0,2.64,43.4,34,65Z" transform="translate(-95.23 -30.18)"
fill="#26c281" />
<path d="M475.42,115.06S451.9,56.25,441.26,51.49c0,0,33.6,17.08,36.12,61.89Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path
d="M462.36,229.35l-1.61-.49c19.85-64.73,24.81-106,13.95-116.34l1.16-1.22C487.36,122.21,482.7,163,462.36,229.35Z"
transform="translate(-95.23 -30.18)" fill="#444053" />
<path
d="M407.7,380.87l-2.37-.84c2.1-5.93,4.37-11.95,6.75-17.89,20.72-51.64,38.36-99.67,49.67-136.55l2.07-1c-11.33,36.95-28.65,86.83-49.4,138.53C412.05,369,409.79,375,407.7,380.87Z"
transform="translate(-95.23 -30.18)" fill="#444053" />
<path
d="M457.79,737.2c-.32-.36-32.5-36.58-54.92-98.44A364.43,364.43,0,0,1,381.17,526c-1.54-48.13,8.56-101.87,25.86-150.68l1.88,2.2c-38.83,109.56-23.4,203.45-2.94,260,22.2,61.29,54,97.13,54.32,97.48Z"
transform="translate(-95.23 -30.18)" fill="#444053" />
<rect x="642.8" y="289.82" width="8.86" height="73.02" rx="2.29" ry="2.29" fill="#3a3768" />
<rect x="348.37" y="232.61" width="4.97" height="24.04" rx="2.29" ry="2.29" fill="#3a3768" />
<rect x="348.19" y="276.63" width="5.6" height="41.84" rx="2.29" ry="2.29" fill="#3a3768" />
<rect x="348.28" y="333.11" width="5.33" height="42.2" rx="2.29" ry="2.29" fill="#3a3768" />
<rect x="351.18" y="153.17" width="296.4" height="602.39" rx="38.99" ry="38.99" fill="#3a3768" />
<path
d="M701,199H667v4.09a19.38,19.38,0,0,1-19.39,19.38H539.48a19.38,19.38,0,0,1-19.39-19.38V199H488.26a23.54,23.54,0,0,0-23.54,23.54V746.51a23.54,23.54,0,0,0,23.54,23.54H701a23.54,23.54,0,0,0,23.54-23.54V222.58A23.54,23.54,0,0,0,701,199Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<rect x="470.79" y="171.16" width="41.39" height="8.4" rx="3.87" ry="3.87" fill="#e6e8ec" />
<circle cx="523.21" cy="175.36" r="4.77" fill="#e6e8ec" />
<path
d="M845.43,156.93s-84.2-5.08-74.28,53.92c0,0-2,10.43,7.48,15.16,0,0,.15-4.37,8.64-2.88a39.5,39.5,0,0,0,9.15.44A19.06,19.06,0,0,0,807.6,219h0s23.67-9.78,32.87-48.46c0,0,6.81-8.44,6.54-10.61L832.8,166s4.86,10.25,1,18.77c0,0-.46-18.4-3.19-18-.55.08-7.38,3.55-7.38,3.55s8.35,17.85,2.05,30.83c0,0,2.39-22-4.66-29.54l-10,5.84s9.76,18.44,3.14,33.49c0,0,1.7-23.08-5.25-32.07l-9.06,7.07s9.17,18.17,3.58,30.65c0,0-.73-26.86-5.54-28.89,0,0-7.93,7-9.14,9.86,0,0,6.28,13.2,2.38,20.16,0,0-2.39-17.9-4.35-18,0,0-7.9,11.86-8.72,20,0,0,.34-12.09,6.81-21.12,0,0-7.64,1.31-12.1,6.26,0,0,1.23-8.38,14.05-9.12,0,0,6.53-9,8.27-9.54,0,0-12.74-1.07-20.47,2.36,0,0,6.8-7.91,22.81-4.31l8.95-7.31s-16.78-2.29-23.9.24c0,0,8.19-7,26.31-1.9l9.74-5.82s-14.31-3.08-22.83-2c0,0,9-4.85,25.69.41l7-3.13s-10.48-2.06-13.55-2.39-3.23-1.17-3.23-1.17a36.35,36.35,0,0,1,19.69,2.19S845.68,157.86,845.43,156.93Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<path
d="M759.06,130.69s-38-2.29-33.56,24.37c0,0-.89,4.71,3.38,6.85,0,0,.07-2,3.91-1.31a17.51,17.51,0,0,0,4.13.2,8.56,8.56,0,0,0,5.05-2.08h0s10.7-4.42,14.86-21.9c0,0,3.07-3.81,2.95-4.79l-6.42,2.74s2.19,4.63.47,8.48c0,0-.21-8.31-1.44-8.12-.25,0-3.34,1.61-3.34,1.61s3.78,8.07.93,13.93c0,0,1.08-9.94-2.11-13.35L743.35,140s4.41,8.33,1.42,15.13c0,0,.77-10.43-2.37-14.49l-4.09,3.2s4.14,8.21,1.62,13.85c0,0-.34-12.14-2.51-13.06,0,0-3.58,3.16-4.13,4.46,0,0,2.84,6,1.08,9.11,0,0-1.08-8.09-2-8.13,0,0-3.57,5.36-3.94,9a19.52,19.52,0,0,1,3.08-9.54,10.76,10.76,0,0,0-5.47,2.83s.56-3.79,6.35-4.12c0,0,3-4.07,3.74-4.32,0,0-5.76-.48-9.25,1.07,0,0,3.07-3.57,10.3-1.95l4-3.3s-7.59-1-10.8.11c0,0,3.7-3.16,11.89-.86l4.4-2.63s-6.47-1.39-10.32-.89c0,0,4.07-2.19,11.61.18l3.15-1.41s-4.74-.93-6.13-1.08-1.46-.53-1.46-.53a16.39,16.39,0,0,1,8.9,1S759.18,131.11,759.06,130.69Z"
transform="translate(-95.23 -30.18)" fill="#26c281" />
<rect x="395.91" y="226.18" width="206.95" height="439.24" opacity="0.1" />
<path
d="M691.75,818.22s-4.88-11.36-7.06-16.6c-1.23-3-3.31-3.5-4.9-3.43l.09-1,.39-4.73.08-1c3.77-.79,7-1.41,7-1.41L685,668.73s-1-1.28-3.42-9c-1.2-3.85-7-8.58-12.42-12.35-.85-.59-1.68-1.15-2.5-1.69a62.39,62.39,0,0,1,6.21-4.58c3.08-1.79,4.1-12,4.1-12l-.51,1c.51-1,0-27.07,0-27.07l-1.8-27.06s-1.28-32.17-11.28-40.6S640.75,524,640.75,524l-7-1.8h0l-12.9-3.31c-.36-.59-.71-1.21-1-1.86-.13-.25-.25-.51-.37-.77a30.2,30.2,0,0,0,12.75-24.65,29.73,29.73,0,0,0-.39-4.84c0-.3-.11-.61-.17-.91a25.2,25.2,0,0,0,3-2.41,13.63,13.63,0,0,0,3.66-4.49h0a7.57,7.57,0,0,0,.34-1.05c0-.1,0-.2.06-.31s.09-.53.12-.8c0-.1,0-.2,0-.3,0-.29,0-.59,0-.88,0-.07,0-.14,0-.22,0-.33-.05-.66-.1-1a.13.13,0,0,0,0-.06h0a17.21,17.21,0,0,0-.9-3.4c-1-2.58-2.3-5-2.77-7.75-.58-3.25.09-6.8-1.46-9.72a8.67,8.67,0,0,0-6.09-4.19,14.35,14.35,0,0,0-7.52.86,10.7,10.7,0,0,1-3.71,1,7.75,7.75,0,0,1-2.71-.66,40.19,40.19,0,0,1-8.4-4.51,40.22,40.22,0,0,0-6-3.92,8.12,8.12,0,0,0-6.92-.28c-3.7,1.88-4.4,7.12-7.84,9.43-2.37,1.6-5.46,1.44-8.32,1.54s-6.1.81-7.51,3.29c-1,1.72-.76,3.77-.57,5.78l.06.68c0,.24,0,.49.06.73a18.37,18.37,0,0,1-1.13,7.56c-1.38,3.66-4,7.27-3.91,11h0a7.66,7.66,0,0,0,.23,1.76,8.45,8.45,0,0,0,.28.85h0a37.24,37.24,0,0,0,1.85,3.61l.09.16c.07.14.14.28.2.42s.18.38.25.57.08.19.11.28.13.37.18.56a5.36,5.36,0,0,1,.21,1.74,16.2,16.2,0,0,0-.19,2.29,1.68,1.68,0,0,0,1.34,1.63,2.23,2.23,0,0,0,1.16-.36,18.57,18.57,0,0,0,2.55-1.75c0,.32,0,.64.06,1a30.26,30.26,0,0,0,9.09,18.83c0,.31,0,.63-.07,1s-.05.72-.07,1.09h0l-11.2,3.52s.06.2.18.54l-1.18.47h0c-5.81,2.35-12.28,5.27-15.9,7.92-1.6,1.16-3.06,2.11-4.37,2.9a25,25,0,0,0-10.36,12.55l-.15.38c-1,2.29-5.9,17.87-5.9,17.87s-3.59,8.68-4.11,14.3c0,0-5.9,18.63-4.36,30.89,0,0-4.62,17.62-2.82,20.42,0,0-1.84,7.58,6.24,15.21-.59.36-1.23.75-1.9,1.18-6.26,3.94-15.29,10.33-16.83,15.26-2.39,7.67-3.42,9-3.42,9L501.88,789s3.23.62,7,1.4l.08,1,.39,4.72.09,1c-1.59-.07-3.67.48-4.9,3.44-2.19,5.23-7,16.58-7,16.58s-10.77,10-4.24,19.28a6.68,6.68,0,0,0,1,1.16c4.69,4.26,14.69,1.53,21.8-1.25a21.26,21.26,0,0,0,9-7.26,3.42,3.42,0,0,1,2.4-1.33,9.8,9.8,0,0,0,4.47-1.95,6,6,0,0,0,2.46-5,.76.76,0,0,1,0-.15l-.63-14.23s-.77-9.94-3.22-9.3l-.63.15-.17-1h0l-.33-1.93-.17-1,1.36,0s.34-11.24,4.45-20.08S541.9,693,541.9,693s50.87.83,52.57-3.94v0c1,0,2.09,0,3.13-.07,1.71,4.77,49.72,5,49.72,5s2.73,71.49,6.83,80.34a40.82,40.82,0,0,1,2.15,5.86h0a65.41,65.41,0,0,1,2.31,14.21l1.36,0-.18,1-.33,1.92-.17,1-.65-.15c-2.43-.63-3.2,9.31-3.2,9.31l-.65,14.32a5.81,5.81,0,0,0,2.38,5,10,10,0,0,0,4.55,2,3.34,3.34,0,0,1,2.4,1.32,21.32,21.32,0,0,0,9,7.26c7.68,3,18.72,5.93,22.82.1C702.52,828.18,691.75,818.22,691.75,818.22ZM562.45,639.88v0l.12,0ZM642.8,599s1.29,4.85,3.59,7.4,1.16,18.39,1.16,18.39a14.2,14.2,0,0,0-2.68.43C643.1,614.69,641.47,603,642.8,599Z"
transform="translate(-95.23 -30.18)" fill="url(#f9d7795c-47ab-4264-adf8-fc9a284cd87a)" />
<polygon
points="436.96 768.43 416.85 770.43 416.29 763.7 415.9 759.07 415.35 752.3 434.35 753.3 435.86 761.99 436.18 763.88 436.19 763.88 436.96 768.43"
fill="#8e6f7f" />