-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
2076 lines (1784 loc) · 145 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Opencode'23</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;800;900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Heebo:400,500,700|Fira+Sans:600" rel="stylesheet">
<link rel="stylesheet" href="dist/css/style.css">
<link rel="stylesheet" href="dist/css/svg.css">
<script src="https://unpkg.com/[email protected]/anime.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
<link rel="shortcut icon" href="./src/images/oc.ico" type="image/x-icon">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
</head>
<body class="has-animations">
<div class="body-wrap boxed-container container-fluid">
<main>
<section class="hero" style="padding: 0px; margin: 0; padding-bottom: 10%;">
<div class="hero-out" style="padding: 0 auto; margin:0px; width: 100%;">
<header class="site-header" style="width: 100%; padding: 0;">
<div class="container head">
<div class="site-header-inner">
<div class="brand header-brand">
<h1 class="m-0">
<span class="brand footer-brand">
<img src="src\images\logo.png" style="margin-top: 20%; " height="80px"
alt="">
<div style=" padding-top: 25px;">
<h1 class="oshanki"
style="margin-bottom: 0; margin-left: 10px; padding: 0; ">
<img src="src/images/opencode.png" height="50px" alt="">
</h1>
</div>
</span>
</h1>
</div>
</div>
</div>
</header>
<div class="hero-inner">
<div class="hero-copy" style="margin-bottom: 0;">
<h1 class="hero-title mt-0">Your journey into <br />open source starts here</h1>
<p class="hero-paragraph">A month-long program starting in December for students to <br>
start
their journey in the world of open source. <br> The Only requirement being an
enthusiastic heart to learn.
</div>
<div class="shadow"></div>
<div class="img" style="margin-left: 0; margin: 0; padding: 0;">
<svg class="svg" width="486" height="358" viewBox="0 0 486 408" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_588)">
<path
d="M330.88 65.3289V63.9604L338.452 59.6869V61.7852L333.394 64.6552L338.452 67.5252V69.6234L330.88 65.3289Z"
fill="#8BDADA" />
<path
d="M478.428 178.909V176.811L483.488 173.943L478.428 171.073V168.975L486.002 173.251V174.619L478.428 178.909Z"
fill="#8BDADA" />
<path d="M371.376 63.0325H341.261V66.2592H371.376V63.0325Z" fill="#8BDADA" />
<path d="M360.992 75.5056H330.878V78.7323H360.992V75.5056Z" fill="#8BDADA" />
<path d="M367.409 84.1949H337.294V87.4216H367.409V84.1949Z" fill="#8BDADA" />
<path d="M367.409 108.108H337.294V111.335H367.409V108.108Z" fill="#8BDADA" />
<path d="M367.409 115.506H337.294V118.733H367.409V115.506Z" fill="#8BDADA" />
<path d="M438.463 92.4691H347.642V95.6958H438.463V92.4691Z" fill="#8BDADA" />
<path d="M468.971 123.365H347.642V126.592H468.971V123.365Z" fill="#8BDADA" />
<path d="M468.971 148.111H347.642V151.338H468.971V148.111Z" fill="#8BDADA" />
<path d="M475.293 172.337H359.053V175.564H475.293V172.337Z" fill="#8BDADA" />
<path d="M373.628 156.52H347.642V159.747H373.628V156.52Z" fill="#8BDADA" />
<path d="M373.628 164.517H347.642V167.744H373.628V164.517Z" fill="#8BDADA" />
<path d="M468.971 131.266H347.642V134.493H468.971V131.266Z" fill="#8BDADA" />
<path d="M413.285 139.165H347.642V142.392H413.285V139.165Z" fill="#8BDADA" />
<path d="M375.49 99.9087H347.642V103.135H375.49V99.9087Z" fill="#8BDADA" />
<path
d="M51.162 398.984C51.162 398.984 -88.182 34.3699 167.527 59.0504C277.05 69.6211 256.603 133.752 304.97 193.756C336.324 232.651 396.627 200.832 419.223 234.819C441.82 268.807 415.265 365.717 405.951 398.984H51.162Z"
fill="#E5F0F8" />
<path
d="M62.0948 399.861C62.0948 399.861 54.407 367.876 35.2455 357.996C16.0841 348.115 -4.37133 361.64 0.829127 375.852C5.29879 388.108 23.7227 373.038 38.0503 378.964C52.3778 384.891 54.6372 399.861 54.6372 399.861H62.0948Z"
fill="#40A87B" />
<path
d="M4.5233 367.328C4.5233 367.328 25.0838 355.102 40.3521 366.396C55.6205 377.689 60.441 399.849 60.441 399.849"
stroke="#6ADB6A" stroke-width="3.86" stroke-miterlimit="10" />
<path d="M7.84203 361.612L12.6268 363.787" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M14.7521 356.946L24.2837 361.612" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M29.0729 356.946L34.0298 363.057" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M38.4704 361.043L40.7008 366.671" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M10.2333 375.115L17.5792 362.437" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M23.211 373.299L29.949 362.01" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M34.6555 371.569L44.786 370.257" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M46.4488 377.971L52.2549 379.96" stroke="#6ADB6A" stroke-width="3.86"
stroke-miterlimit="10" />
<path
d="M70.6922 398.854C70.6922 398.854 76.1161 291.608 27.0191 305.436C-22.0779 319.264 65.3174 377.05 65.2348 398.854H70.6922Z"
fill="#6ADB6A" />
<path d="M68.7077 398.854C68.7077 398.854 66.9936 342.827 31.9961 315.123"
stroke="#40A87B" stroke-width="3.86" stroke-miterlimit="10" />
<path d="M47.3449 331.368L46.4711 312.05" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M19.8855 323.364L43.5412 326.58" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M29.0863 339.852L54.0986 342.893" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M41.5925 356.193L60.9103 359.04" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M62.763 340.925L58.3358 352.148" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M55.4864 322.709L51.7118 338.512" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M66.8975 359.66L63.3687 366.995" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M51.7118 371.341L65.5566 375.894" stroke="#40A87B" stroke-width="3.86"
stroke-miterlimit="10" />
<path d="M261.194 310.751H205.962V388.64H261.194V310.751Z" fill="#586773" />
<path
d="M404.898 142.788V312.05C404.899 320.462 401.698 328.529 395.998 334.479C390.299 340.429 382.567 343.774 374.504 343.778H92.6673C88.6739 343.778 84.7197 342.957 81.0305 341.362C77.3413 339.767 73.9893 337.43 71.166 334.484C68.3426 331.537 66.1032 328.04 64.5755 324.191C63.0478 320.341 62.2618 316.216 62.2624 312.05V142.788C62.2624 138.624 63.0489 134.499 64.5771 130.652C66.1052 126.804 68.345 123.308 71.1685 120.364C73.992 117.419 77.3439 115.084 81.0327 113.491C84.7215 111.898 88.675 111.079 92.6673 111.081H374.493C378.485 111.079 382.439 111.898 386.128 113.491C389.816 115.084 393.168 117.419 395.992 120.364C398.815 123.308 401.055 126.804 402.583 130.652C404.111 134.499 404.898 138.624 404.898 142.788Z"
fill="#586773" />
<path
d="M288.273 381.953H178.885C177.812 381.953 176.943 382.86 176.943 383.979V395.207C176.943 396.326 177.812 397.233 178.885 397.233H288.273C289.346 397.233 290.215 396.326 290.215 395.207V383.979C290.215 382.86 289.346 381.953 288.273 381.953Z"
fill="#586773" />
<path d="M268.6 310.751H213.368V388.64H268.6V310.751Z" fill="#93ACBF" />
<path
d="M381.895 111.069H100.078C83.2809 111.069 69.6642 125.275 69.6642 142.798V312.043C69.6642 329.566 83.2809 343.771 100.078 343.771H381.895C398.692 343.771 412.309 329.566 412.309 312.043V142.798C412.309 125.275 398.692 111.069 381.895 111.069Z"
fill="#93ACBF" />
<path
d="M400.902 312.045V142.786C400.902 131.835 392.392 122.957 381.895 122.957L100.074 122.957C89.5762 122.957 81.0663 131.835 81.0663 142.786V312.045C81.0663 322.997 89.5762 331.874 100.074 331.874H381.895C392.392 331.874 400.902 322.997 400.902 312.045Z"
fill="#E5F0F8" />
<path
d="M389.502 142.788V153.72H92.4572V142.788C92.4632 140.686 93.2671 138.671 94.6933 137.186C96.1194 135.7 98.0515 134.865 100.067 134.861H381.879C383.897 134.861 385.832 135.695 387.261 137.181C388.69 138.667 389.496 140.683 389.502 142.788Z"
fill="#8BDADA" />
<path
d="M389.502 154.17V312.488C389.503 314.003 389.088 315.485 388.306 316.761C387.524 318.037 386.408 319.053 385.091 319.688C384.092 320.179 383.001 320.433 381.897 320.432H100.085C98.0686 320.425 96.137 319.586 94.7128 318.097C93.2887 316.609 92.4881 314.592 92.4863 312.488V154.17H389.502Z"
fill="white" />
<path
d="M108.691 147.927C110.302 147.927 111.608 146.565 111.608 144.884C111.608 143.204 110.302 141.842 108.691 141.842C107.08 141.842 105.775 143.204 105.775 144.884C105.775 146.565 107.08 147.927 108.691 147.927Z"
fill="#40A87B" />
<path
d="M116.902 147.927C118.513 147.927 119.818 146.565 119.818 144.884C119.818 143.204 118.513 141.842 116.902 141.842C115.291 141.842 113.985 143.204 113.985 144.884C113.985 146.565 115.291 147.927 116.902 147.927Z"
fill="white" />
<path
d="M125.113 147.927C126.723 147.927 128.029 146.565 128.029 144.884C128.029 143.204 126.723 141.842 125.113 141.842C123.502 141.842 122.196 143.204 122.196 144.884C122.196 146.565 123.502 147.927 125.113 147.927Z"
fill="#F74242" />
<path
d="M295.679 381.953H186.291C185.219 381.953 184.349 382.86 184.349 383.979V395.207C184.349 396.326 185.219 397.233 186.291 397.233H295.679C296.752 397.233 297.622 396.326 297.622 395.207V383.979C297.622 382.86 296.752 381.953 295.679 381.953Z"
fill="#93ACBF" />
<path d="M389.502 153.72H92.4662V178.909H389.502V153.72Z" fill="#E5F0F8" />
<path d="M383.75 158.563H347.626V173.559H383.75V158.563Z" fill="white" />
<path d="M340.504 158.563H304.38V173.559H340.504V158.563Z" fill="white" />
<path d="M213.368 343.792H268.602L213.368 358.336V343.792Z" fill="#586773" />
<path d="M284.009 158.588H142.249V173.533H284.009V158.588Z" fill="white" />
<path d="M284.009 158.588H255.446V173.533H284.009V158.588Z" fill="#8BDADA" />
<path
d="M275.168 168.576L271.546 166.462C271.959 165.291 271.934 164 271.477 162.847C271.019 161.694 270.162 160.763 269.076 160.24C267.99 159.717 266.755 159.639 265.617 160.023C264.479 160.407 263.521 161.224 262.934 162.312C262.348 163.4 262.175 164.678 262.451 165.892C262.727 167.106 263.432 168.167 264.424 168.864C265.417 169.561 266.624 169.842 267.806 169.652C268.989 169.461 270.059 168.814 270.804 167.837L275.168 170.385L278.433 172.29L279.175 170.912L275.168 168.576ZM270.341 166.657C269.984 167.324 269.445 167.866 268.792 168.213C268.14 168.561 267.404 168.698 266.676 168.609C265.949 168.52 265.263 168.208 264.706 167.712C264.149 167.216 263.745 166.559 263.545 165.824C263.346 165.089 263.36 164.309 263.586 163.582C263.812 162.855 264.239 162.214 264.814 161.741C265.388 161.267 266.085 160.982 266.815 160.921C267.545 160.861 268.276 161.027 268.915 161.4C269.773 161.9 270.405 162.734 270.674 163.719C270.943 164.705 270.827 165.762 270.35 166.657H270.341Z"
fill="white" />
<path d="M116.902 158.588H96.4866V161.309H116.902V158.588Z" fill="white" />
<path d="M116.902 164.701H96.4866V167.422H116.902V164.701Z" fill="white" />
<path d="M116.902 170.814H96.4866V173.535H116.902V170.814Z" fill="white" />
<path
d="M98.7684 188.095V187.377L102.744 185.132V186.23L100.089 187.736L102.737 189.242V190.338L98.7684 188.095Z"
fill="#569A88" />
<path
d="M176.223 315.923V314.824L178.88 313.318L176.223 311.812V310.714L180.199 312.959V313.677L176.223 315.923Z"
fill="#569A88" />
<path d="M120.026 186.887H104.217V188.582H120.026V186.887Z" fill="#569A88" />
<path d="M114.578 193.436H98.7684V195.131H114.578V193.436Z" fill="#569A88" />
<path d="M117.945 197.997H102.136V199.692H117.945V197.997Z" fill="#569A88" />
<path d="M117.945 210.551H102.136V212.246H117.945V210.551Z" fill="#569A88" />
<path d="M117.945 214.435H102.136V216.13H117.945V214.435Z" fill="#569A88" />
<path d="M155.243 202.342H107.567V204.037H155.243V202.342Z" fill="#569A88" />
<path d="M171.257 218.56H107.567V220.255H171.257V218.56Z" fill="#569A88" />
<path d="M171.257 231.55H107.567V233.245H171.257V231.55Z" fill="#569A88" />
<path d="M174.578 244.266H113.559V245.961H174.578V244.266Z" fill="#569A88" />
<path d="M121.208 235.964H107.567V237.659H121.208V235.964Z" fill="#569A88" />
<path d="M121.208 240.163H107.567V241.858H121.208V240.163Z" fill="#569A88" />
<path d="M171.257 222.707H107.567V224.402H171.257V222.707Z" fill="#569A88" />
<path d="M142.026 226.853H107.567V228.548H142.026V226.853Z" fill="#569A88" />
<path d="M116.377 249.118H102.136V250.813H116.377V249.118Z" fill="#569A88" />
<path d="M116.377 253H102.136V254.695H116.377V253Z" fill="#569A88" />
<path d="M164.396 257.126H107.028V258.821H164.396V257.126Z" fill="#569A88" />
<path d="M164.396 270.117H107.028V271.812H164.396V270.117Z" fill="#569A88" />
<path d="M167.384 282.833H112.423V284.528H167.384V282.833Z" fill="#569A88" />
<path d="M119.315 274.53H107.028V276.225H119.315V274.53Z" fill="#569A88" />
<path d="M119.315 278.729H107.028V280.424H119.315V278.729Z" fill="#569A88" />
<path d="M164.396 261.274H107.028V262.969H164.396V261.274Z" fill="#569A88" />
<path d="M138.068 265.419H107.028V267.114H138.068V265.419Z" fill="#569A88" />
<path d="M126.697 287.057H112.457V288.752H126.697V287.057Z" fill="#569A88" />
<path d="M126.697 290.941H112.457V292.636H126.697V290.941Z" fill="#569A88" />
<path d="M174.719 295.068H117.351V296.763H174.719V295.068Z" fill="#569A88" />
<path d="M163.004 308.059H117.351V309.754H163.004V308.059Z" fill="#569A88" />
<path d="M174.518 312.472H117.351V314.167H174.518V312.472Z" fill="#569A88" />
<path d="M174.719 299.213H117.351V300.908H174.719V299.213Z" fill="#569A88" />
<path d="M148.391 303.361H117.351V305.056H148.391V303.361Z" fill="#569A88" />
<path d="M122.185 206.245H107.567V207.94H122.185V206.245Z" fill="#569A88" />
<path
d="M224.259 185.034V184.285L229.399 181.954V183.094L225.964 184.658L229.399 186.225V187.365L224.259 185.034Z"
fill="#8BDADA" />
<path
d="M374.368 317.904V316.762L377.803 315.198L374.368 313.631V312.491L379.508 314.822V315.568L374.368 317.904Z"
fill="#8BDADA" />
<path d="M251.754 183.78H231.307V185.54H251.754V183.78Z" fill="#8BDADA" />
<path d="M244.705 190.585H224.259V192.345H244.705V190.585Z" fill="#8BDADA" />
<path d="M249.061 195.327H228.614V197.087H249.061V195.327Z" fill="#8BDADA" />
<path d="M249.061 208.376H228.614V210.136H249.061V208.376Z" fill="#8BDADA" />
<path d="M249.061 212.412H228.614V214.172H249.061V212.412Z" fill="#8BDADA" />
<path d="M297.297 199.843H235.638V201.603H297.297V199.843Z" fill="#8BDADA" />
<path d="M365.091 216.702H235.638V218.462H365.091V216.702Z" fill="#8BDADA" />
<path d="M365.091 230.203H235.638V231.963H365.091V230.203Z" fill="#8BDADA" />
<path d="M371.834 243.422H247.814V245.182H371.834V243.422Z" fill="#8BDADA" />
<path d="M253.282 234.791H235.638V236.551H253.282V234.791Z" fill="#8BDADA" />
<path d="M253.282 239.156H235.638V240.916H253.282V239.156Z" fill="#8BDADA" />
<path d="M365.091 221.01H235.638V222.77H365.091V221.01Z" fill="#8BDADA" />
<path d="M280.205 225.321H235.638V227.081H280.205V225.321Z" fill="#8BDADA" />
<path d="M247.029 248.463H228.614V250.223H247.029V248.463Z" fill="#8BDADA" />
<path d="M247.029 252.501H228.614V254.261H247.029V252.501Z" fill="#8BDADA" />
<path d="M309.135 256.788H234.941V258.548H309.135V256.788Z" fill="#8BDADA" />
<path d="M309.135 270.292H234.941V272.052H309.135V270.292Z" fill="#8BDADA" />
<path d="M357.218 283.509H245.51V285.269H357.218V283.509Z" fill="#8BDADA" />
<path d="M250.833 274.878H234.941V276.638H250.833V274.878Z" fill="#8BDADA" />
<path d="M250.833 279.242H234.941V281.002H250.833V279.242Z" fill="#8BDADA" />
<path d="M309.135 261.099H234.941V262.859H309.135V261.099Z" fill="#8BDADA" />
<path d="M275.083 265.41H234.941V267.17H275.083V265.41Z" fill="#8BDADA" />
<path d="M260.378 287.901H241.963V289.661H260.378V287.901Z" fill="#8BDADA" />
<path d="M260.378 291.937H241.963V293.697H260.378V291.937Z" fill="#8BDADA" />
<path d="M372.122 296.227H255.522V297.987H372.122V296.227Z" fill="#8BDADA" />
<path d="M307.332 309.728H248.29V311.488H307.332V309.728Z" fill="#8BDADA" />
<path d="M371.715 314.316H255.522V316.076H371.715V314.316Z" fill="#8BDADA" />
<path d="M372.122 300.537H255.522V302.298H372.122V300.537Z" fill="#8BDADA" />
<path d="M288.432 304.846H248.29V306.606H288.432V304.846Z" fill="#8BDADA" />
<path d="M254.545 203.902H235.638V205.662H254.545V203.902Z" fill="#8BDADA" />
<path d="M214.897 178.909H211.361V320.432H214.897V178.909Z" fill="#E5F0F8" />
<path
d="M71.8052 334.411L206.005 338.701C210.913 338.858 215.74 340.05 220.195 342.205C224.65 344.36 228.642 347.433 231.929 351.239L266.122 390.817C266.441 391.187 266.658 391.64 266.751 392.128C266.844 392.616 266.808 393.121 266.647 393.589C266.487 394.058 266.208 394.473 265.84 394.789C265.472 395.105 265.029 395.312 264.557 395.387L262.392 395.734C261.253 395.918 260.089 395.786 259.014 395.354C257.94 394.921 256.993 394.202 256.268 393.268L229.171 358.338C225.762 353.944 221.456 350.399 216.566 347.962C211.677 345.525 206.328 344.258 200.909 344.252L64.2537 344.096L71.8052 334.411Z"
fill="#93ACBF" />
<path
d="M254.199 334.411L120.002 338.701C115.093 338.859 110.266 340.051 105.811 342.206C101.356 344.36 97.3646 347.433 94.0775 351.239L59.8846 390.817C59.566 391.187 59.3492 391.64 59.257 392.128C59.1649 392.616 59.2009 393.12 59.3612 393.589C59.5215 394.057 59.8001 394.471 60.1676 394.788C60.5352 395.104 60.9779 395.311 61.449 395.387L63.6145 395.734C64.7531 395.918 65.9179 395.786 66.9928 395.354C68.0676 394.921 69.0149 394.202 69.7402 393.268L96.8375 358.338C100.245 353.946 104.549 350.402 109.436 347.965C114.323 345.528 119.669 344.259 125.086 344.252L261.748 344.098L254.199 334.411Z"
fill="#93ACBF" />
<path
d="M272.343 336.402C269.152 335.847 262.195 334.304 256.521 330.699C248.893 325.854 233.308 319.975 218.549 320.492C203.79 321.01 194.922 323.693 188.953 328.449C182.984 333.205 181.578 333.639 176.516 332.774C171.454 331.909 163.002 331.909 163.002 331.909C163.002 331.909 154.545 331.909 149.488 332.774C144.431 333.639 143.023 333.208 137.053 328.449C131.084 323.691 122.212 321.012 107.455 320.492C92.6986 319.972 77.1129 325.854 69.4854 330.699C63.8112 334.301 56.8541 335.847 53.6606 336.402C53.1702 336.488 52.725 336.753 52.4043 337.15C52.0835 337.547 51.9078 338.049 51.9084 338.568V342.049C51.9066 342.582 52.0919 343.098 52.4294 343.499C52.7669 343.9 53.2335 344.159 53.741 344.226C56.1166 344.529 60.1527 345.567 61.8579 349.122C64.3453 354.31 65.6705 370.916 75.62 382.333C85.5695 393.75 97.8387 400.495 118.068 395.653C138.298 390.81 145.758 372.126 148.576 363.132C151.394 354.137 151.481 348.257 151.481 348.257C151.481 348.257 148.576 345.401 150.071 342.634C151.566 339.866 163.004 339.78 163.004 339.78C163.004 339.78 174.447 339.866 175.937 342.634C177.428 345.401 174.529 348.257 174.529 348.257C174.529 348.257 174.612 354.137 177.435 363.132C180.257 372.126 187.715 390.808 207.944 395.653C228.174 400.497 240.443 393.75 250.393 382.333C260.342 370.916 261.668 354.31 264.155 349.122C265.858 345.567 269.896 344.529 272.27 344.226C272.777 344.159 273.244 343.901 273.582 343.5C273.92 343.099 274.106 342.582 274.104 342.049V338.568C274.105 338.047 273.928 337.544 273.605 337.147C273.283 336.751 272.835 336.486 272.343 336.402Z"
fill="#586773" />
<path
d="M108.892 323.166C119.946 323.215 138.738 329.165 143.382 343.916C148.026 358.667 142.276 392.123 108.892 393.755C75.5083 395.387 67.1008 357.312 71.9728 344.399C76.8447 331.485 86.7294 323.073 108.892 323.166Z"
fill="#E5F0F8" />
<mask id="mask0_1_588" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="70"
y="323" width="75" height="71">
<path
d="M108.892 323.166C119.946 323.215 138.738 329.165 143.382 343.916C148.026 358.667 142.276 392.123 108.892 393.755C75.5083 395.387 67.1008 357.312 71.9728 344.399C76.8447 331.485 86.7294 323.073 108.892 323.166Z"
fill="white" />
</mask>
<g mask="url(#mask0_1_588)">
<path
d="M99.1573 335.283L93.4897 344.124L64.2559 344.093L71.8029 334.411L99.1573 335.283Z"
fill="#93ACBF" />
<path
d="M114.66 335.782L112.034 339.883L109.301 344.145H103.864L104.776 342.725L109.33 335.611L114.66 335.782Z"
fill="#93ACBF" />
<path
d="M62.0121 393.265L65.561 395.737C64.9127 395.837 64.2538 395.837 63.6056 395.737L61.4378 395.387C60.9668 395.311 60.5244 395.103 60.1575 394.785C59.7906 394.468 59.5128 394.053 59.3536 393.584C59.1943 393.116 59.1596 392.611 59.2531 392.123C59.3466 391.636 59.5648 391.184 59.8846 390.815L74.2098 374.232L62.0121 393.265Z"
fill="#6DA8C6" />
<path
d="M112.034 339.883L109.301 344.145L105.312 350.365C102.094 352.532 99.227 355.221 96.8196 358.329L84.9974 373.562L103.855 344.145L104.767 342.722C107.083 341.502 109.52 340.55 112.034 339.883Z"
fill="#93ACBF" />
<path
d="M261.75 344.096L223.707 344.135H223.687L163.004 344.217H160.3L125.093 344.256C121.822 344.255 118.568 344.72 115.418 345.637L116.368 344.156L119.859 338.715C119.906 338.71 119.954 338.71 120.002 338.715L162.888 337.344H163.004L254.197 334.422L261.75 344.096Z"
fill="#93ACBF" />
<path
d="M126.5 308.816L109.33 335.611L99.1573 335.283L119.32 303.815L126.5 308.816Z"
fill="white" />
<path
d="M84.9862 373.602L69.1859 398.266L65.561 395.737C67.1994 395.489 68.6882 394.606 69.7312 393.265L84.9862 373.602Z"
fill="#F2FDFF" />
<path
d="M102.311 344.133C99.2421 346.063 96.464 348.456 94.0663 351.234L74.2188 374.222L93.4897 344.124L102.311 344.133Z"
fill="white" />
<path
d="M134.566 315.748L121.593 336.003L114.66 335.782L129.685 312.337L134.566 315.748Z"
fill="white" />
<path
d="M121.593 336.001L119.859 338.712L116.37 344.154L115.42 345.634C111.84 346.663 108.431 348.259 105.314 350.365L109.303 344.145L112.037 339.883L114.663 335.782L121.593 336.001Z"
fill="#8BDADA" />
<path
d="M115.418 345.634L77.2604 405.198L72.3706 401.789L105.314 350.374C108.43 348.265 111.838 346.666 115.418 345.634Z"
fill="white" />
<path
d="M109.33 335.611L104.776 342.722L103.864 344.144L85.0041 373.572L84.9862 373.602L69.7312 393.265C68.6882 394.606 67.1994 395.489 65.561 395.737L62.0121 393.265L74.2098 374.232L94.0574 351.244C96.4551 348.466 99.2332 346.073 102.302 344.142H93.4808L99.1617 335.28L109.33 335.611Z"
fill="#8BDADA" />
<path
d="M264.559 395.387L262.403 395.737C261.264 395.919 260.099 395.787 259.024 395.353C257.949 394.92 257.002 394.2 256.277 393.265L229.18 358.338C225.772 353.943 221.465 350.397 216.575 347.96C211.685 345.524 206.335 344.257 200.916 344.254L163.004 344.214H160.3L116.37 344.154L119.861 338.712L121.595 336.001L162.888 337.334H163.004L206.007 338.705C212.249 338.905 218.337 340.775 223.687 344.135H223.707C226.764 346.075 229.535 348.467 231.933 351.237L266.126 390.817C266.445 391.187 266.661 391.64 266.753 392.128C266.845 392.616 266.809 393.121 266.649 393.59C266.488 394.058 266.209 394.472 265.841 394.789C265.474 395.105 265.031 395.312 264.559 395.387Z"
fill="#93ACBF" />
</g>
<path
d="M217.112 323.166C206.058 323.215 187.266 329.165 182.624 343.916C177.982 358.667 183.73 392.123 217.112 393.755C250.493 395.387 258.903 357.312 254.033 344.399C249.164 331.485 239.286 323.073 217.112 323.166Z"
fill="#E5F0F8" />
<path
d="M58.1526 342.424C59.0067 342.424 59.6991 341.702 59.6991 340.811C59.6991 339.92 59.0067 339.197 58.1526 339.197C57.2985 339.197 56.6061 339.92 56.6061 340.811C56.6061 341.702 57.2985 342.424 58.1526 342.424Z"
fill="#93ACBF" />
<mask id="mask1_1_588" style="mask-type:luminance" maskUnits="userSpaceOnUse"
x="181" y="323" width="75" height="71">
<path
d="M217.112 323.166C206.058 323.215 187.266 329.165 182.624 343.916C177.982 358.667 183.73 392.123 217.112 393.755C250.493 395.387 258.903 357.312 254.033 344.399C249.164 331.485 239.286 323.073 217.112 323.166Z"
fill="white" />
</mask>
<g mask="url(#mask1_1_588)">
<path
d="M264.559 395.387L262.403 395.737C261.264 395.919 260.099 395.787 259.024 395.353C257.949 394.92 257.002 394.2 256.277 393.265L229.18 358.338C226.794 355.265 223.963 352.599 220.79 350.435L224.502 344.664C227.244 346.502 229.74 348.712 231.924 351.234L266.117 390.815C266.436 391.184 266.654 391.637 266.746 392.124C266.839 392.612 266.804 393.117 266.644 393.585C266.485 394.054 266.207 394.469 265.84 394.786C265.473 395.103 265.03 395.311 264.559 395.387Z"
fill="#93ACBF" />
<path
d="M208.644 335.873L206.791 338.733L203.305 344.163L163.015 344.214L102.322 344.133C107.675 340.771 113.767 338.901 120.013 338.703L163.004 337.334L208.644 335.873Z"
fill="#93ACBF" />
<path
d="M224.665 335.353L220.234 342.23L218.998 344.152L216.54 347.952C215.1 347.238 213.616 346.624 212.099 346.112L213.366 344.161L215.771 340.431L218.917 335.549L224.665 335.353Z"
fill="#93ACBF" />
<path
d="M261.75 344.093L224.846 344.135L230.637 335.162L254.194 334.411L261.75 344.093Z"
fill="#93ACBF" />
<path
d="M218.922 335.542L215.775 340.424L213.371 344.154L212.103 346.105C209.215 345.122 206.219 344.527 203.186 344.333L203.294 344.163L206.791 338.733L208.644 335.873L218.922 335.542Z"
fill="#8BDADA" />
<path
d="M203.186 344.329C206.219 344.522 209.215 345.118 212.103 346.101L182.123 392.589L175.195 387.728L203.186 344.329Z"
fill="white" />
<path
d="M231.424 316.158L218.92 335.542L208.642 335.873L224.491 311.297L231.424 316.158Z"
fill="white" />
<path
d="M224.846 344.133H223.687C223.955 344.315 224.232 344.485 224.502 344.664L220.79 350.435C219.43 349.506 218.012 348.674 216.544 347.945L219.002 344.145L220.238 342.223L224.67 335.353L230.641 335.162L224.846 344.133Z"
fill="#8BDADA" />
<path
d="M216.544 347.945C218.012 348.674 219.43 349.506 220.79 350.435L191.514 395.816L187.491 392.995L216.544 347.945Z"
fill="white" />
<path
d="M223.687 344.133H224.846L224.511 344.664C224.232 344.485 223.955 344.315 223.687 344.133Z"
fill="#DEECFF" />
<path
d="M240.81 319.387L230.637 335.161L224.663 335.353L236.783 316.557L240.81 319.387Z"
fill="white" />
</g>
<path
d="M65.8002 342.424C66.6543 342.424 67.3467 341.702 67.3467 340.811C67.3467 339.92 66.6543 339.197 65.8002 339.197C64.9461 339.197 64.2537 339.92 64.2537 340.811C64.2537 341.702 64.9461 342.424 65.8002 342.424Z"
fill="#93ACBF" />
<path
d="M267.851 342.424C268.705 342.424 269.398 341.702 269.398 340.811C269.398 339.92 268.705 339.197 267.851 339.197C266.997 339.197 266.305 339.92 266.305 340.811C266.305 341.702 266.997 342.424 267.851 342.424Z"
fill="#93ACBF" />
<path
d="M258.657 340.811C258.657 341.13 258.747 341.443 258.917 341.709C259.087 341.975 259.329 342.183 259.612 342.305C259.895 342.428 260.207 342.46 260.508 342.398C260.808 342.335 261.084 342.181 261.301 341.955C261.518 341.729 261.665 341.441 261.725 341.128C261.785 340.814 261.754 340.489 261.636 340.194C261.519 339.898 261.32 339.646 261.065 339.469C260.81 339.291 260.51 339.197 260.204 339.197C260.001 339.197 259.8 339.239 259.612 339.32C259.424 339.401 259.254 339.52 259.11 339.67C258.967 339.82 258.853 339.997 258.775 340.193C258.697 340.389 258.657 340.599 258.657 340.811Z"
fill="#93ACBF" />
<path
d="M441.737 397.25H38.4279C36.0063 397.25 34.0432 399.298 34.0432 401.824V403.426C34.0432 405.952 36.0063 408 38.4279 408H441.737C444.159 408 446.122 405.952 446.122 403.426V401.824C446.122 399.298 444.159 397.25 441.737 397.25Z"
fill="#0775EF" />
<path d="M18.2273 105.409L92.4706 196.402L64.1687 105.409H18.2273Z"
fill="#9CCCED" />
<path d="M64.1687 105.409L92.4706 196.402L166.714 105.409H64.1687Z"
fill="#8BDADA" />
<path d="M166.714 105.409L92.4706 196.402L120.77 105.409H166.714Z" fill="#E5F0F8" />
<path d="M92.4706 71.428V71.4257H42.9937L64.1687 105.409L92.4706 71.428Z"
fill="#9CCCED" />
<path d="M42.9937 71.4257L18.2273 105.409H64.1687L42.9937 71.4257Z"
fill="#7EBCE6" />
<path d="M92.4706 71.428L64.1687 105.409H120.77L92.4706 71.428Z" fill="#E5F0F8" />
<path
d="M120.77 105.409L138.325 77.2402L141.948 71.4257H92.4706V71.428L120.77 105.409L138.325 77.2402L120.77 105.409Z"
fill="#9CCCED" />
<path d="M141.948 71.4257L138.325 77.2402L141.948 71.4257Z" fill="#8BDADA" />
<path d="M166.714 105.409L141.948 71.4257L138.325 77.2402L120.77 105.409H166.714Z"
fill="#8BDADA" />
<path
d="M97.9527 203.799H33.6879C31.6834 203.799 30.0585 205.495 30.0585 207.586V251.398C30.0585 253.489 31.6834 255.184 33.6879 255.184H97.9527C99.9571 255.184 101.582 253.489 101.582 251.398V207.586C101.582 205.495 99.9571 203.799 97.9527 203.799Z"
fill="#43796B" />
<path
d="M101.776 203.799H37.5117C35.5072 203.799 33.8823 205.495 33.8823 207.586V251.398C33.8823 253.489 35.5072 255.184 37.5117 255.184H101.776C103.781 255.184 105.406 253.489 105.406 251.398V207.586C105.406 205.495 103.781 203.799 101.776 203.799Z"
fill="#1F3831" />
<path
d="M37.7039 234.066V230.336L58.4096 218.646V224.36L44.5827 232.187L58.414 240.032V245.749L37.7039 234.066Z"
fill="white" />
<path
d="M64.714 250.43L61.3171 248.873L74.0847 208.553L77.4794 210.218L64.714 250.43Z"
fill="white" />
<path
d="M101.58 230.322V234.052L80.8763 245.742V240.025L94.7055 232.187L80.8763 224.342V218.627L101.58 230.322Z"
fill="white" />
<path
d="M388.847 116.7H337.379C335.575 116.7 334.112 118.226 334.112 120.108V164.676C334.112 166.558 335.575 168.084 337.379 168.084H388.847C390.652 168.084 392.115 166.558 392.115 164.676V120.108C392.115 118.226 390.652 116.7 388.847 116.7Z"
fill="#43796B" />
<path
d="M391.949 116.7H340.481C338.677 116.7 337.214 118.226 337.214 120.108V164.676C337.214 166.558 338.677 168.084 340.481 168.084H391.949C393.754 168.084 395.217 166.558 395.217 164.676V120.108C395.217 118.226 393.754 116.7 391.949 116.7Z"
fill="#1F3831" />
<path
d="M359.388 125.781H357.461C357.086 125.764 356.716 125.881 356.413 126.114C356.127 126.354 355.898 126.66 355.743 127.007C355.565 127.404 355.443 127.826 355.381 128.259C355.309 128.721 355.274 129.189 355.274 129.658V136.4C355.323 137.295 355.199 138.191 354.909 139.035C354.674 139.686 354.334 140.291 353.904 140.823C353.559 141.25 353.146 141.612 352.683 141.893C352.369 142.089 352.031 142.24 351.678 142.341V142.474C352.029 142.536 352.368 142.656 352.683 142.83C353.145 143.077 353.558 143.411 353.904 143.814C354.349 144.343 354.691 144.957 354.909 145.623C355.202 146.538 355.326 147.503 355.274 148.465V155.164C355.274 155.62 355.31 156.075 355.381 156.525C355.443 156.958 355.565 157.379 355.743 157.775C355.897 158.123 356.127 158.43 356.413 158.67C356.716 158.903 357.086 159.02 357.461 159.003H359.388V162.218H356.167C355.61 162.215 355.061 162.078 354.563 161.817C354.004 161.523 353.514 161.104 353.128 160.589C352.657 159.954 352.302 159.235 352.08 158.467C351.791 157.469 351.653 156.43 351.673 155.387V149.403C351.615 147.766 351.243 146.486 350.556 145.563C349.869 144.64 349.041 144.178 348.073 144.178V140.695C349.043 140.695 349.87 140.233 350.556 139.31C351.241 138.387 351.614 137.107 351.673 135.47V128.415C351.658 127.555 351.796 126.7 352.08 125.893C352.317 125.219 352.673 124.598 353.128 124.06C353.529 123.591 354.017 123.211 354.563 122.943C355.065 122.697 355.613 122.569 356.167 122.566H359.379L359.388 125.781Z"
fill="white" />
<path
d="M373.769 159.003H375.695C376.072 159.02 376.442 158.902 376.746 158.67C377.032 158.429 377.262 158.123 377.416 157.775C377.595 157.379 377.718 156.958 377.78 156.525C377.852 156.063 377.888 155.595 377.888 155.126V148.374C377.837 147.48 377.961 146.585 378.252 145.742C378.487 145.09 378.827 144.486 379.258 143.954C379.602 143.527 380.015 143.165 380.478 142.884C380.792 142.688 381.13 142.537 381.484 142.436V142.303C381.132 142.241 380.792 142.12 380.478 141.944C380.016 141.699 379.603 141.366 379.258 140.963C378.812 140.434 378.47 139.82 378.252 139.154C377.959 138.241 377.835 137.279 377.888 136.319V129.62C377.887 129.164 377.851 128.709 377.78 128.259C377.718 127.825 377.595 127.404 377.416 127.007C377.261 126.66 377.032 126.354 376.746 126.114C376.442 125.882 376.072 125.764 375.695 125.781H373.769V122.566H376.98C377.538 122.569 378.087 122.706 378.585 122.967C379.144 123.261 379.634 123.68 380.02 124.195C380.489 124.831 380.844 125.549 381.068 126.317C381.357 127.315 381.494 128.354 381.475 129.397V135.381C381.475 137.018 381.831 138.298 382.545 139.221C383.259 140.145 384.101 140.606 385.07 140.606V144.089C384.099 144.089 383.257 144.551 382.545 145.474C381.833 146.397 381.476 147.677 381.475 149.314V156.369C381.49 157.229 381.352 158.084 381.068 158.892C380.829 159.564 380.473 160.185 380.02 160.724C379.618 161.193 379.13 161.573 378.585 161.841C378.083 162.086 377.535 162.215 376.98 162.218H373.769V159.003Z"
fill="white" />
<path
d="M431.242 351.666H375.369C373.787 351.666 372.504 353.004 372.504 354.655V385.856C372.504 387.507 373.787 388.845 375.369 388.845H431.242C432.825 388.845 434.107 387.507 434.107 385.856V354.655C434.107 353.004 432.825 351.666 431.242 351.666Z"
fill="#9FCBBF" />
<path
d="M434.427 351.666H378.554C376.971 351.666 375.689 353.004 375.689 354.655V385.856C375.689 387.507 376.971 388.845 378.554 388.845H434.427C436.009 388.845 437.292 387.507 437.292 385.856V354.655C437.292 353.004 436.009 351.666 434.427 351.666Z"
fill="#43796B" />
<path
d="M395.277 364.71C394.748 363.993 394.057 363.425 393.266 363.055C392.478 362.675 391.621 362.478 390.754 362.477C389.766 362.46 388.787 362.672 387.886 363.097C387.049 363.495 386.301 364.074 385.692 364.794C385.069 365.533 384.588 366.39 384.275 367.319C383.936 368.315 383.767 369.365 383.774 370.422C383.769 371.418 383.93 372.407 384.248 373.346C384.552 374.24 385.019 375.064 385.625 375.773C386.235 376.481 386.983 377.046 387.819 377.428C388.745 377.847 389.745 378.054 390.754 378.036C391.739 378.056 392.713 377.816 393.585 377.337C394.406 376.867 395.111 376.206 395.646 375.404L397.789 377.088C397.56 377.394 397.312 377.685 397.047 377.957C396.625 378.392 396.155 378.771 395.646 379.088C394.984 379.504 394.279 379.837 393.543 380.081C392.623 380.381 391.663 380.525 390.7 380.508C389.319 380.53 387.95 380.229 386.695 379.627C385.02 378.801 383.604 377.497 382.61 375.867C381.616 374.236 381.084 372.345 381.077 370.413C381.062 368.985 381.304 367.567 381.79 366.232C382.238 365.002 382.916 363.876 383.785 362.922C384.656 361.983 385.706 361.245 386.867 360.756C388.128 360.229 389.476 359.967 390.834 359.984C392.081 359.987 393.315 360.239 394.47 360.728C395.626 361.199 396.636 361.991 397.391 363.017L395.277 364.71Z"
fill="white" />
<path
d="M400.194 370.588H406.228V364.293H408.29V370.588H414.324V372.739H408.29V379.034H406.228V372.739H400.194V370.588Z"
fill="white" />
<path
d="M417.795 370.588H423.829V364.293H425.894V370.588H431.928V372.739H425.894V379.034H423.831V372.739H417.797L417.795 370.588Z"
fill="white" />
<path
d="M237.706 67.2197H181.833C180.25 67.2197 178.968 68.5579 178.968 70.2086V101.41C178.968 103.061 180.25 104.399 181.833 104.399H237.706C239.288 104.399 240.571 103.061 240.571 101.41V70.2086C240.571 68.5579 239.288 67.2197 237.706 67.2197Z"
fill="#9FCBBF" />
<path
d="M240.89 67.2197H185.017C183.435 67.2197 182.152 68.5579 182.152 70.2086V101.41C182.152 103.061 183.435 104.399 185.017 104.399H240.89C242.473 104.399 243.755 103.061 243.755 101.41V70.2086C243.755 68.5579 242.473 67.2197 240.89 67.2197Z"
fill="#43796B" />
<path
d="M196.417 76.5012H198.777V89.4732C198.777 90.6203 198.605 91.5529 198.261 92.2709C197.962 92.9384 197.521 93.526 196.971 93.9892C196.481 94.3946 195.915 94.6913 195.311 94.8612C194.782 95.0102 194.238 95.0885 193.691 95.0943C192.579 95.1323 191.486 94.7856 190.582 94.1081C189.737 93.4506 189.2 92.4551 188.971 91.1216L191.282 90.583C191.377 91.1989 191.662 91.7657 192.093 92.1987C192.532 92.6031 193.105 92.8145 193.691 92.7885C194.185 92.8144 194.676 92.6896 195.103 92.4295C195.449 92.1965 195.732 91.8755 195.925 91.4969C196.131 91.0852 196.265 90.6382 196.319 90.1773C196.384 89.6766 196.417 89.1719 196.417 88.6666V76.5012Z"
fill="white" />
<path
d="M202.315 83.9874C202.94 83.3885 203.676 82.9306 204.478 82.6421C205.267 82.3482 206.099 82.1961 206.937 82.1922C207.682 82.1754 208.424 82.2889 209.133 82.5279C209.691 82.7146 210.206 83.0194 210.646 83.4232C211.027 83.7813 211.325 84.2244 211.518 84.7194C211.704 85.2027 211.799 85.7188 211.797 86.2395V92.4435C211.797 92.8701 211.797 93.2641 211.82 93.6232C211.842 93.9822 211.862 94.3226 211.896 94.6467H209.929C209.88 94.0312 209.855 93.418 209.855 92.8025H209.806C209.387 93.5195 208.782 94.0976 208.061 94.4695C207.325 94.8069 206.528 94.9724 205.725 94.9544C205.202 94.9548 204.681 94.8763 204.179 94.7213C203.71 94.5769 203.272 94.3394 202.889 94.0218C202.519 93.7155 202.22 93.3257 202.015 92.8818C201.777 92.3163 201.669 91.7002 201.702 91.0833C201.734 90.4664 201.905 89.8661 202.201 89.331C202.55 88.7884 203.022 88.344 203.575 88.0371C204.214 87.6842 204.903 87.4417 205.616 87.319C206.439 87.1705 207.274 87.0979 208.11 87.1022H209.732V86.5892C209.731 86.0808 209.582 85.5847 209.305 85.1659C209.029 84.747 208.638 84.4249 208.184 84.2415C207.791 84.088 207.374 84.0144 206.954 84.0247C206.578 84.0196 206.203 84.0627 205.837 84.1529C205.538 84.2317 205.246 84.3394 204.965 84.4746C204.712 84.5953 204.473 84.7454 204.253 84.9223C204.029 85.0948 203.835 85.2557 203.638 85.4095L202.315 83.9874ZM208.557 88.8041C208.019 88.8041 207.482 88.8336 206.948 88.8927C206.436 88.9442 205.933 89.06 205.448 89.2377C205.032 89.3866 204.654 89.6322 204.342 89.9558C204.199 90.1129 204.087 90.2981 204.014 90.5007C203.94 90.7032 203.906 90.919 203.913 91.1355C203.913 91.8365 204.136 92.3409 204.583 92.6486C205.138 92.9859 205.775 93.1479 206.416 93.1149C206.948 93.1306 207.477 93.0206 207.962 92.7932C208.363 92.601 208.716 92.3164 208.995 91.9608C209.254 91.6236 209.446 91.2361 209.56 90.8208C209.673 90.4161 209.73 89.9971 209.732 89.5758V88.8041H208.557Z"
fill="white" />
<path
d="M213.619 82.5093H216.173L219.664 91.8163L223.016 82.5093H225.376L220.806 94.6607H218.372L213.619 82.5093Z"
fill="white" />
<path
d="M227.354 83.9874C227.979 83.389 228.715 82.9311 229.517 82.6421C230.306 82.3485 231.138 82.1963 231.976 82.1922C232.721 82.1757 233.465 82.2892 234.175 82.5279C234.732 82.7152 235.246 83.0199 235.685 83.4232C236.066 83.7813 236.364 84.2244 236.557 84.7194C236.746 85.2035 236.842 85.7215 236.841 86.2442V92.4481C236.841 92.8748 236.841 93.2688 236.865 93.6278C236.89 93.9869 236.906 94.3273 236.939 94.6513H234.972C234.923 94.0358 234.899 93.4227 234.899 92.8072H234.85C234.431 93.5241 233.826 94.1023 233.104 94.4741C232.37 94.8115 231.573 94.977 230.771 94.9591C230.247 94.9597 229.725 94.8812 229.222 94.7259C228.753 94.5811 228.316 94.3436 227.933 94.0265C227.563 93.7196 227.265 93.33 227.059 92.8864C226.822 92.3206 226.715 91.7047 226.747 91.0881C226.779 90.4714 226.95 89.8713 227.244 89.3357C227.594 88.7924 228.067 88.3479 228.621 88.0417C229.259 87.6886 229.949 87.446 230.662 87.3237C231.484 87.1752 232.318 87.1026 233.153 87.1068H234.776V86.5939C234.776 86.2744 234.718 85.9579 234.604 85.6614C234.488 85.3502 234.312 85.067 234.087 84.829C233.845 84.5707 233.552 84.3689 233.229 84.2368C232.837 84.0835 232.419 84.0099 232 84.02C231.624 84.0151 231.249 84.0581 230.883 84.1483C230.583 84.2271 230.291 84.3348 230.011 84.47C229.759 84.5917 229.52 84.7418 229.298 84.9176C229.075 85.0902 228.88 85.251 228.684 85.4049L227.354 83.9874ZM233.598 88.8041C233.06 88.8041 232.522 88.8336 231.987 88.8927C231.476 88.9442 230.973 89.06 230.489 89.2378C230.069 89.3851 229.687 89.6307 229.372 89.9558C229.228 90.1123 229.116 90.2973 229.041 90.5C228.967 90.7027 228.933 90.9188 228.941 91.1355C228.941 91.8365 229.164 92.3409 229.611 92.6486C230.165 92.9863 230.801 93.1483 231.441 93.1149C231.974 93.1305 232.504 93.0206 232.99 92.7932C233.39 92.6007 233.742 92.3161 234.02 91.9609C234.281 91.6248 234.473 91.2369 234.586 90.8208C234.699 90.4164 234.757 89.9972 234.758 89.5758V88.8041H233.598Z"
fill="white" />
<g opacity="0.5">
<path
d="M359.998 262.207C359.998 295.525 385.888 322.504 417.795 322.504C449.702 322.504 475.592 295.525 475.592 262.207C475.603 252.736 473.468 243.398 469.36 234.953C465.253 226.508 459.289 219.195 451.957 213.613L445.252 223.15C456.771 231.996 464.248 246.208 464.248 262.207C464.248 288.936 443.406 310.677 417.786 310.677C392.166 310.677 371.324 288.936 371.324 262.207C371.324 235.477 392.175 213.769 417.795 213.769V201.941C385.891 201.941 359.998 228.923 359.998 262.207Z"
fill="#6ADB6A" />
<path
d="M371.333 262.206C371.333 288.936 392.175 310.677 417.795 310.677C443.415 310.677 464.257 288.936 464.257 262.206C464.257 246.208 456.768 231.996 445.261 223.15L437.775 233.784C442.051 237.06 445.528 241.34 447.926 246.278C450.324 251.215 451.574 256.672 451.577 262.206C451.577 281.627 436.42 297.439 417.806 297.439C399.192 297.439 384.036 281.627 384.036 262.206C384.036 242.786 399.192 226.976 417.806 226.976V213.769C392.175 213.769 371.333 235.509 371.333 262.206Z"
fill="#569A88" />
<path
d="M417.795 201.941V213.769C427.672 213.756 437.294 217.044 445.25 223.15L451.955 213.612C442.058 206.01 430.085 201.919 417.795 201.941Z"
fill="#8BDADA" />
<path
d="M417.795 213.769V226.976C424.976 226.973 431.971 229.357 437.763 233.784L445.25 223.15C437.294 217.044 427.672 213.756 417.795 213.769Z"
fill="#E5F0F8" />
<path
d="M389.379 270.159H446.035C446.866 270.159 447.561 269.352 447.599 268.315C447.771 264.405 448.743 259.071 443.404 256.602C438.041 254.119 432.605 256.919 432.605 256.919C432.605 256.919 431.781 243.655 419.27 243.679C407.75 243.702 402.589 255.909 402.589 255.909C402.589 255.909 392.533 251.946 387.9 267.49C387.522 268.79 388.275 270.159 389.379 270.159Z"
fill="#6ADB6A" />
</g>
<path
d="M190.22 249.703L177.678 249.482L178.335 235.742L178.65 229.172L178.668 228.846L188.481 224.542L188.801 229.186L189.038 232.569L190.22 249.703Z"
fill="#FDAE97" />
<path
d="M165.695 292.228L160.421 337.775C160.178 339.435 160.321 341.131 160.839 342.72C161.356 344.31 162.232 345.746 163.394 346.908C164.555 348.07 165.968 348.924 167.512 349.397C169.056 349.87 170.686 349.948 172.265 349.626C177.716 348.521 179.803 344.131 180.782 337.6C182.662 325.064 189.225 287.456 189.225 287.456L165.695 292.228Z"
fill="#396A5D" />
<path
d="M199.89 289.936L180.519 291.293L180.615 313.684L182.914 317.233L185.044 338.817L204.655 337.183L199.89 289.936Z"
fill="#396A5D" />
<path
d="M184.112 243.958C188.716 244.063 190.955 241.431 191.438 240.268L189.427 239.706L178.156 239.33L176.789 239.797C177.381 240.909 179.412 243.844 184.112 243.958Z"
fill="#FDAE97" />
<path
d="M200.444 273.826L200.245 293.459H165.552L165.713 243.963L177.868 239.379C178.004 239.641 178.152 239.913 178.333 240.198L178.38 240.256C179.037 241.133 180.297 241.963 183.826 242.044C186.767 242.117 188.209 241.69 189.027 241.133C189.474 240.825 189.82 240.216 190.026 239.885L201.41 242.767L200.637 267.751L200.444 273.826Z"
fill="white" />
<path
d="M191.438 240.268C191.438 240.268 190.452 258.586 190.593 269.177C190.734 279.769 191.438 306.52 191.438 306.52C191.438 306.52 197.863 306.662 203.776 305.412C203.776 305.412 203.866 293.289 202.234 284.933C200.603 276.577 201.421 242.76 201.421 242.76L191.438 240.268Z"
fill="#D6E8E3" />
<path
d="M154.703 283.928L154.778 283.959C158.023 285.288 161.685 283.621 162.959 280.236L173.294 252.767C174.567 249.382 172.969 245.561 169.725 244.233L169.65 244.202C166.405 242.874 162.742 244.541 161.469 247.925L151.134 275.394C149.861 278.779 151.459 282.6 154.703 283.928Z"
fill="#D6E8E3" />
<path
d="M156.747 384.003L174.969 383.991L180.463 339.75C180.627 338.366 180.526 336.962 180.164 335.62C179.803 334.278 179.189 333.024 178.358 331.933C177.526 330.841 176.495 329.933 175.324 329.262C174.152 328.591 172.864 328.17 171.535 328.024C170.206 327.878 168.863 328.01 167.583 328.412C166.303 328.814 165.113 329.478 164.082 330.365C163.052 331.252 162.201 332.345 161.579 333.579C160.958 334.813 160.578 336.165 160.463 337.554C160.413 338.047 160.399 338.543 160.421 339.039L157.249 377.869L156.747 384.003Z"
fill="#396A5D" />
<path
d="M184.979 338.034L189.659 384.014H207.551L204.682 337.782C204.704 337.295 204.572 336.749 204.532 336.246C204.042 330.473 199.644 326.16 194.109 326.663C191.453 326.909 189 328.245 187.288 330.377C185.576 332.509 184.746 335.263 184.979 338.034Z"
fill="#396A5D" />
<path
d="M190.435 220.943C190.435 220.943 191.552 216.413 189.579 217.079C187.605 217.746 190.435 220.943 190.435 220.943Z"
fill="#0E2121" />
<path
d="M176.798 239.787C176.798 239.787 181.542 265.447 181.714 278.2L181.873 290.955L181.33 306.515C181.33 306.515 168.111 308.224 163.489 306.259C163.489 306.259 163.167 287.787 164.396 281.247C165.626 274.708 165.724 243.963 165.724 243.963L176.798 239.787Z"
fill="#D6E8E3" />
<path d="M189.382 237.577L182.333 232.213L189.038 232.569L189.382 237.577Z"
fill="#EA9D85" />
<path d="M179.236 302.75C179.236 302.75 169.626 304.412 165.132 302.75"
stroke="white" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M189.876 217.574C189.876 217.574 190.81 221.861 191.472 224.904L192.017 227.417C192.448 229.403 192.555 232.476 190.562 233.665C188.568 234.854 185.422 234.619 182.87 232.781C180.317 230.944 173.483 221.516 178.963 216.142C184.443 210.768 189.507 216.583 189.876 217.574Z"
fill="#FDAE97" />
<path
d="M193.724 245.325C193.724 245.325 192.77 261.339 192.432 268.424C192.095 275.51 193.724 300.449 193.724 300.449"
stroke="white" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M178.498 233.448C178.498 233.448 180.677 230.884 180.387 229.394C180.096 227.904 181.533 226.004 180.983 223.738C180.434 221.472 180.206 220.516 181.363 220.474C182.521 220.432 190.823 221.229 190.544 217.21C190.265 213.19 180.248 210.626 177.236 217.909C177.236 217.909 174.661 218.142 176.143 223.687C177.624 229.231 177.928 229.65 178.498 233.448Z"
fill="#0E2121" />
<path
d="M174.771 242.303C174.771 242.303 176.576 257.984 177.676 265.732C178.775 273.479 178.97 292.571 179.24 299.647"
stroke="white" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M181.194 228.172C182.201 229.212 182.586 230.019 181.804 230.844C181.346 231.288 180.743 231.53 180.119 231.522C179.494 231.513 178.897 231.254 178.451 230.797C177.443 229.76 177.26 228.249 178.042 227.424C178.825 226.599 180.186 227.135 181.194 228.172Z"
fill="#FDAE97" />
<path
d="M185.397 224.493C185.498 224.96 185.811 225.274 186.097 225.207C186.383 225.139 186.544 224.71 186.432 224.248C186.32 223.787 186.018 223.47 185.732 223.549C185.446 223.628 185.297 224.039 185.397 224.493Z"
fill="#0E2121" />
<path
d="M190.741 223.234C190.839 223.701 190.689 224.125 190.403 224.192C190.117 224.26 189.804 223.941 189.706 223.479C189.608 223.017 189.755 222.591 190.041 222.523C190.327 222.456 190.64 222.775 190.741 223.234Z"
fill="#0E2121" />
<path
d="M186.881 227.347C186.836 227.813 186.099 228.098 185.23 228.007C184.36 227.916 183.694 227.473 183.737 227.018C183.779 226.564 184.521 226.267 185.388 226.358C186.255 226.449 186.926 226.892 186.881 227.347Z"
fill="#EA9D85" />
<path
d="M191.471 224.904L191.827 226.536C191.183 226.769 190.6 226.71 190.43 226.372C190.24 225.974 190.703 225.316 191.471 224.904Z"
fill="#EA9D85" />
<path
d="M179.296 229.69C179.712 229.502 180.157 229.396 180.61 229.378C179.694 228.275 178.787 228.643 178.787 228.643"
stroke="#EA9D85" stroke-width="1.46" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M187.661 224.297L189.277 227.009C189.357 227.142 189.392 227.3 189.376 227.456C189.36 227.613 189.293 227.759 189.187 227.871L188.852 228.231L188.51 228.599"
stroke="#332B27" stroke-width="0.94" stroke-miterlimit="10" />
<path d="M184.543 223.715C184.543 223.715 185.277 222.516 186.452 222.57"
stroke="#332B27" stroke-width="0.94" stroke-miterlimit="10" />
<path
d="M190.908 221.696C190.618 221.534 190.288 221.465 189.96 221.497C189.631 221.529 189.32 221.66 189.062 221.875"
stroke="#332B27" stroke-width="0.94" stroke-miterlimit="10" />
<path d="M192.238 391.19L191.758 384.003H205.171L205.694 391.19H192.238Z"
fill="#FDAE97" />
<path
d="M209.256 283.945L209.332 283.924C210.944 283.458 212.313 282.345 213.141 280.829C213.969 279.314 214.188 277.518 213.751 275.834L206.277 247.374C205.831 245.693 204.764 244.264 203.311 243.4C201.858 242.536 200.137 242.307 198.522 242.762L198.444 242.786C196.833 243.252 195.463 244.364 194.635 245.88C193.808 247.396 193.588 249.192 194.026 250.876L201.499 279.335C201.946 281.017 203.013 282.445 204.467 283.309C205.92 284.173 207.642 284.401 209.256 283.945Z"
fill="#D6E8E3" />
<path d="M205.408 387.26L191.758 384.003H205.171L205.408 387.26Z" fill="#EA9D85" />
<path d="M172.328 391.19L172.842 383.991L159.104 384.003L158.872 391.19H172.328Z"
fill="#FDAE97" />
<path d="M172.556 388.006L159.104 384.003L172.842 383.991L172.556 388.006Z"
fill="#EA9D85" />
<path
d="M212.305 397.233H192.5L192.466 396.392L192.222 390.824H205.698C207.368 390.824 208.912 391.846 210.092 392.923C211.088 393.846 211.799 395.058 212.135 396.403C212.214 396.675 212.271 396.952 212.305 397.233Z"
fill="#0E2121" />
<path
d="M212.305 397.233H192.5L192.466 396.392H212.133C212.213 396.667 212.271 396.948 212.305 397.233Z"
fill="#F4FFF0" />
<path
d="M206.105 391.969C206.105 391.969 204.393 388.836 203.24 390.074C202.087 391.312 206.105 391.969 206.105 391.969Z"
stroke="#F4FFF0" stroke-width="1.16" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M205.502 392.589L206.105 391.964M206.105 391.964C206.105 391.964 207.817 388.831 208.97 390.069C210.123 391.307 206.105 391.964 206.105 391.964Z"
stroke="#F4FFF0" stroke-width="1.16" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M206.566 392.594L206.105 391.969" stroke="#F4FFF0" stroke-width="1.16"
stroke-linecap="round" stroke-linejoin="round" />
<path
d="M152.364 397.233H172.171L172.205 396.392L172.449 390.824H158.97C157.301 390.824 155.759 391.846 154.579 392.923C153.583 393.847 152.871 395.058 152.534 396.403C152.456 396.675 152.399 396.952 152.364 397.233Z"
fill="#0E2121" />
<path
d="M152.364 397.233H172.171L172.205 396.392H152.538C152.458 396.667 152.4 396.948 152.364 397.233Z"
fill="#F4FFF0" />
<path
d="M158.566 392.16C158.566 392.16 160.278 389.025 161.431 390.265C162.584 391.505 158.566 392.16 158.566 392.16Z"
stroke="#F4FFF0" stroke-width="1.16" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M159.167 392.783L158.566 392.16M158.566 392.16C158.566 392.16 156.854 389.025 155.701 390.265C154.548 391.505 158.566 392.16 158.566 392.16Z"
stroke="#F4FFF0" stroke-width="1.16" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M158.105 392.785L158.564 392.16" stroke="#F4FFF0" stroke-width="1.16"
stroke-linecap="round" stroke-linejoin="round" />
<path d="M183.359 321.742L184.937 316.247H186.448L188.855 309.446" stroke="white"
stroke-width="0.76" stroke-linecap="round" stroke-linejoin="round" />
<path d="M158.564 378.811H174.073" stroke="white" stroke-width="0.76"
stroke-linecap="round" stroke-linejoin="round" />
<path d="M190.186 378.811H205.694" stroke="white" stroke-width="0.76"
stroke-linecap="round" stroke-linejoin="round" />
<path
d="M187.152 229.622L189.61 230.173C189.61 230.173 189.281 231.495 188.045 231.294C186.81 231.094 187.152 229.622 187.152 229.622Z"
fill="white" />
<path d="M202.961 301.82C202.961 301.82 198.344 303.424 193.724 302.148"
stroke="white" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M194.585 275.179C195.06 275.179 195.445 274.777 195.445 274.281C195.445 273.785 195.06 273.383 194.585 273.383C194.109 273.383 193.724 273.785 193.724 274.281C193.724 274.777 194.109 275.179 194.585 275.179Z"
fill="white" />
<path
d="M194.585 283.422C195.06 283.422 195.445 283.021 195.445 282.525C195.445 282.029 195.06 281.627 194.585 281.627C194.109 281.627 193.724 282.029 193.724 282.525C193.724 283.021 194.109 283.422 194.585 283.422Z"
fill="white" />
<path
d="M194.813 296.656C194.813 296.833 194.863 297.007 194.958 297.154C195.052 297.302 195.186 297.417 195.344 297.485C195.501 297.553 195.674 297.571 195.841 297.536C196.008 297.501 196.161 297.416 196.281 297.29C196.402 297.165 196.484 297.005 196.517 296.831C196.55 296.657 196.533 296.476 196.468 296.312C196.403 296.148 196.292 296.008 196.151 295.909C196.009 295.811 195.843 295.758 195.673 295.758C195.445 295.758 195.226 295.853 195.065 296.021C194.903 296.189 194.813 296.418 194.813 296.656Z"
fill="white" />
<path d="M218.348 291.753H188.752L196.475 268.632H226.071L218.348 291.753Z"
fill="#A5BBD6" />
<path d="M189.074 290.631L179.397 281.7H208.023L218.669 290.631H189.074Z"
fill="#89A5C7" />
<path d="M217.789 291.24H188.193L195.917 268.121H225.512L217.789 291.24Z"
fill="#A5BBD6" />
<path
d="M225.512 268.121L226.071 268.632H196.475L188.752 291.753L188.193 291.24L195.917 268.121H225.512Z"
fill="#89A5C7" />
<path
d="M179.397 281.7L179.073 282.823L188.752 291.753L189.127 290.631L179.397 281.7Z"
fill="#586773" />
<path
d="M208.66 281.97C210.471 281.97 211.94 281.291 211.94 280.455C211.94 279.618 210.471 278.939 208.66 278.939C206.848 278.939 205.379 279.618 205.379 280.455C205.379 281.291 206.848 281.97 208.66 281.97Z"
fill="#89A5C7" />
<path
d="M194.654 294.972C194.459 295.518 191.078 295.49 188.747 294.667C186.767 293.968 182.367 291.855 181.075 291.221L183.518 282.94C184.345 283.089 186.061 283.222 186.839 283.406C188.91 283.914 192.873 285.684 192.763 286.491C192.654 287.297 189.036 286.533 189.255 286.91C189.474 287.288 192.131 288.775 193.338 288.887C194.544 288.999 197.173 288.801 197.541 289.428C197.91 290.055 197.19 290.848 197.19 290.848C197.19 290.848 198.187 290.652 198.192 291.314C198.196 291.976 196.719 292.699 196.719 292.699C196.719 292.699 197.255 292.522 197.085 293.263C196.916 294.005 194.37 294.28 194.37 294.28C194.439 294.296 194.502 294.33 194.556 294.377C194.61 294.424 194.653 294.483 194.681 294.551C194.708 294.618 194.72 294.692 194.716 294.765C194.711 294.838 194.69 294.909 194.654 294.972Z"
fill="#FDAE97" />
<path
d="M184 281.303L159.04 270.842C156.038 269.69 152.559 271.644 151.3 275.19C150.042 278.736 151.479 282.588 154.481 283.747L180.485 293.221L184 281.303Z"
fill="#D6E8E3" />
<path d="M181.345 280.193L165.389 273.705L170.142 261.057" stroke="white"
stroke-width="1.31" stroke-miterlimit="10" />
<path d="M164.249 287.307L178.21 292.394" stroke="white" stroke-width="1.31"
stroke-miterlimit="10" />
<path
d="M341.782 277.074C343.408 276.881 344.894 276.023 345.915 274.689C346.935 273.355 347.408 271.653 347.228 269.956L344.392 243.522C344.205 241.829 343.383 240.281 342.106 239.217C340.829 238.154 339.2 237.66 337.576 237.845C335.953 238.04 334.469 238.897 333.449 240.229C332.43 241.561 331.957 243.259 332.134 244.954L334.972 271.388C335.157 273.082 335.976 274.631 337.252 275.697C338.528 276.762 340.157 277.257 341.782 277.074Z"
fill="#FDAE97" />
<path
d="M340.995 264.89C337.587 264.918 334.818 267.508 334.84 270.646L338.492 297.667C338.434 298.628 338.306 299.583 338.11 300.523C337.647 302.535 337.013 308.159 337.79 308.25C338.568 308.341 339.75 304.578 340.048 304.895C340.345 305.212 340.092 308.182 339.889 309.439C339.686 310.695 338.834 313.318 339.33 313.869C339.826 314.419 340.747 313.869 340.747 313.869C340.747 313.869 340.3 314.829 340.93 315.002C341.561 315.174 342.595 313.855 342.595 313.855C342.595 313.855 342.296 314.363 343.042 314.372C343.789 314.381 344.676 311.868 344.676 311.868C344.676 311.941 344.692 312.012 344.722 312.077C344.753 312.143 344.797 312.2 344.852 312.245C344.906 312.29 344.97 312.321 345.038 312.337C345.106 312.352 345.176 312.351 345.244 312.334C345.802 312.265 346.631 308.823 346.455 306.24C346.298 303.934 345.337 298.502 345.139 297.362L347.242 270.551C347.21 267.41 344.403 264.864 340.995 264.89Z"
fill="#FDAE97" />
<path
d="M341.54 385.446H358.259L352.954 329.958L352.938 329.764C352.757 327.081 351.584 324.576 349.667 322.777C347.751 320.978 345.239 320.026 342.662 320.12C340.085 320.215 337.644 321.35 335.854 323.286C334.063 325.221 333.063 327.806 333.064 330.496C333.063 330.808 333.078 331.119 333.108 331.429L341.54 385.446Z"
fill="#B0D3CA" />
<path
d="M343.096 282.119C348.22 286.549 351.718 295.991 351.865 308.597C352.013 321.203 352.911 329.296 352.911 329.296C353.048 330.654 352.927 332.027 352.555 333.337C352.184 334.647 351.568 335.867 350.744 336.929C349.92 337.99 348.904 338.872 347.753 339.524C346.603 340.176 345.34 340.585 344.038 340.728C342.736 340.871 341.419 340.744 340.164 340.357C338.908 339.969 337.739 339.327 336.721 338.467C335.703 337.607 334.858 336.547 334.233 335.347C333.608 334.146 333.216 332.829 333.079 331.471L325.342 282.119H343.096Z"
fill="#B0D3CA" />
<path
d="M334.286 265.051L346.428 262.551L346.37 262.001L334.123 263.535L334.286 265.051Z"
fill="#E89780" />
<path
d="M333.372 282.119C337.41 287.635 338.932 299.069 336.358 311.386C333.783 323.703 332.912 331.802 332.912 331.802C332.589 334.54 331.238 337.032 329.154 338.73C327.07 340.429 324.425 341.194 321.8 340.857C319.176 340.521 316.787 339.111 315.159 336.937C313.531 334.763 312.798 332.003 313.12 329.265L317.225 282.119H333.372Z"
fill="#D6E8E3" />
<path
d="M344.864 243.611C344.486 240.093 340.942 237.472 337.571 237.866C335.948 238.061 334.465 238.918 333.445 240.25C332.425 241.581 331.952 243.28 332.13 244.975L333.193 263.664L347.561 261.875L344.864 243.611Z"
fill="#B0D3CA" />
<path
d="M304.331 273.854C305.748 274.703 307.429 274.932 309.008 274.492C310.586 274.051 311.934 272.977 312.756 271.504L325.514 248.474C326.328 246.996 326.548 245.242 326.126 243.595C325.704 241.948 324.674 240.542 323.262 239.685C321.845 238.836 320.163 238.606 318.584 239.047C317.006 239.487 315.658 240.561 314.836 242.035L302.085 265.06C301.269 266.538 301.047 268.293 301.468 269.941C301.889 271.589 302.918 272.996 304.331 273.854Z"
fill="#FDAE97" />
<path
d="M334.266 236.906L345.058 242.005C345.058 242.005 341.69 263.246 341.458 272.458C341.396 275.758 341.951 279.04 343.091 282.119H317.232C317.232 282.119 318.055 267.228 316.897 262.687C314.287 252.428 320.178 244.854 319.371 239.03L325.003 237.148L334.266 236.906Z"
fill="#396A5D" />
<path
d="M325.859 248.824C327.557 245.761 326.198 241.454 323.262 239.685C321.845 238.836 320.163 238.606 318.584 239.047C317.006 239.487 315.658 240.561 314.836 242.035L305.057 257.732L317.637 265.193L325.859 248.824Z"
fill="#B0D3CA" />
<path
d="M334.315 236.903C334.199 237.116 332.241 240.557 328.536 240.268C325.257 240.011 325.012 237.137 325.012 237.137V224.043H332.988L334.315 236.903Z"
fill="#FDAE97" />
<path d="M325.005 235.656L330.57 229.343L325 231.525L325.005 235.656Z"
fill="#E89780" />
<path
d="M330.051 229.93C327.935 232.178 324.969 233.001 322.859 232.245C320.75 231.49 320.307 228.538 320.372 226.564V226.55C320.388 226.142 320.408 225.566 320.43 224.918C320.511 222.369 320.627 218.595 320.627 218.595C320.596 216.625 324.6 211.06 330.784 215.137C336.968 219.215 332.17 227.685 330.051 229.93Z"
fill="#FDAE97" />
<path
d="M309.549 385.446H327.068L333.082 331.739L333.16 330.51C333.161 329.121 332.894 327.745 332.375 326.465C331.856 325.185 331.096 324.027 330.14 323.059C329.184 322.091 328.051 321.334 326.809 320.832C325.566 320.331 324.24 320.094 322.909 320.138C320.43 320.239 318.074 321.292 316.294 323.095C314.515 324.899 313.437 327.324 313.268 329.906L309.549 385.446Z"
fill="#D6E8E3" />
<path
d="M304.824 260.108L316.365 264.988L316.544 264.666L305.87 258.217L304.824 260.108Z"
fill="#E89780" />
<path
d="M337.775 397.233H350.574L352.623 394.914L352.721 397.233H356.1L356.018 395.38L355.743 389.544L355.546 385.45H345.04L345.943 389.544L339.739 395.38L337.775 397.233Z"
fill="#FDAE97" />
<path
d="M315 397.233L317.717 394.937L317.664 397.233H320.897L321.239 395.38L322.31 389.544L323.063 385.45H310.961L310.74 389.544L304.538 395.38L302.572 397.233H315Z"
fill="#FDAE97" />
<path
d="M327.155 233.218C325.939 234.929 320.07 239.783 321.916 244.963C323.762 250.144 325.302 248.994 323.192 253.072C321.083 257.15 325.34 260.684 325.34 260.684C329.193 259.705 332.991 258.51 336.72 257.103C336.318 256.035 335.641 254.671 334.557 253.769C332.505 252.058 331.481 251.258 332.505 248.747C333.529 246.236 332.505 242.769 332.505 242.769C333.683 243.469 333.888 246.619 333.828 248.274C333.768 249.929 335.732 251.211 338.237 252.004C339.983 252.559 340.568 254.387 340.758 255.441C343.268 254.36 345.686 253.059 347.986 251.552C347.802 250.444 347.204 248.337 345.253 247.299C342.535 245.858 342.694 242.231 342.694 242.231C342.694 242.231 344.175 245.961 347.91 246.5C350.247 246.84 350.422 248.598 350.225 249.866C351.124 249.119 351.929 248.258 352.623 247.302C352.623 247.302 352.873 241.24 349.494 240.293C346.115 239.347 342.524 239.557 342.175 236.675C341.827 233.793 340.459 232.39 338.007 231.756C335.556 231.122 334.957 229.608 335.578 227.123C336.199 224.638 335.837 215.699 330.78 215.133C329.77 214.247 328.535 213.687 327.225 213.522C325.916 213.356 324.588 213.592 323.405 214.2C320.082 215.816 320.354 218.373 320.354 218.373C320.354 218.373 318.957 222.959 322.951 224.615C326.945 226.27 328.362 231.516 327.155 233.218Z"
fill="#0E2121" />
<path
d="M326.464 229.245C326.078 230.41 326.075 231.159 326.949 231.476C327.447 231.634 327.985 231.585 328.449 231.338C328.912 231.092 329.267 230.667 329.437 230.154C329.823 228.988 329.437 227.792 328.543 227.478C327.649 227.163 326.851 228.081 326.464 229.245Z"
fill="#FDAE97" />
<path
d="M328.324 229.513C328.12 229.47 327.909 229.475 327.707 229.525C327.505 229.576 327.316 229.672 327.153 229.807C327.293 228.562 328.704 228.655 328.704 228.655"
stroke="#E89780" stroke-width="0.66" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M326.603 231.571C326.603 231.728 326.647 231.881 326.731 232.011C326.814 232.141 326.932 232.242 327.071 232.302C327.209 232.361 327.361 232.377 327.508 232.347C327.655 232.316 327.79 232.241 327.896 232.13C328.002 232.02 328.074 231.879 328.103 231.726C328.133 231.572 328.118 231.413 328.06 231.269C328.003 231.125 327.906 231.001 327.781 230.914C327.657 230.827 327.51 230.781 327.36 230.781C327.261 230.781 327.162 230.802 327.071 230.841C326.979 230.881 326.895 230.939 326.825 231.013C326.754 231.086 326.699 231.173 326.66 231.269C326.622 231.365 326.603 231.468 326.603 231.571Z"
stroke="white" stroke-width="0.86" stroke-miterlimit="10" />
<path
d="M339.739 395.38L337.775 397.233H350.574L352.623 394.914L352.721 397.233H356.1L356.018 395.38L355.743 389.544H345.943L339.739 395.38Z"
fill="#2C3447" />
<path
d="M315 397.233L317.717 394.937L317.664 397.233H320.897L321.239 395.38L322.31 389.544H310.74L304.538 395.38L302.572 397.233H315Z"
fill="#2C3447" />
<path
d="M353.336 245.921C353.336 245.921 353.26 240.077 347.836 238.981C342.412 237.885 343.972 234.085 341.156 232.499C338.34 230.914 336.166 232.413 335.569 224.992"
stroke="#0E2121" stroke-width="0.85" stroke-miterlimit="10" />
<path
d="M312.624 271.663C314.595 268.501 314.021 264.435 311.346 262.61L286.284 250.16C285.504 249.542 284.769 248.865 284.085 248.134C282.648 246.53 278.25 242.648 277.718 243.315C277.186 243.982 279.685 247.278 279.242 247.362C278.8 247.446 276.426 245.481 275.479 244.565C274.531 243.648 272.797 241.319 272.06 241.461C271.322 241.604 271.226 242.767 271.226 242.767C271.226 242.767 270.672 241.797 270.158 242.275C269.644 242.753 270.158 244.483 270.158 244.483C270.158 244.483 269.901 243.912 269.46 244.586C269.02 245.259 270.629 247.56 270.629 247.56C270.568 247.518 270.498 247.491 270.426 247.48C270.353 247.47 270.279 247.477 270.209 247.501C270.139 247.524 270.075 247.564 270.022 247.618C269.969 247.671 269.928 247.736 269.903 247.808C269.635 248.365 272.071 251.146 274.373 252.496C276.42 253.699 281.589 255.993 282.677 256.478L304.183 274.118C306.847 275.927 310.651 274.826 312.624 271.663Z"
fill="#FDAE97" />
<path
d="M305.966 68.199H274.455C273.554 68.199 272.689 68.5726 272.052 69.2376C271.414 69.9026 271.056 70.8046 271.056 71.7451V90.6693C271.056 91.6098 271.414 92.5117 272.052 93.1768C272.689 93.8418 273.554 94.2154 274.455 94.2154H287.12V98.4842H278.786C278.708 98.4842 278.633 98.5167 278.578 98.5744C278.522 98.6321 278.491 98.7104 278.491 98.792V99.8831C278.491 99.9235 278.499 99.9635 278.514 100.001C278.529 100.038 278.55 100.072 278.578 100.101C278.605 100.129 278.638 100.152 278.673 100.167C278.709 100.183 278.748 100.191 278.786 100.191H301.637C301.676 100.191 301.715 100.183 301.75 100.167C301.786 100.152 301.819 100.129 301.846 100.101C301.873 100.072 301.895 100.038 301.91 100.001C301.925 99.9635 301.932 99.9235 301.932 99.8831V98.792C301.932 98.7104 301.901 98.6321 301.846 98.5744C301.791 98.5167 301.716 98.4842 301.637 98.4842H293.302V94.2131H305.966C306.867 94.2131 307.732 93.8398 308.369 93.1753C309.007 92.5107 309.365 91.6094 309.366 90.6693V71.7451C309.366 70.8046 309.007 69.9026 308.37 69.2376C307.732 68.5726 306.868 68.199 305.966 68.199Z"
fill="#E5F0F8" />
<path
d="M383.209 78.329H418.564C418.814 78.3295 419.056 78.23 419.238 78.051C419.42 77.8719 419.53 77.6269 419.545 77.3661C419.652 75.3285 419.433 70.7589 415.315 70.7565C410.755 70.7565 409.28 72.7872 409.28 72.7872C409.28 72.7872 409.68 64.513 401.872 64.5246C394.685 64.5246 392.07 72.2183 392.07 72.2183C392.07 72.2183 385.189 68.8378 382.297 76.9418C382.242 77.0963 382.223 77.2625 382.242 77.4262C382.262 77.5899 382.318 77.7463 382.408 77.8824C382.497 78.0184 382.617 78.13 382.756 78.2077C382.896 78.2854 383.051 78.327 383.209 78.329Z"
fill="#E5F0F8" />
<path
d="M400.904 67.5508L398.225 71.3976H399.519V75.3028H402.288V71.3976H403.582L400.904 67.5508Z"
fill="white" />
<path
d="M466.944 212.006L470.926 209.926L470.517 209.073L469.351 209.682L468.98 208.908L470.146 208.299L469.558 207.075L467.994 207.891L467.623 207.119L469.187 206.301L468.638 205.159L466.45 206.301L465.963 206.555L464.242 207.455L464.018 207.567L457.513 194.007L460.087 192.662C460.851 192.26 461.432 191.558 461.702 190.711C461.973 189.864 461.911 188.939 461.531 188.139L460.049 185.043C459.663 184.247 458.99 183.642 458.178 183.36C457.366 183.079 456.48 183.143 455.714 183.539L455.676 183.558L455.005 183.903L454.985 183.917L449.677 186.689L449.324 186.873L448.22 187.449C447.571 187.785 447.053 188.344 446.752 189.032C446.739 189.07 446.723 189.105 446.709 189.139C446.455 189.748 446.377 190.421 446.486 191.075C446.542 191.385 446.639 191.687 446.774 191.97L446.815 192.054L447.445 193.366L447.548 193.583L448.254 195.057C448.417 195.404 448.637 195.72 448.904 195.989C449.056 196.139 449.222 196.274 449.398 196.393C450.039 196.818 450.803 196.997 451.557 196.898C451.918 196.854 452.269 196.744 452.594 196.572L454.741 195.451L455.012 195.308L455.101 195.259L464.132 214.081C464.197 214.215 464.31 214.317 464.447 214.364C464.583 214.411 464.732 214.4 464.861 214.333L465.571 213.96L466.284 213.589C466.348 213.556 466.405 213.51 466.451 213.454C466.498 213.398 466.533 213.333 466.556 213.263C466.578 213.192 466.587 213.118 466.582 213.044C466.577 212.97 466.558 212.898 466.526 212.831L466.289 212.342L466.749 212.109L466.944 212.006ZM449.036 191.69L448.694 190.991C448.664 190.928 448.64 190.863 448.622 190.795C448.622 190.776 448.622 190.757 448.611 190.739C448.6 190.687 448.592 190.635 448.587 190.583C448.587 190.564 448.587 190.545 448.587 190.527C448.582 190.471 448.582 190.415 448.587 190.359C448.587 190.345 448.587 190.331 448.587 190.319C448.616 190.105 448.701 189.904 448.833 189.736L448.859 189.706C448.895 189.662 448.935 189.622 448.978 189.585L449.009 189.557C449.063 189.513 449.121 189.475 449.181 189.443L452.086 187.929L452.118 187.913L453.117 187.391L455.099 186.356L455.483 186.155L455.897 185.941L456.672 185.535C456.775 185.483 456.885 185.449 456.999 185.435C457.23 185.4 457.466 185.441 457.674 185.551C457.882 185.662 458.052 185.837 458.161 186.053L459.642 189.142C459.726 189.317 459.763 189.513 459.75 189.708C459.742 189.915 459.682 190.115 459.575 190.289C459.469 190.463 459.32 190.605 459.144 190.699L455.034 192.844L454.744 192.996L452.285 194.285L451.675 194.602C451.456 194.716 451.206 194.748 450.967 194.695C450.801 194.663 450.644 194.591 450.508 194.486C450.372 194.381 450.261 194.245 450.182 194.089L449.38 192.41L449.246 192.131L449.036 191.69Z"
fill="#E5F0F8" />
<path
d="M52.7867 273.201L44.824 268.119C44.0208 268.513 43.1439 268.717 42.2562 268.716C41.3693 268.717 40.4932 268.513 39.6906 268.119L31.7257 273.201C31.7257 273.201 30.644 290.088 42.2562 295.18C53.8706 290.088 52.7867 273.201 52.7867 273.201Z"
fill="white" />
<path
d="M49.4635 173.23H45.709V167.816C45.709 166.431 45.1814 165.102 44.2421 164.122C43.3029 163.142 42.029 162.591 40.7008 162.591C39.3725 162.591 38.0986 163.142 37.1594 164.122C36.2202 165.102 35.6925 166.431 35.6925 167.816V173.23H31.938C31.8195 173.23 31.7058 173.279 31.6219 173.366C31.5381 173.454 31.491 173.572 31.491 173.696V188.062C31.491 188.186 31.5381 188.305 31.6219 188.392C31.7058 188.48 31.8195 188.529 31.938 188.529H49.4635C49.5821 188.529 49.6958 188.48 49.7796 188.392C49.8634 188.305 49.9105 188.186 49.9105 188.062V173.696C49.9105 173.572 49.8634 173.454 49.7796 173.366C49.6958 173.279 49.5821 173.23 49.4635 173.23ZM37.2792 167.816C37.2792 166.87 37.6397 165.962 38.2814 165.292C38.923 164.623 39.7933 164.247 40.7008 164.247C41.6082 164.247 42.4785 164.623 43.1202 165.292C43.7618 165.962 44.1223 166.87 44.1223 167.816V173.23H37.2792V167.816Z"
fill="white" />
</g>
<defs>
<clipPath id="clip0_1_588">
<rect width="486" height="408" fill="white" />
</clipPath>
</defs>
</svg>
</div>
<div class="hero-form field field-grouped jd-div">
<div>
<a class="buttonL" href="https://discord.gg/7hRZXaHCgC" style="" target="_blank">
<button class="jd-button" style=" width: 250px;">
<span>
Join Discord
</span>
</button>
</a> </div>
<div class="apply-button" data-hackathon-slug="opencode23" data-button-theme="dark-inverted"
style="height: 44px; width: 312px"></div>
<!-- <a class="buttonL" href="https://discord.gg/PX7uJCSXPw" style="margin: 10px;"
target="_blank">
<button class="jd-button jd-button1" style=" width: 250px;">
<span>
Join Discord
</span>
</button>
</a> -->
</div>
</div>
</div>
</section>
<section class="features section">
<div class="container-fluid-one">
<div class="features-inner features-inner-how section-inner">
<div class="features-header text-center">
<div class="container-sm">
<h2 class="section-title-how section-title mt-0">How Opencode Works</h2>
</div>
</div>
<div class="features-wrap" style=" padding: 0;">
<div class="shadow2"></div>
<div class="div"
style="display: flex; flex-direction: row; justify-content: space-evenly;; flex-wrap: wrap; width: 100%; padding: 0 50px; z-index: 2;">
<div class="how-column text-center ">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(180, 213, 204, 1);
">1</h1>
<h3 class="feature-title1 h3-mobile mb-8">Claim Issue</h3>
<div class="line1" style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>It doesn't matter whether you know how to solve it.
Don't look
out for issues you know how to solve, but rather to the once you don't know
how
to solve! This will be your opening door to learning something new.</p>
</div>
</div>
<div class="how-column text-center ">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(147, 195, 182, 1);
">2</h1>
<h3 class="feature-title1 h3-mobile mb-8">Solve Issue</h3>
<div class="line1" style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After claiming the issue, now it's the time to explore
ways on
how to proceed.<br />
Mentors and Google will be to your rescue here. Take advantage of both to
the
most.</p>
</div>
</div>
<div class="how-column text-center ">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(114, 177, 160, 1);">3</h1>
<h3 class="feature-title1 h3-mobile mb-8">Open a PR</h3>
<div class="line1" style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After reading everything on internet ever written and
those to be written in
future, it's the time to open your pr.<br />
This will be the golden moment, where you will discover another 100 ways git
could make you cry!</p>
</div>
</div>
<div class="how-column text-center ">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(86, 154, 136, 1);">4</h1>
<h3 class="feature-title1 h3-mobile mb-8">Leaderboard</h3>
<div class="line1" style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After spending another sleepless night to see your pr
getting
merged it's the time to climb up the leaderboard and enjoy that shortliving
"I
love Programming" feeling!</p>
</div>
</div>
</div>
<!-- <div class="feature text-center is-revealing"
style="padding: 0 00px 0 0px; width: fit-content;">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(180, 213, 204, 1);">1</h1>
<h3 class="feature-title1 h3-mobile mb-8">Claim Issue</h3>
<div style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>It doesn't matter whether you know how to solve it. Don't
look
out for issues you know how to solve, but rather to the once you don't know how
to solve! This will be your opening door to learning something new.</p>
</div>
</div>
<div class="feature text-center is-revealing"
style="padding: 0 00px 0 0px; width: fit-content;">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(147, 195, 182, 1);">2</h1>
<h3 class="feature-title1 h3-mobile mb-8">Solve Issue</h3>
<div style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After claiming the issue, now it's the time to explore
ways on
how to proceed.<br />
Mentors and Google will be to your rescue here. Take advantage of both to the
most.</p>
</div>
</div>
<div class=" text-center "
style="padding: 0px; width: fit-content; width: 300px; ">
<div class="feature-inner1" style=" padding: 0;">
<h1 class="feature-title-no" style="color: rgba(114, 177, 160, 1);">3</h1>
<h3 class="feature-title1 h3-mobile mb-8">Open a PR</h3>
<div style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After reading everything on internet ever written and
those to be written in
future, it's the time to open your pr.<br />
This will be the golden moment, where you will discover another 100 ways git
could make you cry!</p>
</div>
</div>
<div class="feature text-center is-revealing"
style="padding: 0 0px 0 0px; width: fit-content;">
<div class="feature-inner1">
<h1 class="feature-title-no" style="color: rgba(86, 154, 136, 1);">4</h1>
<h3 class="feature-title1 h3-mobile mb-8">Leaderboard</h3>
<div style="border: 1px solid #893193; width: 43px;"></div>
<p class="features-p"><br>After spending another sleepless night to see your pr
getting
merged it's the time to climb up the leaderboard and enjoy that shortliving "I
love Programming" feeling!</p>
</div>
</div> -->
</div>
</div>
</div>
</section>
<section class="features section next">
<div class="container-fluid-two">
<div class="features-inner features-inner-projects section-inner">
<div class="features-header text-center">
<div class="container-sm">
<h2 class="section-title mt-0 project-heading">Past Projects</h2>
<p class="section-paragraph"></p>
</div>
</div>
<div class="shadow3"></div>
<div class="features-wrap" style="padding: 0 8%;">
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/collaborative.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://opencodeiiita.github.io/Collaborative-Web-2022/undefined"
target="_blank">
Collaborative Web 2022
</a>
</h4>
<p class="text-sm project-text">
Opencode'22 Collaborative website!
</p>
</div>
</div>
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/savemyformbackend.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://opencodeiiita.github.io/Collaborative-Web-2022/"
target="_blank">
SaveMyForm-Backend
</a>
</h4>
<p class="text-sm project-text">
Backend for the project SaveMyForm. Backend Less form submission collection for
your application
</p>
</div>
</div>
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/savemyformfrontend.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://github.com/opencodeiiita/PhotoStore" target="_blank">
SaveMyForm-Frontend
</a>
</h4>
<p class="text-sm project-text">
Frontend for the project SaveMyForm. Backend Less form submission collection for
your application
</p>
</div>
</div>
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/code-digger.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://github.com/opencodeiiita/PhotoStore" target="_blank">
Code-Digger
</a>
</h4>
<p class="text-sm project-text">
Coding repo which contains tasks related to competitive coding, DSA
</p>
</div>
</div>
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/leaderboard.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://github.com/opencodeiiita/PhotoStore" target="_blank">
Leaderboard
</a>
</h4>
<p class="text-sm project-text">
Opencode'22 live leaderboard for contributors
</p>
</div>
</div>
<div class="feature text-center is-revealing">
<div class="feature-inner project-card">
<img class="project_img" src="src/images/donateasmile.jpg" alt="">
<h4 class="feature-title h3-mobile mb-8"> <a class="buttonL"
href="https://github.com/opencodeiiita/PhotoStore" target="_blank">
DonateASmile
</a>