-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
4013 lines (3911 loc) · 344 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.0" />
<!-- <link rel="icon" type="image/x-icon" href="images/Logos/TechBrewers_square.png"> -->
<!-- <link rel="icon" type="image/x-icon" href="images/Logos/rocket.png" /> -->
<link rel="icon" type="image/x-icon" href="images/Logos/TB_Rocket.png" />
<!-- Meta tags -->
<meta property="og:title" content="Club TechBrewers" />
<meta property="og:description" content="The Official Website of Club TechBrewers." />
<meta property="og:image" content="images/square_logo.JPEG" />
<meta property="og:url" content="https://techbrewers.org" />
<meta name="keywords"
content="Club, Club TechBrewers, Community, Pune community, TechBrewers Community, techbrewers community, techbrewers pune" />
<!-- CSS -->
<link rel="stylesheet" href="./css/style.css" />
<!-- ICONSCOUT CDN -->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.6/css/unicons.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css2?family=Griffy&display=swap" rel="stylesheet"> -->
<title>Club TechBrewers</title>
</head>
<body>
<nav>
<div class="container nav__container">
<a href="index.html"><img src="./images/Logos/TechBrewersLogo.png" id="mainlogo" alt="" /></a>
<div class="nav_icon">
<ul class="nav__menu">
<li><a href="index.html">Home</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="meetup.html">Meetup</a></li>
<li><a href="testimonial.html">Testimonials</a></li>
<!-- <li><a href="swag.html">Swags</a></li> -->
</ul>
<button id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button id="close-menu-btn"><i class="uil uil-multiply"></i></button>
</div>
</div>
</nav>
<!-- ==========END OF NAVBAR========== -->
<header>
<div class="container header__container">
<div class="header__left">
<h2>Learn. Connect. Build with</h2>
<h1 class="gradient">Club TechBrewers</h1>
<p>
Our vibrant community of tech enthusiasts and instructors will help you to expand your knowledge, make
connections and explore the ever-evolving field of tech building.
</p>
<a href="https://chat.whatsapp.com/IhCGAqGBE4k0usx9h0QrY7" class="btn btn-primary" target="_blank">Join now</a>
</div>
<!-- Event Popup -->
<dialog id="myDialog">
New Event is happening! <br>For more info visit the Events Page
<a href="./events.html" target="_blank" id="popupBtn">Events</a>
</dialog>
<div class="header__right">
<div class="header__right-image">
<svg class="animated" id="freepik_stories-team-spirit" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 500" version="1.1"
xmlns:svgjs="http://svgjs.com/svgjs">
<style>
svg#freepik_stories-team-spirit:not(.animated) .animable {
opacity: 0;
}
svg#freepik_stories-team-spirit.animated #freepik--Pictures--inject-13 {
animation: 1.5s Infinite linear floating;
animation-delay: 0s;
}
svg#freepik_stories-team-spirit.animated #freepik--Plants--inject-13 {
animation: 1.5s Infinite linear floating;
animation-delay: 0s;
}
@keyframes floating {
0% {
opacity: 1;
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0px);
}
}
</style>
<g id="freepik--background-simple--inject-13" class="animable"
style="transform-origin: 249.939px 251.999px;">
<path
d="M434.75,398.49H74.07s-14.34,4.68-22.25-32.56,32.8-47.22,42.48-79.38-32.55-25.39-29-69.4,61.58-44.86,89.73-38.93,24.63-14.39,57.18-48.25S294,99.51,318.62,125.74s16.72,53.32,47.51,53.32,58.94,5.93,77.41,62.63-15.29,82.62-14.68,108.18A275.52,275.52,0,0,0,434.75,398.49Z"
style="fill: rgb(87, 87, 205); transform-origin: 249.939px 251.999px;" id="el4qxsnalbm3p"
class="animable"></path>
<g id="elj7wlbpo8fmj">
<path
d="M434.75,398.49H74.07s-14.34,4.68-22.25-32.56,32.8-47.22,42.48-79.38-32.55-25.39-29-69.4,61.58-44.86,89.73-38.93,24.63-14.39,57.18-48.25S294,99.51,318.62,125.74s16.72,53.32,47.51,53.32,58.94,5.93,77.41,62.63-15.29,82.62-14.68,108.18A275.52,275.52,0,0,0,434.75,398.49Z"
style="fill: rgb(255, 255, 255); opacity: 0.6; transform-origin: 249.939px 251.999px;"
class="animable"></path>
</g>
</g>
<g id="freepik--Pictures--inject-13" class="animable" style="transform-origin: 246.09px 188.035px;">
<rect x="209.33" y="124.7" width="68" height="98"
style="fill: rgb(87, 87, 205); transform-origin: 243.33px 173.7px;" id="elf11p7t8x5wn" class="animable">
</rect>
<g id="elf9dxysw03q4">
<rect x="209.33" y="124.7" width="68" height="98"
style="fill: rgb(255, 255, 255); opacity: 0.4; transform-origin: 243.33px 173.7px;" class="animable">
</rect>
</g>
<rect x="219.05" y="138.7" width="48.57" height="70"
style="fill: rgb(255, 255, 255); transform-origin: 243.335px 173.7px;" id="el5ysm7fg8xv7"
class="animable"></rect>
<rect x="108" y="183.37" width="47.18" height="68"
style="fill: rgb(87, 87, 205); transform-origin: 131.59px 217.37px;" id="el1funni8ndy8"
class="animable"></rect>
<g id="elrovd4t9t4v7">
<rect x="108" y="183.37" width="47.18" height="68"
style="fill: rgb(255, 255, 255); opacity: 0.4; transform-origin: 131.59px 217.37px;" class="animable">
</rect>
</g>
<rect x="114.74" y="193.08" width="33.7" height="48.57"
style="fill: rgb(255, 255, 255); transform-origin: 131.59px 217.365px;" id="elprrynhr323"
class="animable"></rect>
<rect x="337" y="183.37" width="47.18" height="68"
style="fill: rgb(87, 87, 205); transform-origin: 360.59px 217.37px;" id="el51h4xj8o90i"
class="animable"></rect>
<g id="elsyhrifs14m">
<rect x="337" y="183.37" width="47.18" height="68"
style="fill: rgb(255, 255, 255); opacity: 0.4; transform-origin: 360.59px 217.37px;" class="animable">
</rect>
</g>
<rect x="343.74" y="193.08" width="33.7" height="48.57"
style="fill: rgb(255, 255, 255); transform-origin: 360.59px 217.365px;" id="el7dlum60c2l8"
class="animable"></rect>
</g>
<g id="freepik--Plants--inject-13" class="animable animator-active"
style="transform-origin: 246.303px 331.447px;">
<path
d="M331.63,319.41c-2,5-4.12,1-3.79-20.06.16-9.86.85-30,11.76-25.57,10.47,4.26-3.33,34.05-3.33,34.05Zm15,3s22.73-23.69,14.2-31.12c-8.87-7.74-16.07,11.09-19.42,20.37-7.14,19.79-6.48,24.28-2.93,20.19Zm4.79,21.26s20.81-14.82,15.37-21.74c-5.66-7.2-13.89,6.16-17.8,12.76-8.33,14.1-8.47,17.63-5.17,15Zm5.63,21.2s20.82-14.82,15.38-21.74c-5.67-7.2-13.9,6.15-17.8,12.76-8.33,14.09-8.48,17.63-5.17,15Zm-36.34-42.62s-29.13-15.16-33.86-4.89c-4.93,10.69,15.16,12.31,25,12.91,21,1.3,25.13-.6,20.21-2.86Zm4.1,16.68s-31.56-9.06-34.16,1.95c-2.7,11.45,17.31,9,27.08,7.68,20.84-2.9,24.5-5.58,19.23-6.82Zm7.22,18.2s-26.89-6.94-28.84,2.43c-2,9.75,14.85,7.25,23.08,5.87,17.55-2.94,20.59-5.29,16.11-6.21Zm4.21,15s-26-9.76-28.93-.65c-3.05,9.49,14,8.79,22.32,8.29,17.77-1.06,21-3.07,16.67-4.47ZM318.81,296s-11.87-36.9-25.35-30.19c-14,7,2.18,23.61,10.29,31.58,17.29,17,22.64,18.18,20.37,12.25Z"
style="fill: rgb(255, 255, 255); transform-origin: 329.71px 322.508px;" id="el55gegia5cd"
class="animable"></path>
<path d="M299.1,279s29.82,36.38,36.95,54.59c8.2,20.93,13.78,44.5,14.89,64"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 325.02px 338.295px;"
id="elf731dwminj" class="animable"></path>
<line x1="330.11" y1="321.7" x2="334.26" y2="287.01"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 332.185px 304.355px;"
id="el05r2v5vdnmyj" class="animable"></line>
<line x1="336.05" y1="333.58" x2="351.05" y2="304.42"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 343.55px 319px;"
id="elvocvehz3er8" class="animable"></line>
<line x1="333.86" y1="329.26" x2="302.44" y2="322.86"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 318.15px 326.06px;"
id="eli045fz90u3p" class="animable"></line>
<line x1="341.95" y1="350.13" x2="360.42" y2="329.09"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 351.185px 339.61px;"
id="ellev5zo5xfx" class="animable"></line>
<line x1="339.37" y1="343.2" x2="315.66" y2="342.99"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 327.515px 343.095px;"
id="el4cliwpvaviw" class="animable"></line>
<line x1="343.94" y1="360.42" x2="325.75" y2="361.13"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 334.845px 360.775px;"
id="elzlvonnp0mn8" class="animable"></line>
<line x1="347.67" y1="371.4" x2="357.41" y2="358.42"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 352.54px 364.91px;"
id="el3jk21sor8n9" class="animable"></line>
<line x1="348.39" y1="376.23" x2="327.11" y2="375.17"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 337.75px 375.7px;"
id="elg7l3rgih8ml" class="animable"></line>
<path
d="M407.65,348.14c-3.67,1.38-2.55-1.71,8.8-11.87,5.32-4.77,16.38-14.3,19.38-6.32,2.89,7.67-19.74,15-19.74,15Zm5.77,9.43s23.78.45,23.54-7.74c-.25-8.52-13.8-3.1-20.38-.32-14,5.93-16.11,8.49-12.19,8.37Zm-8.95,13s18.11,3.79,19.12-2.51c1-6.55-10.11-4.36-15.54-3.19-11.59,2.49-13.54,4.15-10.53,4.63ZM396,384s18.12,3.79,19.12-2.51c1.05-6.55-10.1-4.37-15.54-3.2C388,380.78,386,382.44,389,382.92Zm4.81-40.28s-6.26-22.95-14-20.42c-8.11,2.63.91,14.12,5.43,19.65,9.63,11.81,12.67,13.07,11.45,9.34Zm-6.86,10.38s-10.69-21.24-17.82-17.22c-7.43,4.2,3.69,13.66,9.21,18.18,11.79,9.66,15,10.29,13.09,6.88Zm-6.13,12.78s-9.53-17.71-15.47-14.14c-6.18,3.72,3.44,11.46,8.22,15.16,10.19,7.89,12.93,8.35,11.22,5.51Zm-5.92,9.63s-7.6-18.63-13.88-15.71c-6.54,3,2.2,11.76,6.56,15.95,9.3,8.93,12,9.68,10.58,6.67Zm31.91-46.67s13.79-24.45,3.6-28.32c-10.6-4-11.49,12.77-11.74,21-.54,17.56,1.46,21,3.5,16.86Z"
style="fill: rgb(255, 255, 255); transform-origin: 401.317px 343.022px;" id="elvjo5r0si5u"
class="animable"></path>
<path d="M413.15,311s-4.69,33.74-10.87,46.49c-7.1,14.64-17.82,30.23-27.66,40.41"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 393.885px 354.45px;"
id="elcoypwy2lws" class="animable"></path>
<line x1="405.68" y1="348.46" x2="426.17" y2="333.62"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 415.925px 341.04px;"
id="elt2atp5f558e" class="animable"></line>
<line x1="402.28" y1="357.46" x2="425.16" y2="351.1"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 413.72px 354.28px;"
id="ely79vo48hc0f" class="animable"></line>
<line x1="403.5" y1="354.17" x2="391.46" y2="334.31"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 397.48px 344.24px;"
id="elj2j8gzrctkn" class="animable"></line>
<line x1="396.38" y1="368.73" x2="416.65" y2="368.21"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 406.515px 368.47px;"
id="elri4u1tjwa1g" class="animable"></line>
<line x1="398.8" y1="363.95" x2="387.25" y2="351.23"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 393.025px 357.59px;"
id="el6esm1i6n6n" class="animable"></line>
<line x1="391.88" y1="374.84" x2="382.56" y2="365.52"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 387.22px 370.18px;"
id="elje2p2rwj9di" class="animable"></line>
<line x1="387.87" y1="382.23" x2="399.57" y2="381.03"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 393.72px 381.63px;"
id="elyb8cfwm19x" class="animable"></line>
<line x1="385.65" y1="384.98" x2="375.76" y2="373.15"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 380.705px 379.065px;"
id="elrqlj88immqd" class="animable"></line>
<path
d="M101.21,319.41c-2,5-4.12,1-3.79-20.06.16-9.86.85-30,11.76-25.57,10.48,4.26-3.33,34.05-3.33,34.05Zm15,3s22.73-23.69,14.21-31.12c-8.88-7.74-16.08,11.09-19.43,20.37-7.14,19.79-6.48,24.28-2.93,20.19ZM121,343.65s20.82-14.82,15.37-21.74c-5.66-7.2-13.89,6.16-17.8,12.76-8.33,14.1-8.47,17.63-5.16,15Zm5.64,21.2S147.43,350,142,343.11c-5.67-7.2-13.9,6.15-17.8,12.76-8.33,14.09-8.48,17.63-5.17,15ZM90.27,322.23s-29.12-15.16-33.86-4.89c-4.93,10.69,15.16,12.31,25,12.91,21,1.3,25.12-.6,20.2-2.86Zm4.1,16.68s-31.55-9.06-34.16,1.95c-2.7,11.45,17.31,9,27.08,7.68,20.84-2.9,24.51-5.58,19.24-6.82Zm7.22,18.2s-26.89-6.94-28.84,2.43c-2,9.75,14.85,7.25,23.08,5.87,17.55-2.94,20.59-5.29,16.11-6.21Zm4.21,15s-26-9.76-28.93-.65c-3.05,9.49,14,8.79,22.32,8.29,17.77-1.06,21-3.07,16.68-4.47ZM88.39,296S76.52,259.14,63,265.85c-14,7,2.18,23.61,10.29,31.58,17.3,17,22.65,18.18,20.37,12.25Z"
style="fill: rgb(255, 255, 255); transform-origin: 99.2741px 322.517px;" id="elvu7vmkhmffa"
class="animable"></path>
<path d="M68.68,279s29.82,36.38,36.95,54.59c8.2,20.93,13.78,44.5,14.89,64"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 94.6px 338.295px;"
id="ele1609qo6rrh" class="animable"></path>
<line x1="99.7" y1="321.7" x2="103.84" y2="287.01"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 101.77px 304.355px;"
id="elpgwcapoo4q" class="animable"></line>
<line x1="105.63" y1="333.58" x2="120.63" y2="304.42"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 113.13px 319px;"
id="elsh7heba07hk" class="animable"></line>
<line x1="103.44" y1="329.26" x2="72.03" y2="322.86"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 87.735px 326.06px;"
id="elzevsu46qyd" class="animable"></line>
<line x1="111.53" y1="350.13" x2="130" y2="329.09"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 120.765px 339.61px;"
id="el475vztdl78a" class="animable"></line>
<line x1="108.95" y1="343.2" x2="85.24" y2="342.99"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 97.095px 343.095px;"
id="eld5hr2c1n3t8" class="animable"></line>
<line x1="113.52" y1="360.42" x2="95.33" y2="361.13"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 104.425px 360.775px;"
id="elwcf7eddne6" class="animable"></line>
<line x1="117.26" y1="371.4" x2="127" y2="358.42"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 122.13px 364.91px;"
id="elaay4dmwz86j" class="animable"></line>
<line x1="117.97" y1="376.23" x2="96.69" y2="375.17"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 107.33px 375.7px;"
id="elnwaocl6eeg" class="animable"></line>
<path
d="M177.23,348.14c-3.67,1.38-2.55-1.71,8.8-11.87,5.33-4.77,16.38-14.3,19.38-6.32,2.89,7.67-19.74,15-19.74,15Zm5.77,9.43s23.78.45,23.54-7.74c-.25-8.52-13.8-3.1-20.38-.32-14,5.93-16.11,8.49-12.19,8.37Zm-8.95,13s18.11,3.79,19.12-2.51c1-6.55-10.11-4.36-15.54-3.19C166,367.36,164.09,369,167.1,369.5ZM165.54,384s18.12,3.79,19.12-2.51c1.05-6.55-10.1-4.37-15.53-3.2-11.6,2.5-13.55,4.16-10.53,4.64Zm4.81-40.28s-6.25-22.95-14-20.42c-8.11,2.63.9,14.12,5.42,19.65,9.63,11.81,12.67,13.07,11.45,9.34Zm-6.86,10.38s-10.69-21.24-17.82-17.22c-7.43,4.2,3.69,13.66,9.22,18.18,11.79,9.66,15,10.29,13.08,6.88Zm-6.13,12.78s-9.53-17.71-15.47-14.14c-6.18,3.72,3.44,11.46,8.22,15.16,10.19,7.89,12.94,8.35,11.22,5.51Zm-5.92,9.63s-7.59-18.63-13.88-15.71c-6.54,3,2.21,11.76,6.56,15.95,9.3,8.93,12,9.68,10.58,6.67Zm31.91-46.67s13.8-24.45,3.61-28.32c-10.61-4-11.49,12.77-11.75,21-.53,17.56,1.46,21,3.5,16.86Z"
style="fill: rgb(255, 255, 255); transform-origin: 170.877px 343.022px;" id="elkepi16gz9jg"
class="animable"></path>
<path d="M182.73,311s-4.69,33.74-10.87,46.49c-7.1,14.64-17.82,30.23-27.66,40.41"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 163.465px 354.45px;"
id="elqy0ezyy3b2o" class="animable"></path>
<line x1="175.26" y1="348.46" x2="195.75" y2="333.62"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 185.505px 341.04px;"
id="elzek687a9v5f" class="animable"></line>
<line x1="171.86" y1="357.46" x2="194.74" y2="351.1"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 183.3px 354.28px;"
id="eltq8db2dbfhk" class="animable"></line>
<line x1="173.08" y1="354.17" x2="161.04" y2="334.31"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 167.06px 344.24px;"
id="elv6ppht9s2kk" class="animable"></line>
<line x1="165.96" y1="368.73" x2="186.23" y2="368.21"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 176.095px 368.47px;"
id="elg4s58pxvinu" class="animable"></line>
<line x1="168.38" y1="363.95" x2="156.83" y2="351.23"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 162.605px 357.59px;"
id="elebp1yrl6b8" class="animable"></line>
<line x1="161.46" y1="374.84" x2="152.14" y2="365.52"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 156.8px 370.18px;"
id="el0v2un54moagi" class="animable"></line>
<line x1="157.45" y1="382.23" x2="169.15" y2="381.03"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 163.3px 381.63px;"
id="elavxwqyrqjrv" class="animable"></line>
<line x1="155.24" y1="384.98" x2="145.34" y2="373.15"
style="fill: none; stroke: rgb(204, 204, 204); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25197px; transform-origin: 150.29px 379.065px;"
id="el67y78ghad1e" class="animable"></line>
</g>
<g id="freepik--Characters--inject-13" class="animable" style="transform-origin: 254.207px 294.372px;">
<path
d="M234.47,191.7s-12.8-4.08-22.59,6-4.63,30.21-4.63,37.28-9,52-9,52-4.36,16.33,7.62,26.68,34.12,9.45,43.57-10.47-.57-48.32-.57-63,2.18-24.49-1.09-35.1A20.63,20.63,0,0,0,234.47,191.7Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 225.487px 255.533px;"
id="elgt5364i5bxi" class="animable"></path>
<path d="M230.67,199.33S218.33,214.67,210,219"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 220.335px 209.165px;"
id="elg2wzg8l5bel" class="animable"></path>
<path d="M220,198s-6.33,15.33-12,19.67"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 214px 207.835px;"
id="elswfqsk51wk8" class="animable"></path>
<path
d="M255.51,250.73a10.2,10.2,0,0,1,4.28,7.2c.73,5.1-4.71,16.89-5.8,22.72A208,208,0,0,0,252,302c0,1.82,6.2,28.78,7.29,35.34s-.55,22-1.46,23.13-3.46-4.19-3.64-7.65-6.92-30.06-9.47-38.07-1.83-18.58-1.83-18.58,3.47-24.23,3.47-33.52.28-16.24.28-16.24Z"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 251.327px 303.517px;"
id="elupznc4f9w4c" class="animable"></path>
<path
d="M257.81,360.43c.91-1.09,2.55-16.58,1.46-23.13S252,303.78,252,302a208,208,0,0,1,2-21.31,46.86,46.86,0,0,1,1.54-5.52,15.76,15.76,0,0,1-6.87,1.56c-1.27,0-2.51,1.17-3.7,3.16-1,8.46-2.09,16.28-2.09,16.28s-.72,10.56,1.83,18.58,9.29,34.61,9.47,38.07S256.9,361.52,257.81,360.43Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 251.209px 317.873px;"
id="elj6ns2zdhkxo" class="animable"></path>
<path
d="M221.24,398.68c.4-4.48,1.24-13.6,1.78-17.12.73-4.73,2.18-14.39,2.18-14.39l3.69,31.51h25.28c.91-6.87,3.2-25.29,3.64-38.25.55-16.21-11.66-49.73-12-52.28s.36-10,.36-12.2,6.36-16.16,6.9-23.27,2.19-9.29,2.19-9.29l.91-12c-.55-.18-8.72-6.61-16.92-9a30.57,30.57,0,0,0-15.3-.36s-11.84,5.28-17.85,7.83S195.15,257.33,195,263.7s11.65,33.52,12.75,35.53-2.37,9.1-3.83,12.75-7.47,16.76-11.47,31.33c-3.43,12.44-1.14,45.87-.39,55.37Z"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 224.221px 319.954px;"
id="ely1g6zztv05" class="animable"></path>
<path d="M226.92,294.2s9.34,1.12,18.69-7.85"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 236.265px 290.297px;"
id="elo7nwi4fcabi" class="animable"></path>
<path
d="M233.4,268.08c2.73-.73,6.2-12,6.56-17.85.2-3.27.4-5.71.31-7.51-.34-.11-.69-.23-1-.33a30.57,30.57,0,0,0-15.3-.36l-4.82,2.14a15.09,15.09,0,0,0,.81,7.69C221.93,257.33,230.67,268.81,233.4,268.08Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 229.632px 254.671px;"
id="elhoid8dpcyuq" class="animable"></path>
<path
d="M221.2,236.44s.92,10.73,1.47,13.36,6.08,13,9.21,12.43S237,248.11,237,246.79s.37-12,.37-12S230.78,240.2,221.2,236.44Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 229.285px 248.521px;"
id="elzy9936goha" class="animable"></path>
<path
d="M203.16,251.68s-7.46.37-11.65,8.75.72,14,2.36,17.3,6.2,16.76,7.65,20.77,4.38,8.74,9.48,15.3,15.84,20.58,15.84,20.58l2.92,5.1s4.92,5.65,5.46,5.83,3.83,4.37,5.1,1.82,0-11.65,0-11.65,2,4,2.74,3.09-.19-2.91-.91-5.1-7.46-6.37-8.93-6.56-3.28-2-5.46-6.37-3.83-12-7.29-16.58-8-11.29-8-11.29-5.1-18.22-5.1-18.95a20.18,20.18,0,0,0-1.45-10"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 216.595px 299.815px;"
id="elx03dco6rdd9" class="animable"></path>
<path
d="M233.22,326.91c-1.46-.18-3.28-2-5.46-6.37s-3.83-12-7.29-16.58-8-11.29-8-11.29-3.45-12.34-4.67-17.11c-6.7-.94-11.12.41-13.93,2.13a.08.08,0,0,1,0,0c1.64,3.28,6.2,16.76,7.65,20.77s4.38,8.74,9.48,15.3,15.84,20.58,15.84,20.58l2.92,5.1s4.92,5.65,5.46,5.83,3.83,4.37,5.1,1.82,0-11.65,0-11.65,2,4,2.74,3.09-.19-2.91-.91-5.1S234.69,327.1,233.22,326.91Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 218.601px 311.581px;"
id="elbojusbszvz7" class="animable"></path>
<path
d="M221.24,398.68c.4-4.48,1.24-13.6,1.78-17.12.73-4.73,2.18-14.39,2.18-14.39l3.69,31.51h25.28c.91-6.87,3.2-25.29,3.64-38.25.23-6.75-1.76-16.51-4.18-25.78-21.37,4.68-45.6,1.29-58.18-1.15-1.06,3.13-2.1,6.42-3,9.81-3.43,12.44-1.14,45.87-.39,55.37Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 224.222px 366.09px;"
id="el8vpftuzgb36" class="animable"></path>
<path d="M214.87,220.46s-1.63-.73-1.63,2.54,3.63,5.44,3.63,5.44Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 215.055px 224.415px;"
id="elyoin44sb02q" class="animable"></path>
<path
d="M233.58,202.5s-5.82,8.2-10.93,11.48a81.73,81.73,0,0,1-8.19,4.73s2.55,10.57,3.64,14,4.36,9.49,10.92,9.85,9.48-6.57,10.76-9.85a14.17,14.17,0,0,0,1.15-5.36,7.62,7.62,0,0,0,3.46-5.28c.36-3.46-.55-3.28-.55-3.28s-1,1.13-3.17-.57C238.91,216.91,233,207.42,233.58,202.5Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 229.467px 222.537px;"
id="elu1u2rrwpjv" class="animable"></path>
<path d="M219.69,223.21s2.57-1.88,6.33,0"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 222.855px 222.792px;"
id="elzy6fwrwmpmd" class="animable"></path>
<path d="M231.32,223.55s3.08-2.74,6.33-.51"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 234.485px 222.858px;"
id="elt9z7faonys" class="animable"></path>
<path d="M219.18,219.1s1.37-2.56,6-1.36"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 222.18px 218.26px;"
id="elvmhb40umwji" class="animable"></path>
<path d="M231.32,217.91a5.29,5.29,0,0,1,7,.68"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 234.82px 217.742px;"
id="eloh18ygyku7" class="animable"></path>
<path d="M230.81,229.19s-2.74,1.88-3.93,0"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 228.845px 229.608px;"
id="elnirkbnw2y7" class="animable"></path>
<path d="M225.85,233.13s3.42,1.36,5.13-.17"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 228.415px 233.324px;"
id="ele3smxzqr3qs" class="animable"></path>
<path
d="M168.05,331.43s8,17.76,9.91,21.34,4.13,13.77,4.4,19.82,0,7.3-1.37,7.16-1.93-7.71-1.93-8.95v-1.92s-.69,7.15-1.79,8.53-2.62,2.89-2.75,2.07.27-2.21.82-4.27a16.29,16.29,0,0,0,.28-4.82s-.83,3.85-2.75,5.23-4,1.93-3.31.83,2.48-2.34,2.89-3.72a17.32,17.32,0,0,0,.42-3.85s-2.62,4.26-3.72,4.95-1.1-.82-.41-1.51,2.2-5.37,2.2-5.37-.42-.28-2.34-4.54-3-11.71-3.58-14.6-1.65-6.74-1.65-6.74l-10.6-17.76s-.83-4.27,3.16-5S168.05,331.43,168.05,331.43Z"
style="fill: rgb(255, 255, 255); transform-origin: 167.576px 349.021px;" id="elfxqo6xpxzbi"
class="animable"></path>
<g style="clip-path: url("#freepik--clip-path--inject-13"); transform-origin: 167.576px 349.021px;"
id="el4ytiff55r3k" class="animable">
<g id="eltwkvrtng4nj">
<path
d="M168.05,331.43s8,17.76,9.91,21.34,4.13,13.77,4.4,19.82,0,7.3-1.37,7.16-1.93-7.71-1.93-8.95v-1.92s-.69,7.15-1.79,8.53-2.62,2.89-2.75,2.07.27-2.21.82-4.27a16.29,16.29,0,0,0,.28-4.82s-.83,3.85-2.75,5.23-4,1.93-3.31.83,2.48-2.34,2.89-3.72a17.32,17.32,0,0,0,.42-3.85s-2.62,4.26-3.72,4.95-1.1-.82-.41-1.51,2.2-5.37,2.2-5.37-.42-.28-2.34-4.54-3-11.71-3.58-14.6-1.65-6.74-1.65-6.74l-10.6-17.76s-.83-4.27,3.16-5S168.05,331.43,168.05,331.43Z"
style="opacity: 0.15; transform-origin: 167.576px 349.021px;" class="animable"></path>
</g>
</g>
<path
d="M168.05,331.43s8,17.76,9.91,21.34,4.13,13.77,4.4,19.82,0,7.3-1.37,7.16-1.93-7.71-1.93-8.95v-1.92s-.69,7.15-1.79,8.53-2.62,2.89-2.75,2.07.27-2.21.82-4.27a16.29,16.29,0,0,0,.28-4.82s-.83,3.85-2.75,5.23-4,1.93-3.31.83,2.48-2.34,2.89-3.72a17.32,17.32,0,0,0,.42-3.85s-2.62,4.26-3.72,4.95-1.1-.82-.41-1.51,2.2-5.37,2.2-5.37-.42-.28-2.34-4.54-3-11.71-3.58-14.6-1.65-6.74-1.65-6.74l-10.6-17.76s-.83-4.27,3.16-5S168.05,331.43,168.05,331.43Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 167.576px 349.021px;"
id="elvl6b9cmvpxg" class="animable"></path>
<path
d="M178,358s1.38,6.75,1.24,9.77.55,4.55-.42,4.55-1.23-.69-2.2-3.72a35.52,35.52,0,0,1-1.24-6.88s-3.44,0-4.68-5.1"
style="fill: rgb(255, 255, 255); transform-origin: 175.024px 364.47px;" id="elo2kjexydr8f"
class="animable"></path>
<g style="clip-path: url("#freepik--clip-path-2--inject-13"); transform-origin: 175.024px 364.47px;"
id="elko5awstmvxe" class="animable">
<g id="elrhjv92hl8hf">
<path
d="M178,358s1.38,6.75,1.24,9.77.55,4.55-.42,4.55-1.23-.69-2.2-3.72a35.52,35.52,0,0,1-1.24-6.88s-3.44,0-4.68-5.1"
style="opacity: 0.15; transform-origin: 175.024px 364.47px;" class="animable"></path>
</g>
</g>
<path
d="M178,358s1.38,6.75,1.24,9.77.55,4.55-.42,4.55-1.23-.69-2.2-3.72a35.52,35.52,0,0,1-1.24-6.88s-3.44,0-4.68-5.1"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 175.024px 364.47px;"
id="elr5mty5gmis" class="animable"></path>
<path
d="M116.55,398.68h50.68c.25-9.48,1.91-71.4,2.41-74.17.55-3,3.27-31.3,3.54-42.45s-4.63-27.22-4.63-28.31-.81-7.89-8.43-13.61-13.61-5.71-15.24-4.9c0,0-6,4.09-15.52,14.16s-12.79,18.23-12.79,33.74a162.66,162.66,0,0,0,2.45,28s-3,48.44-3,49.53S116.46,392.21,116.55,398.68Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 144.605px 316.768px;"
id="elckustmms3hq" class="animable"></path>
<path
d="M139.55,289.18a30.07,30.07,0,0,0,3.22-.18c11.66-1.27,21.8-13.19,28.49-23.49-.31-1.49-.62-2.92-.93-4.23-6.31,10.29-16.51,23.5-27.88,24.74-15.83,1.72-23-10.75-25-14.78-.28,1.54-.49,3.16-.63,4.87C120.36,281.47,127.51,289.18,139.55,289.18Z"
style="fill: rgb(38, 50, 56); transform-origin: 144.04px 275.23px;" id="elomkgrka8uxl" class="animable">
</path>
<path
d="M135.75,265.12l2.9.77a62.66,62.66,0,0,1,17-28.58,24.24,24.24,0,0,0-3-1.33A65,65,0,0,0,135.75,265.12Z"
style="fill: rgb(38, 50, 56); transform-origin: 145.7px 250.935px;" id="elet5112jm35k" class="animable">
</path>
<path
d="M138.6,279.47c.68-.35,14.85-7.73,29.81-27a16.19,16.19,0,0,0-1.1-3.51c-15.06,20-29.91,27.74-30.07,27.82Z"
style="fill: rgb(38, 50, 56); transform-origin: 152.825px 264.215px;" id="el6oa9ew1rno"
class="animable"></path>
<path
d="M123.81,268.62l3-.45c0-.08-.87-7.17,6.11-22.39-1.12,1.11-2.29,2.31-3.53,3.62-.8.84-1.54,1.67-2.25,2.5C123.05,263,123.77,268.32,123.81,268.62Z"
style="fill: rgb(38, 50, 56); transform-origin: 128.328px 257.2px;" id="el6ak5gabt00e" class="animable">
</path>
<path
d="M148.55,313.07c-17.24,2.24-26-1.38-29.92-4.16.23,1.46.39,2.27.39,2.27s0,.53-.09,1.49c3.84,2.11,10,4.11,19.43,4.11a82.19,82.19,0,0,0,10.58-.73,56.53,56.53,0,0,0,22.41-7.92c.12-1.26.23-2.55.34-3.86A53.41,53.41,0,0,1,148.55,313.07Z"
style="fill: rgb(38, 50, 56); transform-origin: 145.16px 310.525px;" id="elq9l8c92jeps"
class="animable"></path>
<path
d="M147.66,331.53A75.5,75.5,0,0,0,170,321.79c.12-1.08.26-2.4.42-3.91a73.9,73.9,0,0,1-23.48,10.73c-11.61,2.85-22.88-.33-28.83-2.62-.06,1-.13,2.08-.19,3.16a56.5,56.5,0,0,0,19.28,3.61A44.3,44.3,0,0,0,147.66,331.53Z"
style="fill: rgb(38, 50, 56); transform-origin: 144.17px 325.32px;" id="elzii1wl13p7i" class="animable">
</path>
<path
d="M116.58,351.13c-.07,1.08-.13,2.1-.18,3A104,104,0,0,0,140,357a76.93,76.93,0,0,0,28.6-5.18c0-1.1.07-2.2.1-3.27C148.62,357,127.14,353.7,116.58,351.13Z"
style="fill: rgb(38, 50, 56); transform-origin: 142.55px 352.777px;" id="elw9vk9xxo4ok"
class="animable"></path>
<path
d="M149.85,341.23a61.5,61.5,0,0,1-32.61-1c-.06,1.05-.13,2.09-.19,3.12a60.22,60.22,0,0,0,18,2.63,69.14,69.14,0,0,0,15.51-1.78,76.84,76.84,0,0,0,18.52-6.9c0-1.24.09-2.42.13-3.52A73.82,73.82,0,0,1,149.85,341.23Z"
style="fill: rgb(38, 50, 56); transform-origin: 143.13px 339.881px;" id="el8lou3zjtsyh"
class="animable"></path>
<path
d="M141.45,299c-12.3.62-20.25-3.92-24.66-7.66.07,1.38.16,2.72.26,4a37.23,37.23,0,0,0,22.13,6.72c.79,0,1.6,0,2.42-.06,12.07-.61,22.75-5.89,31.38-15.25.1-1.75.17-3.35.2-4.68v-.2C166.13,290.62,155.9,298.26,141.45,299Z"
style="fill: rgb(38, 50, 56); transform-origin: 144.985px 291.969px;" id="el2o5034vomyv"
class="animable"></path>
<path
d="M161.88,241.6c-.55-.49-1.12-1-1.76-1.46-7.62-5.71-13.61-5.71-15.24-4.9a83.39,83.39,0,0,0-9,7.62,8.24,8.24,0,0,0,1.64,7.08c5.17,6.53,22,31.57,26.4,26.13s3.26-20.41-1.64-33.48C162.16,242.25,162,241.92,161.88,241.6Z"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 151.165px 255.847px;"
id="elaidwz6zy2of" class="animable"></path>
<path
d="M146,270.35s14.7,31.3,17.69,36.2a39.41,39.41,0,0,0,4.63,6.53s13,4.37,24.15,8.46S223,331,227.07,332.13s10.88,1.09,12,1.09,14.15,3,15,3.54-.27,1.63-2.18,2.18-8.16,1.08-11.16,2.17-5.44.82-9.79-.27a45,45,0,0,1-9.8-4.35S185.43,334,177,333s-18-2.18-21.77-6.53a254.32,254.32,0,0,1-20.9-27.06c-5.12-7.74-14.49-18.61-10.94-28.46"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 188.482px 306.077px;"
id="el8m0snb1dunl" class="animable"></path>
<path
d="M239,333.22c-1.09,0-7.89,0-12-1.09s-23.49-6.51-34.64-10.59-24.15-8.46-24.15-8.46a39.41,39.41,0,0,1-4.63-6.53c-1.23-2-4.45-8.53-7.82-15.48-10.85,2.84-16.31,8-19,12a261.84,261.84,0,0,0,18.39,23.36c3.81,4.35,13.33,5.44,21.77,6.53s44.09,3.54,44.09,3.54a45,45,0,0,0,9.8,4.35c4.35,1.09,6.8,1.36,9.79.27s9.26-1.63,11.16-2.17,3-1.64,2.18-2.18S240.13,333.22,239,333.22Z"
style="fill: rgb(255, 255, 255); transform-origin: 195.487px 316.442px;" id="elavf9lnq3ygf"
class="animable"></path>
<g style="clip-path: url("#freepik--clip-path-3--inject-13"); transform-origin: 195.487px 316.442px;"
id="elkoh3ebdfdh" class="animable">
<g id="eli4jzqdkacw">
<path
d="M239,333.22c-1.09,0-7.89,0-12-1.09s-23.49-6.51-34.64-10.59-24.15-8.46-24.15-8.46a39.41,39.41,0,0,1-4.63-6.53c-1.23-2-4.45-8.53-7.82-15.48-10.85,2.84-16.31,8-19,12a261.84,261.84,0,0,0,18.39,23.36c3.81,4.35,13.33,5.44,21.77,6.53s44.09,3.54,44.09,3.54a45,45,0,0,0,9.8,4.35c4.35,1.09,6.8,1.36,9.79.27s9.26-1.63,11.16-2.17,3-1.64,2.18-2.18S240.13,333.22,239,333.22Z"
style="opacity: 0.15; transform-origin: 195.487px 316.442px;" class="animable"></path>
</g>
</g>
<path
d="M239,333.22c-1.09,0-7.89,0-12-1.09s-23.49-6.51-34.64-10.59-24.15-8.46-24.15-8.46a39.41,39.41,0,0,1-4.63-6.53c-1.23-2-4.45-8.53-7.82-15.48-10.85,2.84-16.31,8-19,12a261.84,261.84,0,0,0,18.39,23.36c3.81,4.35,13.33,5.44,21.77,6.53s44.09,3.54,44.09,3.54a45,45,0,0,0,9.8,4.35c4.35,1.09,6.8,1.36,9.79.27s9.26-1.63,11.16-2.17,3-1.64,2.18-2.18S240.13,333.22,239,333.22Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 195.487px 316.442px;"
id="elqxrfgocu5ak" class="animable"></path>
<path
d="M167.23,398.68c.12-4.72.6-22.55,1.11-39.56a85,85,0,0,1-22.47,5.4c-16,1.87-25.22-2-29.78-5,0,.67-.06,1.09-.06,1.18,0,1,.43,31.5.52,38Z"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 142.185px 378.91px;"
id="el1zavgnx3q2o" class="animable"></path>
<path d="M154.48,396.41C152,387,158,375,149.34,368.77"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 151.91px 382.59px;"
id="elqvghrt0qa9o" class="animable"></path>
<line x1="154.48" y1="374.76" x2="165.62" y2="364.06"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 160.05px 369.41px;"
id="elme96rfyqpoq" class="animable"></line>
<path d="M126.55,374.83l-.29,21.58"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 126.405px 385.62px;"
id="elu7dcu0i5xcl" class="animable"></path>
<line x1="126.65" y1="367.06" x2="126.6" y2="371"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 126.625px 369.03px;"
id="eleuic4runla9" class="animable"></line>
<path
d="M171.3,191.36a20.67,20.67,0,0,1,11.12,7.42,19.13,19.13,0,0,1,3.73,8.26c1.33,8.1-3.23,10.6-1.76,14.28s2.94,5.59,1.76,7.36-4.85,2.06-5.44,2.21-1.77,6.91-4.12,9.86-10.6-.44-10.6-.44-3.38,5.74-4.41,7.65,1,13.39-.45,18.54-4.85-.44-11.33-8.53-9.42-14.72-9.12-16.93,5.44-7.36,6.33-9.27,1.32-2.8.88-4.56-5.59-9-5.59-18.25,7.35-18.1,17.07-18.84A35.63,35.63,0,0,1,171.3,191.36Z"
style="fill: rgb(255, 255, 255); transform-origin: 163.619px 229.264px;" id="elqwki6ooj4rk"
class="animable"></path>
<g style="clip-path: url("#freepik--clip-path-4--inject-13"); transform-origin: 163.619px 229.264px;"
id="eluztunb9bree" class="animable">
<g id="elk533v39qd6">
<path
d="M171.3,191.36a20.67,20.67,0,0,1,11.12,7.42,19.13,19.13,0,0,1,3.73,8.26c1.33,8.1-3.23,10.6-1.76,14.28s2.94,5.59,1.76,7.36-4.85,2.06-5.44,2.21-1.77,6.91-4.12,9.86-10.6-.44-10.6-.44-3.38,5.74-4.41,7.65,1,13.39-.45,18.54-4.85-.44-11.33-8.53-9.42-14.72-9.12-16.93,5.44-7.36,6.33-9.27,1.32-2.8.88-4.56-5.59-9-5.59-18.25,7.35-18.1,17.07-18.84A35.63,35.63,0,0,1,171.3,191.36Z"
style="opacity: 0.15; transform-origin: 163.619px 229.264px;" class="animable"></path>
</g>
</g>
<path
d="M171.3,191.36a20.67,20.67,0,0,1,11.12,7.42,19.13,19.13,0,0,1,3.73,8.26c1.33,8.1-3.23,10.6-1.76,14.28s2.94,5.59,1.76,7.36-4.85,2.06-5.44,2.21-1.77,6.91-4.12,9.86-10.6-.44-10.6-.44-3.38,5.74-4.41,7.65,1,13.39-.45,18.54-4.85-.44-11.33-8.53-9.42-14.72-9.12-16.93,5.44-7.36,6.33-9.27,1.32-2.8.88-4.56-5.59-9-5.59-18.25,7.35-18.1,17.07-18.84A35.63,35.63,0,0,1,171.3,191.36Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 163.619px 229.264px;"
id="eldbmv6ura7gm" class="animable"></path>
<path
d="M173.06,198.07c3.54-1.74,6.05-1.69,7.69-1.2a20.9,20.9,0,0,0-9.45-5.51,35.63,35.63,0,0,0-11.93-1.24c-9.72.74-17.07,9.57-17.07,18.84s5.15,16.48,5.59,18.25A4.45,4.45,0,0,1,148,229c7,1.39,9.29-2.11,9.29-2.11a6,6,0,0,1-4.56-1.32c-2.07-1.77-2.07-8.54.44-11.63s5,1.18,5,3.68,1.18,4.56,2.36,4.27.88-3.09,1.32-4.86,5.59-4.41,6.77-5.88-.59-2.8-2.5-5S165.84,201.6,173.06,198.07Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 161.525px 209.685px;"
id="el9rsj56r0fs5" class="animable"></path>
<path d="M157,227.35s0,4.13,2.51,6.77"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 158.255px 230.735px;"
id="el2mvbojkqa2d" class="animable"></path>
<path d="M179.92,219.9a8,8,0,0,0-3.95-.59"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 177.945px 219.583px;"
id="elb9xts2hy19s" class="animable"></path>
<path d="M182.09,216.35s-2.17-3.75-6.32-.79"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 178.93px 215.386px;"
id="elvbfk4dmkbu" class="animable"></path>
<path d="M177,232.93a4,4,0,0,1-4.15-2.76"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 174.925px 231.557px;"
id="el5gw1bx8eath" class="animable"></path>
<path
d="M148.45,275.63l-1.88-4c-12.09.21-19.17,4.72-23.17,9a28.7,28.7,0,0,0,1.62,4.15C128.17,280.69,134.92,275.34,148.45,275.63Z"
style="fill: rgb(38, 50, 56); transform-origin: 135.925px 278.205px;" id="elrzruxvp0u3r"
class="animable"></path>
<path
d="M152.64,284.42l-1.88-3.94c-11.23.6-18.78,4.74-23.41,8.54.7,1.16,1.45,2.3,2.2,3.41C133.82,288.83,141.25,284.63,152.64,284.42Z"
style="fill: rgb(38, 50, 56); transform-origin: 139.995px 286.455px;" id="el0q45jvxjdr6"
class="animable"></path>
<path
d="M282.81,311.14c1.26,3.77,2.1,17.18,2.1,24.31,0,5.94-3.8,49.14-5.06,63.23h56.82c.68-13.75,2.71-55.07,2.71-60.3,0-6.29-2.1-32.06.63-41.07s5.86-32.68,1-40-23-11.52-28.49-13.41-13.62-2.93-17.6-1c0,0-10.89,6.08-17.6,12.36s-9.63,15.93-8.38,23.68S281.55,307.37,282.81,311.14Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 306.104px 320.275px;"
id="elcbri6geuh5u" class="animable"></path>
<path
d="M332.18,250.71a76.91,76.91,0,0,0-7.51-3,165.29,165.29,0,0,1-42.53,61.82c.31.69.54,1.25.67,1.63a42.26,42.26,0,0,1,1.22,7.48A171.21,171.21,0,0,0,332.18,250.71Z"
style="fill: rgb(38, 50, 56); transform-origin: 307.16px 283.175px;" id="elsk48y69tzxj"
class="animable"></path>
<path
d="M343.26,278a64.42,64.42,0,0,0-.28-15c-11.67,19.71-31.85,49.77-58.09,73.3-.07,2.07-.33,6.11-.72,11.23C309.71,326.39,329.91,299.06,343.26,278Z"
style="fill: rgb(38, 50, 56); transform-origin: 313.87px 305.265px;" id="elygmvr6b0vj" class="animable">
</path>
<path
d="M336.67,398.68c.48-9.79,1.65-33.54,2.28-48.31-27.65,5.29-47.09.26-54.81-2.45-1.18,15.57-3.39,40.65-4.29,50.76Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 309.4px 373.3px;"
id="eltoawycr83qc" class="animable"></path>
<ellipse cx="302.08" cy="254.55" rx="13.74" ry="13.29"
style="fill: rgb(87, 87, 205); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 302.08px 254.55px;"
id="ellwi14ena5nj" class="animable"></ellipse>
<path
d="M289.52,237.81s2.3,8.17,2.3,13,5.24,15.93,13.83,10.9,4.19-16.55,2.72-20.12a58.93,58.93,0,0,1-2.51-8.38s-2.73,5-8,5.24A30.81,30.81,0,0,1,289.52,237.81Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 300.164px 248.1px;"
id="elxv5e0cdeimn" class="animable"></path>
<path d="M275.35,208.15s-1.45,3.61.36,6.5S280,221.5,280,221.5l-.36-15.87S276.07,202.74,275.35,208.15Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 277.4px 213.179px;"
id="elahi518ha78g" class="animable"></path>
<path d="M280,217.89s-2.89,1.09-1.45,5.77,3.61,3.25,3.61,3.25Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 280.154px 222.503px;"
id="elz6k9tkuavt" class="animable"></path>
<path
d="M277.36,209.74s2.52,13,4,19.48,9.43,12.36,13.62,13.62,9.64-3.35,10.9-6.07,1.88-8.8,1.88-8.8,4.61-1.89,5-6.71-.84-6.28-3.35-6.91l-1.89-.84s1.05-7.75-1.67-12.57-12.36,1.47-17.39,2.93S276.73,204.92,277.36,209.74Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 295.075px 221.103px;"
id="el34wajzkmz9l" class="animable"></path>
<path d="M289.52,219.17s-1,7.54.41,8.17,4.19-.84,4.82-1.05"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 291.963px 223.333px;"
id="elz31x22boby" class="animable"></path>
<path d="M293.5,232s5.86.84,8.17-5.87"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 297.585px 229.082px;"
id="elyg9sk93hs7" class="animable"></path>
<path d="M282.39,217.49a4.63,4.63,0,0,1,4.4-2.09"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 284.59px 216.431px;"
id="elqx6e0i73nx" class="animable"></path>
<path d="M292.45,214.35s4.19-2.1,6.7.21"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 295.8px 214.018px;"
id="elimo9azw94xq" class="animable"></path>
<g id="el0iegqqjxskzk">
<ellipse cx="285.95" cy="220.84" rx="1.05" ry="2.1"
style="fill: rgb(38, 50, 56); transform-origin: 285.95px 220.84px; transform: rotate(-9.86deg);"
class="animable"></ellipse>
</g>
<g id="elf3pl54k85l6">
<ellipse cx="295.17" cy="218.96" rx="1.05" ry="2.1"
style="fill: rgb(38, 50, 56); transform-origin: 295.17px 218.96px; transform: rotate(-9.86deg);"
class="animable"></ellipse>
</g>
<path
d="M301.25,204.08A83.13,83.13,0,0,1,283.86,210c-9.22,1.88-13.41-.21-13-4.82s12.36-14.67,23.25-14.67,14.67,5,15.3,10.27a90.12,90.12,0,0,1,0,13.62l-1.89,2.72S308,215,305,213.3,299.78,208.48,301.25,204.08Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 290.25px 203.815px;"
id="el3756t3isn64" class="animable"></path>
<path
d="M359.56,219.06c2.05,1.57-.36,8.13,6.4,13.39,15.56,12.1,24.56,20.29,26.22,38.27,1.82,19.6-8.71,27.22-5.44,33.75s7.62,14.15.72,20-18.14,10.89-27.57-2.9-14.52-44.27-18.51-61-10.52-24.67-9.44-31.93c1.06-7,6.77-12,13.6-13.21A17.51,17.51,0,0,1,359.56,219.06Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 362.107px 272.788px;"
id="elwc7f9srmy1" class="animable"></path>
<path
d="M340.82,288.73,311.74,310s-46.57,16.64-49.31,17.49-15.8,3.16-18.54,4.63-8,11.17-8.85,13.49a1.71,1.71,0,0,0,2.32,2.32c.63-.64,6.74-6.54,8.64-6.75s3.58-.42,3.58-.42-4.85,4.22-5.06,5.48.85.84,2.11.21,6.11-2.32,8-5.69,3.58-5.27,6.74-6.53,44.4-10.2,51.78-11.46,33.93-17.21,35.2-17.42S344.83,288.73,340.82,288.73Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 291.695px 318.434px;"
id="eldyz2q2u6mok" class="animable"></path>
<path
d="M335.14,315.93c.26.78-.52,11.75-1.05,30.82-.4,14.63-3.87,40.63-5.47,51.93h55.59c.4-11.46.9-37.67-2.32-48.54-4.18-14.1-8.88-17-10.44-23.24s-3.92-40.75-7.84-53.81-15.67-20.9-17.5-23.77-7.58-19.59-7.58-19.59l-9.92,8.36s7.31,11.75,8.36,15.41-7.06,12.27-11.23,21.16-5,15.93-1.31,21.41S334.88,315.14,335.14,315.93Z"
style="fill: rgb(87, 87, 205); transform-origin: 353.293px 314.205px;" id="elm83f52k0x0p"
class="animable"></path>
<g style="clip-path: url("#freepik--clip-path-5--inject-13"); transform-origin: 353.295px 336.365px;"
id="ely6z25sdppo" class="animable">
<path
d="M343.64,369.6l9.11,2,9.11-2,9.11,2,9.11-2,4.22.92-.09-2.06-4.13-.91-9.11,2-9.11-2-9.11,2-9.11-2-9.1,2-2.19-.48c-.07.67-.14,1.33-.22,2l2.41.53Z"
style="fill: rgb(255, 255, 255); transform-origin: 358.215px 369.575px;" id="elz4c28ar6c4"
class="animable"></path>
<path
d="M353.7,301.16l-9.11,2-9.11-2-7.12,1.56,1,1.83,6.13-1.34,9.11,2,9.11-2,9.11,2,5.76-1.27c-.08-.66-.15-1.33-.23-2l-5.53,1.22Z"
style="fill: rgb(255, 255, 255); transform-origin: 348.47px 303.185px;" id="eljb4ke0z6okq"
class="animable"></path>
<path
d="M343.64,384.83l9.11,2,9.11-2,9.11,2,9.11-2,4.41,1c0-.67,0-1.35,0-2l-4.42-1-9.11,2-9.11-2-9.11,2-9.11-2-9.1,2-3.94-.87c-.08.68-.17,1.34-.25,2l4.19.92Z"
style="fill: rgb(255, 255, 255); transform-origin: 357.415px 384.855px;" id="el18oz0uz8o78"
class="animable"></path>
<path
d="M384.41,391.36l-4.33-.95-9.11,2-9.11-2-9.11,2-9.11-2-9.1,2-4.91-1.08c-.09.68-.18,1.35-.26,2l5.17,1.13,9.1-2,9.11,2,9.11-2,9.11,2,9.11-2,4.29.95C384.38,392.74,384.4,392.06,384.41,391.36Z"
style="fill: rgb(255, 255, 255); transform-origin: 356.89px 392.435px;" id="elzqzuqkqsswr"
class="animable"></path>
<path
d="M323.07,281.63l3.3.72,9.11-2,9.11,2,9.11-2,9.11,2,2.73-.6c-.12-.67-.24-1.33-.36-2l-2.37.52-9.11-2-9.11,2-9.11-2-9.11,2-2.7-.59Q323.34,280.69,323.07,281.63Z"
style="fill: rgb(255, 255, 255); transform-origin: 344.305px 280.31px;" id="els3n9e1vdjxh"
class="animable"></path>
<path
d="M353.7,285.92l-9.11,2-9.11-2-9.11,2-4.24-.93a17.52,17.52,0,0,0,0,2.05l4.24.93,9.11-2,9.11,2,9.11-2,9.11,2,3.9-.86c-.1-.67-.19-1.33-.29-2l-3.61.79Z"
style="fill: rgb(255, 255, 255); transform-origin: 344.405px 287.945px;" id="el44147k218xf"
class="animable"></path>
<path
d="M353.7,293.54l-9.11,2-9.11-2-9.11,2-2.6-.57c.2.37.42.74.66,1.1s.53.81.81,1.27l1.13.25,9.11-2,9.11,2,9.11-2,9.11,2,4.88-1.07c-.08-.67-.17-1.33-.25-2l-4.63,1Z"
style="fill: rgb(255, 255, 255); transform-origin: 345.73px 295.565px;" id="el14ybmldzqc3"
class="animable"></path>
<path
d="M343.64,377.22l9.11,2,9.11-2,9.11,2,9.11-2,4.4,1,0-2.05-4.37-1-9.11,2-9.11-2-9.11,2-9.11-2-9.1,2-3-.67-.24,2,3.27.72Z"
style="fill: rgb(255, 255, 255); transform-origin: 357.905px 377.195px;" id="elh2zu8og7gdj"
class="animable"></path>
</g>
<path
d="M335.14,315.93c.26.78-.52,11.75-1.05,30.82-.4,14.63-3.87,40.63-5.47,51.93h55.59c.4-11.46.9-37.67-2.32-48.54-4.18-14.1-8.88-17-10.44-23.24s-3.92-40.75-7.84-53.81-15.67-20.9-17.5-23.77-7.58-19.59-7.58-19.59l-9.92,8.36s7.31,11.75,8.36,15.41-7.06,12.27-11.23,21.16-5,15.93-1.31,21.41S334.88,315.14,335.14,315.93Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 353.293px 314.205px;"
id="el0nfrjva2h1ue" class="animable"></path>
<path d="M328.6,299.06s3.36,6.73,14.58,4.11"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 335.89px 301.418px;"
id="elxt7xyftrqzp" class="animable"></path>
<path d="M359.25,342.42s-16.82,20.56-24.3,37"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 347.1px 360.92px;"
id="eldipzyzra7p" class="animable"></path>
<path d="M341.31,359.25s-7.11,13.08-9,21.3"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 336.81px 369.9px;"
id="elh0ezyv9neu" class="animable"></path>
<path
d="M331.81,272.63c5.43-3,12.36-16,15.38-18.4l2.06-1.65a23.13,23.13,0,0,1-3.14-3.26c-1.83-2.87-7.58-19.59-7.58-19.59l-9.92,8.36s7.31,11.75,8.36,15.41c.92,3.23-5.29,10.34-9.63,18.07C327.85,273,329.05,274.16,331.81,272.63Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 338.295px 251.541px;"
id="el4eelr2l6275" class="animable"></path>
<path
d="M319.85,209.62a21.64,21.64,0,0,0-1.7,8.68c.18,2.64.75,4.73-.31,7.34-.62,1.5-2.72,3.41-2.43,5.14.26,1.56,4.18,2.09,4.18,2.09s3.92,12.27,6,12.53,6.79-1,12.79-6-1.3-23-6.53-27.69S322.46,206.48,319.85,209.62Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 328.008px 226.539px;"
id="el701zaxe12qa" class="animable"></path>
<ellipse cx="321.63" cy="224.07" rx="0.68" ry="1.92"
style="fill: rgb(38, 50, 56); transform-origin: 321.63px 224.07px;" id="elb68kft8v0n" class="animable">
</ellipse>
<path d="M319.82,219.66s.68-2.72,3.4-.68"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 321.52px 218.941px;"
id="el4y8xmg0zc2w" class="animable"></path>
<path d="M321.18,235.5s1.81.46,3.85-2"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 323.105px 234.517px;"
id="el6ol0x685pdg" class="animable"></path>
<path
d="M325.6,195.77s-9.67.27-11.24,6.53,5.49,11.76,10.45,14.37,9.4,6.79,9.4,11.23.27,9.67,3.92,14.37,12,8.62,18.55,8.36S356.16,235,359.81,224s-1-21.94-8.36-26.64S325.6,195.77,325.6,195.77Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 337.609px 222.702px;"
id="el8hv3xfanctb" class="animable"></path>
<path d="M384.64,290.61a22.2,22.2,0,0,1-.64,4.06"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 384.32px 292.64px;"
id="elmrcaslae6u" class="animable"></path>
<path
d="M323.38,212c1.8,3,5.21,6.2,11.62,8,14,4,19.33,13.67,19.33,22s.67,14.33,14,21A29.67,29.67,0,0,1,384,283"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 353.69px 247.5px;"
id="ely3c1im5bin" class="animable"></path>
<path d="M321.33,205.33a9.29,9.29,0,0,0,.17,1.73"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 321.415px 206.195px;"
id="elxhymxqk0yjp" class="animable"></path>
<path d="M340,205.33s16.67,8.34,16.33,19.67.67,22,11,28.33,21,10.34,24.67,23"
style="fill: none; stroke: rgb(255, 255, 255); stroke-linecap: round; stroke-linejoin: round; transform-origin: 366px 240.83px;"
id="el5dcxvuj9oke" class="animable"></path>
<path
d="M349.3,266s-4.43,1.68-6.74,10.32,7.16,23.81,8.64,30.56,2.95,17.06,2.95,17.06-33.09,27-37.93,31.19-7.38,6.95-7.38,6.95-12,10.54-13.06,12.65-4,13.06-2.95,13.48,2.95-4.21,2.95-5.05,2.1-5.48,2.1-5.48S296.2,388.4,296.2,389s1.68,0,1.89-.85,2.53-9.69,2.53-9.69-1.26,9.9-.42,11,2.32-6.32,2.32-6.32l1.68-5.9s-.42,10.32.43,10.74,2.74-10.11,2.74-10.11,3.79-7.59,5.26-10.12a17.1,17.1,0,0,0,1.9-4.42s19.6-10.75,31.82-16.65,22.55-16.86,23.81-18.75-1.48-28.45-3.58-39.83S360.05,263,349.3,266Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 331.543px 327.576px;"
id="el0hiuknh5phn8" class="animable"></path>
<path
d="M280.84,252.42s-7.54,5.13-13.57,10-5.13,14.48-5.13,16.59-.3,11.76-.3,11.76l-4.53,9.65s-6.93,6.34-8.44,7.85-10.25,18.69-10.25,18.69l-2.11,3L248,331.44a98.88,98.88,0,0,1,14.17-13C269.68,313,276,298,276.31,296.15A105.78,105.78,0,0,0,279,280.77"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 258.675px 291.93px;"
id="el2y2foihp888" class="animable"></path>
<path
d="M277,292.93c-5.07-8.32-12-7.24-15.08-6.2-.07,2.2-.12,4-.12,4l-4.53,9.65s-6.93,6.34-8.44,7.85-10.25,18.69-10.25,18.69l-2.11,3L248,331.44a98.88,98.88,0,0,1,14.17-13C269.68,313,276,298,276.31,296.15,276.42,295.54,276.7,294.42,277,292.93Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 256.735px 308.733px;"
id="elho5gkatsr2d" class="animable"></path>
<path
d="M242.92,323s-7.49,6.12-9,8.06-2.69,13.35-2.09,14.18,4.79,3.06,6.59,1.11S246.81,335,246.81,335s-5,6.76-1.43,6.38S251,335.5,253.1,333s1.8-2.78,0-6.39L251.31,323"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 243.118px 335.064px;"
id="ellhjbotipwz" class="animable"></path>
<path d="M231.84,345.23s3.81-13,5.33-14"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 234.505px 338.23px;"
id="elsj1bvwq57jp" class="animable"></path>
<path d="M233.63,346.18s4.42-12.22,6.7-14.75"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 236.98px 338.805px;"
id="elc2yf6zfupmp" class="animable"></path>
<path d="M236,347.05s4.79-12,7.93-14.91"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 239.965px 339.595px;"
id="el1wwaf8gmxif" class="animable"></path>
<path d="M246.81,335s2.55-2.26,2.94-3.62"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 248.28px 333.19px;"
id="elbmt3lbtonzc" class="animable"></path>
</g>
<g id="freepik--Desk--inject-13" class="animable" style="transform-origin: 249.38px 398.68px;">
<line x1="62.26" y1="398.68" x2="436.5" y2="398.68"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 249.38px 398.68px;"
id="elb268muwij94" class="animable"></line>
</g>
<defs>
<filter id="active" height="200%">
<feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>
<feFlood flood-color="#32DFEC" flood-opacity="1" result="PINK"></feFlood>
<feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>
<feMerge>
<feMergeNode in="OUTLINE"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
</filter>
<filter id="hover" height="200%">
<feMorphology in="SourceAlpha" result="DILATED" operator="dilate" radius="2"></feMorphology>
<feFlood flood-color="#ff0000" flood-opacity="0.5" result="PINK"></feFlood>
<feComposite in="PINK" in2="DILATED" operator="in" result="OUTLINE"></feComposite>
<feMerge>
<feMergeNode in="OUTLINE"></feMergeNode>
<feMergeNode in="SourceGraphic"></feMergeNode>
</feMerge>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 ">
</feColorMatrix>
</filter>
</defs>
<defs>
<clipPath id="freepik--clip-path--inject-13">
<path
d="M168.05,331.43s8,17.76,9.91,21.34,4.13,13.77,4.4,19.82,0,7.3-1.37,7.16-1.93-7.71-1.93-8.95v-1.92s-.69,7.15-1.79,8.53-2.62,2.89-2.75,2.07.27-2.21.82-4.27a16.29,16.29,0,0,0,.28-4.82s-.83,3.85-2.75,5.23-4,1.93-3.31.83,2.48-2.34,2.89-3.72a17.32,17.32,0,0,0,.42-3.85s-2.62,4.26-3.72,4.95-1.1-.82-.41-1.51,2.2-5.37,2.2-5.37-.42-.28-2.34-4.54-3-11.71-3.58-14.6-1.65-6.74-1.65-6.74l-10.6-17.76s-.83-4.27,3.16-5S168.05,331.43,168.05,331.43Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round"></path>
</clipPath>
<clipPath id="freepik--clip-path-2--inject-13">
<path
d="M178,358s1.38,6.75,1.24,9.77.55,4.55-.42,4.55-1.23-.69-2.2-3.72a35.52,35.52,0,0,1-1.24-6.88s-3.44,0-4.68-5.1"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round"></path>
</clipPath>
<clipPath id="freepik--clip-path-3--inject-13">
<path
d="M239,333.22c-1.09,0-7.89,0-12-1.09s-23.49-6.51-34.64-10.59-24.15-8.46-24.15-8.46a39.41,39.41,0,0,1-4.63-6.53c-1.23-2-4.45-8.53-7.82-15.48-10.85,2.84-16.31,8-19,12a261.84,261.84,0,0,0,18.39,23.36c3.81,4.35,13.33,5.44,21.77,6.53s44.09,3.54,44.09,3.54a45,45,0,0,0,9.8,4.35c4.35,1.09,6.8,1.36,9.79.27s9.26-1.63,11.16-2.17,3-1.64,2.18-2.18S240.13,333.22,239,333.22Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round"></path>
</clipPath>
<clipPath id="freepik--clip-path-4--inject-13">
<path
d="M171.3,191.36a20.67,20.67,0,0,1,11.12,7.42,19.13,19.13,0,0,1,3.73,8.26c1.33,8.1-3.23,10.6-1.76,14.28s2.94,5.59,1.76,7.36-4.85,2.06-5.44,2.21-1.77,6.91-4.12,9.86-10.6-.44-10.6-.44-3.38,5.74-4.41,7.65,1,13.39-.45,18.54-4.85-.44-11.33-8.53-9.42-14.72-9.12-16.93,5.44-7.36,6.33-9.27,1.32-2.8.88-4.56-5.59-9-5.59-18.25,7.35-18.1,17.07-18.84A35.63,35.63,0,0,1,171.3,191.36Z"
style="fill:#fff;stroke:#263238;stroke-linecap:round;stroke-linejoin:round"></path>
</clipPath>
<clipPath id="freepik--clip-path-5--inject-13">
<path
d="M335.14,315.93c.26.78-.52,11.75-1.05,30.82-.4,14.63-3.87,40.63-5.47,51.93h55.59c.4-11.46.9-37.67-2.32-48.54-4.18-14.1-8.88-17-10.44-23.24s-3.92-40.75-7.84-53.81-15.67-20.9-17.5-23.77-7.58-19.59-7.58-19.59l-9.92,8.36s7.31,11.75,8.36,15.41-7.06,12.27-11.23,21.16-5,15.93-1.31,21.41S334.88,315.14,335.14,315.93Z"
style="fill:#5757CD;stroke:#263238;stroke-linecap:round;stroke-linejoin:round"></path>
</clipPath>
</defs>
</svg>
</div>
</div>
</div>
</header>
<!-- ============ END OF HEADER =============== -->
<section class="categories">
<div class="container categories__container reveal">
<div class="categories__left">
<h1>Our Aim</h1>
<p>
At TechBrewers, we ignite the spark of innovation and creativity by fostering a dynamic community of tech
enthusiasts. Join us to embark on a journey of learning and growth, as we push the boundaries of what's
possible in the world of Tech and Community.
</p>
</div>
<div class="categories__right">
<article class="category reveal">
<svg class="animated" id="freepik_stories-typing" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"
version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs">
<style>
svg#freepik_stories-typing:not(.animated) .animable {
opacity: 0;
}
svg#freepik_stories-typing.animated #freepik--Plant--inject-1--inject-2 {
animation: 1.5s Infinite linear wind;
animation-delay: 0s;
}
svg#freepik_stories-typing.animated #freepik--Character--inject-1--inject-2 {
animation: 1.5s Infinite linear shake;
animation-delay: 0s;
}
@keyframes wind {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(1deg);
}
75% {
transform: rotate(-1deg);
}
}
@keyframes shake {
10%,
90% {
transform: translate3d(-1px, 0, 0);
}
20%,
80% {
transform: translate3d(2px, 0, 0);
}
30%,
50%,
70% {
transform: translate3d(-4px, 0, 0);
}
40%,
60% {
transform: translate3d(4px, 0, 0);
}
}
</style><!--Typing-->
<g id="freepik--background-simple--inject-1--inject-2" class="animable"
style="transform-origin: 251.041px 240.936px;">
<path
d="M422.41,180c2.27-23.46,7.7-45.67-1.9-68.23C402.89,70.37,349.74,48.39,308.44,68,287.32,78,269.26,92.63,246,98,183.22,112.49,86.32,35.29,52.15,125.17c-11.73,30.84-7,71.48,14.21,97.26,6.81,8.27,15.13,15.47,20.17,24.93C100.32,273.25,80.8,301.7,72,325.85c-20.9,57.07,57.9,88.65,100.67,94.47C243.37,430,301.69,349,372,382c49,23,92-33,83-89-5.89-36.66-35.71-71.75-32.92-109.11C422.18,182.6,422.29,181.31,422.41,180Z"
style="fill: #5757CD; transform-origin: 251.041px 240.936px;" id="el7j8podlrj1t" class="animable">
</path>
<g id="elrwo4b52vw8">
<path
d="M422.41,180c2.27-23.46,7.7-45.67-1.9-68.23C402.89,70.37,349.74,48.39,308.44,68,287.32,78,269.26,92.63,246,98,183.22,112.49,86.32,35.29,52.15,125.17c-11.73,30.84-7,71.48,14.21,97.26,6.81,8.27,15.13,15.47,20.17,24.93C100.32,273.25,80.8,301.7,72,325.85c-20.9,57.07,57.9,88.65,100.67,94.47C243.37,430,301.69,349,372,382c49,23,92-33,83-89-5.89-36.66-35.71-71.75-32.92-109.11C422.18,182.6,422.29,181.31,422.41,180Z"
style="fill: rgb(255, 255, 255); opacity: 0.7; transform-origin: 251.041px 240.936px;"
class="animable" id="elsbxcrgcwdaf"></path>
</g>
</g>
<g id="freepik--Plant--inject-1--inject-2" class="animable" style="transform-origin: 80.2153px 147.3px;">
<circle cx="85.77" cy="160.73" r="34.53"
style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 85.77px 160.73px;"
id="elztohrteh5mr" class="animable"></circle>
<circle cx="83.2" cy="157.3" r="34.53"
style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.2px 157.3px;"
id="eltg15gm66ut" class="animable"></circle>
<circle cx="83.2" cy="157.3" r="31.1"
style="fill: rgb(46, 53, 58); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.2px 157.3px;"
id="el23iglsdi7rw" class="animable"></circle>
<path
d="M79.55,133.92s-3.43-8.58-9.43-14.58-30.46-9.87-30.46-9.87a89.68,89.68,0,0,1,10.73,12.44c5.57,7.72,24,25.31,24,25.31s-9-7.72-17.16-8.58-28.74,3.43-30,3.43,7.72,3.43,14.16,6.43,31.31,5.58,31.31,5.58-10.72,3-18,5.58S40.52,181.1,40.52,181.1s9.44-8.58,17.59-10.72,19.73-6,19.73-6-7.29,8.15-9,13.73-.43,18.44-.43,18.44,3.86-12,8.58-16.73S86.84,167,86.84,167a118,118,0,0,1,6.44,12c3.43,7.29,5.57,18,5.57,18s5.58-12,5.15-18-6.86-16.73-6.86-16.73,4.29-3,10.72-.43,17.59,13.3,17.59,13.3-2.58-14.16-6.87-19.73-22.73-7.3-22.73-7.3,10.3-6,16.73-7.29,15,1.72,15,1.72-9.86-13.73-17.58-14.59S90.7,139.07,90.7,139.07l3.44-17.16c.85-4.29-.86-15-.86-15s-4.72,2.57-10.3,10.72A21.36,21.36,0,0,0,79.55,133.92Z"
style="fill: #5757CD; transform-origin: 77.3453px 151.955px;" id="elfvfa05hjs7b" class="animable">
</path>
<g id="el553f89lbm1u">
<path
d="M79.55,133.92s-3.43-8.58-9.43-14.58-30.46-9.87-30.46-9.87a89.68,89.68,0,0,1,10.73,12.44c5.57,7.72,24,25.31,24,25.31s-9-7.72-17.16-8.58-28.74,3.43-30,3.43,7.72,3.43,14.16,6.43,31.31,5.58,31.31,5.58-10.72,3-18,5.58S40.52,181.1,40.52,181.1s9.44-8.58,17.59-10.72,19.73-6,19.73-6-7.29,8.15-9,13.73-.43,18.44-.43,18.44,3.86-12,8.58-16.73S86.84,167,86.84,167a118,118,0,0,1,6.44,12c3.43,7.29,5.57,18,5.57,18s5.58-12,5.15-18-6.86-16.73-6.86-16.73,4.29-3,10.72-.43,17.59,13.3,17.59,13.3-2.58-14.16-6.87-19.73-22.73-7.3-22.73-7.3,10.3-6,16.73-7.29,15,1.72,15,1.72-9.86-13.73-17.58-14.59S90.7,139.07,90.7,139.07l3.44-17.16c.85-4.29-.86-15-.86-15s-4.72,2.57-10.3,10.72A21.36,21.36,0,0,0,79.55,133.92Z"
style="opacity: 0.5; transform-origin: 77.3453px 151.955px;" class="animable" id="elwigjjvhy92k">
</path>
</g>
<path d="M88,120.86c.3-1.23.63-2.46,1-3.67"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 88.5px 119.025px;"
id="eltkwaw8cmtv9" class="animable"></path>
<path
d="M59.35,120.86c4,2.93,9,7,11.62,10.49,4.72,6.43,14.16,20.16,14.16,20.16A127.55,127.55,0,0,1,87.31,124"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 73.33px 136.185px;"
id="ellzj2a8nl119" class="animable"></path>
<path d="M53.39,116.76s1.25.8,3.12,2.09"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 54.95px 117.805px;"
id="el99b07qe8rau" class="animable"></path>
<path d="M85.13,151.51s16.3-16.3,23.16-17.59,12.87,3.86,12.87,3.86"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 103.145px 142.611px;"
id="el76ljdxe9cz7" class="animable"></path>
<path d="M56,165.14c-4,2.52-4.33,4-4.33,4"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 53.835px 167.14px;"
id="el0r7ggnxiailr" class="animable"></path>
<path d="M120.73,166.52s-2.57-6.44-11.58-9.44S86,153.65,86,153.65s-19.85,6.5-27.11,9.89"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 89.81px 160.085px;"
id="elscuzmd2a5no" class="animable"></path>
<path d="M77.32,151.2c4.8,1.4,8.67,2.45,8.67,2.45"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 81.655px 152.425px;"
id="elxommreugp5m" class="animable"></path>
<path d="M47.11,143.58c4.66.28,10.66.92,14,2.35,2.72,1.17,8.08,2.86,13.14,4.37"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 60.68px 146.94px;"
id="els3nxr7npco" class="animable"></path>
<path d="M40.52,143.36s1.57,0,3.88.09"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 42.46px 143.405px;"
id="elv9ug2mokxhd" class="animable"></path>
<path d="M85.13,156.22s-12,18-12.87,22.31a43.68,43.68,0,0,0-.86,7.72"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 78.265px 171.235px;"
id="ely2r8rp9ey7c" class="animable"></path>
<path d="M90.47,161.89c2.31,3,5.08,7,6.24,10.2a70.38,70.38,0,0,1,3,12"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 95.09px 172.99px;"
id="elchky2335upl" class="animable"></path>
<path d="M86.84,157.51s1,1.06,2.29,2.69"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 87.985px 158.855px;"
id="el6bvgsnk4bvn" class="animable"></path>
<path
d="M74.1,137.62s-2.21-9-.84-17.35,19-25.78,19-25.78a90.2,90.2,0,0,0-1.45,16.36c0,9.52-4.75,34.56-4.75,34.56s2.81-11.52,8.93-17,25.35-14,26.39-14.73-4.27,7.29-7.74,13.49S91.44,150,91.44,150s10.46-3.82,17.88-6,24,9.16,24,9.16-12.67-1.46-20.54,1.55-19.53,6.63-19.53,6.63,10.68,2.37,15.32,5.9S119.69,182,119.69,182s-10.14-7.51-16.73-8.59-15.52-4.69-15.52-4.69a120.64,120.64,0,0,0,1.78,13.5c1.47,7.93,6,17.89,6,17.89s-11.53-6.5-14.69-11.63-4.18-17.59-4.18-17.59-5.24.06-9,5.9-6.53,21.06-6.53,21.06-6.16-13-5.93-20,14.21-19.18,14.21-19.18-11.86,1.13-17.84,3.83-11.2,10.15-11.2,10.15,0-16.9,5.78-22.1,22.19-2.2,22.19-2.2l-12.8-11.93c-3.2-3-8.06-12.7-8.06-12.7s5.34-.66,14.62,2.71A21.31,21.31,0,0,1,74.1,137.62Z"
style="fill: #5757CD; transform-origin: 86.69px 147.3px;" id="eljobrdo75pkj" class="animable"></path>
<path d="M59.62,131.94c-1-.83-1.94-1.63-2.94-2.41"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 58.15px 130.735px;"
id="elenxonre4hkf" class="animable"></path>
<path
d="M82.89,115.23c-1.55,4.72-3.28,10.93-3.32,15.29-.08,8,.26,24.63.26,24.63A127.12,127.12,0,0,0,62,134.09"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 72.445px 135.19px;"
id="eljt1e5m6qbj" class="animable"></path>
<path d="M85.35,108.42s-.56,1.38-1.32,3.51"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 84.69px 110.175px;"
id="el5n92giv4zxh" class="animable"></path>
<path d="M79.83,155.15s-22.75-3.73-29.07-.77S42.56,165,42.56,165"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 61.195px 159.119px;"
id="eluy5h2yicczn" class="animable"></path>
<path d="M111.45,149.23c4.69-.26,5.81.69,5.81.69"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 114.355px 149.552px;"
id="elgc547ckvj2" class="animable"></path>
<path d="M59.67,188.11s-1.66-6.73,3.9-14.42S80.39,157.4,80.39,157.4s19.91-6.31,27.78-7.78"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 83.804px 168.865px;"
id="elb461x1faba" class="animable"></path>
<path d="M86,150.35c-3.08,3.93-5.6,7.05-5.6,7.05"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 83.2px 153.875px;"
id="elw8lqnt82ro9" class="animable"></path>
<path d="M106.09,126.54c-3.62,3-8.12,7-10,10.07-1.53,2.54-4.9,7-8.13,11.21"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 97.025px 137.18px;"
id="elgebegfzanuv" class="animable"></path>
<path d="M111.31,122.51s-1.27.92-3.1,2.34"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 109.76px 123.68px;"
id="elwwrpb37fhob" class="animable"></path>
<path d="M82.58,159s20.27,7.62,23.46,10.61a43.42,43.42,0,0,1,5.2,5.77"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 96.91px 167.19px;"
id="elu5p0g4flebl" class="animable"></path>
<path d="M81.55,166.7c-.14,3.78-.07,8.63.88,11.93A69.72,69.72,0,0,0,87,190.14"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 84.2474px 178.42px;"
id="elx4ans58951a" class="animable"></path>
<path d="M81.94,161s-.16,1.42-.28,3.52"
style="fill: none; stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.5px; transform-origin: 81.8px 162.76px;"
id="el3z76y1h9meh" class="animable"></path>
</g>
<g id="freepik--Device--inject-1--inject-2" class="animable" style="transform-origin: 253.489px 222.1px;">
<path
d="M140.83,183.43H367.5a10.67,10.67,0,0,1,10.67,10.67v147a11.67,11.67,0,0,1-11.67,11.67H141.83a11.67,11.67,0,0,1-11.67-11.67v-147a10.67,10.67,0,0,1,10.67-10.67Z"
style="fill: rgb(255, 255, 255); stroke: rgb(46, 53, 58); stroke-linecap: round; stroke-linejoin: round; transform-origin: 254.165px 268.1px;"
id="el317vfanwpgb" class="animable"></path>
<rect x="209.83" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 216.81px 204.685px;" id="el7ln3ftkqgvj"
class="animable"></rect>
<rect x="165.6" y="256.67" width="12.96" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 172.08px 263.1px;" id="elzyp79s9oig" class="animable">
</rect>
<rect x="222.76" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 229.29px 217.9px;" id="el8zflyq147cg" class="animable">
</rect>
<rect x="193.66" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 200.64px 204.685px;" id="elgok6edgzhg" class="animable">
</rect>
<rect x="238.02" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 244.55px 217.9px;" id="elbq80sn0d2go" class="animable">
</rect>
<rect x="225.99" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 232.97px 204.685px;" id="elezjhboo20k8"
class="animable"></rect>
<rect x="146.17" y="241.6" width="24.56" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 158.45px 248.03px;" id="elq2yhegqy5gl" class="animable">
</rect>
<rect x="192.23" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 198.76px 217.9px;" id="el9cggq11lutl" class="animable">
</rect>
<rect x="146.17" y="256.67" width="17.23" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 154.785px 263.1px;" id="elpzlfft1nnzf" class="animable">
</rect>
<rect x="242.16" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 249.14px 204.685px;" id="el65e7s63ummp"
class="animable"></rect>
<rect x="161.7" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 168.23px 217.9px;" id="elt70rzazybog" class="animable">
</rect>
<rect x="161.33" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 168.31px 204.685px;" id="ellb970c68voq"
class="animable"></rect>
<rect x="177.5" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 184.48px 204.685px;" id="el95teq0a3yyg"
class="animable"></rect>
<rect x="176.96" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 183.49px 217.9px;" id="elm8auvp0e8t" class="animable">
</rect>
<rect x="207.49" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 214.02px 217.9px;" id="elgv1o2h640ge" class="animable">
</rect>
<rect x="306.83" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 313.81px 204.685px;" id="el9fzqb601bza"
class="animable"></rect>
<rect x="322.99" y="200.1" width="13.96" height="9.17"
style="fill: rgb(46, 53, 58); transform-origin: 329.97px 204.685px;" id="elrwiubvn5xh7"
class="animable"></rect>
<rect x="314.35" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 320.88px 217.9px;" id="el6wktp0vg03r" class="animable">
</rect>
<rect x="329.62" y="211.47" width="13.06" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 336.15px 217.9px;" id="el5sribvv0kpu" class="animable">
</rect>
<rect x="347.6" y="256.67" width="19.23" height="12.86"
style="fill: rgb(46, 53, 58); transform-origin: 357.215px 263.1px;" id="el2cqi21lu5ou" class="animable">
</rect>
<rect x="339.16" y="200.1" width="13.96" height="9.17"