-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1568 lines (1421 loc) · 117 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="ar" dir="rtl">
<head>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="LIEL, Libya, Edu">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="logo.png">
<link rel="icon" sizes="192x192" href="logo.png">
<meta name="theme-color" content="#0284c7" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#0284c7" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="#0284c7">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.rtl.min.css">
<script src="https://cdn.jsdelivr.net/npm/typed.js@latest"></script>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<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=Almarai:wght@300;400;700&display=swap" rel="stylesheet">
<title>المبادرة الليبية للتعليم الإلكتروني</title>
<style>
html,
body {
width: 100%;
height: 100%;
max-height: 100%;
position: relative;
background-size: cover;
background-color: #f0f9ff;
font-family: 'Almarai', sans-serif;
}
</style>
</head>
<body class="container" data-bs-spy="scroll" data-bs-offset="0" tabindex="0">
<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/ar_AR/sdk.js#xfbml=1&version=v12.0"
nonce="mSInFoBU"></script>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="facebook" viewBox="0 0 16 16">
<path d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z"/>
</symbol>
<symbol id="instagram" viewBox="0 0 16 16">
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"/>
</symbol>
<symbol id="twitter" viewBox="0 0 16 16">
<path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"/>
</symbol>
<symbol id="youtube" viewBox="0 0 16 16">
<path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.007 2.007 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.007 2.007 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31.4 31.4 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.007 2.007 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A99.788 99.788 0 0 1 7.858 2h.193zM6.4 5.209v4.818l4.157-2.408L6.4 5.209z"/>
</symbol>
<symbol id="email" viewBox="0 0 16 16">
<path d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z"/>
</symbol>
</svg>
<div class="row justify-content-center ">
<div class="col d-md-none">
<div class="navbar">
<a class="navbar-brand" style="color: #0284c7" href="#">
<img src="logo.png" alt="Logo" width="70" height="70" class="">
المبادرة الليبية للتعليم الإلكتروني
</a>
</div>
</div>
<div class="col-md order-md-last SVG">
<svg class="animated" id="freepik_stories-online-learning" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 500 500">
<style>
svg#freepik_stories-online-learning.animated #freepik--background-simple--inject-1 {
animation: 0.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) zoomIn;
animation-delay: 0.1s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #freepik--book-shelf--inject-1 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight;
animation-delay: 0.3s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #freepik--Character--inject-1 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideLeft;
animation-delay: 0.3s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elp6kkz34om8e {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elbj7wef7dc9 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.014473684210526317s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eloo1m4szvrs {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.028947368421052635s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el680cmqhiaz7 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.04342105263157895s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el92d2t94cv27 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.05789473684210527s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgg2riubedac {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.07236842105263158s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el5ueul30lulc {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.0868421052631579s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el4peqy5tbsbj {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.10131578947368422s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el50gh5l36h06 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.11578947368421054s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elnvse8u7oq2 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.13026315789473686s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elw84jk49l1x {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.14473684210526316s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elqhdhv4ogufa {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.1592105263157895s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el6h9ot49ua5c {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.1736842105263158s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elcitgkvqxfmd {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.18815789473684214s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el1g1ahm38dnk {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.20263157894736844s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #els762phz1q4h {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.21710526315789477s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elvn8edfgo2pm {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.23157894736842108s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el4mbjjobv92e {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.24605263157894738s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el44audxj66nl {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.2605263157894737s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #ele8der7dhaua {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.275s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el700a32nyebl {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.2894736842105263s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elrfmssluj8tg {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3039473684210527s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elh5l1s9gni5s {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.318421052631579s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eldf0fw3j3xa {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3328947368421053s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el9bv6qfgv5f4 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3473684210526316s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el46i7ahwbowp {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3618421052631579s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eloh8htu9j8fo {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.37631578947368427s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el3cc78hp0qaf {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.3907894736842106s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elfvq72eg46xr {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.4052631578947369s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elzimp546nhwi {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.4197368421052632s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el47tdifkdwt5 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.43421052631578955s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elkijrezqkk8 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.44868421052631585s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eltokxvdq2f6 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.46315789473684216s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgy6rnpzynrk {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.47763157894736846s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el8akit4nx6fu {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.49210526315789477s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elnkwtnfupja {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.5065789473684211s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #ela4s7h9xm868 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.5210526315789474s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elqv01982zse {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.5355263157894737s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el4fcsjhc8vhd {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.55s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elk7j5dl1us6 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.5644736842105263s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elw77bbewkoe {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.5789473684210527s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elnytvjw1a4 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.593421052631579s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #ele2ma6enfiqk {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6078947368421054s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elq4mpghochuc {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6223684210526317s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elnpsgjd5rt0a {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.636842105263158s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elb9pvyujgc7 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6513157894736843s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elx3ddg9oqb8 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6657894736842106s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el7xxwv614kdq {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6802631578947369s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elb4b26tvi5 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.6947368421052632s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elmeyn6mit4d8 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7092105263157895s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elk56ah4pjzm8 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7236842105263158s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el23uqbasfm4s {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7381578947368422s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el9lauphz05pd {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7526315789473685s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #ellld4t5ikdnn {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7671052631578948s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgw37oisgs0v {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7815789473684212s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elsrr8xdz4dc {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.7960526315789475s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eldu3ntjb9f99 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8105263157894738s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elfg6kfgf0wyv {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8250000000000001s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elp35unb9kjv {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8394736842105264s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elhwlc9oytnhm {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8539473684210527s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el7cqpxfxsymf {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8684210526315791s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgdwq8vxrhg4 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8828947368421054s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eljv0xedw4ud {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.8973684210526317s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elx5blqwxldsc {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.911842105263158s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el2459keq7t9l {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.9263157894736843s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elxs8xp50e6m {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.9407894736842106s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el2bxr7osf5va {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.9552631578947369s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elbhhjmkij3ft {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.9697368421052632s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eld0w31r2a66n {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.9842105263157895s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgqfuy6o0ci9 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0.998684210526316s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elbs1f9ajfuce {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.0131578947368423s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el9u6sylyzt1p {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.0276315789473685s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eln1wb9p5uo3i {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.0421052631578949s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #elgby14vkamko {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.056578947368421s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #eld7sfxwuzylr {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.0710526315789475s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #el6l1dfn91vka {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 1.085526315789474s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #freepik--Elements--inject-2 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown, 3s Infinite linear floating;
animation-delay: 0.3s, 1.9000000000000001s;
opacity: 0
}
svg#freepik_stories-online-learning.animated #freepik--Earth--inject-2 {
animation: 1.1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown, 3s Infinite linear floating;
animation-delay: 0.3s, 2.2s;
opacity: 0
}
@keyframes slideDown {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes floating {
0% {
opacity: 1;
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0px);
}
}
@keyframes zoomIn {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideRight {
0% {
opacity: 0;
transform: translateX(30px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideLeft {
0% {
opacity: 0;
transform: translateX(-30px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}</style>
<g id="freepik--background-simple--inject-1"
style="transform-origin: 253.13880157470703px 238.16432571411133px;"
class="animable animator-active">
<path d="M209.77,428.93C90.17,408,106.17,346.13,68.53,274.71S26.44,174.22,63.72,113,181.64,17.35,256.79,68.56s130,35.33,175.46,75.22,51.56,95.57-2.33,145.18S357.24,454.71,209.77,428.93Z"
style="fill: rgb(2, 132, 199); transform-origin: 253.13880157470703px 238.16432571411133px;"
id="elkym6mbdihuc" class="animable"></path>
<g id="elkek02jyvysl">
<path d="M209.77,428.93C90.17,408,106.17,346.13,68.53,274.71S26.44,174.22,63.72,113,181.64,17.35,256.79,68.56s130,35.33,175.46,75.22,51.56,95.57-2.33,145.18S357.24,454.71,209.77,428.93Z"
style="fill: rgb(255, 255, 255); opacity: 0.7000000000000001; transform-origin: 253.13880157470703px 238.16432571411133px;"
class="animable"></path>
</g>
</g>
<g id="freepik--book-shelf--inject-1" style="transform-origin: 398.17999267578125px 350.1549987792969px;"
class="animable">
<polyline points="342.06 385.62 342.06 285.94 454.3 285.94"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 398.17999267578125px 335.7799987792969px;"
id="elgy91o7mcle" class="animable"></polyline>
<polyline points="450.22 296.25 351.09 296.25 351.09 389.1"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 400.6549987792969px 342.6750030517578px;"
id="elby8d7tpokov" class="animable"></polyline>
<polyline
points="370.93 346.89 370.93 305.62 377.42 305.62 377.42 314.13 386.08 314.13 386.08 310.31 393.82 310.31 393.82 314.94 404.27 314.94 404.27 305.62 414.96 305.62 414.96 311.88 420.72 311.88 420.72 308.24 431.04 308.24 431.04 332.55"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 400.98500061035156px 326.2550048828125px;"
id="el7caj5wcug5m" class="animable"></polyline>
<line x1="420.72" y1="311.88" x2="420.72" y2="346.89"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 420.7200012207031px 329.385009765625px;"
id="el06dg6bez85e" class="animable"></line>
<line x1="415.79" y1="317.12" x2="415.79" y2="323.37"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 415.7900085449219px 320.2449951171875px;"
id="elzh8tgqm4w9d" class="animable"></line>
<line x1="415.79" y1="327.85" x2="415.79" y2="353.52"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 415.7900085449219px 340.68499755859375px;"
id="elaw2933retk" class="animable"></line>
<line x1="404.27" y1="314.95" x2="404.27" y2="338.01"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 404.2699890136719px 326.4800109863281px;"
id="el6olng4gxty4" class="animable"></line>
<line x1="404.67" y1="345.61" x2="404.67" y2="352.79"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 404.6700134277344px 349.1999969482422px;"
id="elfyiu0ifa2c" class="animable"></line>
<line x1="393.82" y1="314.95" x2="393.82" y2="327.85"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 393.82000732421875px 321.40000915527344px;"
id="elj8waww5ih7" class="animable"></line>
<line x1="393.82" y1="335.78" x2="393.82" y2="362.96"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 393.82000732421875px 349.3699951171875px;"
id="el57xgackj902" class="animable"></line>
<line x1="386.08" y1="314.13" x2="386.08" y2="346.17"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 386.0799865722656px 330.15000915527344px;"
id="elqf7zqxoj3q" class="animable"></line>
<line x1="377.42" y1="314.13" x2="377.42" y2="326.25"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 377.4200134277344px 320.19000244140625px;"
id="el7p2qdnvivs5" class="animable"></line>
<line x1="377.42" y1="332.55" x2="377.42" y2="361.36"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 377.4200134277344px 346.9549865722656px;"
id="elnj3iy0i0aih" class="animable"></line>
<line x1="370.93" y1="352.79" x2="370.93" y2="365.8"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 370.92999267578125px 359.2949981689453px;"
id="elllk9eekbr0d" class="animable"></line>
<line x1="357.54" y1="365.8" x2="436.32" y2="365.8"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 396.9300079345703px 365.79998779296875px;"
id="ele50ypcudc5j" class="animable"></line>
<line x1="420.72" y1="365.8" x2="420.72" y2="357.47"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 420.7200012207031px 361.63499450683594px;"
id="elm0j9oqkcqea" class="animable"></line>
<line x1="404.67" y1="359.67" x2="404.67" y2="365.41"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 404.6700134277344px 362.5400085449219px;"
id="el0b4e91fciyio" class="animable"></line>
<line x1="431.92" y1="318.93" x2="439.56" y2="318.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 435.74000549316406px 318.92999267578125px;"
id="elh7bovrwwt8a" class="animable"></line>
<line x1="357.84" y1="373.06" x2="431.04" y2="373.06"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 394.44000244140625px 373.05999755859375px;"
id="elhrembyfaebi" class="animable"></line>
<polyline
points="373.55 394.23 373.55 384.53 387.11 384.53 387.11 390.78 398.02 390.78 398.02 402.97 404.27 402.97 404.27 384.9 418.12 384.9 418.12 389.1 426.63 389.1"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 400.0899963378906px 393.75px;"
id="el0b2t4c28b6" class="animable"></polyline>
<line x1="418.12" y1="389.1" x2="418.12" y2="399.5"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 418.1199951171875px 394.3000030517578px;"
id="elz538fy7cmgj" class="animable"></line>
<line x1="404.67" y1="407.37" x2="404.67" y2="414.37"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 404.6700134277344px 410.8699951171875px;"
id="elb208ys716wl" class="animable"></line>
<line x1="398.02" y1="402.97" x2="398.02" y2="412.19"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 398.0199890136719px 407.5800018310547px;"
id="elhdowqm4la2" class="animable"></line>
<line x1="387.11" y1="390.78" x2="387.11" y2="396.07"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 387.1099853515625px 393.4250030517578px;"
id="el44vuy1kqxsh" class="animable"></line>
</g>
<g id="freepik--Elements--inject-2" style="transform-origin: 256.4199905395508px 201.57208251953125px;"
class="animable">
<path d="M46.07,158.11c1.18,4.68.6-3.93,2.91-14.45s6.28-6.26,6.28-6.26"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 50.66499900817871px 147.9817295074463px;"
id="elp6kkz34om8e" class="animable"></path>
<line x1="45.35" y1="147.36" x2="52.6" y2="144.39"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 48.974998474121094px 145.875px;"
id="elbj7wef7dc9" class="animable"></line>
<path d="M58.59,140.82s-4.33,9,2.2,12.78"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 58.98631703853607px 147.2100067138672px;"
id="eloo1m4szvrs" class="animable"></path>
<path d="M64.74,138.3s7.16,4,2.68,12.58"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 66.81707787513733px 144.59000396728516px;"
id="el680cmqhiaz7" class="animable"></path>
<line x1="59.84" y1="143.86" x2="64.97" y2="147.6"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 62.40500068664551px 145.7300033569336px;"
id="el92d2t94cv27" class="animable"></line>
<line x1="63.86" y1="142.21" x2="59.85" y2="148.6"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 61.85499954223633px 145.4050064086914px;"
id="elgg2riubedac" class="animable"></line>
<g id="el5ueul30lulc">
<circle cx="76.13" cy="236.2" r="10.91"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 76.13px 236.2px; transform: rotate(-80.68deg);"
class="animable"></circle>
</g>
<g id="el4peqy5tbsbj">
<circle cx="90.95" cy="240.47" r="12.1"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 90.95px 240.47px; transform: rotate(-11.59deg);"
class="animable"></circle>
</g>
<line x1="86.07" y1="231.71" x2="81.05" y2="233.5"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.56000137329102px 232.6050033569336px;"
id="el50gh5l36h06" class="animable"></line>
<line x1="86.77" y1="233.78" x2="79.55" y2="236.39"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.15999984741211px 235.08499908447266px;"
id="elnvse8u7oq2" class="animable"></line>
<line x1="87.04" y1="236.28" x2="78.98" y2="239.38"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 83.01000213623047px 237.8300018310547px;"
id="elw84jk49l1x" class="animable"></line>
<line x1="86.47" y1="239.69" x2="79.12" y2="243.05"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 82.79500198364258px 241.37000274658203px;"
id="elqhdhv4ogufa" class="animable"></line>
<line x1="85.17" y1="242.31" x2="79.59" y2="244.63"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 82.37999725341797px 243.47000122070312px;"
id="el6h9ot49ua5c" class="animable"></line>
<path d="M81.4,219.59c-.31-1-3.85-1.62-4,1s3.73.44,4.83-1c0,0-2,2.69-1.16,3.22"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 79.81288433074951px 220.76934504508972px;"
id="elcitgkvqxfmd" class="animable"></path>
<path d="M101,222.85l-3.14,6.53s1.57-3.27,3.25-3c2.07.37.69,3.76-1.81,2.51"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 99.98826622962952px 226.11500549316406px;"
id="el1g1ahm38dnk" class="animable"></path>
<line x1="442.71" y1="329.47" x2="447.64" y2="334.13"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 445.1750030517578px 331.8000030517578px;"
id="els762phz1q4h" class="animable"></line>
<line x1="447.64" y1="328.25" x2="443.51" y2="334.42"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 445.57501220703125px 331.3350067138672px;"
id="elvn8edfgo2pm" class="animable"></line>
<line x1="452.49" y1="330.02" x2="457.43" y2="328.18"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 454.9599914550781px 329.09999084472656px;"
id="el4mbjjobv92e" class="animable"></line>
<line x1="459.8" y1="323.04" x2="462.8" y2="325.69"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 461.29998779296875px 324.36500549316406px;"
id="el44audxj66nl" class="animable"></line>
<line x1="465.1" y1="319.85" x2="461.3" y2="332.89"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 463.1999969482422px 326.37001037597656px;"
id="ele8der7dhaua" class="animable"></line>
<polygon
points="234.97 256.22 248.24 247.09 265.81 248.32 266.91 270.6 254.01 279.82 238.09 278.66 234.97 256.22"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 250.94000244140625px 263.4550018310547px;"
id="el700a32nyebl" class="animable"></polygon>
<polyline points="238.09 278.66 250.94 269.41 266.91 270.6"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 252.5px 274.0350036621094px;"
id="elrfmssluj8tg" class="animable"></polyline>
<line x1="250.94" y1="269.41" x2="248.24" y2="247.09"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 249.59000396728516px 258.25px;"
id="elh5l1s9gni5s" class="animable"></line>
<polyline points="234.97 256.22 252.5 258.25 265.81 248.32"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 250.38999938964844px 253.28500366210938px;"
id="eldf0fw3j3xa" class="animable"></polyline>
<line x1="252.5" y1="258.25" x2="254.01" y2="279.82"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 253.25499725341797px 269.0350036621094px;"
id="el9bv6qfgv5f4" class="animable"></line>
<polygon points="389.85 181.37 383.97 199.64 402.27 197.17 389.85 181.37"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 393.1199951171875px 190.50499725341797px;"
id="el46i7ahwbowp" class="animable"></polygon>
<line x1="389.85" y1="181.37" x2="393.12" y2="198.3"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 391.48500061035156px 189.83499908447266px;"
id="eloh8htu9j8fo" class="animable"></line>
<polyline points="392.6 195.59 394.74 195.25 395.24 198.12"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 393.9199981689453px 196.68499755859375px;"
id="el3cc78hp0qaf" class="animable"></polyline>
<line x1="159.39" y1="348.56" x2="168.53" y2="353.05"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 163.95999908447266px 350.80499267578125px;"
id="elfvq72eg46xr" class="animable"></line>
<line x1="165.58" y1="345.13" x2="162.96" y2="354.68"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 164.27000427246094px 349.9049987792969px;"
id="elzimp546nhwi" class="animable"></line>
<path d="M166.85,340.47a1.38,1.38,0,0,1,2.2.29c.92,1.44-.88,4.46-.88,4.46l3.67-1.4"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 169.34500122070312px 342.63429737091064px;"
id="el47tdifkdwt5" class="animable"></path>
<path d="M231.15,34c8.73,4.91-1.27,16.91-1.27,23.91s10,6,15,8c2,0,6,0,5.89,5.08"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 240.32610034942627px 52.49500274658203px;"
id="elkijrezqkk8" class="animable"></path>
<path d="M221.42,40.37c1.52,8.27,11,5.34,16.82,7.23,10,3.25,4.45,13.57,1.47,19.81-1.79,3.72-3.57,8.94-.37,12.47"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 232.68755912780762px 60.12499809265137px;"
id="eltokxvdq2f6" class="animable"></path>
<line x1="222.7" y1="43.58" x2="233.11" y2="34.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 227.90499877929688px 39.255001068115234px;"
id="elgy6rnpzynrk" class="animable"></line>
<line x1="226.78" y1="46.16" x2="234.62" y2="39.66"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 230.6999969482422px 42.90999984741211px;"
id="el8akit4nx6fu" class="animable"></line>
<line x1="231.39" y1="52.74" x2="238.01" y2="47.54"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 234.6999969482422px 50.14000129699707px;"
id="elnkwtnfupja" class="animable"></line>
<line x1="230.02" y1="60.52" x2="242.96" y2="51.22"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 236.49000549316406px 55.8700008392334px;"
id="ela4s7h9xm868" class="animable"></line>
<line x1="234.98" y1="64.15" x2="244" y2="57.53"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 239.48999786376953px 60.84000015258789px;"
id="elqv01982zse" class="animable"></line>
<line x1="238.82" y1="78.22" x2="250.09" y2="69.04"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 244.4550018310547px 73.63000106811523px;"
id="el4fcsjhc8vhd" class="animable"></line>
<line x1="239.1" y1="71" x2="246.45" y2="65.83"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 242.7750015258789px 68.41500091552734px;"
id="elk7j5dl1us6" class="animable"></line>
<g id="elw77bbewkoe">
<circle cx="84.17" cy="334.1" r="20.94"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 84.17px 334.1px; transform: rotate(-21.8deg);"
class="animable"></circle>
</g>
<path d="M89.44,313.84c7.3-8.57,13.51-13.42,15.9-11.84,3.64,2.39-2.89,18.71-14.58,36.44S66.64,368.61,63,366.21c-2.4-1.57-.38-9.19,4.62-19.28"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 84.16980934143066px 334.1049690246582px;"
id="elnytvjw1a4" class="animable"></path>
<path d="M63.68,338.4c-10.18-2.93-16.68-6.35-16.27-9.08C48,325,65.59,324,86.6,327.15s37.53,9.12,36.9,13.42c-.45,3-9,4.37-21.15,3.91"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 85.45455551147461px 334.93785572052px;"
id="ele2ma6enfiqk" class="animable"></path>
<path d="M66.35,323.23c-7.68-13.86-11.52-24.67-8.92-26.36,3.42-2.21,16.64,12.13,29.53,32s20.56,37.83,17.15,40.05c-2.26,1.46-8.81-4.32-16.72-14.16"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 80.76989555358887px 332.89471435546875px;"
id="elq4mpghochuc" class="animable"></path>
<path d="M108.29,311.06a3.44,3.44,0,1,1-1-4.77A3.44,3.44,0,0,1,108.29,311.06Z"
style="fill: rgb(38, 50, 56); transform-origin: 105.4134259223938px 309.17317366600037px;"
id="elnpsgjd5rt0a" class="animable"></path>
<path d="M96.9,363.75a3.44,3.44,0,1,1-1-4.77A3.44,3.44,0,0,1,96.9,363.75Z"
style="fill: rgb(38, 50, 56); transform-origin: 94.02341818809509px 361.8631615638733px;"
id="elb9pvyujgc7" class="animable"></path>
<path d="M78.52,328a3.44,3.44,0,1,1-1-4.77A3.45,3.45,0,0,1,78.52,328Z"
style="fill: rgb(38, 50, 56); transform-origin: 75.64168787002563px 326.1131615638733px;"
id="elx3ddg9oqb8" class="animable"></path>
<polygon
points="297.83 178.32 309.61 178.32 315.5 168.12 309.61 157.92 297.83 157.92 291.94 168.12 297.83 178.32"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 303.7200012207031px 168.12000274658203px;"
id="el7xxwv614kdq" class="animable"></polygon>
<polyline points="296.12 200.71 290.23 190.51 278.45 190.51"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 287.2850036621094px 195.61000061035156px;"
id="elb4b26tvi5" class="animable"></polyline>
<polygon
points="280.03 168.12 291.81 168.12 297.7 157.92 291.81 147.71 280.03 147.71 274.14 157.92 280.03 168.12"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 285.9200134277344px 157.91500091552734px;"
id="elmeyn6mit4d8" class="animable"></polygon>
<polygon
points="297.83 157.92 309.61 157.92 315.5 147.71 309.61 137.51 297.83 137.51 291.94 147.71 297.83 157.92"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 303.7200012207031px 147.71499633789062px;"
id="elk56ah4pjzm8" class="animable"></polygon>
<circle cx="297.7" cy="157.92" r="1.58"
style="fill: rgb(38, 50, 56); transform-origin: 297.7px 157.92px;"
id="el23uqbasfm4s" class="animable"></circle>
<circle cx="273.1" cy="136.5" r="1.58" style="fill: rgb(38, 50, 56); transform-origin: 273.1px 136.5px;"
id="el9lauphz05pd" class="animable"></circle>
<path d="M294.54,200.71a1.58,1.58,0,1,1,1.58,1.58A1.58,1.58,0,0,1,294.54,200.71Z"
style="fill: rgb(38, 50, 56); transform-origin: 296.12001037597656px 200.71001434326172px;"
id="ellld4t5ikdnn" class="animable"></path>
<circle cx="278.45" cy="190.51" r="1.58"
style="fill: rgb(38, 50, 56); transform-origin: 278.45px 190.51px;"
id="elgw37oisgs0v" class="animable"></circle>
<path d="M326.9,148a1.59,1.59,0,1,1,1.58,1.59A1.58,1.58,0,0,1,326.9,148Z"
style="fill: rgb(38, 50, 56); transform-origin: 328.4899983406067px 148.00000524520874px;"
id="elsrr8xdz4dc" class="animable"></path>
<circle cx="290.11" cy="190.51" r="1.58"
style="fill: rgb(38, 50, 56); transform-origin: 290.11px 190.51px;"
id="eldu3ntjb9f99" class="animable"></circle>
<path d="M313.92,148a1.59,1.59,0,1,1,1.59,1.59A1.59,1.59,0,0,1,313.92,148Z"
style="fill: rgb(38, 50, 56); transform-origin: 315.510009765625px 148px;" id="elfg6kfgf0wyv"
class="animable"></path>
<path d="M296.12,178.33a1.59,1.59,0,1,1,1.58,1.58A1.59,1.59,0,0,1,296.12,178.33Z"
style="fill: rgb(38, 50, 56); transform-origin: 297.7099806070328px 178.32002544403076px;"
id="elp35unb9kjv" class="animable"></path>
<line x1="315.51" y1="147.98" x2="328.48" y2="147.98"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 321.99501037597656px 147.97999572753906px;"
id="elhwlc9oytnhm" class="animable"></line>
<line x1="297.7" y1="178.33" x2="290.11" y2="190.51"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 293.9049987792969px 184.4199981689453px;"
id="el7cqpxfxsymf" class="animable"></line>
<line x1="280.03" y1="147.71" x2="273.1" y2="136.5"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 276.56500244140625px 142.1050033569336px;"
id="elgdwq8vxrhg4" class="animable"></line>
<path d="M363.58,107.5a21.82,21.82,0,0,1,42.1.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 384.62998962402344px 100.15007877349854px;"
id="eljv0xedw4ud" class="animable"></path>
<path d="M382,135.34a21.81,21.81,0,0,1-19.33-21.67"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 372.33497619628906px 124.5049934387207px;"
id="elx5blqwxldsc" class="animable"></path>
<path d="M406.31,113.67a21.81,21.81,0,0,1-21.8,21.81"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 395.4099884033203px 124.57499694824219px;"
id="el2459keq7t9l" class="animable"></path>
<path d="M407.55,99.84c6.82-.87,11.39-.4,12.1,1.64,1.41,4.06-13.18,12.81-32.59,19.55s-36.28,8.9-37.7,4.83c-.75-2.17,3.07-5.68,9.75-9.51"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 384.5054244995117px 113.66983699798584px;"
id="elxs8xp50e6m" class="animable"></path>
<polygon
points="290.11 84.9 292.2 89.13 296.87 89.81 293.49 93.11 294.29 97.76 290.11 95.56 285.93 97.76 286.73 93.11 283.35 89.81 288.02 89.13 290.11 84.9"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 290.11000061035156px 91.33000183105469px;"
id="el2bxr7osf5va" class="animable"></polygon>
<path d="M142.47,73.63a14.2,14.2,0,0,1-14.18,14.19q-.69,0-1.35-.06a14.19,14.19,0,1,1,15.53-14.13Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 128.27979278564453px 73.63164615631104px;"
id="elbhhjmkij3ft" class="animable"></path>
<path d="M140.2,76.19A2.2,2.2,0,1,1,138,74,2.2,2.2,0,0,1,140.2,76.19Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 137.99998879432678px 76.20003056526184px;"
id="eld0w31r2a66n" class="animable"></path>
<path d="M120.45,81.77a3.54,3.54,0,0,1-1.28,2.73A14.06,14.06,0,0,1,115,78.71a3.45,3.45,0,0,1,1.83-.51A3.57,3.57,0,0,1,120.45,81.77Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 117.72500228881836px 81.34981870651245px;"
id="elgqfuy6o0ci9" class="animable"></path>
<path d="M138,84a14.09,14.09,0,0,1-9.71,3.86q-.69,0-1.35-.06a5.66,5.66,0,0,1-.12-1.17A5.9,5.9,0,0,1,138,84Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 132.40999698638916px 84.2961175441742px;"
id="elbs1f9ajfuce" class="animable"></path>
<circle cx="124.85" cy="64.74" r="3.26"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 124.85px 64.74px;"
id="el9u6sylyzt1p" class="animable"></circle>
<path d="M127.87,74a1.51,1.51,0,1,1-1.51-1.51A1.51,1.51,0,0,1,127.87,74Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 126.36000442504883px 74px;"
id="eln1wb9p5uo3i" class="animable"></path>
<path d="M139.8,65.35a3.82,3.82,0,0,1-1.23.19,4.15,4.15,0,0,1-4.15-4.16,4.41,4.41,0,0,1,0-.52A14.13,14.13,0,0,1,139.8,65.35Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 137.10617542266846px 63.200103521347046px;"
id="elgby14vkamko" class="animable"></path>
<path d="M465.85,238.29l1.53-3.44-2.48-1.36a7.5,7.5,0,0,0,.05-1.83l2.54-1.24-1.35-3.51-2.72.78a7.48,7.48,0,0,0-1.26-1.32l.93-2.68-3.44-1.53-1.37,2.48a7.48,7.48,0,0,0-1.83,0l-1.23-2.54-3.52,1.35.79,2.71a8,8,0,0,0-1.33,1.27l-2.67-.93L447,229.89l2.48,1.37a7.48,7.48,0,0,0-.05,1.83l-2.55,1.23,1.35,3.52,2.72-.79a7.92,7.92,0,0,0,1.26,1.33l-.92,2.67,3.44,1.53,1.36-2.48a7.5,7.5,0,0,0,1.83.05l1.24,2.55,3.51-1.35-.78-2.72a7.86,7.86,0,0,0,1.32-1.26Zm-10.46-1.92a4.37,4.37,0,1,1,5.77-2.22A4.38,4.38,0,0,1,455.39,236.37Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 457.1850128173828px 232.4000015258789px;"
id="eld7sfxwuzylr" class="animable"></path>
<path d="M447.57,255.94l2.08-4.67-3.36-1.86a10.31,10.31,0,0,0,.06-2.48l3.46-1.68L448,240.48l-3.69,1.07a10,10,0,0,0-1.71-1.8l1.26-3.64L439.15,234l-1.85,3.36a10.87,10.87,0,0,0-2.48-.07l-1.68-3.45-4.78,1.84,1.07,3.68a10.83,10.83,0,0,0-1.8,1.72L424,239.86l-2.08,4.67,3.36,1.86a10.31,10.31,0,0,0-.06,2.48l-3.46,1.68,1.84,4.77,3.69-1.06a10.38,10.38,0,0,0,1.71,1.8l-1.26,3.63,4.68,2.08,1.85-3.37a10.33,10.33,0,0,0,2.48.07l1.68,3.45,4.78-1.83-1.07-3.69a10.77,10.77,0,0,0,1.8-1.71Zm-14.2-2.61a5.94,5.94,0,1,1,7.84-3A5.93,5.93,0,0,1,433.37,253.33Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 435.7850036621094px 247.8800048828125px;"
id="el6l1dfn91vka" class="animable"></path>
</g>
<g id="freepik--Earth--inject-2" style="transform-origin: 184.44750595092773px 182.2386245727539px;"
class="animable animator-active">
<path d="M240.27,211.61a64.17,64.17,0,0,1-4.63,7.48A63,63,0,0,1,155.05,238c-1.39-.73-2.75-1.51-4.05-2.33s-2.57-1.66-3.79-2.56c-1.48-1.07-2.9-2.21-4.26-3.4l0,0a1.65,1.65,0,0,1-.24-.22l0,0a63.08,63.08,0,1,1,97.61-17.83Z"
style="fill: rgb(2, 132, 199); transform-origin: 184.51799774169922px 182.23862838745117px;"
id="elm4gj8e1hx" class="animable"></path>
<g style="clip-path: url(#freepik--clip-path--inject-2); transform-origin: 184.41667556762695px 182.58700561523438px;"
id="elmh62q0pmeog" class="animable">
<g id="eljvkfzw7jkvm">
<g style="opacity: 0.6000000000000001; transform-origin: 184.41667556762695px 182.58700561523438px;"
class="animable">
<path d="M240.27,211.61a64.17,64.17,0,0,1-4.63,7.48l-1.22-1-2.1-1.11-2.21-1.16.37-2.67-.12-2.41c-.13-2.41,1.61-.44,3-1.17a8.09,8.09,0,0,0,2.55-3s1-3.21.67-4.5a36.41,36.41,0,0,0-1.9-4.34l-3.58,5-3-.23L225.26,201l-.37-3.95-1.46-.76-.61-2.27-7.89-2.21-.9-1.58c-.9-1.58-4.53-2.39-4.53-2.39l.89-2.06,1.4-2.3c1.41-2.3,2.87,1.52,2.87,1.52l1.67.87,3.1-2.6.82-3.73,5.05.29a2.25,2.25,0,0,1,1.32-2.5c1.68-.66.94-4.31.3-5.66s-3-.26-3-.26-2.57-3.91-2.92-5.47,4.9-1,7.15-2.57,1.48-4.69.38-4.76,2.15-7.1,8.4-5.17c1.74.54,2.84.35,3.52-.25A63,63,0,0,1,240.27,211.61Z"
style="fill: rgb(255, 255, 255); transform-origin: 228.52061462402344px 186.0973663330078px;"
id="el1h26er03gs5" class="animable"></path>
<path d="M196.54,184.56l-2.14,2.69s-.91-2.17-2.21-1l-2,1.78-1.45,4.06-2.6,1.68-1.59-.83-1.5-.8-1.63-.86-1.56,3-1.27,2.4a15.32,15.32,0,0,0,2.29,3.25l2.76,4.87L187,206.5a25.56,25.56,0,0,1,4.17.5l2.31,1.21-.82,5s-1.74,2.83-2.9,2.05l-1.17-.77-1.9,6.58-.08,3.62s-1.13.47-2.27.85-.42.18-2.81.92-2.2.71-4.14,1.26a26.13,26.13,0,0,0-4.75,2.22l.17,3.48-4.57.67-2.56-1.36.63-2.2.3-3.44-.35-2.57-1.1-2.27,3.08-2.79-.68-1.75-1.75-3.48-3.7,2-1.9,1-4.3-1.93-.47-2.61L154,208l-1.34-2.92-2.38-3.22-.6-2.77,1.34-2.54.71-1.34-2.19-2.95-.6-2.1-3.69-3.35s1.07-.07.83-1.56,2.11-4,2.11-4c1.33.7,5.32,3.48,5.32,3.48l3.49.48s.7,0,1.38-1.32a18.69,18.69,0,0,1,2.78-3.33s-1.61-5.59-.46-6.34,2.32-4.41,2.32-4.41l.92-1.75s-2.17-.95-2.58-2.1-5.76.38-5.76.38l-3.69,2.56L149,171.15l-1.26,2.39s-2.57-3.09-2.58-1.36a24.54,24.54,0,0,1-1.16,5.21s.53.28-.17,1.62-1.46,1.27-3,1.46a38.45,38.45,0,0,1-6-.41s-1,3.7-.31,4.34l.68.62s-1.07,2.69-2.13,2.13l-2.58-1.36-3.61,1.46-4,4.42-.89-.18a63.08,63.08,0,0,1,52.49-71.6c.23,1,.48,1.94.48,1.94l-1,4.94-1.28,2.44-1.1,2.09-1.55,2.94L174,137.9l-.85,4.33L171,143.58l-.62,3.25,3.69,7.21,1,2.83a9.91,9.91,0,0,0-.89,4.32s.45,2.7,2.42,3.77,4.56,2.33,4.56,2.33l-.21,4-.89,1,1.48,4.31c4.51,1.77,4.08,3.25,4.51,1.77l.44-1.47,3.07-1.11,3.91,4.67a2.71,2.71,0,0,1,2.3,1.22C196.91,183.12,198.69,181.87,196.54,184.56Z"
style="fill: rgb(255, 255, 255); transform-origin: 159.42091369628906px 176.99000549316406px;"
id="eltuyclwvyfrm" class="animable"></path>
<path d="M143.54,219.39c.11,1.42-1.69,3.2-1.69,3.2l1.47.77.45,4-1.11,2.12a62.82,62.82,0,0,1-17.45-25.62l.8-4.24,3.53-.5s3.16-2.1,4.56-1.54,2.68,4,2.68,4,1,4.64.87,4.55h0l-.06,0,.08,0,1.44.76.41,1.83-2,3.8h-3.22s-.64-.34-.7,1.33a4.06,4.06,0,0,0,1.67,2.93l3.48-.89.93-3.6,3.42-.67s-.49,2.21.31,2.63l.81.43.48,2.64A2.37,2.37,0,0,0,143.54,219.39Z"
style="fill: rgb(255, 255, 255); transform-origin: 134.95497512817383px 213.48251914978027px;"
id="el78xeg1rls38" class="animable"></path>
<path d="M160.08,225.05c-.31-.86-.44-1.61-2.57-2.73s-2-.72-2.84.21a3.07,3.07,0,0,1-3.18,1.13c-1.4-.31-.67,1.27-.67,1.27l.34,4.27-3.95,3.9q1.83,1.35,3.79,2.56l.84-2.58L158.4,235c-1.39-.41-.57-2.31-.57-2.31l-1.4-.74S160.39,225.89,160.08,225.05Z"
style="fill: rgb(255, 255, 255); transform-origin: 153.65365171432495px 228.64982795715332px;"
id="elwrlkfd0v20q" class="animable"></path>
<path d="M201.4,202.85l-2.15-2.17-2.46.77-1,2-.75,1.44,1,2,2,2.43,1.14-2.18s3.17,0,4.83-1.83S201.4,202.85,201.4,202.85Z"
style="fill: rgb(255, 255, 255); transform-origin: 199.71662044525146px 205.00000762939453px;"
id="elfr30kpc1bcg" class="animable"></path>
<path d="M195.08,193.06l4,2.1.16-.94a5.43,5.43,0,0,1,1.08-2.05l-3.06-3.24Z"
style="fill: rgb(255, 255, 255); transform-origin: 197.70000457763672px 192.0449981689453px;"
id="elb1s3kezmil9" class="animable"></path>
<path d="M193.72,239.61l-1.15-1.69-1.34-.7h-4.09l-2.33,4.42s-2.23-.3-5.16-.56-2.21.95-2.21.95l-.76,2.78a63.24,63.24,0,0,0,22.14-1.19A28,28,0,0,0,196.2,242Z"
style="fill: rgb(255, 255, 255); transform-origin: 187.75000762939453px 241.25200128555298px;"
id="elmraefq96u8" class="animable"></path>
</g>
</g>
</g>
<path d="M240.27,211.61a64.17,64.17,0,0,1-4.63,7.48A63,63,0,0,1,155.05,238c-1.39-.73-2.75-1.51-4.05-2.33s-2.57-1.66-3.79-2.56c-1.48-1.07-2.9-2.21-4.26-3.4l0,0a1.65,1.65,0,0,1-.24-.22l0,0a63.08,63.08,0,1,1,97.61-17.83Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 184.51799774169922px 182.23862838745117px;"
id="elx37f8c75c4k" class="animable"></path>
<path d="M198.82,243.62a63.24,63.24,0,0,1-22.14,1.19l.76-2.78s-.72-1.21,2.21-.95,5.16.56,5.16.56l2.33-4.42h4.09l1.34.7,1.15,1.69L196.2,242A28,28,0,0,1,198.82,243.62Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; transform-origin: 187.75001525878906px 241.2520031929016px;"
id="el38tjw0jlaak" class="animable"></path>
<path d="M240.49,153.2c-.68.6-1.78.79-3.52.25-6.25-1.93-9.49,5.09-8.4,5.17s1.86,3.24-.38,4.76-7.5,1-7.15,2.57,2.92,5.47,2.92,5.47,2.3-1.08,2.95.26,1.39,5-.29,5.66a2.25,2.25,0,0,0-1.32,2.5l-5.05-.29-.82,3.73-3.1,2.6-1.67-.87s-1.46-3.82-2.87-1.52l-1.4,2.3-.89,2.06s3.63.81,4.53,2.39l.9,1.58,7.89,2.21.61,2.27,1.46.76.37,3.95,2.94,1.54,3,.23,3.58-5a36.41,36.41,0,0,1,1.9,4.34c.35,1.29-.67,4.5-.67,4.5a8.09,8.09,0,0,1-2.55,3c-1.43.73-3.18-1.24-3,1.17l.12,2.41-.37,2.67,2.21,1.16,2.1,1.11,1.22,1"