-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1425 lines (1399 loc) · 109 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" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>wellnoted</title>
<!-- TailwindCSS -->
<link rel="stylesheet" href="./dist/css/tailwind-style.css" />
</head>
<body class="font-poppins">
<!-- Header Start -->
<header class="absolute top-0 left-0 w-full z-10">
<div class="container">
<div class="flex justify-between px-10 py-5 lg:px-16">
<div class="self-center">
<h2 class="font-bold text-xl text-secondary md:text-2xl">
well<span class="text-white bg-primary p-0.5 rounded-md">noted</span>.
</h2>
</div>
<div class="flex items-center gap-5">
<a href="#" class="w-full">
<p class="text-base font-semibold text-secondary hover:text-primary lg:hidden">
Log In
</p>
</a>
<input type="checkbox" name="hamburger" id="hamburger" class="peer" hidden />
<label for="hamburger" class="group flex flex-col gap-1 peer-checked:hamburger cursor-pointer lg:hidden">
<div aria-hidden="true" class="group-hover:bg-primary m-auto h-0.5 w-6 bg-secondary duration-300"></div>
<div aria-hidden="true" class="group-hover:bg-primary m-auto h-0.5 w-6 bg-secondary duration-300"></div>
<div aria-hidden="true" class="group-hover:bg-primary m-auto h-0.5 w-6 bg-secondary duration-300"></div>
</label>
<nav id="nav-menu" class="hidden w-full px-10 md:px-0 lg:flex lg:shadow-none">
<ul class="flex items-center justify-center gap-9 mr-5">
<li class="group">
<a href="#home" class="text-base font-semibold text-secondary hover:text-primary mx-">Home</a>
</li>
<li class="group">
<a href="#features" class="text-base font-semibold text-secondary hover:text-primary">Features</a>
</li>
<li class="group">
<a href="#subscribe" class="text-base font-semibold text-secondary hover:text-primary">Subscribe</a>
</li>
<li class="group">
<a href="#" class="text-base font-semibold text-secondary hover:text-primary">Blog</a>
</li>
</ul>
<div class="group w-[4.5rem] flex items-center justify-center gap-4">
<div class="h-8 w-0.5 bg-slate-200"></div>
<a href="#" class="text-base font-semibold text-secondary hover:text-primary">Log In</a>
</div>
</nav>
<!-- Dropdown Menu Start -->
<div id="dropdown-menu"
class="peer-checked:translate-x-0 translate-x-[100%] transition duration-300 ease-in-out fixed inset-0 pt-20 pb-5 bg-white mt-[4.2rem] flex flex-col justify-between lg:hidden">
<ul class="flex flex-col items-center gap-10 lg:flex-row lg:gap-10">
<li class="group">
<a href="#home" class="text-base font-semibold text-secondary hover:text-primary sm:text-xl">Home</a>
</li>
<li class="group">
<a href="#features"
class="text-base font-semibold text-secondary hover:text-primary sm:text-xl">Features</a>
</li>
<li class="group">
<a href="#subscribe"
class="text-base font-semibold text-secondary hover:text-primary sm:text-xl">Subscribe</a>
</li>
<li class="group">
<a href="#" class="text-base font-semibold text-secondary hover:text-primary sm:text-xl">Blog</a>
</li>
</ul>
<div>
<div class="border-t-2 w-3/4 mx-auto"></div>
<article class="mb-5">
<p class="text-base text-center text-fontcolor font-semibold mt-5">
Let's Connect
</p>
</article>
<!-- NOTE: social media -->
<div class="flex items-center justify-center">
<!-- LinkedIn -->
<a href="https://linkedin.com/in/yogakrisanta" target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center text-secondary border border-slate-300 hover:border-[#0A66C2] hover:bg-[#0A66C2] hover:text-white transition duration-300 ease-in-out">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="20"
class="fill-current">
<title>LinkedIn</title>
<path
d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z" />
</svg>
</a>
<!-- Threads -->
<a href="https://threads.net/@yogskr" target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center text-secondary border border-slate-300 hover:border-[#000000] hover:bg-[#000000] hover:text-white transition duration-300 ease-in-out">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="20"
class="fill-current">
<title>Threads</title>
<path
d="M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.126-.742-.375-1.332-.75-1.757-.513-.586-1.308-.883-2.359-.89h-.029c-.844 0-1.992.232-2.721 1.32L7.734 7.847c.98-1.454 2.568-2.256 4.478-2.256h.044c3.194.02 5.097 1.975 5.287 5.388.108.046.216.094.321.142 1.49.7 2.58 1.761 3.154 3.07.797 1.82.871 4.79-1.548 7.158-1.85 1.81-4.094 2.628-7.277 2.65Zm1.003-11.69c-.242 0-.487.007-.739.021-1.836.103-2.98.946-2.916 2.143.067 1.256 1.452 1.839 2.784 1.767 1.224-.065 2.818-.543 3.086-3.71a10.5 10.5 0 0 0-2.215-.221z" />
</svg>
</a>
<!-- Instagram -->
<a href="https://instagram.com/yogskr" target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center text-secondary border border-slate-300 hover:border-[#E4405F] hover:bg-[#E4405F] hover:text-white transition duration-300 ease-in-out">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="20"
class="fill-current">
<title>Instagram</title>
<path
d="M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z" />
</svg>
</a>
<!-- Twitter/X -->
<a href="https://twitter.com/jrang_jreng" target="_blank"
class="w-9 h-9 mr-3 rounded-full flex justify-center items-center text-secondary border border-slate-300 hover:border-[#000000] hover:bg-[#000000] hover:text-white transition duration-300 ease-in-out">
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" width="20"
class="fill-current">
<title>X</title>
<path
d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z" />
</svg>
</a>
</div>
</div>
</div>
<!-- Dropdown Menu End -->
</div>
</div>
</div>
</header>
<!-- Header End -->
<!-- Hero Section Start -->
<section id="home" class="pt-32 pb-20">
<div class="container">
<div class="flex flex-wrap lg:justify-center px-10 lg:px-16">
<div class="w-full self-center mb-10 lg:mb-0 lg:pr-10 lg:w-1/2">
<!-- NOTE: hero image -->
<figure class="max-w-lg hover:scale-95 transition duration-300 ease-in-out m-auto md:w-3/4 lg:w-full">
<svg class="animated" id="freepik_stories-novelist-writing" 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-novelist-writing:not(.animated) .animable {
opacity: 0;
}
svg#freepik_stories-novelist-writing.animated #freepik--background-simple--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) zoomIn;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Pictures--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideUp;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Plants--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideUp;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Window--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) zoomOut;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Character--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideUp;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Ashtray--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideDown;
animation-delay: 0s;
}
svg#freepik_stories-novelist-writing.animated #freepik--Typewriter--inject-19 {
animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) zoomIn;
animation-delay: 0s;
}
@keyframes zoomIn {
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: inherit;
}
}
@keyframes zoomOut {
0% {
opacity: 0;
transform: scale(1.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideDown {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
<g id="freepik--background-simple--inject-19" style="transform-origin: 252.335px 245.726px 0px;"
class="animable">
<path
d="M328.07,49.69S251.59,22.5,176.52,65.79,63.56,195,31,263.89,17.22,402.77,74.53,434.7s96.28-15.14,176.68-17.43,102,9.2,168.73-36.22,78.77-152.68,26.15-232S328.07,49.69,328.07,49.69Z"
style="fill: rgb(13, 148, 136); transform-origin: 246.995px 243.515px 0px;" id="elylbthzkyqs"
class="animable">
</path>
<g id="el1szufvjxxp6">
<path
d="M328.07,49.69S251.59,22.5,176.52,65.79,63.56,195,31,263.89,17.22,402.77,74.53,434.7s96.28-15.14,176.68-17.43,102,9.2,168.73-36.22,78.77-152.68,26.15-232S328.07,49.69,328.07,49.69Z"
style="fill: rgb(255, 255, 255); opacity: 0.7; transform-origin: 246.995px 243.515px 0px;"
class="animable">
</path>
</g>
<line x1="14.67" y1="450.19" x2="490" y2="450.19"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 252.335px 450.19px 0px;"
id="elb48iaze5en" class="animable"></line>
</g>
<g id="freepik--Pictures--inject-19" style="transform-origin: 132.585px 213.125px 0px;" class="animable">
<rect x="85" y="141.75" width="95.17" height="142.75"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.951651px; transform-origin: 132.585px 213.125px 0px;"
id="el2p468jcoiog" class="animable"></rect>
<rect x="92.62" y="153.16" width="79.94" height="119.91"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.951651px; transform-origin: 132.59px 213.115px 0px;"
id="el65xh4y342ju" class="animable"></rect>
<circle cx="133.06" cy="167.92" r="9.04"
style="fill: rgb(13, 148, 136); transform-origin: 133.06px 167.92px 0px;" id="el8ls4783klu6"
class="animable"></circle>
<line x1="111.65" y1="185.52" x2="151.62" y2="185.52"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 131.635px 185.52px 0px;"
id="elehv3ovisee" class="animable"></line>
<line x1="111.65" y1="254.99" x2="151.62" y2="254.99"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 131.635px 254.99px 0px;"
id="eljqsokpckt9o" class="animable"></line>
<line x1="99.28" y1="208.36" x2="166.85" y2="208.36"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 133.065px 208.36px 0px;"
id="elxd7527z1tzr" class="animable"></line>
<line x1="99.28" y1="215.02" x2="166.85" y2="215.02"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 133.065px 215.02px 0px;"
id="elb34ep5ma6p" class="animable"></line>
<line x1="99.28" y1="221.68" x2="166.85" y2="221.68"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 133.065px 221.68px 0px;"
id="elsxm601400n" class="animable"></line>
<line x1="99.28" y1="228.35" x2="166.85" y2="228.35"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 133.065px 228.35px 0px;"
id="el6t15xka4z6x" class="animable"></line>
<line x1="99.28" y1="235.01" x2="166.85" y2="235.01"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.951651px; transform-origin: 133.065px 235.01px 0px;"
id="el2bb8rvbmn9g" class="animable"></line>
</g>
<g id="freepik--Plants--inject-19" style="transform-origin: 56.7679px 370.27px 0px;" class="animable">
<path d="M58.07,419.2s.62-22.06-.16-41,.79-59.64.79-59.64"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 58.1963px 368.88px 0px;"
id="el6vdls3n2l49" class="animable"></path>
<line x1="58.34" y1="342.46" x2="49.72" y2="335.69"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 54.03px 339.075px 0px;"
id="el60pyecu5afb" class="animable"></line>
<line x1="58.25" y1="347.13" x2="61.31" y2="342.16"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 59.78px 344.645px 0px;"
id="el03gfqyywzhen" class="animable"></line>
<line x1="57.55" y1="366.75" x2="65.2" y2="360.42"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 61.375px 363.585px 0px;"
id="elrxhu7mac36i" class="animable"></line>
<line x1="58.7" y1="326.88" x2="54.66" y2="323.21"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 56.68px 325.045px 0px;"
id="el8n1cp1um9n4" class="animable"></line>
<line x1="57.47" y1="370.19" x2="52.42" y2="364.76"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 54.945px 367.475px 0px;"
id="elpi2idoe10sh" class="animable"></line>
<line x1="57.92" y1="391.48" x2="47.39" y2="381.88"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 52.655px 386.68px 0px;"
id="eloxm5m90b8db" class="animable"></line>
<path d="M58.19,403.31a63.42,63.42,0,0,0,7.8-3.64"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.988167px; transform-origin: 62.09px 401.49px 0px;"
id="elayi6m4g80bf" class="animable"></path>
<path
d="M52.38,345.87C48.16,342.6,34,343.18,31.24,350S37.14,367.8,45.5,367c3.27-.31,4.68-.54,6-2.36h0L39.81,353.28l12.6,10.13a9.83,9.83,0,0,0,.87-2.07,16.06,16.06,0,0,0,.39-1.62C54.48,355.67,56.33,348.92,52.38,345.87Z"
style="fill: rgb(13, 148, 136); transform-origin: 42.7664px 355.491px 0px;" id="elc9ra02rl5es"
class="animable">
</path>
<path
d="M79.79,338c0,.07,0,.15-.05.23-1.14,5.06-6.92,7.93-11.78,7.5a11.77,11.77,0,0,1-2-.36,13.93,13.93,0,0,0-1.26,12.26,8.08,8.08,0,0,0,.83,1.6C67,358.06,82.29,345,82.29,345L66.38,360.32c4.78,5.13,16.05,4.43,20-5.09S85.32,339.36,79.79,338Z"
style="fill: rgb(13, 148, 136); transform-origin: 75.8109px 350.743px 0px;" id="elph50pbi0ks"
class="animable">
</path>
<path
d="M72,320.31c-8.25-1.81-15.63,1.93-15.49,10.54A13.9,13.9,0,0,0,61.09,341l8.42-11.67-7.15,12.65a12.32,12.32,0,0,0,2.12,1.14,11.75,11.75,0,0,0,3.28.79c4.85.42,10.64-2.45,11.78-7.51C80.82,330.71,80.25,322.12,72,320.31Z"
style="fill: rgb(13, 148, 136); transform-origin: 68.285px 331.907px 0px;" id="el0bvmb9gwx95"
class="animable">
</path>
<path
d="M62.37,290.36s-.85.25-6.13,2.83S46.79,304.13,51,311.27c2.37,4.07,5.12,5.61,7.06,6.18l2.11-20.52-.85,20.79a5.47,5.47,0,0,0,1.2,0c3.43-.36,8.86-4.46,9.37-12.87S62.37,290.36,62.37,290.36Z"
style="fill: rgb(13, 148, 136); transform-origin: 59.5937px 304.057px 0px;" id="eltrnq7ndm2b"
class="animable">
</path>
<path
d="M38.26,309l15.92,12.73a4.34,4.34,0,0,0,.15-1.79c-.73-7.29-8-11.51-12.8-13s-8.13,1.19-5.05,8.17,11.19,10.3,14.8,9.29A4.23,4.23,0,0,0,53.49,323Z"
style="fill: rgb(13, 148, 136); transform-origin: 44.8268px 315.56px 0px;" id="elk54dahk7sq"
class="animable">
</path>
<path
d="M49.22,325.34c-3.44.11-9-2.34-12.25-7.07-3.34-.07-6.11,1.51-7,5.7-1.62,7.6,3.87,15.56,11.79,14.58,3.46-.42,5.46-1.61,6.6-2.81L34.19,322.82l15.16,11.55a4.78,4.78,0,0,0,.55-1.75A12.6,12.6,0,0,0,49.22,325.34Z"
style="fill: rgb(13, 148, 136); transform-origin: 39.9201px 328.45px 0px;" id="el163s6cpxjkv"
class="animable">
</path>
<path
d="M49.13,367.58a12.28,12.28,0,0,1-4.06,1C39.89,369,34.61,365,32,360.21c-3.18.51-5.72,2.22-6.33,5.69-1.57,8.89,6.66,20.61,15,18.76a11.87,11.87,0,0,0,5.79-2.94L28.26,364.26l19.21,16.29a10.19,10.19,0,0,0,2.05-4.87A11.06,11.06,0,0,0,49.13,367.58Z"
style="fill: rgb(13, 148, 136); transform-origin: 37.7915px 372.532px 0px;" id="elnuyhlzp7y9e"
class="animable">
</path>
<path
d="M85.66,385.82c-6.1-7.07-13.37-.74-13.37-.74s-4.46,1.47-6.14,7.78a9.73,9.73,0,0,0,.22,5.82L84.74,388l-17.92,11.7c1.67,3.17,5.32,5.11,10.31,3.71C85.22,401.12,91.77,392.89,85.66,385.82Z"
style="fill: rgb(13, 148, 136); transform-origin: 76.9336px 393.173px 0px;" id="els7xqiofxg0j"
class="animable">
</path>
<rect x="45.02" y="412.54" width="25.42" height="37.64"
style="fill: rgb(38, 50, 56); transform-origin: 57.73px 431.36px 0px;" id="eldtsk3xidp3i"
class="animable"></rect>
</g>
<g id="freepik--Window--inject-19" style="transform-origin: 350.47px 189.03px 0px;" class="animable">
<polygon points="347.37 81.63 237.53 81.63 236.08 96.73 347.37 96.73 347.37 81.63"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 89.18px 0px;"
id="el4qp44klntku" class="animable"></polygon>
<polygon points="347.37 96.73 237.53 96.73 236.08 111.83 347.37 111.83 347.37 96.73"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 104.28px 0px;"
id="elo5n2cqc8pc" class="animable"></polygon>
<polygon points="347.37 111.83 237.53 111.83 236.08 126.93 347.37 126.93 347.37 111.83"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 119.38px 0px;"
id="elqf8o5u85pu" class="animable"></polygon>
<polygon points="347.37 126.93 237.53 126.93 236.08 142.03 347.37 142.03 347.37 126.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 134.48px 0px;"
id="elfiubd8wqvbj" class="animable"></polygon>
<polygon points="347.37 142.03 237.53 142.03 236.08 157.13 347.37 157.13 347.37 142.03"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 149.58px 0px;"
id="elap8tu5k4k9c" class="animable"></polygon>
<polygon points="347.37 157.13 237.53 157.13 236.08 172.23 347.37 172.23 347.37 157.13"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 164.68px 0px;"
id="eleaus1n2mcdi" class="animable"></polygon>
<polygon points="347.37 172.23 237.53 172.23 236.08 187.33 347.37 187.33 347.37 172.23"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 179.78px 0px;"
id="elsggohg4os8l" class="animable"></polygon>
<polygon points="347.37 187.33 237.53 187.33 236.08 202.43 347.37 202.43 347.37 187.33"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 194.88px 0px;"
id="elkn0uyvqplo" class="animable"></polygon>
<polygon points="347.37 202.43 237.53 202.43 236.08 217.53 347.37 217.53 347.37 202.43"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 209.98px 0px;"
id="elt40l20l02m" class="animable"></polygon>
<polygon points="347.37 217.53 237.53 217.53 236.08 232.63 347.37 232.63 347.37 217.53"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 225.08px 0px;"
id="elwaxhgtgjfdn" class="animable"></polygon>
<polygon points="347.37 232.63 237.53 232.63 236.08 247.73 347.37 247.73 347.37 232.63"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 240.18px 0px;"
id="elsf3j4byqdd" class="animable"></polygon>
<polygon points="347.37 247.73 237.53 247.73 236.08 262.83 347.37 262.83 347.37 247.73"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 255.28px 0px;"
id="elvfeea7c8m1" class="animable"></polygon>
<polygon points="347.37 262.83 237.53 262.83 236.08 277.93 347.37 277.93 347.37 262.83"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 270.38px 0px;"
id="el6fyx2bjvbwh" class="animable"></polygon>
<polygon points="347.37 277.93 237.53 277.93 236.08 293.03 347.37 293.03 347.37 277.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 285.48px 0px;"
id="el3grizy1kwuv" class="animable"></polygon>
<polygon points="347.37 293.03 237.53 293.03 236.08 308.13 347.37 308.13 347.37 293.03"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 291.725px 300.58px 0px;"
id="eld539i615ou" class="animable"></polygon>
<polygon points="460.28 81.63 350.44 81.63 348.99 96.73 460.28 96.73 460.28 81.63"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 89.18px 0px;"
id="elerasmuwl3k9" class="animable"></polygon>
<polygon points="460.28 96.73 350.44 96.73 348.99 111.83 460.28 111.83 460.28 96.73"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 104.28px 0px;"
id="elwvg78ebhjyf" class="animable"></polygon>
<polygon points="460.28 111.83 350.44 111.83 348.99 126.93 460.28 126.93 460.28 111.83"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 119.38px 0px;"
id="ellwtgtin7bsg" class="animable"></polygon>
<polygon points="460.28 126.93 350.44 126.93 348.99 142.03 460.28 142.03 460.28 126.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 134.48px 0px;"
id="elxweisjjl03" class="animable"></polygon>
<polygon points="460.28 142.03 350.44 142.03 348.99 157.13 460.28 157.13 460.28 142.03"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 149.58px 0px;"
id="elf5p7y065xcd" class="animable"></polygon>
<polygon points="460.28 157.13 350.44 157.13 348.99 172.23 460.28 172.23 460.28 157.13"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 164.68px 0px;"
id="elwe1q6b8yhcr" class="animable"></polygon>
<polygon points="460.28 172.23 350.44 172.23 348.99 187.33 460.28 187.33 460.28 172.23"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 179.78px 0px;"
id="el4dab5ueudj5" class="animable"></polygon>
<polygon points="460.28 187.33 350.44 187.33 348.99 202.43 460.28 202.43 460.28 187.33"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 194.88px 0px;"
id="eltjchrnmn19" class="animable"></polygon>
<polygon points="460.28 202.43 350.44 202.43 348.99 217.53 460.28 217.53 460.28 202.43"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 209.98px 0px;"
id="elxvs1rlcrg5m" class="animable"></polygon>
<polygon points="460.28 217.53 350.44 217.53 348.99 232.63 460.28 232.63 460.28 217.53"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 225.08px 0px;"
id="elejd5czm7rta" class="animable"></polygon>
<polygon points="460.28 232.63 350.44 232.63 348.99 247.73 460.28 247.73 460.28 232.63"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 240.18px 0px;"
id="elhyl5fijypvu" class="animable"></polygon>
<polygon points="460.28 247.73 350.44 247.73 348.99 262.83 460.28 262.83 460.28 247.73"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 255.28px 0px;"
id="eldqjihy154yt" class="animable"></polygon>
<polygon points="460.28 262.83 350.44 262.83 348.99 277.93 460.28 277.93 460.28 262.83"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 270.38px 0px;"
id="elefi87234nq" class="animable"></polygon>
<polygon points="460.28 277.93 350.44 277.93 348.99 293.03 460.28 293.03 460.28 277.93"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 285.48px 0px;"
id="elpbpa7b19bs" class="animable"></polygon>
<polygon points="460.28 293.03 350.44 293.03 348.99 308.13 460.28 308.13 460.28 293.03"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 404.635px 300.58px 0px;"
id="elgom5k27zd1" class="animable"></polygon>
<rect x="233.52" y="69.93" width="232.26" height="11.39"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 349.65px 75.625px 0px;"
id="elzdqf5insglh" class="animable"></rect>
<line x1="465.78" y1="81.33" x2="465.78" y2="281.95"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 465.78px 181.64px 0px;"
id="elfxazr7ri71h" class="animable"></line>
<line x1="463.25" y1="81.65" x2="463.25" y2="219.29"
style="fill: none; stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 463.25px 150.47px 0px;"
id="elysqfjhem7n" class="animable"></line>
<rect x="464.3" y="281.5" width="3.12" height="5.11"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 465.86px 284.055px 0px;"
id="elppoqqlmjqyn" class="animable"></rect>
<rect x="461.49" y="218.2" width="3.12" height="5.11"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-miterlimit: 10; stroke-width: 0.94773px; transform-origin: 463.05px 220.755px 0px;"
id="elq29fi34u5xl" class="animable"></rect>
</g>
<g id="freepik--Character--inject-19" style="transform-origin: 295.402px 290.816px 0px;" class="animable">
<path
d="M422.69,450.19c4-12.48,20.14-64.17,20.14-76.09,0-13.57-4.81-15.32-14-18s-85.37-1.31-94.56.88-13.14,11-14.89,18.83c-1.58,7.11-16.34,63.38-19.21,74.33Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 371.5px 402.405px 0px;"
id="el7rcmgmcusor" class="animable"></path>
<path
d="M422.69,450.19c4-12.48,20.14-64.17,20.14-76.09,0-12.16-3.87-14.83-11.3-17.14l-.08.07s-8.32-1.31-10.95,7.88c-2.08,7.28-15.67,62.55-21.25,85.28Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 421.04px 403.575px 0px;"
id="elcdwjb48zpll" class="animable"></path>
<path
d="M167.46,381.14s8,8,14.54,10.38,14.19-1,14.19-1-4.85-13.85-15.93-20.08S164.69,374.22,167.46,381.14Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 181.426px 380.425px 0px;"
id="elqku94y3dih" class="animable"></path>
<path d="M159.5,371.45s-14.19,17.65-11.08,20.07,11.42-11.76,12.46-12.46S164,371.79,159.5,371.45Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 155.125px 381.624px 0px;"
id="elsmtugpypz1" class="animable"></path>
<path
d="M166.42,366.26s-4.85-2.43-6.92,0-1,10.38-.7,16.26,1.39,14.89,4.85,12.81,3.12-18.69,3.12-22.5A58.08,58.08,0,0,0,166.42,366.26Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 162.518px 380.408px 0px;"
id="eljnipovkkwan" class="animable"></path>
<path
d="M175.77,366.6s-6.24-3.11-9-2.42-3.47,18-3.47,23.88,4.5,9.35,5.89,6.93,2.77-20.43,3.81-23.2A25.52,25.52,0,0,1,175.77,366.6Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 169.535px 379.925px 0px;"
id="eldhcwu961s7p" class="animable"></path>
<path
d="M253,395.33s-1.73-2.77-15.57-5.54-32.54-7.61-34.62-8.65S184.07,368,179.23,365.22s-6.93,1-8,4.84-4.5,21.46-4.16,23.19,3.46,4.16,4.5,1.74,5.54-16.27,5.89-17.66,11.42,11.08,14.19,13.85,5.88,4.5,9.69,4.5a48.1,48.1,0,0,0,6.23-.35s38.07,25.27,45,28.38,12.8-.69,13.49-2.76,1.39-14.54-2.42-19S253,395.33,253,395.33Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 216.825px 394.575px 0px;"
id="eldafksynu5ml" class="animable"></path>
<path
d="M193.42,379.06a47.7,47.7,0,0,1-13.5-4.5c-6.58-3.46-9.35,1.39-6.58,5.2s11.42,4.84,11.42,4.84,5.2,8.31,12.47,10.39a12.53,12.53,0,0,0,12.11-3.12"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 190.806px 384.41px 0px;"
id="eluyjzkfz0q9" class="animable"></path>
<path
d="M265.07,340.3s-12.81,42.92-9.35,46.38,15.23,12.11,17,10,6.92-19.39,6.92-29.42S267.49,334.07,265.07,340.3Z"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 267.383px 368.13px 0px;"
id="elp9bkiowboir" class="animable"></path>
<path
d="M276.83,393.6s-12.8-10.73-17-11.77-4.5-1.38-7.61,4.16-4.15,8-1.38,10,12.46,15.23,18.69,16.27S277.53,403.64,276.83,393.6Z"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 263.104px 396.776px 0px;"
id="el0dieqfn02qjf" class="animable"></path>
<path
d="M251.27,450.19H386.69c1.13-4.34,9.09-35.2,12-49.67,3.12-15.57,8.66-70.26,8.66-79.26s-.35-32-5.89-41-28.38-27.69-42.92-35-26-13.5-33.57-14.19-35.31,22.15-44,42.23c0,0-17,12.46-18.35,20.42s-1.38,17.45,2.08,35.45S269.57,359,269.57,359,256.76,397.06,255,412.64C253.45,426.82,251.59,446.73,251.27,450.19Z"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 329.31px 340.622px 0px;"
id="elmf25d2nuvxn" class="animable"></path>
<path
d="M276.88,292.61s-3.81,4.24-.85,4.24,6.78-5.51,10.17-4.24,13.55,8.47,13.55,8.47,5.51,3.82,7.2,2.55S318.39,290.5,323.9,293s11.43,9.32,12.28,5.93-5.51-19.49-8.05-27.11-29.22-11.86-39-3.39S276.88,292.61,276.88,292.61Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 305.581px 283.827px 0px;"
id="elgeiiyxumxc" class="animable"></path>
<path
d="M304.64,306.32s-3.58,2.13-3.58,16.67a271,271,0,0,0,1.73,28.73s-3.11,1-2.76,3.11,5.19,2.43,5.19,2.43-23.19,53-24.58,83.07"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 292.93px 373.325px 0px;"
id="elnazaq8rtb6" class="animable"></path>
<path d="M325.15,348.74c1.49-.09,2.93-.14,4.3-.14"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 327.3px 348.67px 0px;"
id="el6o7u9z5nfni" class="animable"></path>
<path d="M284.1,355.87s19.4-5,35.7-6.69"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 301.95px 352.525px 0px;"
id="elghy1td9yicc" class="animable"></path>
<path d="M293.45,359.68s22.15-4.85,37.73-5.54"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 312.315px 356.91px 0px;"
id="elhn6pkyclr4u" class="animable"></path>
<path
d="M283.3,269.86s-3.51,9.46-6.75,16.48-8.1,10.8-5.13,11.07,12.69-7.56,15.12-10,7.29,5.67,9.19,8.64,7.56,10.8,8.91,10.26,15.93-19.44,18.63-22.14,9.73,13.77,13.78,17,2.43-3.51,1.89-7.56-2.7-37-5.4-52.12-11.89-21.34-16.75-21.88-13,0-17.82,6.21S283.3,269.86,283.3,269.86Z"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 305.107px 262.893px 0px;"
id="eluqhbkiymzk" class="animable"></path>
<path
d="M286,271.76s10,12.15,13,21.87,5.67,15.4,7,12.15,13-35.38,13.77-50.5-.27-21.88-1.89-26.74-6.75-16.74-6.75-16.74-9.72-1.08-12.69,5.67-8.92,31.87-12.16,40A18.94,18.94,0,0,0,286,271.76Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 302.383px 259.218px 0px;"
id="el282i8vjlni" class="animable"></path>
<path
d="M309,229l-9.87-7.88L293.27,234c-2.51,9-5.18,18.91-7,23.45a18.94,18.94,0,0,0-.27,14.32A104.73,104.73,0,0,1,295.08,285C305.4,264.69,309,229,309,229Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 296.863px 253.06px 0px;"
id="el3cg3s4vz6fr" class="animable"></path>
<path
d="M224.3,171.4s-6.25,18.06-1.74,26,13.89,17,18.41,28.82,9.37,23.61,8.68,31.94-.7,18.41,4.86,23.27,20.83,4.51,32.29-4.17S299,250.56,299,250.56,308.67,235.63,309,229s.35-12.85.35-12.85,10.07-7.29,10.07-20.48-5.21-13.55-5.21-13.55a31.88,31.88,0,0,1-7-14.93c-1.73-9.37-4.51-19.44-12.84-22.22s-29.17,2.78-42.36,10.42S224.3,171.4,224.3,171.4Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 270.172px 214.404px 0px;"
id="el1clrsrzksvq" class="animable"></path>
<path
d="M238.54,176.26A12.65,12.65,0,0,0,225,173.83c-8.34,3.13-9.38,13.2-9.38,13.2s-6.6-2.43-6.6-6.25v-6.25s-6.59,5.55-4.86,10.41a13.19,13.19,0,0,0,6.6,6.95s-13.19-.7-17.36-8,3.82-14.58,3.82-14.58L192.7,169s4.87-6.94,11.81-8.68,10.42-1,10.42-1l-6.25-2.43s6.59-6.25,12.15-7.29a35.43,35.43,0,0,1,9-.7s21.52-16,40.62-17.36,34.72,8.34,39.23,18.4,4.52,26.74,4.52,29.52v2.77s-7,0-8.68,4.17.69,9.72-2.09,11.11-7.63-1.73-9.72-4.86-.34-7.29-2.78-9-11.11,1-16.31-2.43-3.82-14.93-1-19.09,19.1-11.11,18.06-13.54-17.36,8.68-20.14,12.15-12.85,10.76-19.79,13.19A44.51,44.51,0,0,1,238.54,176.26Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 253.197px 164.631px 0px;"
id="elhnrau49k1q8" class="animable"></path>
<path
d="M303.46,197.44c2.78-1.39.35-6.94,2.09-11.11s8.68-4.17,8.68-4.17v-2.77a109.67,109.67,0,0,0-1.93-21.14c-6,0-11.63.93-16,3.13-5.77,2.88-1.44,2.16,2.88,4.33s-7.93,2.88-16.57,7.2-7.93,8.21-7.93,8.21c5.2,3.48,13.88.7,16.31,2.43s.7,5.91,2.78,9S300.69,198.83,303.46,197.44Z"
style="fill: rgb(255, 255, 255); stroke: rgb(140, 140, 140); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 294.449px 178.013px 0px;"
id="elomc6y39jdv8" class="animable"></path>
<path
d="M305.93,185.33a1.06,1.06,0,0,0-1.2.3l-14.59,17a1.09,1.09,0,0,0,.82,1.79,1.06,1.06,0,0,0,.82-.38l13.09-15.26A7.21,7.21,0,0,1,305.93,185.33Z"
style="fill: rgb(38, 50, 56); transform-origin: 297.908px 194.838px 0px;" id="elevwa9vo88ee"
class="animable">
</path>
<path
d="M288.59,238c-7.34-2.37-23.2-.71-26.52,1.66,0,0-8.81,6.56-13.25,9.67a30.38,30.38,0,0,1,.83,8.86c-.7,8.34-.7,18.41,4.86,23.27s20.83,4.51,32.29-4.17S299,250.56,299,250.56,295.94,240.38,288.59,238Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 273.91px 260.723px 0px;"
id="elolr5vm0jahk" class="animable"></path>
<path
d="M256.62,249.38s2.2,4.91,11.56,4.91,12.24-11.52,12.24-11.52-7.92-3.6-14.4-2.16S256.62,249.38,256.62,249.38Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 268.52px 247.28px 0px;"
id="ell6yyq974oai" class="animable"></path>
<path
d="M244,210.51c.67,1.91.42,3.74-.57,4.09s-2.33-.93-3-2.84-.42-3.75.57-4.09S243.29,208.59,244,210.51Z"
style="fill: rgb(38, 50, 56); transform-origin: 242.215px 211.136px 0px;" id="el7cwch9702ts"
class="animable">
</path>
<path
d="M268.12,205.06c.67,1.91.41,3.74-.57,4.09s-2.33-.92-3-2.84-.41-3.74.58-4.09S267.45,203.15,268.12,205.06Z"
style="fill: rgb(38, 50, 56); transform-origin: 266.335px 205.685px 0px;" id="el03ss370k3iuw"
class="animable">
</path>
<path
d="M222.91,216.54l68-13.2s2.09,12.16-1.73,14.93-19.1,4.87-23.26,4.52-9-10-9-10l-4.53,1a59.82,59.82,0,0,0,.35,6.25,43.19,43.19,0,0,1,.35,4.86v.35A25.84,25.84,0,0,1,242.7,229C236.11,230.08,227.77,232.51,222.91,216.54Z"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.97633px; transform-origin: 257.195px 216.573px 0px;"
id="elfslgauq93sp" class="animable"></path>
<line x1="252.42" y1="213.76" x2="251.96" y2="211.5"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.97633px; transform-origin: 252.19px 212.63px 0px;"
id="elvlel71w70df" class="animable"></line>
<line x1="256.95" y1="212.79" x2="256.15" y2="210.53"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.97633px; transform-origin: 256.55px 211.66px 0px;"
id="ellmstyrasl6i" class="animable"></line>
<path d="M228.59,206.2a1,1,0,0,0-.43.36L222,216a1.08,1.08,0,0,0,.9,1.67,1.09,1.09,0,0,0,.91-.49l6-9.23Z"
style="fill: rgb(38, 50, 56); transform-origin: 225.817px 211.935px 0px;" id="elp37lnf5vti8"
class="animable">
</path>
<path d="M253.05,215.4s1.08,15.84,2.88,19.44,16.57,0,17.65-2.52-1.08-5.4-1.08-5.4h-3.6"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 263.466px 225.88px 0px;"
id="elvrhqn0ijjs" class="animable"></path>
<path
d="M243.6,202.49a6.71,6.71,0,0,0-6.4-.48c-3.31,1.66-5.21,5.21-6.16,5.21s-.47-6.15,3.32-8.52,8.76.71,9.71,1.89S244.54,203,243.6,202.49Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 237.603px 202.524px 0px;"
id="el6w7e2r223j" class="animable"></path>
<path
d="M270.5,194.3a6.65,6.65,0,0,0-5.87-2.57c-3.68.46-6.64,3.18-7.54,2.86s1.6-6,6-6.94,8,3.59,8.53,5S271.24,195.06,270.5,194.3Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 264.343px 191.069px 0px;"
id="ellycuir6k74o" class="animable"></path>
<path d="M240.75,218.36s5.69-1.66,9-5.69"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 245.25px 215.515px 0px;"
id="elbhq2eqy1imm" class="animable"></path>
<path d="M262.07,210.07s3.55,2.13,10.89,1.42"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 267.515px 210.852px 0px;"
id="el0b6vf8sh6nkr" class="animable"></path>
<path
d="M255.93,234.84a55.25,55.25,0,0,1-7.6,7.44c-3.31,2.36-7.1,2.6-6.86,4.26s8.76,5,15.15,2.84,9-5.45,9-5.45a18.24,18.24,0,0,0,14,4c8.29-1.18,16.35-10.42,17.29-12.55s-1.89,1.42-9,.23a136.36,136.36,0,0,1-14.3-3.32s-2.51,1.9-8.19,3.32S256.9,235,255.93,234.84Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 269.272px 241.187px 0px;"
id="el7koccohlq4b" class="animable"></path>
<path d="M250.35,184.52s6.75-9.18,15.13-4.32"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 257.915px 181.65px 0px;"
id="elv6s0r94hpxc" class="animable"></path>
<path
d="M201,383.91s-5.54.35-9.34-2.42-7.62-.7-8,2.07,3.11,8,7.26,9.69,14.54,1.39,17,1.74,6.23,6.23,13.49,9,18.7,2.08,18.7,2.08-.35-11.42-4.16-17-16.61-11.42-22.5-9A82.65,82.65,0,0,1,201,383.91Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 211.871px 392.827px 0px;"
id="elj6knb7xtk3e" class="animable"></path>
<path
d="M208,376.29s-4.5.35-6.58,3.12-9,18-9,22.5,2.42,9.69,4.15,7.27S198.61,398.79,200,395s8.31-15.23,9.35-15.93S209,376,208,376.29Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 201.069px 393.031px 0px;"
id="elv8yo19e5jwi" class="animable"></path>
<path
d="M218,374.56s-5.54-3.11-8.3-1.73-6.58,16.62-6.93,21.12,1,21.11,5.2,20.76S210,404,210,397.06s6.92-17,6.92-17Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 210.359px 393.596px 0px;"
id="el8jhpz2acckt" class="animable"></path>
<path
d="M353.68,382.18s-1.39,3.81-23.54,5.88-71.65,5.19-72.69,5.19-22.84-14.53-29.07-18.69-10-3.8-12.81-1-9,20.76-8.65,23.53,1.73,15.23,4.15,16.27,3.12-1,3.12-4.5-.7-15.23-.7-15.23l9.35-8.31s12.81,23.19,22.5,25.27a38.2,38.2,0,0,0,17,0s49.49,17,79.61,17.31,50.53,3.46,54.69-8-27.35-37-31.16-38.42S353.68,382.18,353.68,382.18Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 301.962px 399.986px 0px;"
id="ellxwfp9yglve" class="animable"></path>
<path
d="M235.3,386.68s-8-6.58-10.38-6.23-10,5.54-13.16,7.27-8.65,5.53-12.11,10.38-.35,7.27,1.38,5.54,8-7.27,9.35-8.31,11.77-5.88,11.77-5.88l16.61,12.46"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 218.423px 392.317px 0px;"
id="elwiicanx55x8" class="animable"></path>
<path
d="M368.21,290s-13.15,7.07-13.5,20.57,2.43,58.84,2.43,58.84-4.5,6.92,1.38,11.08,39.81,24.23,44.31,17.65,9.69-50.88,9.69-82.38-5.89-30.6-9.69-36.14-10.73-7.27-10.73-7.27"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 383.6px 335.902px 0px;"
id="elmfnfqr8tqkk" class="animable"></path>
<path
d="M384.83,373.18s-22.85-7.62-26.31-7.27-3.81,5.54-8,10.38-3.82,9.1-2.44,9.8,18.83,4.07,30.25,15.84,11.3,24.55,15.46,24.21,4.5-6.58,8-16.62,7.61-17.65,4.84-24.92S384.83,373.18,384.83,373.18Z"
style="fill: rgb(13, 148, 136); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 377.338px 396.022px 0px;"
id="elbfef1gur0v" class="animable"></path>
<path d="M349.87,378.37s22.84-2.08,37.38,9.35"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 368.56px 382.971px 0px;"
id="eljv74ag2zrmo" class="animable"></path>
<path d="M365.1,375.26s20.42,3.11,28.38,12.8"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 379.29px 381.66px 0px;"
id="el3inxmz8jn0v" class="animable"></path>
<path
d="M299.66,450.19h10.58c44.29-13.79,107.45-2,108.09-1.84a9.18,9.18,0,1,0,3.47-18c-2.89-.56-71.26-13.4-120.29,3.39a9.16,9.16,0,0,0-1.85,16.48Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 362.521px 437.675px 0px;"
id="el8ofr96iy5y6" class="animable"></path>
<path
d="M307.11,450.19h10.57c44.29-13.79,107.45-2,108.1-1.84a9.18,9.18,0,1,0,3.46-18c-2.88-.56-71.26-13.4-120.29,3.39a9.16,9.16,0,0,0-1.84,16.48Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 369.975px 437.675px 0px;"
id="elpihaym2ylpl" class="animable"></path>
</g>
<g id="freepik--Ashtray--inject-19" style="transform-origin: 358.745px 390.105px 0px;" class="animable">
<path
d="M348.86,431.87s8.76-2.29,8.18-14.91-1.14-21.81,8-25.25,29.84-6.89,30.41-18.94a35.54,35.54,0,0,0-1.61-11.71"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 372.163px 396.465px 0px;"
id="el6xaje91qaaw" class="animable"></path>
<path
d="M365.38,405.85c.09-8.33,1.58-14.33,8.3-17,9.19-3.69,29.84-7.38,30.42-20.3s-6.32-17.83-1.15-30.75"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 384.758px 371.825px 0px;"
id="eleeptcwria87" class="animable"></path>
<path d="M350.73,431.87s15.49-2.46,14.92-16c-.06-1.33-.11-2.62-.16-3.88"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 358.198px 421.93px 0px;"
id="el7k4md02auch" class="animable"></path>
<path d="M404.29,334.93a26,26,0,0,1,6.14-4.91"
style="fill: none; stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 407.36px 332.475px 0px;"
id="el48dlq8skx2o" class="animable"></path>
<path
d="M344.32,414l4.47,4.29a41.31,41.31,0,0,0,0,5.1c.21,1.12,2.34,4,2.34,4s.7,2.65-1.23,3.46-4.29,1.93-4.43.45-.76-2.29-1.52-4.59-1.32-3.46-.81-4.48l.52-1L340,418.79S341.16,413.14,344.32,414Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 345.627px 422.967px 0px;"
id="elqpr06qqvfe" class="animable"></path>
<path
d="M340,418.79l3.32,2.13c2.69-3.07,5.49-2.67,5.49-2.67L344.32,414C341.16,413.14,340,418.79,340,418.79Z"
style="fill: rgb(143, 143, 143); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 344.405px 417.415px 0px;"
id="elnlany1jovy" class="animable"></path>
<path
d="M318.59,433.26l2.88-3.24s4.32,0,5.4-1.44a24.1,24.1,0,0,1,7.2-5.76c2.52-1.08,6.12,1.8,8.28,2.16s5,.72,5,.72a5.22,5.22,0,0,1,0,4.32l-1.08,2.16L337,429.3s-4.32,0-6.48,1.44-2.52,4-5,4A29.29,29.29,0,0,1,318.59,433.26Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 333.204px 428.66px 0px;"
id="elr7ggjy0y4f" class="animable"></path>
<path
d="M342.35,425c-1.6-.27-4-1.93-6.17-2.32a8.38,8.38,0,0,1,.77,5.2c-.09.5-.2,1-.32,1.45H337l9.37,2.88L347.4,430a5.22,5.22,0,0,0,0-4.32S344.51,425.34,342.35,425Z"
style="fill: rgb(143, 143, 143); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 342.024px 427.445px 0px;"
id="ell32njclhw9" class="animable"></path>
<path
d="M343.4,433.71l-2.88-3.24s-4.32,0-5.4-1.44a24.1,24.1,0,0,0-7.2-5.76c-2.53-1.08-6.13,1.8-8.29,2.16s-5,.72-5,.72a5.22,5.22,0,0,0,0,4.32l1.08,2.16,9.36-2.88s4.33,0,6.49,1.44,2.52,4,5,4A29.29,29.29,0,0,0,343.4,433.71Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 328.781px 429.11px 0px;"
id="el3fbslahmcd6" class="animable"></path>
<path
d="M319.63,425.43c1.61-.27,4-1.92,6.17-2.32a8.47,8.47,0,0,0-.77,5.2c.1.51.21,1,.33,1.45H325l-9.36,2.88-1.08-2.16a5.22,5.22,0,0,1,0-4.32S317.47,425.79,319.63,425.43Z"
style="fill: rgb(143, 143, 143); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 319.946px 427.875px 0px;"
id="eld9643sggpno" class="animable"></path>
<path
d="M347.4,430l3.6-5a41.31,41.31,0,0,0,5-.72c1.08-.36,3.6-2.88,3.6-2.88s2.52-1.08,3.6.72,2.52,4,1.08,4.32-2.16,1.08-4.32,2.16-3.24,1.8-4.32,1.44l-1.08-.36-1.8,4S347,433.26,347.4,430Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 356.133px 427.379px 0px;"
id="elffnwtnc6o6k" class="animable"></path>
<path d="M352.8,433.62l1.63-3.59c-3.43-2.23-3.43-5-3.43-5l-3.6,5C347,433.26,352.8,433.62,352.8,433.62Z"
style="fill: rgb(143, 143, 143); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 350.905px 429.325px 0px;"
id="elm6a0qjq2vj" class="animable"></path>
<path
d="M363.06,425.94l5.92-1.81a40.91,40.91,0,0,0,4.44,2.49c1.08.37,4.61-.09,4.61-.09s2.66.67,2.42,2.76-.41,4.68-1.77,4.09-2.37-.46-4.74-.92-3.67-.54-4.31-1.48L369,430l-3.84,2S360.8,428.29,363.06,425.94Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 371.438px 428.798px 0px;"
id="el7kjvpjvw3ud" class="animable"></path>
<path
d="M365.15,432.08l3.48-1.85c-1.37-3.86.35-6.1.35-6.1l-5.92,1.81C360.8,428.29,365.15,432.08,365.15,432.08Z"
style="fill: rgb(143, 143, 143); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 365.695px 428.105px 0px;"
id="elqd13zlh5ra" class="animable"></path>
<rect x="307.06" y="430.74" width="79.22" height="19.45" rx="3.12"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 346.67px 440.465px 0px;"
id="ely223qpphb7" class="animable"></rect>
<path
d="M369.61,430.68h8.92a0,0,0,0,1,0,0v7.25a3.69,3.69,0,0,1-3.69,3.69H373.3a3.69,3.69,0,0,1-3.69-3.69v-7.25A0,0,0,0,1,369.61,430.68Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 374.07px 436.15px 0px;"
id="elj0ml99l0yhi" class="animable"></path>
<path
d="M313.05,430.68H322a0,0,0,0,1,0,0v7.25a3.69,3.69,0,0,1-3.69,3.69h-1.55a3.69,3.69,0,0,1-3.69-3.69v-7.25A0,0,0,0,1,313.05,430.68Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 317.525px 436.15px 0px;"
id="elmhpvw7oba7m" class="animable"></path>
</g>
<g id="freepik--Typewriter--inject-19" style="transform-origin: 145.081px 408.151px 0px;"
class="animable">
<path d="M121.61,375.19H148a43.16,43.16,0,0,1,6.16,19.06H126.6Z"
style="fill: rgb(214, 214, 214); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 137.885px 384.72px 0px;"
id="elqyplahnio5" class="animable"></path>
<path d="M132.87,392.83s-7-23.64-18-24.51c-17.72-1.43-48.17.87-48.17.87S91.28,379.7,92.6,398.53h42.9Z"
style="fill: rgb(214, 214, 214); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 101.1px 383.191px 0px;"
id="ellj2w5vpmyvf" class="animable"></path>
<path
d="M114.92,368.32a11.8,11.8,0,0,0-8.32.87c-3.94,2.19-12.69,14.45-12.69,14.45H45.74s11.38-10.07,21-14.45S101.83,365.65,114.92,368.32Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 80.33px 374.876px 0px;"
id="elyqaspaec6sr" class="animable"></path>
<path
d="M72.89,390.64h70.64a14.71,14.71,0,0,1,11.77,5.86c5.67,7.53,16.89,20.15,31,24.35,12.86,3.83,21.79,3.9,26.68,3.41a4,4,0,0,1,4.35,4.12c-.21,5-.95,12.34-3.45,15.68a16.76,16.76,0,0,1-10.06,6.13H68.52s-13.14-5.26-10.07-20.58S72.89,390.64,72.89,390.64Z"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 137.659px 420.415px 0px;"
id="ele5j2fgnfzh" class="animable"></path>
<path
d="M100,390.64h70.64a14.7,14.7,0,0,1,11.76,5.86c5.67,7.53,16.89,20.15,31,24.35,12.86,3.83,21.78,3.9,26.67,3.41a4,4,0,0,1,4.35,4.12c-.2,5-.94,12.34-3.44,15.68a16.77,16.77,0,0,1-10.07,6.13H95.66s-13.13-5.26-10.07-20.58S100,390.64,100,390.64Z"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 164.775px 420.415px 0px;"
id="elzd74qv945" class="animable"></path>
<g id="eli50duin3wco">
<circle cx="135.5" cy="411.22" r="11.38"
style="fill: rgb(255, 255, 255); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 135.5px 411.22px 0px; transform: rotate(-45deg);"
class="animable"></circle>
</g>
<g id="el4l7c0hzfarf">
<circle cx="139" cy="411.22" r="11.38"
style="fill: rgb(38, 50, 56); stroke: rgb(38, 50, 56); stroke-linecap: round; stroke-linejoin: round; stroke-width: 0.988167px; transform-origin: 139px 411.22px 0px; transform: rotate(-45deg);"
class="animable"></circle>
</g>
</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>
</svg>
</figure>
<article class="mt-8 md:mt-0 md:text-lg">
<p class="text-fontcolor text-base font-medium">
Taking notes has never been easier with
<span class="wellnoted-style">wellnoted</span>. Effortlessly
unleash your
<span class="font-semibold text-amber-500">productivity</span>
and
<span class="font-semibold text-sky-500">creativity</span>.
</p>
</article>
</div>
<div class="w-full self-center lg:pl-10 lg:w-1/2">
<form id="registration-form" class="flex flex-col mb-8">
<div class="mb-5">
<h1 class="font-semibold text-2xl text-secondary md:text-4xl">
What are you waiting for? Join us today!
</h1>
</div>
<div class="email-section mb-6">
<div class="mb-2">
<label for="email" class="text-base font-medium text-fontcolor">Email</label>
</div>
<input type="email" for="email" name="email" id="email"
class="w-full bg-slate-100 rounded-md text-secondary focus:outline-none focus:ring-primary focus:ring-1 focus:border-primary p-3" />
</div>
<div class="password-section mb-6 lg:mb-12">
<div class="mb-2">
<label for="password" class="text-base font-medium text-fontcolor">Password</label>
</div>
<input type="text" for="password" name="password" id="password"
class="w-full bg-slate-100 rounded-md text-secondary focus:outline-none focus:ring-primary focus:ring-1 focus:border-primary p-3" />
</div>
<div class="signup-btn">
<button type="button" role="button"
class="font-semibold bg-primary text-white p-3 rounded-md w-full hover:bg-teal-800">
Sign Up
</button>
</div>
</form>
<p class="text-fontcolor font-semibold mb-5">Or sign up using:</p>
<div class="flex items-center justify-between md:justify-evenly">
<!-- Google -->
<a href="https://accounts.google.com" target="_blank" class="shadow-md p-4 rounded-md hover:bg-slate-100">
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<title>Google</title>
<g clip-path="url(#clip0_636_23102)">
<path
d="M24.545 12.27C24.545 11.48 24.475 10.73 24.355 10H13.055V14.51H19.525C19.235 15.99 18.385 17.24 17.125 18.09V21.09H20.985C23.245 19 24.545 15.92 24.545 12.27Z"
fill="#4285F4"></path>
<path
d="M13.055 24C16.295 24 19.005 22.92 20.985 21.09L17.125 18.09C16.045 18.81 14.675 19.25 13.055 19.25C9.92497 19.25 7.27497 17.14 6.32497 14.29H2.34497V17.38C4.31497 21.3 8.36497 24 13.055 24Z"
fill="#34A853"></path>
<path
d="M6.32499 14.29C6.07499 13.57 5.94499 12.8 5.94499 12C5.94499 11.2 6.08499 10.43 6.32499 9.71V6.62H2.34499C1.52499 8.24 1.05499 10.06 1.05499 12C1.05499 13.94 1.52499 15.76 2.34499 17.38L6.32499 14.29Z"
fill="#FBBC05"></path>
<path
d="M13.055 4.75C14.825 4.75 16.405 5.36 17.655 6.55L21.075 3.13C19.005 1.19 16.295 0 13.055 0C8.36497 0 4.31497 2.7 2.34497 6.62L6.32497 9.71C7.27497 6.86 9.92497 4.75 13.055 4.75Z"
fill="#EA4335"></path>
</g>
<defs>
<clipPath id="clip0_636_23102">
<rect width="24" height="24" fill="white" transform="translate(0.799988)"></rect>
</clipPath>
</defs>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/login" target="_blank"
class="shadow-md p-4 rounded-md hover:bg-slate-100">
<svg width="24" height="24" viewBox="0 0 980 980" xmlns="http://www.w3.org/2000/svg">
<title>LinkedIn</title>
<path
d="M882 0H98C44.1 0 0 44.1 0 98v784c0 53.9 44.1 98 98 98h784c53.9 0 98-44.1 98-98V98c0-53.9-44.1-98-98-98zM294 833H147V392h147v441zm-73.5-524.3c-49 0-88.2-39.2-88.2-88.2s39.2-88.2 88.2-88.2 88.2 39.2 88.2 88.2-39.2 88.2-88.2 88.2zM833 833H686V573.3c0-39.2-34.3-73.5-73.5-73.5S539 534.1 539 573.3V833H392V392h147v58.8c24.5-39.2 78.4-68.6 122.5-68.6 93.1 0 171.5 78.4 171.5 171.5V833z"
fill="#0E76A8" fill-rule="nonzero"></path>
</svg>
</a>
<!-- GitHub -->
<a href="https://github.com/login" target="_blank" class="shadow-md p-4 rounded-md hover:bg-slate-100">
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<title>Github</title>
<g clip-path="url(#clip0_636_23130)">
<path
d="M12.6 0C5.97398 0 0.599976 5.373 0.599976 12C0.599976 17.302 4.03798 21.8 8.80698 23.387C9.40598 23.498 9.59998 23.126 9.59998 22.81V20.576C6.26198 21.302 5.56698 19.16 5.56698 19.16C5.02098 17.773 4.23398 17.404 4.23398 17.404C3.14498 16.659 4.31698 16.675 4.31698 16.675C5.52198 16.759 6.15598 17.912 6.15598 17.912C7.22598 19.746 8.96298 19.216 9.64798 18.909C9.75498 18.134 10.066 17.604 10.41 17.305C7.74498 17 4.94298 15.971 4.94298 11.374C4.94298 10.063 5.41198 8.993 6.17898 8.153C6.05498 7.85 5.64398 6.629 6.29598 4.977C6.29598 4.977 7.30398 4.655 9.59698 6.207C10.554 5.941 11.58 5.808 12.6 5.803C13.62 5.808 14.647 5.941 15.606 6.207C17.897 4.655 18.903 4.977 18.903 4.977C19.556 6.63 19.145 7.851 19.021 8.153C19.791 8.993 20.256 10.064 20.256 11.374C20.256 15.983 17.449 16.998 14.777 17.295C15.207 17.667 15.6 18.397 15.6 19.517V22.81C15.6 23.129 15.792 23.504 16.401 23.386C21.166 21.797 24.6 17.3 24.6 12C24.6 5.373 19.227 0 12.6 0Z"
fill="black"></path>
</g>
<defs>
<clipPath id="clip0_636_23130">
<rect width="24" height="24" fill="white" transform="translate(0.599976)"></rect>
</clipPath>
</defs>
</svg>
</a>
<!-- Facebook -->
<a href="https://www.facebook.com/login/" target="_blank"
class="shadow-md p-4 rounded-md hover:bg-slate-100">
<svg viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" width="24" height="24">
<title>Facebook</title>
<g clip-path="url(#clip0_636_23113)">
<path
d="M10.42 23.88C4.71996 22.86 0.399963 17.94 0.399963 12C0.399963 5.4 5.79996 0 12.4 0C19 0 24.4 5.4 24.4 12C24.4 17.94 20.08 22.86 14.38 23.88L13.72 23.34H11.08L10.42 23.88Z"
fill="url(#paint0_linear_636_23113)"></path>
<path
d="M17.0799 15.36L17.62 12H14.4399V9.65999C14.4399 8.69999 14.7999 7.97999 16.24 7.97999H17.8V4.91999C16.96 4.79999 16 4.67999 15.16 4.67999C12.4 4.67999 10.4799 6.35999 10.4799 9.35999V12H7.47995V15.36H10.4799V23.82C11.1399 23.94 11.8 24 12.46 24C13.12 24 13.7799 23.94 14.4399 23.82V15.36H17.0799Z"
fill="white"></path>
</g>
<defs>
<linearGradient id="paint0_linear_636_23113" x1="12.4006" y1="23.1654" x2="12.4006" y2="-0.00442066"
gradientUnits="userSpaceOnUse">
<stop stop-color="#0062E0"></stop>
<stop offset="1" stop-color="#19AFFF"></stop>
</linearGradient>
<clipPath id="clip0_636_23113">
<rect width="24" height="24" fill="white" transform="translate(0.399963)"></rect>
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- About Section Start -->
<section id="about" class="pt-12 pb-20 bg-slate-50">
<div class="container">
<div class="block">
<div class="px-10 md:px-16 max-w-full mx-auto mb-12">
<h4 class="text-lg text-center font-semibold text-primary mb-5">
Introducing
</h4>
<h2 class="text-3xl text-center tracking-wide font-bold text-secondary md:text-4xl spac">
well<span class="font-semibold text-white bg-primary p-0.5 rounded-md">noted</span>.
</h2>
</div>
</div>
</div>
<div class="flex flex-col items-center justify-center px-10 md:px-16">
<article class="max-w-2xl">
<p class="text-fontcolor tracking-wide text-base mb-3">
Are you tired of scattered, disorganized notes that make finding important information a daunting task?
</p>
<p class="text-fontcolor tracking-wide text-base mb-3">
<span class="wellnoted-style">wellnoted</span> is here to revolutionize your note-taking experience.
</p>
<p class="text-fontcolor tracking-wide text-base">
This dynamic web app is designed to capture, organize, and access your notes seamlessly, ensuring that no
brilliant idea or crucial detail ever slips through the cracks.
</p>
</article>
<figure class="w-24 rounded-full relative top-10 lg:w-32">
<img src="./src/images/yoga-about.png" alt="Yoga Krisanta" class="rounded-full shadow-lg bg-slate-50" />
</figure>
<div class="max-w-2xl w-full h-full border shadow-md rounded-md px-5 pt-16 pb-5 bg-white">
<p class="text-base italic text-fontcolor mb-7">
"<span class="wellnoted-style">wellnoted</span> is more than just a
note-taking web app. It helps you become more productive with its to-do app. Oh, it also got a wheater
app... How cool is that?"
</p>
<p class="text-sm text-right text-fontcolor font-semibold">Yoga Krisanta | Owner &
Developer</p>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Features Section Start -->
<section id="features" class="pt-32 pb-16 bg-slate-100">
<div class="container">
<div class="block mb-12 lg:mb-0">
<div class="px-10 lg:px-16 max-w-full mx-auto">
<h4 class="text-lg text-center font-semibold text-primary mb-2">
Features
</h4>
<h2 class="text-3xl text-center font-semibold text-secondary md:text-4xl">
Why Choose Us?
</h2>
</div>
</div>
<!-- Features Card Start -->
<div
class="w-full px-10 flex flex-wrap items-center justify-center sm:gap-9 sm:m-auto md:gap-20 md:px-0 lg:hidden">
<div class="mb-12 w-80 sm:w-64 sm:mb-0">
<div
class="p-5 shadow-lg rounded-md overflow-hidden bg-slate-50 hover:scale-95 transition duration-300 ease-in-out">
<figure class="w-3/4 mb-5 mx-auto">
<img src="./src/images/feature-1.svg" />
</figure>
<h3 class="font-semibold text-xl text-secondary mb-3">
Simplicity Meets Power
</h3>
<p class="font-medium text-fontcolor">
With its intuitive interface, wellnoted helps you focus on your
thoughts, ideas, and tasks.
</p>
</div>
</div>
<div class="mb-12 w-80 sm:w-64 sm:mb-0">
<div
class="p-5 shadow-lg rounded-md overflow-hidden bg-slate-50 hover:scale-95 transition duration-300 ease-in-out">
<figure class="w-3/4 mb-5 mx-auto">
<img src="./src/images/feature-2.svg" />
</figure>
<h3 class="font-semibold text-xl text-secondary mb-3">
Find Notes In An Instant
</h3>
<p class="font-medium text-fontcolor">
Our advanced search and tagging features help you find what you
need in seconds.
</p>
</div>
</div>
<div class="mb-12 w-80 sm:w-64 sm:mb-0">
<div
class="p-5 shadow-lg rounded-md overflow-hidden bg-slate-50 hover:scale-95 transition duration-300 ease-in-out">
<figure class="w-3/4 mb-5 mx-auto">
<img src="./src/images/feature-3.svg" />
</figure>
<h3 class="font-semibold text-xl text-secondary mb-3">
Keep Notes Organized
</h3>
<p class="font-medium text-fontcolor">
Our smart organization tools keep your notes in perfect order in
folders and categories.
</p>
</div>
</div>
<div class="mb-12 w-80 sm:w-64 sm:mb-0">
<div
class="p-5 shadow-lg rounded-md overflow-hidden bg-slate-50 hover:scale-95 transition duration-300 ease-in-out">
<figure class="w-3/4 mb-5 mx-auto">
<img src="./src/images/feature-4.svg" />