-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2634 lines (2487 loc) · 292 KB
/
index.html
File metadata and controls
2634 lines (2487 loc) · 292 KB
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" data-theme="moon" class="dark bg-neutral-800">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="a personal portfolio website to contact Mehrad Rahmani">
<!-- font family -->
<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=DM+Sans&display=swap" rel="stylesheet">
<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=Nunito:wght@300;400;700&family=Poppins:wght@300;400;700&display=swap"
rel="stylesheet">
<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=Rubik:wght@300;400;500&display=swap" rel="stylesheet">
<!-- font family -->
<link rel="stylesheet" href="./css/build.css">
<script src="./js/script.js" defer></script>
<title>MehradDev</title>
</head>
<body>
<!-- Header and Navbar -->
<div class="bg-shapy">
<div class="bg-gradienty" id="bg-gradienty">
<nav class="w-full flex justify-center">
<div class="w-full max-w-6xl p-4 flex flex-col items-center sm:flex-row sm:justify-between gap-2">
<div class="hidden sm:flex">
<p>MehradDev</p>
</div>
<!-- buttons say hello and dark mode -->
<div class="flex gap-2 w-full justify-between sm:justify-normal sm:w-fit">
<button id="dark-mode-btn" class="btn btn-circle btn-ghost">
<svg class="moon-icon w-6 h-6 text-primary" xmlns="http://www.w3.org/2000/svg" fill="none"
viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round"
d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
</svg>
<svg class="hidden sun-icon w-6 h-6 text-primary" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round"
d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
</svg>
</button>
<a href="https://t.me/mehraddev" target="_blank">
<button class="btn btn-primary rounded-full px-10">
<span>Say Hello</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="w-5 h-5">
<path fill-rule="evenodd"
d="M2 3.5A1.5 1.5 0 013.5 2h1.148a1.5 1.5 0 011.465 1.175l.716 3.223a1.5 1.5 0 01-1.052 1.767l-.933.267c-.41.117-.643.555-.48.95a11.542 11.542 0 006.254 6.254c.395.163.833-.07.95-.48l.267-.933a1.5 1.5 0 011.767-1.052l3.223.716A1.5 1.5 0 0118 15.352V16.5a1.5 1.5 0 01-1.5 1.5H15c-1.149 0-2.263-.15-3.326-.43A13.022 13.022 0 012.43 8.326 13.019 13.019 0 012 5V3.5z"
clip-rule="evenodd" />
</svg>
</button>
</a>
</div>
<!-- buttons say hello and dark mode -->
</div>
</nav>
<div class="w-full flex justify-center ">
<header class="w-full max-w-6xl h-[800px] flex flex-col justify-center relative gap-2">
<div class="w-full flex justify-center lg:justify-start z-10">
<div class="leading-none flex flex-col p-2 items-center lg:items-start lg:ml-10 xl:ml-20">
<p class="text-3xl">Hi, my name is</p>
<h1 class="font-bold text-center lg:text-left dark:text-white">Mehrad Rahmani.</h1>
<p class="text-5xl text-center lg:text-left dark:text-white">I'm a
<span
class="text-primary font-bold underline underline-offset-4 decoration-primary ">Frontend
Web Developer</span>.
</p>
</div>
</div>
<ul
class="flex xl:flex-col xl:gap-1 xl:p-1 xl:absolute top-1/2 xl:-translate-y-1/2 z-20 rounded-full xl:ml-4 lg:justify-start justify-center p-0 lg:pl-10">
<a target="_blank" href="https://github.com/Mehraddev/">
<li>
<div class="social-media-icon tooltip" data-tip="GitHub">
<svg class="w-6 h-6" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
</svg>
</div>
</li>
</a>
<a target="_blank" href="https://www.linkedin.com/in/mehrad-rahmani">
<li>
<div class="social-media-icon tooltip" data-tip="LinkedIn">
<svg class="w-6 h-6" aria-hidden="true" focusable="false" data-prefix="fab"
data-icon="linkedin-in" role="img" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512" data-fa-i2svg="">
<path
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z">
</path>
</svg>
</div>
</li>
</a>
<a target="_blank" href="https://www.instagram.com/mehrad.dev/">
<li>
<div class="social-media-icon tooltip" data-tip="Instagram">
<svg class="w-6 h-6" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<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>
</div>
</li>
</a>
<a target="_blank" href="https://t.me/mehraddev">
<li>
<div class="social-media-icon tooltip" data-tip="Telegram">
<svg class="w-6 h-6" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z" />
</svg>
</div>
</li>
</a>
<a target="_blank" href="https://codepen.io/mehraddev">
<li>
<div class="social-media-icon tooltip" data-tip="CodePen">
<svg class="w-6 h-6" role="img" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path
d="M18.144 13.067v-2.134L16.55 12zm1.276 1.194a.628.628 0 01-.006.083l-.005.028-.011.053-.01.031c-.005.016-.01.031-.017.047l-.014.03a.78.78 0 01-.021.043l-.019.03a.57.57 0 01-.08.1l-.026.025a.602.602 0 01-.036.03l-.029.022-.01.008-6.782 4.522a.637.637 0 01-.708 0L4.864 14.79l-.01-.008a.599.599 0 01-.065-.052l-.026-.025-.032-.034-.021-.028a.588.588 0 01-.067-.11l-.014-.031a.644.644 0 01-.017-.047l-.01-.03c-.004-.018-.008-.036-.01-.054l-.006-.028a.628.628 0 01-.006-.083V9.739c0-.028.002-.055.006-.083l.005-.027.011-.054.01-.03a.574.574 0 01.12-.217l.031-.034.026-.025a.62.62 0 01.065-.052l.01-.008 6.782-4.521a.638.638 0 01.708 0l6.782 4.521.01.008.03.022.035.03c.01.008.017.016.026.025a.545.545 0 01.08.1l.019.03a.633.633 0 01.021.043l.014.03c.007.016.012.032.017.047l.01.031c.004.018.008.036.01.054l.006.027a.619.619 0 01.006.083zM12 0C5.373 0 0 5.372 0 12 0 18.627 5.373 24 12 24c6.628 0 12-5.372 12-12 0-6.627-5.372-12-12-12m0 10.492L9.745 12 12 13.51 14.255 12zm.638 4.124v2.975l4.996-3.33-2.232-1.493zm-6.272-.356l4.996 3.33v-2.974l-2.764-1.849zm11.268-4.52l-4.996-3.33v2.974l2.764 1.85zm-6.272-.356V6.41L6.366 9.74l2.232 1.493zm-5.506 1.549v2.134L7.45 12Z" />
</svg>
</div>
</li>
</a>
<a target="_blank" href="https://x.com/mehraddev">
<li>
<div class="social-media-icon tooltip" data-tip="Twitter(X)">
<svg class="w-6 h-6" style="vertical-align: text-top" viewBox="0 0 24 24"
aria-label="X" role="img">
<g>
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
fill="currentColor"></path>
</g>
</svg>
</div>
</li>
</a>
</ul>
<div class="w-fit max-w-3xl flex lg:ml-10 xl:ml-20 p-2">
<p class="text-center lg:text-start dark:text-white">i build and design beautiful websites.
i
like simple,
minimal and modern user interfaces.
</p>
</div>
<div class="w-full flex justify-center lg:justify-start z-10">
<div class="flex flex-col p-2 justify-center">
<div
class="w-fit max-w-3xl lg:ml-10 xl:ml-20 p-2 dark:text-primary flex flex-col sm:flex-row gap-6 items-center">
<a href="https://www.linkedin.com/in/mehrad-rahmani">
<button class="btn btn-primary rounded-full w-44 relative">
<span class="absolute left-10">Hire me</span>
<div class="p-2 bg-neutral-50 rounded-full absolute right-1">
<svg class="w-6 h-6 text-primary" xmlns="http://www.w3.org/2000/svg"
fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"
class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
</div>
</button>
</a>
<div
class="text-primary flex items-center gap-2 link link-primary no-underline font-normal group">
<span>Check out my projects</span>
<svg class="w-4 h-4 group-hover:translate-x-2 transition-all"
xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"
stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round"
d="M8.25 4.5l7.5 7.5-7.5 7.5" />
</svg>
</div>
</div>
</div>
</div>
</header>
</div>
</div>
</div>
<main class="grid gap-10">
<!-- what i do section -->
<div class="w-full flex justify-center">
<div class="w-full max-w-6xl px-4 md:px-10">
<div class="w-ful dark:text-neutral-50 flex flex-col gap-10 mb-10">
<div
class="grid xl:grid-cols-[1fr_2fr] grid-cols-1 gap-10 items-center md:justify-items-center text-center xl:text-start">
<div>
<h3 class="text-secondary leading-10 font-bold">Building Web
Applications
</h3>
<p>i create and build <span class="badge badge-primary">Responsive</span>, <span
class="badge badge-accent">Lightweight</span> and
<span class="badge badge-error">Powerful</span> web
applications using latest
technologies.
</p>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1"
class="w-full md:w-[500px] lg:w-[600px]" viewBox="0 0 1098.75 632.37039"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>heatmap</title>
<ellipse cx="549.375" cy="600.77366" rx="549.375" ry="31.59674" fill="#f2f2f2" />
<rect x="174.96748" width="825.31765" height="26.25696" fill="#f2f2f2" />
<circle cx="197.05271" cy="12.74148" r="6.79546" fill="#6c63ff" />
<circle cx="219.13794" cy="12.74148" r="6.79546" fill="#6c63ff" />
<circle cx="241.22317" cy="12.74148" r="6.79546" fill="#6c63ff" />
<polygon
points="175.552 415.277 174.967 415.779 174.967 592.903 1000.285 592.903 1000.285 281.779 990.449 282.525 175.552 415.277"
fill="#3f3d56" />
<rect x="234.5289" y="175.64069" width="230.47032" height="9.29316" fill="#3f3d56" />
<rect x="234.5289" y="196.08564" width="230.47032" height="9.29316" fill="#3f3d56" />
<rect x="234.5289" y="216.53058" width="78.06253" height="9.29316" fill="#3f3d56" />
<rect x="704.5289" y="433.64069" width="230.47032" height="9.29316" fill="#fff" />
<rect x="704.5289" y="454.08564" width="230.47032" height="9.29316" fill="#fff" />
<rect x="704.5289" y="474.53058" width="78.06253" height="9.29316" fill="#fff" />
<circle cx="561.33549" cy="575.26922" r="9.0658" fill="#f2f2f2" />
<circle cx="587.6263" cy="576.1758" r="9.0658" fill="#f2f2f2" />
<circle cx="613.91711" cy="577.08238" r="9.0658" fill="#f2f2f2" />
<circle cx="587.70943" cy="576.1758" r="7.25264" fill="#3f3d56" />
<rect x="310.5289" y="282.01368" width="78.06253" height="17.81006" fill="#3f3d56" />
<rect x="774.5289" y="523.01368" width="78.06253" height="17.81006" fill="#fff" />
<circle cx="350" cy="291.01368" r="54" fill="#6c63ff" opacity="0.3" />
<circle cx="350" cy="291.01368" r="36" fill="#6c63ff" opacity="0.3" />
<circle cx="350" cy="291.01368" r="25" fill="#6c63ff" />
<circle cx="804.375" cy="157.1852" r="54" fill="#6c63ff" opacity="0.3" />
<circle cx="804.375" cy="157.1852" r="36" fill="#6c63ff" opacity="0.3" />
<circle cx="804.375" cy="157.1852" r="25" fill="#6c63ff" />
<circle cx="814" cy="532.01368" r="54" fill="#6c63ff" opacity="0.3" />
<circle cx="814" cy="532.01368" r="36" fill="#6c63ff" opacity="0.3" />
<circle cx="814" cy="532.01368" r="25" fill="#6c63ff" />
<rect x="141.09287" y="215.02041" width="22.24232" height="28.59727"
transform="translate(244.80285 330.54921) rotate(-177.77929)" fill="#6c63ff" />
<path
d="M241.91491,314.67894s30.77895-14.70576,30.28646-2.00541-31.02521,21.05594-31.02521,21.05594Z"
transform="translate(-50.625 -133.8148)" fill="#ffb9b9" />
<path
d="M225.02834,422.13944S239.54941,457.681,244.9146,483.328s13.53608,60.94229,3.02582,85.97362-40.39191,98.59934-40.69972,106.53706,2.55946,15.99857-3.79071,15.75232-40.90677-11.12588-42.30963-15.95007,11.79-17.032,11.79-17.032l32.57732-102.08224L171.5182,490.02139l-24.51648,99.215-4.80184,123.82843s-23.56691-7.2736-26.98824-1.04655c0,0-10.55875-14.71883-11.90005-21.13057s4.98653-128.59106,4.98653-128.59106-21.63236-139.16289-4.16937-138.4857S189.99232,382.62245,225.02834,422.13944Z"
transform="translate(-50.625 -133.8148)" fill="#2f2e41" />
<path
d="M203.69623,685.2408s16.10862,35.60315,17.63461,37.25226,12.02317,17.95548,4.08545,17.64767-26.68044-8.98428-40.47584-22.23869-31.98406-36.21877-30.33495-37.74475,12.9466-5.85768,12.9466-5.85768Z"
transform="translate(-50.625 -133.8148)" fill="#2f2e41" />
<path
d="M139.33261,705.00394s.97192,15.937,3.90076,22.4103,2.55947,15.99856-5.37825,15.69075-28.45267-4.2832-28.45267-4.2832-1.21817-9.58683.43093-11.11281,8.67647-18.74272,5.68607-23.62847S139.33261,705.00394,139.33261,705.00394Z"
transform="translate(-50.625 -133.8148)" fill="#2f2e41" />
<path
d="M127.58939,187.8209s-16.922,26.37263-23.51842,32.47656,11.9616,19.543,11.9616,19.543l33.2153,4.46789s-.41786-30.2249,1.29281-33.33842S127.58939,187.8209,127.58939,187.8209Z"
transform="translate(-50.625 -133.8148)" fill="#ffb9b9" />
<path
d="M156.45992,222.329s-6.84267,12.45411-13.19285,12.20786-39.1961-14.2394-40.599-19.0636-10.87963,34.5566-10.87963,34.5566L172.16,391.47053l19.60459-13.54915-9.49913-83.04478-7.80153-44.8206Z"
transform="translate(-50.625 -133.8148)" fill="#6c63ff" />
<path
d="M99.70361,348.91253c3.206,6.70666,5.20835,13.70047,4.9307,20.86031-.01231.31753-.02462.635-.05282.95187-.76057,14.69329-6.17341,31.68645-8.11534,44.04442-1.40908,8.86485-1.00808,15.33552,4.1797,16.85636,12.57723,3.66759-1.83379,6.28862,46.826,22.48494s57.15159,2.21623,57.27471-.95886-6.89116-27.29606-5.24206-28.822,23.07442,19.974,29.54772,17.04512.73874-19.05053.73874-19.05053-14.58264-33.954-14.27483-41.89176-22.08942-45.37466-22.08942-45.37466L178.193,235.89122s-5.85768-12.9466-13.73384-14.84195-14.411,2.621-14.411,2.621L163.228,252.80015l13.90546,51.417-2.32629,18.989s-16.17018-34.0156-26.7905-47.14689-33.26379-44.21805-33.26379-44.21805-5.28646-17.83738-1.2957-23.16791c3.99136-5.34632-16.64671-6.14663-25.4463,15.77118-4.66382,11.61641-12.23581,28.93924-16.97922,45.068-4.22682,14.28852-6.22343,27.646-2.03588,35.28111C75.396,316.45748,91.4958,331.78866,99.70361,348.91253Z"
transform="translate(-50.625 -133.8148)" fill="#575a89" />
<path
d="M68.99574,304.79359c6.40029,11.66389,22.50006,26.99507,30.70787,44.11894,2.14378-7.72349,4.75909-15.71476,4.75909-15.71476s10.03082-53.66869-19.64-67.53872a19.85762,19.85762,0,0,0-13.79106,3.85343C66.8048,283.801,64.80819,297.15851,68.99574,304.79359Z"
transform="translate(-50.625 -133.8148)" opacity="0.1" />
<path
d="M186.7818,301.41146l25.15446,7.33517,34.926,1.35436,3.593,30.348L193.05735,344.583S178.721,304.27874,186.7818,301.41146Z"
transform="translate(-50.625 -133.8148)" fill="#575a89" />
<path
d="M145.764,403.451s33.65163,5.58313,25.971,15.7098-37.49194-.51979-37.49194-.51979Z"
transform="translate(-50.625 -133.8148)" fill="#ffb9b9" />
<path
d="M104.58149,370.72471c-.76057,14.69329-6.17341,31.68645-8.11534,44.04442,10.72016,10.14608,20.91438,19.09523,24.75621,19.24421,7.93772.30781,20.69963-.78723,25.4007.985s7.4583-28.32955,7.4583-28.32955-2.80572-9.64839-15.32139-14.90351C130.31217,388.21008,114.119,378.56726,104.58149,370.72471Z"
transform="translate(-50.625 -133.8148)" opacity="0.1" />
<path
d="M85.19206,256.13379s-26.86513-4.22165-25.41378,40.35271-2.83185,73.027,7.97315,81.39568,45.90258,46.29809,53.8403,46.6059,20.69964-.78724,25.40071.985,7.45829-28.32954,7.45829-28.32954S151.645,387.49514,139.12935,382.24s-42.00182-23.88779-41.75558-30.238,7.4583-28.32955,7.4583-28.32955S114.8629,270.00382,85.19206,256.13379Z"
transform="translate(-50.625 -133.8148)" fill="#575a89" />
<circle cx="100.65442" cy="58.10462" r="34.95222" fill="#ffb9b9" />
<path
d="M174.81363,141.82272a6.74905,6.74905,0,0,0,2.93882,1.47478,2.09716,2.09716,0,0,0,2.43029-1.68345c.79968,1.65841,1.70192,3.42593,3.33461,4.27689s4.15732.13741,4.39266-1.68864a7.706,7.706,0,0,0,1.77364,3.74392c1.013.96584,2.85,1.20961,3.73439.12482-.715,3.90745-.27369,7.92586-.49823,11.89184s-1.2821,8.17049-4.27847,10.7784c-4.36987,3.80334-10.94108,2.86467-16.68929,2.1441a5.06575,5.06575,0,0,0-2.61539.14307c-2.15231.917-2.05467,3.9131-2.08369,6.25243a17.37275,17.37275,0,0,1-15.21221,16.49749,8.70861,8.70861,0,0,1-6.47244-1.57964c-1.63206-1.38336-2.46572-3.63806-4.33585-4.67724-3.04207-1.6904-6.73153.77486-8.95568,3.45158s-4.4162,5.96933-7.86172,6.45932c-4.55691.648-8.02766-3.996-9.73047-8.27217a48.223,48.223,0,0,1,.95837-37.46978C125.15791,132.94937,157.66118,129.66876,174.81363,141.82272Z"
transform="translate(-50.625 -133.8148)" fill="#2f2e41" />
<path
d="M1013.84731,697.58434c12.30975,20.99239,37.13647,29.30353,37.13647,29.30353s4.86866-25.72424-7.44108-46.71664-37.13647-29.30354-37.13647-29.30354S1001.53756,676.59194,1013.84731,697.58434Z"
transform="translate(-50.625 -133.8148)" fill="#f2f2f2" />
<path
d="M1021.52851,690.25752c21.28835,11.79052,30.20667,36.40565,30.20667,36.40565s-25.59693,5.49892-46.88529-6.2916-30.20667-36.40564-30.20667-36.40564S1000.24015,678.467,1021.52851,690.25752Z"
transform="translate(-50.625 -133.8148)" fill="#6c63ff" />
</svg>
</div>
</div>
<div
class="grid xl:grid-cols-[2fr_1fr] grid-cols-1 gap-10 items-center md:justify-items-center text-center xl:text-start">
<div class="order-1 lg:order-2">
<h3 class="text-primary leading-10 font-bold">Designing User Interfaces</h3>
<p>i love design and i'm alwaays willing to learn new stuff about <span
class="badge badge-warning">UI
& UX</span> and web design. i create <span
class="badge badge-success">User-friendly</span> websites. i'm open to hear new
ideas and <span class="badge badge-secondary">Creative</span> minds.
</p>
</div>
<div class="order-2 xl:order-1">
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1"
class="w-full md:w-[500px] lg:w-[600px]" viewBox="0 0 980 489.48047"
xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M317.06006,205.25977a205.979,205.979,0,0,0-77.68457,15.06689c-.99365.40723-1.99121.81641-2.98828,1.23486A206.78061,206.78061,0,0,0,110,412.31982v225.94a9.01016,9.01016,0,0,0,9,9l.17871.01562c173.4668,31.50195,342.106,47.46484,501.37207,47.46484q3.58155,0,7.15625-.01074c156.55469-.47656,308.99414-16.43945,453.083-47.44726l.21-.02246a9.00984,9.00984,0,0,0,9-9v-424a9.01015,9.01015,0,0,0-9-9Z"
transform="translate(-110 -205.25977)" fill="#039be5" />
<path id="f4300551-56ef-4356-8f30-d0080b223343-669" data-name="Path 40"
d="M855.79948,385.45241a5.94683,5.94683,0,0,0,0,11.89205H1004.8852a5.94683,5.94683,0,1,0,.19525-11.89205q-.09762-.00165-.19525,0Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<path
d="M1038.69419,383.79676a1.17,1.17,0,0,0,0,1.65472l5.02282,5.02288H1031.3312a1.17005,1.17005,0,1,0,0,2.34011H1043.717l-5.02282,5.02287a1.17005,1.17005,0,1,0,1.65468,1.65473l7.02029-7.02029a1.17011,1.17011,0,0,0,0-1.65473l-7.02029-7.02029A1.17,1.17,0,0,0,1038.69419,383.79676Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M821.92744,383.79676a1.17,1.17,0,0,1,0,1.65472l-5.02282,5.02288h12.38581a1.17006,1.17006,0,1,1,0,2.34011H816.90462l5.02282,5.02287a1.17,1.17,0,0,1-1.65467,1.65473l-7.0203-7.02029a1.17011,1.17011,0,0,1,0-1.65473l7.0203-7.02029A1.17,1.17,0,0,1,821.92744,383.79676Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<g opacity="0.4">
<circle cx="751.81992" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="778.44451" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="805.06909" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="831.69368" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="858.31826" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="884.94285" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="911.56744" cy="50.3899" r="6.3899" fill="#fff" />
<circle cx="751.81992" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="778.44451" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="805.06909" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="831.69368" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="858.31826" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="884.94285" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="911.56744" cy="70.62459" r="6.3899" fill="#fff" />
<circle cx="751.81992" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="778.44451" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="805.06909" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="831.69368" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="858.31826" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="884.94285" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="911.56744" cy="90.85927" r="6.3899" fill="#fff" />
<circle cx="751.81992" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="778.44451" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="751.81992" cy="131.32864" r="6.3899" fill="#fff" />
<circle cx="778.44451" cy="131.32864" r="6.3899" fill="#fff" />
<circle cx="805.06909" cy="131.32864" r="6.3899" fill="#fff" />
<circle cx="805.06909" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="831.69368" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="858.31826" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="884.94285" cy="111.09396" r="6.3899" fill="#fff" />
<circle cx="911.56744" cy="111.09396" r="6.3899" fill="#fff" />
</g>
<path
d="M770.15723,580.71875a35.27246,35.27246,0,1,1,35.27246-35.27246A35.31251,35.31251,0,0,1,770.15723,580.71875Zm0-68.54492a33.27246,33.27246,0,1,0,33.27246,33.27246A33.30991,33.30991,0,0,0,770.15723,512.17383Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<path
d="M783.68058,542.06548H773.53835V531.92315a3.38081,3.38081,0,0,0-6.76162,0v10.14233H756.6344a3.38076,3.38076,0,0,0,0,6.76152h10.14233v10.14233a3.38081,3.38081,0,0,0,6.76162,0V548.827h10.14223a3.38076,3.38076,0,1,0,0-6.76152Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<g opacity="0.4">
<circle cx="54.0239" cy="374.76553" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="353.83257" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="332.89961" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="311.96665" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="291.03369" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="270.10073" r="5.02391" fill="#fff" />
<circle cx="54.0239" cy="249.16777" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="374.76553" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="353.83257" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="332.89961" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="311.96665" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="291.03369" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="270.10073" r="5.02391" fill="#fff" />
<circle cx="69.93295" cy="249.16777" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="374.76553" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="353.83257" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="332.89961" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="311.96665" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="291.03369" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="270.10073" r="5.02391" fill="#fff" />
<circle cx="85.842" cy="249.16777" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="374.76553" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="353.83257" r="5.02391" fill="#fff" />
<circle cx="117.6601" cy="374.76553" r="5.02391" fill="#fff" />
<circle cx="117.6601" cy="353.83257" r="5.02391" fill="#fff" />
<circle cx="117.6601" cy="332.89961" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="332.89961" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="311.96665" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="291.03369" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="270.10073" r="5.02391" fill="#fff" />
<circle cx="101.75105" cy="249.16777" r="5.02391" fill="#fff" />
</g>
<path
d="M607.40837,238.262H273.66631a6.18856,6.18856,0,0,0-6.1823,6.18237v285.3832a6.18855,6.18855,0,0,0,6.1823,6.18236H607.40837a6.1886,6.1886,0,0,0,6.18237-6.18236V244.44434A6.18861,6.18861,0,0,0,607.40837,238.262Zm3.70479,291.56557a3.71813,3.71813,0,0,1-3.70479,3.71637H273.66631a3.71067,3.71067,0,0,1-3.70472-3.71637V244.44434a3.71067,3.71067,0,0,1,3.70472-3.71637H607.40837a3.71813,3.71813,0,0,1,3.70479,3.71637Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<path
d="M350.70245,485.26609c0,.43995-.01159.87989-.03477,1.30825a25.17464,25.17464,0,0,1-50.28069,0c-.02317-.42836-.03469-.8683-.03469-1.30825a25.17508,25.17508,0,1,1,50.35015,0Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M581.475,468.47884H383.66331a4.19682,4.19682,0,0,0,0,8.39363H581.475a4.19682,4.19682,0,0,0,0-8.39363Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<path
d="M468.78046,493.65971H383.66331a4.191,4.191,0,0,0,0,8.382h85.11715a4.191,4.191,0,1,0,0-8.382Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M686.69824,438.84082H352.958a8.559,8.559,0,0,1-8.54883-8.5498V283.8291a8.55888,8.55888,0,0,1,8.54883-8.54931H686.69824a8.55888,8.55888,0,0,1,8.54883,8.54931V430.291A8.559,8.559,0,0,1,686.69824,438.84082ZM352.958,278.27979a5.55529,5.55529,0,0,0-5.54883,5.54931V430.291a5.55572,5.55572,0,0,0,5.54883,5.5498H686.69824a5.55572,5.55572,0,0,0,5.54883-5.5498V283.8291a5.55529,5.55529,0,0,0-5.54883-5.54931Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M420.9242,328.69922a4.19591,4.19591,0,1,0,0,8.39182H618.73156a4.19591,4.19591,0,1,0,0-8.39182Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M420.9242,353.01178a4.19591,4.19591,0,0,0,0,8.39183H618.73156a4.19592,4.19592,0,0,0,0-8.39183Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M420.9242,377.02952a4.19591,4.19591,0,0,0,0,8.39183h85.11711a4.19592,4.19592,0,0,0,0-8.39183Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M741.72363,500.89258l-33.51977-47.30731,10.85107,2.2611a1.50113,1.50113,0,1,0,.61212-2.9392l-16.17059-3.36628-2.18262,16.37055a1.50115,1.50115,0,1,0,2.976.39642l1.46319-10.99322L739.27637,502.627a1.49976,1.49976,0,1,0,2.44726-1.73437Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M559.66593,638.58034H321.40883a4.41735,4.41735,0,0,1-4.41216-4.41216V575.06677a4.41735,4.41735,0,0,1,4.41216-4.41216h238.2571a4.41735,4.41735,0,0,1,4.41216,4.41216v59.10141A4.41735,4.41735,0,0,1,559.66593,638.58034Zm-238.2571-66.16087a2.65019,2.65019,0,0,0-2.6473,2.6473v59.10141a2.65019,2.65019,0,0,0,2.6473,2.64729h238.2571a2.65019,2.65019,0,0,0,2.64729-2.64729V575.06677a2.65019,2.65019,0,0,0-2.64729-2.6473Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<circle cx="248.42913" cy="397.08997" r="17.97281" fill="#fff" />
<path
d="M399.93776,590.36787a2.99547,2.99547,0,1,0,0,5.99093H541.15269a2.99546,2.99546,0,1,0,0-5.99093Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M399.93776,608.34068a2.99547,2.99547,0,1,0,0,5.99093H460.703a2.99546,2.99546,0,1,0,0-5.99093Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M874.0245,428.0156H979.91678a4.41735,4.41735,0,0,1,4.41216,4.41216V542.71023a4.41735,4.41735,0,0,1-4.41216,4.41216H874.0245a4.41736,4.41736,0,0,1-4.41217-4.41216V432.42776A4.41736,4.41736,0,0,1,874.0245,428.0156ZM979.91678,545.35752a2.65019,2.65019,0,0,0,2.6473-2.64729V432.42776a2.6502,2.6502,0,0,0-2.6473-2.6473H874.0245a2.65019,2.65019,0,0,0-2.6473,2.6473V542.71023a2.65019,2.65019,0,0,0,2.6473,2.64729Z"
transform="translate(-110 -205.25977)" fill="#3f3d56" />
<path
d="M957.35324,524.38014a2.99547,2.99547,0,0,0,0-5.99094H896.588a2.99547,2.99547,0,0,0,0,5.99094Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M957.35324,506.73149a2.99547,2.99547,0,1,0,0-5.99093H896.588a2.99547,2.99547,0,1,0,0,5.99093Z"
transform="translate(-110 -205.25977)" fill="#fff" />
<path
d="M926.97042,450.75785a18.85509,18.85509,0,1,1-18.85509,18.85509A18.87645,18.87645,0,0,1,926.97042,450.75785Z"
transform="translate(-110 -205.25977)" fill="#fff" />
</svg>
</div>
</div>
<!-- start tools section -->
<div class="flex justify-center my-10">
<div
class=" grid p-2 grid-cols-1 xs:grid-cols-4 md:grid-cols-5 justify-items-center [&>*]:flex [&>*]:flex-col [&>*]:xl:flex-row [&>*]:gap-1 [&>*]:items-center [&>*]:justify-around [&>*]:w-full gap-10">
<div>
<span>Tailwind</span>
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64">
<defs>
<linearGradient x1="0" y1="-21.333" y2="85.333" id="A" x2="64"
gradientUnits="userSpaceOnUse">
<stop stop-color="#2383ae" offset="0%" />
<stop stop-color="#6dd7b9" offset="100%" />
</linearGradient>
</defs>
<path
d="M16 25.6c2.133-8.533 7.467-12.8 16-12.8 12.8 0 14.4 9.6 20.8 11.2 4.267 1.067 8-.533 11.2-4.8C61.867 27.733 56.533 32 48 32c-12.8 0-14.4-9.6-20.8-11.2-4.267-1.067-8 .533-11.2 4.8zM0 44.8C2.133 36.267 7.467 32 16 32c12.8 0 14.4 9.6 20.8 11.2 4.267 1.067 8-.533 11.2-4.8-2.133 8.533-7.467 12.8-16 12.8-12.8 0-14.4-9.6-20.8-11.2-4.267-1.067-8 .533-11.2 4.8z"
fill="url(#A)" fill-rule="evenodd" />
</svg>
</div>
<div>
<span>JavaScript</span>
<svg width="55" height="55" viewBox="0 0 256 256" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="xMidYMid">
<g>
<path d="M0,0 L256,0 L256,256 L0,256 L0,0 Z" fill="#F7DF1E"></path>
<path
d="M67.311746,213.932292 L86.902654,202.076241 C90.6821079,208.777346 94.1202286,214.447137 102.367086,214.447137 C110.272203,214.447137 115.256076,211.354819 115.256076,199.326883 L115.256076,117.528787 L139.313575,117.528787 L139.313575,199.666997 C139.313575,224.58433 124.707759,235.925943 103.3984,235.925943 C84.1532952,235.925943 72.9819429,225.958603 67.3113397,213.93026"
fill="#000000"></path>
<path
d="M152.380952,211.354413 L171.969422,200.0128 C177.125994,208.433981 183.827911,214.619835 195.684368,214.619835 C205.652521,214.619835 212.009041,209.635962 212.009041,202.762159 C212.009041,194.513676 205.479416,191.592025 194.481168,186.78207 L188.468419,184.202565 C171.111213,176.81473 159.597308,167.53534 159.597308,147.944838 C159.597308,129.901308 173.344508,116.153295 194.825752,116.153295 C210.119924,116.153295 221.117765,121.48094 229.021663,135.400432 L210.29059,147.428775 C206.166146,140.040127 201.699556,137.119289 194.826159,137.119289 C187.78047,137.119289 183.312254,141.587098 183.312254,147.428775 C183.312254,154.646349 187.78047,157.568406 198.089956,162.036622 L204.103924,164.614095 C224.553448,173.378641 236.067352,182.313448 236.067352,202.418387 C236.067352,224.071924 219.055137,235.927975 196.200432,235.927975 C173.860978,235.927975 159.425829,225.274311 152.381359,211.354413"
fill="#000000"></path>
</g>
</svg>
</div>
<div>
<span>React</span>
<svg viewBox="0 0 128 128" class="icon" width="64" height="64">
<g fill="#61dbfb">
<circle cx="64" cy="64" r="11.4"></circle>
<path
d="M107.3 45.2c-2.2-.8-4.5-1.6-6.9-2.3.6-2.4 1.1-4.8 1.5-7.1 2.1-13.2-.2-22.5-6.6-26.1-1.9-1.1-4-1.6-6.4-1.6-7 0-15.9 5.2-24.9 13.9-9-8.7-17.9-13.9-24.9-13.9-2.4 0-4.5.5-6.4 1.6-6.4 3.7-8.7 13-6.6 26.1.4 2.3.9 4.7 1.5 7.1-2.4.7-4.7 1.4-6.9 2.3C8.2 50 1.4 56.6 1.4 64s6.9 14 19.3 18.8c2.2.8 4.5 1.6 6.9 2.3-.6 2.4-1.1 4.8-1.5 7.1-2.1 13.2.2 22.5 6.6 26.1 1.9 1.1 4 1.6 6.4 1.6 7.1 0 16-5.2 24.9-13.9 9 8.7 17.9 13.9 24.9 13.9 2.4 0 4.5-.5 6.4-1.6 6.4-3.7 8.7-13 6.6-26.1-.4-2.3-.9-4.7-1.5-7.1 2.4-.7 4.7-1.4 6.9-2.3 12.5-4.8 19.3-11.4 19.3-18.8s-6.8-14-19.3-18.8zM92.5 14.7c4.1 2.4 5.5 9.8 3.8 20.3-.3 2.1-.8 4.3-1.4 6.6-5.2-1.2-10.7-2-16.5-2.5-3.4-4.8-6.9-9.1-10.4-13 7.4-7.3 14.9-12.3 21-12.3 1.3 0 2.5.3 3.5.9zM81.3 74c-1.8 3.2-3.9 6.4-6.1 9.6-3.7.3-7.4.4-11.2.4-3.9 0-7.6-.1-11.2-.4-2.2-3.2-4.2-6.4-6-9.6-1.9-3.3-3.7-6.7-5.3-10 1.6-3.3 3.4-6.7 5.3-10 1.8-3.2 3.9-6.4 6.1-9.6 3.7-.3 7.4-.4 11.2-.4 3.9 0 7.6.1 11.2.4 2.2 3.2 4.2 6.4 6 9.6 1.9 3.3 3.7 6.7 5.3 10-1.7 3.3-3.4 6.6-5.3 10zm8.3-3.3c1.5 3.5 2.7 6.9 3.8 10.3-3.4.8-7 1.4-10.8 1.9 1.2-1.9 2.5-3.9 3.6-6 1.2-2.1 2.3-4.2 3.4-6.2zM64 97.8c-2.4-2.6-4.7-5.4-6.9-8.3 2.3.1 4.6.2 6.9.2 2.3 0 4.6-.1 6.9-.2-2.2 2.9-4.5 5.7-6.9 8.3zm-18.6-15c-3.8-.5-7.4-1.1-10.8-1.9 1.1-3.3 2.3-6.8 3.8-10.3 1.1 2 2.2 4.1 3.4 6.1 1.2 2.2 2.4 4.1 3.6 6.1zm-7-25.5c-1.5-3.5-2.7-6.9-3.8-10.3 3.4-.8 7-1.4 10.8-1.9-1.2 1.9-2.5 3.9-3.6 6-1.2 2.1-2.3 4.2-3.4 6.2zM64 30.2c2.4 2.6 4.7 5.4 6.9 8.3-2.3-.1-4.6-.2-6.9-.2-2.3 0-4.6.1-6.9.2 2.2-2.9 4.5-5.7 6.9-8.3zm22.2 21l-3.6-6c3.8.5 7.4 1.1 10.8 1.9-1.1 3.3-2.3 6.8-3.8 10.3-1.1-2.1-2.2-4.2-3.4-6.2zM31.7 35c-1.7-10.5-.3-17.9 3.8-20.3 1-.6 2.2-.9 3.5-.9 6 0 13.5 4.9 21 12.3-3.5 3.8-7 8.2-10.4 13-5.8.5-11.3 1.4-16.5 2.5-.6-2.3-1-4.5-1.4-6.6zM7 64c0-4.7 5.7-9.7 15.7-13.4 2-.8 4.2-1.5 6.4-2.1 1.6 5 3.6 10.3 6 15.6-2.4 5.3-4.5 10.5-6 15.5C15.3 75.6 7 69.6 7 64zm28.5 49.3c-4.1-2.4-5.5-9.8-3.8-20.3.3-2.1.8-4.3 1.4-6.6 5.2 1.2 10.7 2 16.5 2.5 3.4 4.8 6.9 9.1 10.4 13-7.4 7.3-14.9 12.3-21 12.3-1.3 0-2.5-.3-3.5-.9zM96.3 93c1.7 10.5.3 17.9-3.8 20.3-1 .6-2.2.9-3.5.9-6 0-13.5-4.9-21-12.3 3.5-3.8 7-8.2 10.4-13 5.8-.5 11.3-1.4 16.5-2.5.6 2.3 1 4.5 1.4 6.6zm9-15.6c-2 .8-4.2 1.5-6.4 2.1-1.6-5-3.6-10.3-6-15.6 2.4-5.3 4.5-10.5 6-15.5 13.8 4 22.1 10 22.1 15.6 0 4.7-5.8 9.7-15.7 13.4z">
</path>
</g>
</svg>
</div>
<div>
<span>CSS3</span>
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="64" height="64"
viewBox="0 0 64 64" id="svg3476" version="1.1"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="w3_css-icon.svg">
<defs id="defs3478" />
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666"
borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2"
inkscape:zoom="4.8766667" inkscape:cx="27.142857" inkscape:cy="28.571429"
inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false"
fit-margin-top="0" fit-margin-left="0" fit-margin-right="0"
fit-margin-bottom="0" inkscape:window-width="1850" inkscape:window-height="1016"
inkscape:window-x="70" inkscape:window-y="27" inkscape:window-maximized="1"
units="px" />
<metadata id="metadata3481">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1"
transform="translate(-193.633,-739.48031)">
<polygon style="fill:#264de4"
points="437.367,100.62 404.321,470.819 255.778,512 107.644,470.877 74.633,100.62 "
id="polygon2989"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
<polygon style="fill:#2965f1"
points="256,480.523 376.03,447.246 404.27,130.894 256,130.894 "
id="polygon2991"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
<polygon style="fill:#ebebeb"
points="256,268.217 150.31,268.217 154.38,313.627 256,313.627 "
id="polygon2993"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
<polygon style="fill:#ebebeb"
points="256,176.305 255.843,176.305 142.132,176.305 146.26,221.716 256,221.716 "
id="polygon2995"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
<polygon style="fill:#ebebeb"
points="156.409,336.333 162.771,407.634 255.791,433.457 256,433.399 256,386.153 255.801,386.206 205.227,372.55 201.994,336.333 177.419,336.333 "
id="polygon2997"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
<polygon style="fill:#ffffff"
points="311.761,313.627 306.49,372.521 255.843,386.191 255.843,433.435 348.937,407.634 349.62,399.962 360.291,280.411 361.399,268.217 369.597,176.305 255.843,176.305 255.843,221.716 319.831,221.716 315.699,268.217 255.843,268.217 255.843,313.627 "
id="polygon3005"
transform="matrix(0.15557406,0,0,0.15557392,185.82204,723.82646)" />
</g>
</svg>
</div>
<div>
<span>HTML5</span>
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 32 32">
<path d="M4.46 28.802L1.892.001h28.216l-2.57 28.797L15.982 32z" fill="#e44d26" />
<path d="M25.337 26.964l2.197-24.608H16v27.197z" fill="#f16529" />
<path
d="M15.988 5.888H7.142l.953 10.682H16v-3.532h-4.674l-.323-3.617H16V5.888zM16 22.2l-.015.004-3.934-1.062-.25-2.817H8.253l.495 5.546 7.236 2 .016-.005z"
fill="#ebebeb" />
<path
d="M15.988 16.57h4.35l-.4 4.58-3.94 1.063v3.675l7.242-2.007.97-10.845H16zm8.764-9.734l.084-.948h-8.85V9.42h8.532l.07-.794z"
fill="#fff" />
</svg>
</div>
</div>
</div>
<!-- end tools section -->
</div>
</div>
</div>
<!-- My Projects Start -->
<div class="w-full flex justify-center overflow-x-hidden z-20">
<div class="w-full max-w-6xl font-Rubik font-light p-4">
<div class="grid grid-cols-1 xl:grid-cols-3 grid-rows-3 gap-4">
<div
class="services__box col-span-1 xl:col-span-2 row-span-2 bg-primary flex items-center justify-center justify-items-center">
<div>
<h3 class="text-center">Collaborative</h3>
<svg xmlns="http://www.w3.org/2000/svg" class="w-full" viewBox="0 0 500 500">
<g id="freepik--Floor--inject-115">
<path id="freepik--floor--inject-115"
d="M76.39,423c-95.87-55.35-95.88-145.1,0-200.45s251.32-55.36,347.2,0,95.88,145.1,0,200.45S172.27,478.38,76.39,423Z"
style="fill:#f5f5f5"></path>
</g>
<g id="freepik--Shadows--inject-115">
<g id="freepik--Shadow--inject-115">
<path
d="M356.87,337.94c-8-4.63-12.36-6-14.41-6.35A14.53,14.53,0,0,1,335,341.8a32.43,32.43,0,0,1-30,0c-5.16-3-8.12-7.5-8.12-12.41s3-9.44,8.12-12.42A25.79,25.79,0,0,1,315,313.86c-1-.62-2.11-1.31-3.41-2.06L282,294.73l31.64-18.27c9.58-5.52,16.82-8.21,22.16-8.21,7.08,0,10.38,4.5,11.1,8.71.45,2.7.45,2.7,1.61,3.37a19.7,19.7,0,0,0,17.09,0,5.42,5.42,0,0,0,1.52-1.19,5.23,5.23,0,0,0-1.52-1.19c-2.35-1.36-5.31-1.59-10.78-1.9-8.32-.47-10.93-4.22-11.66-7.28-1.62-6.82,5.13-12.31,15.75-18.44l25.16-14.53,23.09,13.33c10.62,6.13,17.36,11.62,15.74,18.44-.73,3.06-3.34,6.81-11.65,7.28-5.47.31-8.44.54-10.79,1.9a5.39,5.39,0,0,0-1.52,1.19,5.58,5.58,0,0,0,1.52,1.19,19.7,19.7,0,0,0,17.09,0c1.16-.67,1.16-.67,1.62-3.36.72-4.22,4-8.72,11.1-8.72,5.33,0,12.58,2.69,22.15,8.22L482,292.34,450.39,310.6c-1.3.75-2.43,1.44-3.42,2.06a25.59,25.59,0,0,1,10.11,3.12c5.17,3,8.13,7.5,8.13,12.41s-3,9.43-8.13,12.41a32.41,32.41,0,0,1-30,0,14.53,14.53,0,0,1-7.5-10.2c-2.06.37-6.4,1.71-14.42,6.34L380,351.27Z"
style="fill:#e0e0e0"></path>
<path
d="M224.83,262.45c-10.51-6.09-17.17-11.54-15.55-18.33.73-3.06,3.35-6.81,11.65-7.28,5.47-.31,8.43-.53,10.79-1.89a5.58,5.58,0,0,0,1.52-1.19,5.36,5.36,0,0,0-1.52-1.2,19.7,19.7,0,0,0-17.09,0c-1.16.67-1.16.67-1.62,3.36-.72,4.22-4,8.72-11.1,8.72-5.29,0-12.47-2.65-21.95-8.09l-29.77-17.19,31.64-18.27c9.58-5.53,16.82-8.21,22.16-8.21,7.08,0,10.38,4.5,11.1,8.71.46,2.7.46,2.7,1.62,3.37a19.7,19.7,0,0,0,17.09,0,5.72,5.72,0,0,0,1.52-1.2,5.76,5.76,0,0,0-1.52-1.19c-2.36-1.36-5.32-1.58-10.79-1.89-8.31-.48-10.93-4.23-11.66-7.29-1.62-6.82,5.13-12.3,15.75-18.43l25.16-14.53,23.09,13.33c8,4.63,12.36,6,14.41,6.34a14.56,14.56,0,0,1,7.5-10.21,32.43,32.43,0,0,1,30.05,0c5.16,3,8.12,7.51,8.12,12.42s-3,9.43-8.12,12.41a25.41,25.41,0,0,1-10.11,3.11c1,.63,2.11,1.31,3.41,2.06L350.18,217l-31.64,18.27c-1.3.75-2.43,1.43-3.42,2.06a25.67,25.67,0,0,1,10.12,3.11c5.16,3,8.12,7.51,8.12,12.42s-3,9.43-8.12,12.41a30.5,30.5,0,0,1-15,3.69h0a30.46,30.46,0,0,1-15-3.69,14.53,14.53,0,0,1-7.5-10.21c-2.06.38-6.4,1.72-14.42,6.34l-25.16,14.53Z"
style="fill:#e0e0e0"></path>
<path
d="M220.38,416.17c-8-4.63-12.36-6-14.41-6.34a14.56,14.56,0,0,1-7.5,10.21,32.51,32.51,0,0,1-30.05,0c-5.16-3-8.12-7.51-8.12-12.42s3-9.43,8.12-12.41a25.64,25.64,0,0,1,10.11-3.12c-1-.62-2.11-1.3-3.41-2L145.55,373l31.64-18.27c1.3-.75,2.43-1.44,3.42-2.06a25.74,25.74,0,0,1-10.11-3.11c-5.17-3-8.13-7.51-8.13-12.42s3-9.43,8.13-12.41a32.41,32.41,0,0,1,30,0,14.5,14.5,0,0,1,7.5,10.2c2.06-.37,6.4-1.71,14.42-6.34L247.62,314l23.09,13.33c10.62,6.13,17.36,11.61,15.74,18.43-.73,3.06-3.34,6.81-11.65,7.29-5.47.31-8.43.53-10.79,1.89a5.58,5.58,0,0,0-1.52,1.19,5.55,5.55,0,0,0,1.52,1.2,19.7,19.7,0,0,0,17.09,0c1.16-.68,1.16-.68,1.62-3.37.72-4.21,4-8.72,11.1-8.72,5.33,0,12.58,2.69,22.15,8.22l29.57,17.07L313.9,388.84c-9.58,5.53-16.82,8.21-22.16,8.21-7.08,0-10.38-4.5-11.09-8.72-.46-2.69-.46-2.69-1.62-3.36a19.7,19.7,0,0,0-17.09,0,5.42,5.42,0,0,0-1.52,1.19,5.21,5.21,0,0,0,1.52,1.2c2.35,1.36,5.31,1.58,10.78,1.89,8.32.47,10.93,4.22,11.66,7.29,1.62,6.82-5.12,12.3-15.75,18.43L243.47,429.5Z"
style="fill:#e0e0e0"></path>
<path
d="M88.8,340.2c-10.62-6.13-17.36-11.62-15.74-18.44.73-3.06,3.34-6.81,11.65-7.28,5.47-.31,8.43-.54,10.78-1.9A5.42,5.42,0,0,0,97,311.39a5.23,5.23,0,0,0-1.52-1.19A17.67,17.67,0,0,0,87,308.25a17.67,17.67,0,0,0-8.54,1.95c-1.16.67-1.16.67-1.62,3.36-.72,4.22-4,8.72-11.1,8.72-5.33,0-12.58-2.69-22.16-8.22L14,297l31.64-18.26c1.3-.75,2.43-1.44,3.42-2.06a25.64,25.64,0,0,1-10.12-3.12c-5.16-3-8.12-7.5-8.12-12.41s3-9.44,8.12-12.42a30.6,30.6,0,0,1,15-3.68,30.56,30.56,0,0,1,15,3.68,14.56,14.56,0,0,1,7.5,10.21c2.05-.37,6.4-1.71,14.41-6.34L116,238.06l23.28,13.45c7.89,4.53,12.18,5.86,14.21,6.23A14.54,14.54,0,0,1,161,247.53a32.41,32.41,0,0,1,30,0c5.17,3,8.13,7.5,8.13,12.41s-3,9.44-8.13,12.42a25.74,25.74,0,0,1-10.1,3.11c.93.59,2,1.24,3.22,1.95L214,294.6l-31.64,18.27c-9.58,5.52-16.82,8.21-22.16,8.21h0c-7.08,0-10.38-4.5-11.1-8.72-.46-2.69-.46-2.69-1.62-3.36a19.7,19.7,0,0,0-17.09,0,5.76,5.76,0,0,0-1.52,1.19,5.72,5.72,0,0,0,1.52,1.2c2.36,1.35,5.32,1.58,10.79,1.89,8.31.47,10.93,4.22,11.65,7.28,1.63,6.82-5.12,12.31-15.74,18.44l-25.16,14.53Z"
style="fill:#e0e0e0"></path>
</g>
<path id="freepik--shadow--inject-115"
d="M58.24,401.1l9.2-5.33a11.07,11.07,0,0,1,10,0l3.21,1.85,12-6.91a4.36,4.36,0,0,1,3.92,0l.08.05a1.19,1.19,0,0,1,0,2.26l-12,6.91.67.38c2.77,1.6,2.77,4.2,0,5.81l-9.2,5.33L62.72,419.2,44.81,408.86Z"
style="fill:#e0e0e0"></path>
<path id="freepik--shadow--inject-115"
d="M132,404.28a2.09,2.09,0,0,0-.16-.27l-.11-.17-.13-.18-.31-.4c-.12-.14-.26-.29-.41-.44a9.56,9.56,0,0,0-1.08-.93l-.2-.13,0,0-.18-.1a7.28,7.28,0,0,0-2.68-.93l-.47-.05h-.47l-.48,0-.21,0-.18,0-.09,0-.13,0a1.81,1.81,0,0,0-.31.09h0a3.61,3.61,0,0,0-.42.16h0a5.56,5.56,0,0,0-.75.41,8,8,0,0,0-1.36,1.14c-.19.2-.36.4-.52.6s-.43.61-.61.9a5.83,5.83,0,0,0-.32.6l-.15.29c-.18.38-.34.75-.49,1.08-.65.31-27.14,15.52-32.94,19.08l0,0-.74.46c-7.61,4.75-16.35,12.85-16.35,12.85h0l-.1.11a.67.67,0,0,0,.16.95.68.68,0,0,0,.6.1h0a123.3,123.3,0,0,0,18.56-9.19c6.13-3.82,31.54-20.75,32.56-21.56a7.34,7.34,0,0,0,4.11-.22A7.22,7.22,0,0,0,129,406h0a4.78,4.78,0,0,1,.74-.75,2.94,2.94,0,0,1,2.4-.72A2.49,2.49,0,0,0,132,404.28Z"
style="fill:#e0e0e0"></path>
<path id="freepik--shadow--inject-115"
d="M83.68,417.57a145.09,145.09,0,0,0-14.56,14.84h0a1.25,1.25,0,0,0-.09.12.68.68,0,0,0,.89.94h0A122.42,122.42,0,0,0,87.19,422c4.14-3.4,8.06-7.11,10.61-9.62h0c1.08-1,2.09-2,3-3h0a7.34,7.34,0,0,0,4-.75,7.22,7.22,0,0,0,3.08-3.09h0a5,5,0,0,1,.64-.84,2.93,2.93,0,0,1,2.28-1l-.15-.22-.2-.25-.13-.15-.15-.16h0l-.36-.36c-.14-.12-.29-.25-.46-.38a7.79,7.79,0,0,0-1.2-.78l-.2-.11-.06,0-.19-.08a7.35,7.35,0,0,0-2.78-.58l-.46,0-.47.05a3.56,3.56,0,0,0-.47.1l-.21,0-.17.06-.09,0-.12,0-.3.13h0l-.39.21h0a4.09,4.09,0,0,0-.69.51,7.63,7.63,0,0,0-1.21,1.3c-.16.22-.3.44-.43.66a6.89,6.89,0,0,0-.49,1c-.09.21-.18.42-.25.62s-.07.21-.1.31c-.14.4-.25.79-.35,1.14C97.68,407.5,89.46,412.75,83.68,417.57Z"
style="fill:#e0e0e0"></path>
<path id="freepik--shadow--inject-115"
d="M39.78,389.47c8,4.59,20.86,4.59,28.81,0s8-12,0-16.63-20.85-4.6-28.81,0S31.83,384.88,39.78,389.47Z"
style="fill:#e0e0e0"></path>
<path id="freepik--shadow--inject-115"
d="M435.78,403.43a10.65,10.65,0,0,1-2.9-.42c-2.84-.8-3.72-2.28-4-3.39a5.13,5.13,0,0,1,1.92-4.69c.44-.37,1-.76,1.48-1.17,1.37-1.06,3.08-2.37,3.48-3.39l1.93-4.95-1.46-.84.31-.73-1.51.32-.68-.91c-1.51.73-5.22,2.53-10.19,5l-2.95,1.5a28,28,0,0,1-6.65,2.8,11.54,11.54,0,0,1-2.64.32,5.36,5.36,0,0,1-4.13-1.5,4.1,4.1,0,0,1-.92-3.37c.52-4.66,9.61-8.73,14.33-9.16,1.55-.14,3-.2,4.6-.2.77,0,1.46,0,2.08,0l1.36,0c.42,0,.79,0,1.14,0,1.79-.17,7.35-1.19,7.4-1.2l.61-.12.37.5,1.39-.27c1.84-1.3,15.88-11.26,19.2-13.54,2.07-1.42,5.78-3.67,6.9-3.67h.61l.37.56.28.53-.37.63a27.89,27.89,0,0,1-5.31,6.08c-1.18.94-4.6,3.84-8,6.75l25.66-5-1.13,1.92c-.31.53-2,2.06-10.64,4.62-5.21,1.53-14.73,3.74-21.9,5.34l-1.16,1c-.08,1.28-.34,5.17-.51,7.2a7.69,7.69,0,0,0,.37,2.43c.43,1.72,1,3.85-.43,6A10,10,0,0,1,435.78,403.43Zm1.81-7.4a4.69,4.69,0,0,0-3.37,1.32,1.2,1.2,0,0,0-.34,1,1.55,1.55,0,0,0,1.12.84,4.14,4.14,0,0,0,1.14.15,4.69,4.69,0,0,0,3.37-1.32,1.2,1.2,0,0,0,.34-1,1.55,1.55,0,0,0-1.12-.84A4.14,4.14,0,0,0,437.59,396Zm-13.15-13.64a18.09,18.09,0,0,0-5.54,1c-4.93,1.62-6.48,3.64-7,4.7-.07.13-.2.47-.08.64a1,1,0,0,0,.82.29,2.12,2.12,0,0,0,.49-.06,7.66,7.66,0,0,0,2.55-1.23,32.39,32.39,0,0,1,3.1-1.76,59.55,59.55,0,0,1,8-3.22l.08,0A9.06,9.06,0,0,0,424.44,382.39Z"
style="fill:#e0e0e0"></path>
<path id="freepik--shadow--inject-115"
d="M483.53,224l-75.64-43.79a4,4,0,0,0-2.87-.59l-.73.41a1.73,1.73,0,0,0,.81,1.95l26.19,15.26-26.12,15.54-26.83-15.62c-1.17-.67-2.39-1.28-3.56-.6h0c-1.17.67-.89,1.25.28,1.93L450.43,243Z"
style="fill:#e0e0e0"></path>
</g>
<g id="freepik--Puzzle--inject-115">
<g id="freepik--puzzle--inject-115">
<path
d="M469.07,277.88l-19.85-11.46c-15.42-8.9-22.77-9-23.62-4-.59,3.44-1,5.73-4.77,7.89-6.25,3.61-16.2,3.74-22.75.43,3.5-1.76,7.32-2,12.84-2.32,3.68-.21,5.76-1.09,5.76-2.72V251.21c0-2.21-3.84-5.79-12.72-10.92l-19.85-11.46-21.92,12.66c-8.88,5.12-12.73,8.71-12.73,10.92v14.47c0,1.63,2.08,2.51,5.77,2.72,5.51.31,9.33.56,12.83,2.31-6.54,3.32-16.5,3.18-22.75-.42-3.73-2.16-4.18-4.46-4.76-7.89-.86-5-8.22-4.88-23.63,4L295,280.28v14.47L314.51,306a17.75,17.75,0,0,0-6.36,2.11c-3.25,1.88-4.88,4.34-4.88,6.8V329.4c0,2.46,1.62,4.93,4.88,6.81,6.51,3.76,17.06,3.76,23.57,0,3.73-2.16,4.18-4.45,4.77-7.89.85-5,8.2-4.88,23.62,4L380,343.8l21.92-12.66c15.41-8.89,22.77-9,23.63-4,.59,3.43,1,5.73,4.77,7.88,6.51,3.76,17.05,3.76,23.57,0,3.25-1.88,4.88-4.34,4.88-6.8V313.74c0-2.47-1.63-4.93-4.88-6.81a17.94,17.94,0,0,0-6.37-2.11l21.59-12.47Z"
style="fill:#039BE5"></path>
<path
d="M314.49,306,295,294.75V280.27h0l19.84,11.45c15.4,8.9,15.65,13.15,7,13.64C319,305.52,316.61,305.66,314.49,306Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M349.46,266.88V252.41c0,1.62,2.1,2.49,5.77,2.7,5.94.34,9.92.6,13.65,2.75,6.51,3.76,6.51,9.85,0,13.61-.27.15-.54.3-.82.44-3.5-1.75-7.32-2-12.83-2.31C351.54,269.39,349.46,268.5,349.46,266.88Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M360.11,317.86c-15.42-8.91-22.77-9-23.62-4v14.48c.85-5,8.2-4.88,23.62,4L380,343.8V329.31Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M453.85,320.52c-6.51,3.76-17.07,3.76-23.58,0-3.73-2.16-4.18-4.45-4.76-7.88v14.49c.58,3.43,1,5.73,4.76,7.88,6.51,3.76,17.07,3.76,23.58,0,3.25-1.88,4.88-4.34,4.88-6.8V313.74C458.72,316.19,457.09,318.65,453.85,320.52Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M397.26,256.66c3.73-2.15,7.71-2.41,13.65-2.75,3.68-.21,5.75-1.09,5.77-2.7v14.47c0,1.63-2.08,2.51-5.77,2.72-5.5.31-9.32.56-12.82,2.31-.28-.13-.56-.29-.83-.44C390.75,266.51,390.75,260.42,397.26,256.66Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M331.72,321.72c-6.51,3.76-17.06,3.76-23.57,0-3.24-1.87-4.88-4.34-4.89-6.79,0,2.46,0,12,0,14.47s1.63,4.93,4.89,6.81c6.51,3.76,17.06,3.76,23.57,0,3.73-2.16,4.18-4.46,4.77-7.89V313.84C335.9,317.27,335.45,319.57,331.72,321.72Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M401.88,316.66,380,329.31V343.8l21.92-12.65c15.41-8.91,22.77-9,23.63-4V312.64C424.65,307.62,417.29,307.76,401.88,316.66Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M469.07,277.88v14.47L447.51,304.8c-2.12-.34-4.5-.47-7.32-.64-8.7-.49-8.46-4.73,7-13.64l21.91-12.64Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M397.26,256.66c3.74-2.15,7.71-2.41,13.66-2.75,8.69-.49,8.45-4.74-7-13.64l-19.85-11.46-21.92,12.66c-15.42,8.9-15.66,13.14-7,13.64,5.94.34,9.92.6,13.65,2.75,6.51,3.76,6.51,9.85,0,13.61s-17.05,3.76-23.57,0c-3.73-2.16-4.18-4.45-4.76-7.89-.86-5-8.22-4.87-23.63,4L295,280.26l19.85,11.46c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.75-6.51,3.76-6.51,9.85,0,13.61s17.06,3.76,23.57,0c3.73-2.16,4.18-4.45,4.77-7.88.85-5,8.2-4.89,23.62,4L380,329.31l21.92-12.65c15.41-8.9,22.77-9,23.63-4,.59,3.43,1,5.73,4.77,7.88,6.51,3.76,17.05,3.76,23.57,0s6.51-9.85,0-13.61c-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.49-8.46-4.74,7-13.64l21.92-12.66-19.85-11.45c-15.42-8.91-22.77-9-23.62-4-.59,3.43-1,5.73-4.77,7.88-6.51,3.76-17.06,3.76-23.57,0S390.75,260.42,397.26,256.66Z"
style="fill:#039BE5"></path>
<path
d="M397.26,256.66c3.74-2.15,7.71-2.41,13.66-2.75,8.69-.49,8.45-4.74-7-13.64l-19.85-11.46-21.92,12.66c-15.42,8.9-15.66,13.14-7,13.64,5.94.34,9.92.6,13.65,2.75,6.51,3.76,6.51,9.85,0,13.61s-17.05,3.76-23.57,0c-3.73-2.16-4.18-4.45-4.76-7.89-.86-5-8.22-4.87-23.63,4L295,280.26l19.85,11.46c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.75-6.51,3.76-6.51,9.85,0,13.61s17.06,3.76,23.57,0c3.73-2.16,4.18-4.45,4.77-7.88.85-5,8.2-4.89,23.62,4L380,329.31l21.92-12.65c15.41-8.9,22.77-9,23.63-4,.59,3.43,1,5.73,4.77,7.88,6.51,3.76,17.05,3.76,23.57,0s6.51-9.85,0-13.61c-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.49-8.46-4.74,7-13.64l21.92-12.66-19.85-11.45c-15.42-8.91-22.77-9-23.62-4-.59,3.43-1,5.73-4.77,7.88-6.51,3.76-17.06,3.76-23.57,0S390.75,260.42,397.26,256.66Z"
style="fill:#fff;opacity:0.7000000000000001"></path>
<g style="opacity:0.7000000000000001">
<path
d="M384.11,231,403,241.9c10.71,6.19,11.68,8.82,11.77,9.23-.18.16-1.05.74-4,.9-6,.34-10.31.59-14.49,3-3.76,2.17-5.82,5.17-5.82,8.44s2.06,6.26,5.82,8.43a27.91,27.91,0,0,0,25.45,0c4.56-2.63,5.11-5.82,5.68-9.2.11-.61.3-1.76,2.86-1.76s7.81,1.23,18,7.1l17,9.82-19.1,11c-13,7.5-14.15,11-13.57,13.39.8,3.38,5.8,3.67,7.44,3.76,6.19.35,9.57.63,12.82,2.51,2.55,1.46,4,3.3,4,5.17s-1.4,3.7-4,5.17a24.15,24.15,0,0,1-21.68,0c-3-1.75-3.31-3.36-3.85-6.57s-2.93-4.89-6.57-4.89c-4.44,0-11.13,2.55-19.86,7.59l-21,12.12-18.91-10.92c-8.73-5-15.41-7.6-19.85-7.6-3.65,0-6,1.79-6.57,4.9s-.82,4.82-3.85,6.57a24.17,24.17,0,0,1-21.69,0c-2.54-1.47-3.94-3.31-3.94-5.17s1.4-3.71,3.94-5.18c3.26-1.88,6.64-2.15,12.82-2.5,1.65-.09,6.64-.38,7.45-3.76.57-2.42-.59-5.9-13.57-13.39l-17-9.83,19.09-11c10.16-5.86,15.38-7.09,18-7.09s2.75,1.15,2.85,1.76c.58,3.38,1.12,6.57,5.68,9.2a27.91,27.91,0,0,0,25.45,0c3.76-2.17,5.83-5.16,5.83-8.43s-2.07-6.27-5.83-8.44c-4.18-2.42-8.5-2.66-14.49-3-2.94-.17-3.8-.75-4-.9.07-.42,1-3,11.78-9.23l21-12.11m0-2.18-21.92,12.66c-15.42,8.9-15.66,13.14-7,13.64,5.94.34,9.92.6,13.65,2.75,6.51,3.76,6.51,9.85,0,13.61a26,26,0,0,1-23.57,0c-3.73-2.16-4.18-4.45-4.76-7.89-.36-2.12-1.9-3.32-4.71-3.32-3.83,0-10,2.22-18.92,7.34L295,280.26l19.85,11.46c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.75-6.51,3.76-6.51,9.85,0,13.61a26,26,0,0,0,23.57,0c3.73-2.16,4.18-4.45,4.77-7.88.36-2.13,1.89-3.33,4.71-3.33,3.83,0,10,2.21,18.91,7.34L380,329.31l21.92-12.65c8.88-5.13,15.09-7.35,18.92-7.35,2.82,0,4.35,1.2,4.71,3.33.59,3.43,1,5.73,4.77,7.88a26,26,0,0,0,23.57,0c6.51-3.76,6.51-9.85,0-13.61-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.49-8.46-4.74,7-13.64l21.92-12.66-19.85-11.45c-8.88-5.13-15.08-7.35-18.91-7.35-2.82,0-4.35,1.2-4.71,3.33-.59,3.43-1,5.73-4.77,7.88a26,26,0,0,1-23.57,0c-6.51-3.76-6.51-9.85,0-13.61,3.74-2.15,7.71-2.41,13.66-2.75,8.69-.49,8.45-4.74-7-13.64l-19.85-11.46Z"
style="fill:#fff"></path>
</g>
<path
d="M337.22,202.49l-19.51-11.27a17.75,17.75,0,0,0,6.36-2.11c3.26-1.88,4.88-4.34,4.88-6.8V167.83c0-2.46-1.62-4.92-4.88-6.8-6.51-3.76-17.06-3.76-23.57,0-3.73,2.16-4.18,4.45-4.76,7.88-.86,5-8.21,4.89-23.63-4l-19.85-11.46-21.92,12.65c-8.88,5.13-12.73,8.71-12.73,10.92v14.48c0,1.62,2.08,2.51,5.77,2.72,5.51.31,9.33.56,12.84,2.31-6.55,3.32-16.51,3.18-22.75-.43-3.74-2.15-4.19-4.45-4.77-7.88-.86-5-8.22-4.88-23.63,4l-21.92,12.66v14.47l20,11.57c15.29,8.79,22.58,8.9,23.43,3.91.59-3.44,1-5.73,4.77-7.89,6.25-3.61,16.2-3.74,22.75-.43-3.5,1.76-7.32,2-12.84,2.32-3.68.21-5.76,1.09-5.76,2.72V246c0,2.19,3.79,5.74,12.53,10.81l20,11.57L270,255.75c15.41-8.89,22.77-9,23.63-4,.59,3.43,1,5.72,4.77,7.88,6.51,3.76,17.06,3.76,23.57,0,3.24-1.87,4.87-4.33,4.88-6.78s0-12,0-14.5-1.63-4.92-4.88-6.8a17.75,17.75,0,0,0-6.36-2.11L337.22,217Z"
style="fill:#039BE5"></path>
<path
d="M308.34,228.79c2.81.16,5.18.3,7.3.64h0L337.22,217V202.49L315.3,215.15C299.88,224.05,299.65,228.29,308.34,228.79Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M237,182.49c-3.73-2.16-7.71-2.42-13.65-2.75-3.74-.22-5.83-1.13-5.77-2.8v14.55c0,1.62,2.08,2.51,5.77,2.72,5.51.31,9.34.56,12.85,2.32a8.71,8.71,0,0,0,.8-.44C243.55,192.34,243.55,186.25,237,182.49Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M324.07,174.64c-3.73,2.15-7.71,2.41-13.66,2.75-8.69.49-8.45,4.74,7,13.64l.34.19a17.75,17.75,0,0,0,6.36-2.11c3.26-1.88,4.88-4.34,4.88-6.8V167.83C329,170.3,327.33,172.76,324.07,174.64Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M183.19,216.46l-20-11.57v14.47l20,11.57c15.29,8.79,22.58,8.9,23.43,3.91V220.36C205.77,225.36,198.48,225.25,183.19,216.46Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M235,212.48c-6.51-3.76-17.06-3.76-23.57,0-3.73,2.15-4.18,4.45-4.77,7.88v14.48c.59-3.44,1-5.73,4.77-7.89,6.25-3.61,16.2-3.74,22.75-.43,0,0,.3-.14.82-.43C241.48,222.34,241.47,216.24,235,212.48Z"
style="fill:#fff;opacity:0.15"></path>
<path
d="M326.88,238.34c0,2.47-1.63,4.93-4.88,6.81-6.51,3.76-17.06,3.76-23.57,0-3.74-2.16-4.18-4.45-4.77-7.89v14.48c.59,3.43,1,5.72,4.77,7.88,6.51,3.76,17.06,3.76,23.57,0,3.24-1.87,4.87-4.33,4.88-6.78S326.88,240.81,326.88,238.34Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M270,241.28l-21.92,12.66v14.47L270,255.75c15.41-8.89,22.77-9,23.63-4V237.26C292.8,232.24,285.44,232.38,270,241.28Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M228.07,242.37c-8.92-5.18-12.68-8.76-12.52-11,0,.05,0,.09,0,.14V246c0,2.19,3.79,5.74,12.53,10.81l20,11.57V253.94Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M300.5,161c-3.73,2.16-4.18,4.45-4.76,7.88-.86,5-8.21,4.89-23.63-4l-19.85-11.46-21.92,12.65c-15.42,8.91-15.66,13.15-7,13.65,5.94.33,9.92.59,13.65,2.75,6.52,3.76,6.52,9.85,0,13.6s-17.05,3.76-23.56,0c-3.74-2.15-4.19-4.45-4.77-7.88-.86-5-8.22-4.88-23.63,4l-21.92,12.66,20,11.57c15.29,8.79,22.58,8.9,23.43,3.9.59-3.43,1-5.73,4.77-7.88,6.51-3.76,17.06-3.76,23.57,0s6.51,9.85,0,13.61c-3.74,2.15-7.71,2.41-13.66,2.75-8.66.49-8.45,4.71,6.77,13.53l20,11.57L270,241.28c15.41-8.9,22.77-9,23.63-4,.59,3.44,1,5.73,4.77,7.89,6.51,3.76,17.06,3.76,23.57,0s6.51-9.85,0-13.61c-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.5-8.46-4.74,7-13.64l21.92-12.66L317.37,191c-15.41-8.9-15.65-13.15-7-13.64,5.95-.34,9.93-.6,13.66-2.75,6.51-3.76,6.51-9.85,0-13.61S307,157.27,300.5,161Z"
style="fill:#039BE5"></path>
<path
d="M300.5,161c-3.73,2.16-4.18,4.45-4.76,7.88-.86,5-8.21,4.89-23.63-4l-19.85-11.46-21.92,12.65c-15.42,8.91-15.66,13.15-7,13.65,5.94.33,9.92.59,13.65,2.75,6.52,3.76,6.52,9.85,0,13.6s-17.05,3.76-23.56,0c-3.74-2.15-4.19-4.45-4.77-7.88-.86-5-8.22-4.88-23.63,4l-21.92,12.66,20,11.57c15.29,8.79,22.58,8.9,23.43,3.9.59-3.43,1-5.73,4.77-7.88,6.51-3.76,17.06-3.76,23.57,0s6.51,9.85,0,13.61c-3.74,2.15-7.71,2.41-13.66,2.75-8.66.49-8.45,4.71,6.77,13.53l20,11.57L270,241.28c15.41-8.9,22.77-9,23.63-4,.59,3.44,1,5.73,4.77,7.89,6.51,3.76,17.06,3.76,23.57,0s6.51-9.85,0-13.61c-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.5-8.46-4.74,7-13.64l21.92-12.66L317.37,191c-15.41-8.9-15.65-13.15-7-13.64,5.95-.34,9.93-.6,13.66-2.75,6.51-3.76,6.51-9.85,0-13.61S307,157.27,300.5,161Z"
style="fill:#fff;opacity:0.7000000000000001"></path>
<g style="opacity:0.7000000000000001">
<path
d="M252.26,155.61l18.91,10.92c8.73,5,15.41,7.6,19.85,7.6,3.65,0,6-1.79,6.57-4.9s.82-4.82,3.85-6.57a24.17,24.17,0,0,1,21.69,0c2.54,1.47,3.94,3.31,3.94,5.17s-1.4,3.71-3.94,5.18c-3.26,1.88-6.64,2.15-12.82,2.5-1.64.09-6.64.38-7.45,3.76-.57,2.42.59,5.9,13.57,13.39l17,9.83-19.1,11c-13,7.49-14.15,11-13.57,13.39.8,3.38,5.8,3.67,7.44,3.76,6.19.35,9.57.62,12.82,2.5,2.55,1.47,3.95,3.31,3.95,5.17s-1.4,3.71-3.95,5.18a24.23,24.23,0,0,1-21.68,0c-3-1.75-3.31-3.36-3.85-6.57s-2.93-4.9-6.57-4.9c-4.44,0-11.12,2.56-19.86,7.6l-21,12.11-19.1-11c-10.53-6.11-11.49-8.71-11.58-9.12.19-.16,1-.73,4-.9,6-.34,10.3-.59,14.49-3,3.76-2.17,5.82-5.17,5.82-8.44s-2.06-6.26-5.82-8.43a27.91,27.91,0,0,0-25.45,0c-4.57,2.63-5.11,5.82-5.68,9.2-.11.61-.3,1.76-2.86,1.76s-7.74-1.21-17.78-7l-17.21-9.94,19.09-11c10.16-5.86,15.38-7.09,18-7.09s2.75,1.14,2.85,1.76c.58,3.37,1.12,6.56,5.68,9.2a27.93,27.93,0,0,0,25.46,0c3.75-2.17,5.82-5.17,5.82-8.44s-2.07-6.26-5.82-8.43c-4.19-2.42-8.51-2.66-14.49-3-3-.17-3.81-.75-4-.91.07-.42,1-3,11.78-9.22l21-12.12m0-2.17-21.92,12.65c-15.42,8.91-15.66,13.15-7,13.65,5.94.33,9.92.59,13.65,2.75,6.52,3.76,6.52,9.85,0,13.6a26,26,0,0,1-23.56,0c-3.74-2.15-4.19-4.45-4.77-7.88-.36-2.13-1.9-3.33-4.71-3.33-3.83,0-10,2.22-18.92,7.35l-21.92,12.66,20,11.57c8.78,5,14.92,7.23,18.72,7.23,2.82,0,4.35-1.2,4.71-3.33.59-3.43,1-5.73,4.77-7.88a26,26,0,0,1,23.57,0c6.51,3.76,6.51,9.85,0,13.61-3.74,2.15-7.71,2.41-13.66,2.75-8.66.49-8.45,4.71,6.77,13.53l20,11.57L270,241.28c8.88-5.12,15.09-7.34,18.92-7.34,2.82,0,4.35,1.2,4.71,3.32.59,3.44,1,5.73,4.77,7.89a26,26,0,0,0,23.57,0c6.51-3.76,6.51-9.85,0-13.61-3.74-2.15-7.71-2.41-13.66-2.75-8.69-.5-8.46-4.74,7-13.64l21.92-12.66L317.37,191c-15.41-8.9-15.65-13.15-7-13.64,5.95-.34,9.93-.6,13.66-2.75,6.51-3.76,6.51-9.85,0-13.61a26,26,0,0,0-23.57,0c-3.73,2.16-4.18,4.45-4.76,7.88-.37,2.13-1.9,3.33-4.72,3.33-3.82,0-10-2.21-18.91-7.34l-19.85-11.46Z"
style="fill:#fff"></path>
</g>
<path
d="M332.58,356.1l-19.85-11.46c-15.42-8.9-22.77-9-23.62-4-.59,3.43-1,5.73-4.77,7.88-6.25,3.61-16.2,3.75-22.75.43,3.5-1.75,7.32-2,12.84-2.31,3.68-.21,5.76-1.1,5.76-2.72V329.43c0-2.21-3.84-5.8-12.72-10.93l-19.85-11.45L225.7,319.7c-15.41,8.9-22.77,9-23.63,4-.58-3.43-1-5.73-4.77-7.88-6.51-3.76-17.05-3.76-23.56,0-3.26,1.88-4.89,4.34-4.89,6.8v14.47c0,2.46,1.63,4.93,4.89,6.81A17.82,17.82,0,0,0,180.1,346l-21.59,12.46V373L178,384.23a17.77,17.77,0,0,0-6.36,2.12c-3.25,1.88-4.88,4.34-4.88,6.8v14.47c0,2.46,1.63,4.93,4.88,6.81,6.51,3.75,17.06,3.75,23.57,0,3.73-2.15,4.18-4.45,4.77-7.88.85-5,8.2-4.88,23.62,4L243.47,422l21.92-12.66c8.89-5.13,12.73-8.71,12.73-10.92,0-1.63,0-12.25,0-14.47,0-1.63-2.08-2.51-5.77-2.72-5.51-.31-9.33-.56-12.83-2.32,6.54-3.31,16.5-3.18,22.75.43,3.73,2.16,4.18,4.45,4.76,7.89.86,5,8.22,4.87,23.63-4l21.92-12.66Z"
style="fill:#039BE5"></path>
<path
d="M310.66,368.76c-15.41,8.89-22.77,9-23.63,4v14.48c.86,5,8.22,4.87,23.63-4l21.92-12.66V356.1Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M260.78,348.5c.26.16.54.3.81.44,3.5-1.76,7.32-2,12.84-2.32,3.69-.21,5.76-1.09,5.76-2.72V329.43c0,1.62-2.07,2.5-5.76,2.71-5.95.34-9.92.6-13.65,2.76C254.26,338.65,254.26,344.75,260.78,348.5Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M278.12,384c0,2.2-3.85,5.79-12.72,10.91l-21.93,12.66V422l21.93-12.66c8.88-5.13,12.72-8.71,12.72-10.92Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M195.23,400c-6.51,3.76-17.06,3.76-23.57,0-3.25-1.87-4.88-4.34-4.88-6.8v14.47c0,2.46,1.63,4.93,4.88,6.8,6.51,3.77,17.06,3.77,23.57,0,3.73-2.15,4.18-4.45,4.76-7.88V392.07C199.41,395.5,199,397.8,195.23,400Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M282.27,364.89c-6.52-3.76-17.06-3.76-23.57,0s-6.51,9.85,0,13.6c.27.16.55.3.82.44,6.55-3.31,16.5-3.17,22.75.43,3.73,2.16,4.18,4.46,4.76,7.89V372.77C286.45,369.34,286,367.05,282.27,364.89Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M223.62,396.09c-15.42-8.9-22.76-9-23.63-4v14.47c.87-5,8.21-4.88,23.63,4L243.47,422V407.55Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M173.74,343.91A17.45,17.45,0,0,0,180.1,346l.33-.2c15.42-8.9,15.65-13.14,7-13.63-5.95-.34-9.92-.6-13.65-2.76-3.26-1.88-4.89-4.34-4.89-6.8v14.47C168.85,339.57,170.48,342,173.74,343.91Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M185.31,383.59c8.7-.49,8.46-4.74-6.95-13.64l-19.85-11.46V373L178,384.23C180.13,383.9,182.51,383.75,185.31,383.59Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M260.77,334.9c3.74-2.16,7.71-2.42,13.66-2.75,8.69-.5,8.45-4.75-7-13.64l-19.85-11.46L225.7,319.7c-15.41,8.9-22.77,9-23.63,4-.58-3.43-1-5.73-4.77-7.88-6.51-3.76-17.05-3.76-23.56,0s-6.52,9.84,0,13.6c3.73,2.16,7.71,2.42,13.65,2.76,8.7.49,8.46,4.73-7,13.64l-21.92,12.65L178.36,370c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.76-6.51,3.75-6.51,9.84,0,13.6s17.06,3.76,23.57,0c3.73-2.15,4.18-4.45,4.77-7.88.85-5,8.2-4.89,23.62,4l19.85,11.46,21.92-12.66c15.42-8.9,15.66-13.15,7-13.64-5.94-.34-9.92-.6-13.65-2.75-6.51-3.76-6.51-9.85,0-13.61s17.06-3.76,23.57,0c3.73,2.15,4.18,4.45,4.76,7.88.86,5,8.22,4.88,23.63-4l21.92-12.66-19.85-11.46c-15.42-8.9-22.77-9-23.62-4-.59,3.43-1,5.73-4.77,7.88-6.51,3.76-17.06,3.76-23.57,0S254.26,338.66,260.77,334.9Z"
style="fill:#039BE5"></path>
<path
d="M260.77,334.9c3.74-2.16,7.71-2.42,13.66-2.75,8.69-.5,8.45-4.75-7-13.64l-19.85-11.46L225.7,319.7c-15.41,8.9-22.77,9-23.63,4-.58-3.43-1-5.73-4.77-7.88-6.51-3.76-17.05-3.76-23.56,0s-6.52,9.84,0,13.6c3.73,2.16,7.71,2.42,13.65,2.76,8.7.49,8.46,4.73-7,13.64l-21.92,12.65L178.36,370c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.76-6.51,3.75-6.51,9.84,0,13.6s17.06,3.76,23.57,0c3.73-2.15,4.18-4.45,4.77-7.88.85-5,8.2-4.89,23.62,4l19.85,11.46,21.92-12.66c15.42-8.9,15.66-13.15,7-13.64-5.94-.34-9.92-.6-13.65-2.75-6.51-3.76-6.51-9.85,0-13.61s17.06-3.76,23.57,0c3.73,2.15,4.18,4.45,4.76,7.88.86,5,8.22,4.88,23.63-4l21.92-12.66-19.85-11.46c-15.42-8.9-22.77-9-23.62-4-.59,3.43-1,5.73-4.77,7.88-6.51,3.76-17.06,3.76-23.57,0S254.26,338.66,260.77,334.9Z"
style="fill:#fff;opacity:0.7000000000000001"></path>
<g style="opacity:0.7000000000000001">
<path
d="M247.62,309.22l18.91,10.92c10.71,6.18,11.68,8.81,11.77,9.23-.18.15-1.05.73-4,.9-6,.34-10.31.58-14.49,3-3.76,2.17-5.82,5.16-5.82,8.43s2.06,6.27,5.82,8.44a27.91,27.91,0,0,0,25.45,0c4.56-2.64,5.11-5.83,5.68-9.2.11-.62.3-1.77,2.86-1.77s7.81,1.24,18,7.1l17,9.83-19.1,11c-10.16,5.87-15.38,7.1-18,7.1s-2.75-1.15-2.85-1.76c-.58-3.38-1.12-6.57-5.68-9.2a27.91,27.91,0,0,0-25.45,0c-3.76,2.17-5.83,5.16-5.83,8.43s2.07,6.27,5.83,8.44c4.18,2.41,8.5,2.66,14.49,3,2.94.17,3.8.75,4,.9-.07.42-1,3-11.78,9.23l-21,12.11-18.91-10.91c-8.73-5-15.41-7.6-19.85-7.6-3.65,0-6,1.78-6.57,4.89s-.82,4.82-3.85,6.57a24.17,24.17,0,0,1-21.69,0c-2.54-1.47-3.94-3.3-3.94-5.17s1.4-3.71,3.94-5.17c3.26-1.88,6.64-2.15,12.82-2.51,1.65-.09,6.64-.37,7.45-3.76.57-2.41-.59-5.89-13.57-13.39l-17-9.83,19.09-11c13-7.5,14.15-11,13.57-13.4-.8-3.38-5.8-3.66-7.44-3.75-6.19-.36-9.57-.63-12.82-2.51-2.54-1.46-3.94-3.3-3.94-5.17s1.4-3.71,3.94-5.17a24.15,24.15,0,0,1,21.68,0c3,1.75,3.31,3.36,3.85,6.57s2.93,4.89,6.57,4.89c4.45,0,11.13-2.55,19.86-7.6l21-12.11m0-2.17L225.7,319.7c-8.88,5.13-15.09,7.35-18.92,7.35-2.82,0-4.35-1.2-4.71-3.33-.58-3.43-1-5.73-4.77-7.88a26,26,0,0,0-23.56,0c-6.52,3.76-6.52,9.84,0,13.6,3.73,2.16,7.71,2.42,13.65,2.76,8.7.49,8.46,4.73-7,13.64l-21.92,12.65L178.36,370c15.41,8.9,15.65,13.15,7,13.64-5.95.34-9.93.6-13.66,2.76-6.51,3.75-6.51,9.84,0,13.6a26,26,0,0,0,23.57,0c3.73-2.15,4.18-4.45,4.77-7.88.36-2.13,1.89-3.33,4.71-3.33,3.82,0,10,2.22,18.91,7.35l19.85,11.46,21.92-12.66c15.42-8.9,15.66-13.15,7-13.64-5.94-.34-9.92-.6-13.65-2.75-6.51-3.76-6.51-9.85,0-13.61a26,26,0,0,1,23.57,0c3.73,2.15,4.18,4.45,4.76,7.88.37,2.13,1.9,3.33,4.71,3.33,3.83,0,10-2.22,18.92-7.34l21.92-12.66-19.85-11.46c-8.88-5.13-15.08-7.35-18.91-7.35-2.82,0-4.35,1.2-4.71,3.33-.59,3.43-1,5.73-4.77,7.88a26,26,0,0,1-23.57,0c-6.51-3.75-6.51-9.84,0-13.6,3.74-2.16,7.71-2.42,13.66-2.75,8.69-.5,8.45-4.75-7-13.65l-19.85-11.45Z"
style="fill:#fff"></path>
</g>
<path
d="M201,280.13l-19.51-11.27a17.83,17.83,0,0,0,6.35-2.11c3.26-1.88,4.89-4.35,4.89-6.81V245.47c0-2.46-1.63-4.92-4.89-6.8-6.51-3.76-17.05-3.76-23.56,0-3.74,2.15-4.19,4.45-4.77,7.88-.85,5-8.15,4.88-23.43-3.91l-20-11.57L94.11,243.73c-15.41,8.9-22.76,9-23.62,4-.59-3.43-1-5.73-4.77-7.89-6.51-3.76-17.06-3.76-23.57,0-3.25,1.88-4.88,4.35-4.88,6.81v14.47c0,2.46,1.63,4.92,4.88,6.8a17.77,17.77,0,0,0,6.36,2.12L26.93,282.52V297l19.84,11.46c15.42,8.9,22.77,9,23.63,4,.59-3.43,1-5.73,4.77-7.88,6.24-3.61,16.2-3.75,22.75-.43-3.51,1.75-7.33,2-12.84,2.31-3.69.21-5.76,1.1-5.76,2.72,0,2.21,0,12.85,0,14.48,0,2.21,3.85,5.79,12.72,10.92l19.85,11.46,21.92-12.66c8.89-5.13,12.73-8.72,12.73-10.93,0-1.62,0-12.25,0-14.46,0-1.63-2.08-2.51-5.77-2.72-5.51-.32-9.33-.57-12.84-2.32,6.55-3.31,16.51-3.18,22.75.43,3.74,2.15,4.18,4.45,4.77,7.88.86,5,8.22,4.88,23.63-4L201,294.6Z"
style="fill:#039BE5"></path>
<path
d="M179.08,292.78c-15.41,8.9-22.77,9-23.63,4v14.47c.86,5,8.22,4.88,23.63-4L201,294.6V280.13Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M146.54,308s0-.08,0-.12c.14,2.2-3.67,5.81-12.72,11l-21.92,12.65v14.48l21.92-12.66c8.89-5.13,12.73-8.72,12.73-10.93C146.53,320.84,146.53,310.21,146.54,308Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M187.84,252.27c-3.73,2.16-7.71,2.42-13.65,2.76-8.66.49-8.45,4.7,6.76,13.52l.54.31a17.83,17.83,0,0,0,6.35-2.11c3.26-1.88,4.89-4.35,4.89-6.81V245.47h0C192.73,247.93,191.1,250.39,187.84,252.27Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M98.74,290.11c-6.52-3.76-17.06-3.76-23.57,0-3.74,2.16-4.18,4.46-4.77,7.89v14.47c.59-3.43,1-5.73,4.77-7.88,6.24-3.61,16.2-3.75,22.75-.43l.82-.44C105.25,300,105.25,293.87,98.74,290.11Z"
style="fill:#fff;opacity:0.5"></path>
<path
d="M150.68,288.92c-6.51-3.76-17.05-3.76-23.57,0s-6.51,9.85,0,13.6l.82.44c6.55-3.31,16.51-3.18,22.75.43,3.74,2.15,4.18,4.45,4.77,7.88V296.8C154.86,293.37,154.42,291.07,150.68,288.92Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M92,320.11c-9.05-5.22-12.86-8.84-12.71-11a.49.49,0,0,0,0,.12c0,2.21,0,12.85,0,14.48,0,2.21,3.85,5.79,12.72,10.92l19.85,11.46V331.57Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M46.77,294,26.93,282.52V297l19.84,11.46c15.42,8.9,22.77,9,23.63,4V298C69.54,303,62.19,302.88,46.77,294Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M55.81,256.22c-6-.33-9.92-.59-13.66-2.75-3.25-1.88-4.88-4.34-4.88-6.8v14.47c0,2.46,1.63,4.92,4.88,6.8a17.77,17.77,0,0,0,6.36,2.12l.34-.2C64.27,261,64.5,256.72,55.81,256.22Z"
style="fill:#fff;opacity:0.30000000000000004"></path>
<path
d="M164.28,238.67c-3.74,2.15-4.19,4.45-4.77,7.88-.85,5-8.15,4.88-23.43-3.91l-20-11.57L94.11,243.73c-15.41,8.9-22.76,9-23.62,4-.59-3.43-1-5.73-4.77-7.89-6.51-3.76-17.06-3.76-23.57,0s-6.51,9.85,0,13.61c3.74,2.16,7.71,2.42,13.66,2.75,8.69.5,8.46,4.74-7,13.64L26.93,282.52,46.77,294c15.42,8.9,22.77,9,23.63,4,.59-3.43,1-5.73,4.77-7.89,6.51-3.76,17-3.76,23.57,0s6.51,9.85,0,13.61c-3.74,2.16-7.71,2.42-13.66,2.75-8.69.5-8.45,4.75,7,13.64l19.85,11.46,21.92-12.65c15.42-8.91,15.65-13.15,7-13.64-6-.34-9.92-.6-13.66-2.76-6.51-3.75-6.51-9.84,0-13.6s17.06-3.76,23.57,0c3.74,2.15,4.18,4.45,4.77,7.88.86,5,8.22,4.88,23.63-4L201,280.13,181,268.55c-15.21-8.82-15.42-13-6.76-13.52,5.94-.34,9.92-.6,13.65-2.76,6.52-3.76,6.52-9.84,0-13.6S170.79,234.91,164.28,238.67Z"
style="fill:#039BE5"></path>
<path
d="M164.28,238.67c-3.74,2.15-4.19,4.45-4.77,7.88-.85,5-8.15,4.88-23.43-3.91l-20-11.57L94.11,243.73c-15.41,8.9-22.76,9-23.62,4-.59-3.43-1-5.73-4.77-7.89-6.51-3.76-17.06-3.76-23.57,0s-6.51,9.85,0,13.61c3.74,2.16,7.71,2.42,13.66,2.75,8.69.5,8.46,4.74-7,13.64L26.93,282.52,46.77,294c15.42,8.9,22.77,9,23.63,4,.59-3.43,1-5.73,4.77-7.89,6.51-3.76,17-3.76,23.57,0s6.51,9.85,0,13.61c-3.74,2.16-7.71,2.42-13.66,2.75-8.69.5-8.45,4.75,7,13.64l19.85,11.46,21.92-12.65c15.42-8.91,15.65-13.15,7-13.64-6-.34-9.92-.6-13.66-2.76-6.51-3.75-6.51-9.84,0-13.6s17.06-3.76,23.57,0c3.74,2.15,4.18,4.45,4.77,7.88.86,5,8.22,4.88,23.63-4L201,280.13,181,268.55c-15.21-8.82-15.42-13-6.76-13.52,5.94-.34,9.92-.6,13.65-2.76,6.52-3.76,6.52-9.84,0-13.6S170.79,234.91,164.28,238.67Z"
style="fill:#fff;opacity:0.7000000000000001"></path>
<g style="opacity:0.7000000000000001">
<path
d="M116,233.25l19.1,11c8.64,5,15.25,7.48,19.66,7.48,3.64,0,6-1.78,6.57-4.89s.82-4.82,3.85-6.57a24.15,24.15,0,0,1,21.68,0c2.54,1.47,3.94,3.3,3.94,5.17s-1.4,3.71-3.94,5.17c-3.25,1.88-6.63,2.15-12.82,2.51-1.64.09-6.63.37-7.44,3.75-.57,2.4.57,5.86,13.37,13.28l17.22,9.95-19.1,11c-10.15,5.86-15.37,7.1-18,7.1s-2.75-1.15-2.85-1.77c-.58-3.37-1.12-6.56-5.69-9.19a27.83,27.83,0,0,0-25.45,0c-3.75,2.16-5.82,5.16-5.82,8.43s2.07,6.27,5.82,8.44c4.19,2.41,8.51,2.66,14.49,3,3,.16,3.81.74,4,.9-.07.42-1,3-11.78,9.23l-21,12.11L93,318.48c-10.71-6.18-11.68-8.82-11.77-9.23.18-.16,1.05-.73,4-.9,6-.34,10.3-.58,14.49-3,3.75-2.17,5.82-5.16,5.82-8.43s-2.07-6.27-5.82-8.44A25.86,25.86,0,0,0,87,285.41a25.85,25.85,0,0,0-12.72,3.07c-4.57,2.64-5.11,5.83-5.69,9.2-.1.62-.3,1.76-2.85,1.76s-7.82-1.23-18-7.09l-17-9.83,19.1-11c13-7.49,14.15-11,13.57-13.39-.8-3.38-5.8-3.66-7.44-3.76-6.19-.35-9.57-.62-12.83-2.5-2.54-1.47-3.94-3.3-3.94-5.17s1.4-3.71,3.94-5.17a22,22,0,0,1,10.85-2.57,22,22,0,0,1,10.84,2.57c3,1.74,3.3,3.36,3.85,6.57S71.56,253,75.2,253c4.44,0,11.12-2.56,19.86-7.6l21-12.11m0-2.18L94.11,243.73c-8.87,5.13-15.08,7.35-18.91,7.35-2.82,0-4.35-1.2-4.71-3.33-.59-3.43-1-5.73-4.77-7.89A24.17,24.17,0,0,0,53.94,237a24.1,24.1,0,0,0-11.79,2.82c-6.51,3.76-6.51,9.85,0,13.61,3.74,2.16,7.71,2.42,13.66,2.75,8.69.5,8.46,4.74-7,13.64L26.93,282.52,46.77,294c8.89,5.13,15.09,7.35,18.92,7.35,2.82,0,4.35-1.2,4.71-3.33.59-3.43,1-5.73,4.77-7.89A24.06,24.06,0,0,1,87,287.29a24.1,24.1,0,0,1,11.79,2.82c6.51,3.76,6.51,9.85,0,13.61-3.74,2.16-7.71,2.42-13.66,2.75-8.69.5-8.45,4.75,7,13.64l19.85,11.46,21.92-12.65c15.42-8.91,15.65-13.15,7-13.64-6-.34-9.92-.6-13.66-2.76-6.51-3.75-6.51-9.84,0-13.6a26,26,0,0,1,23.57,0c3.74,2.15,4.18,4.45,4.77,7.88.36,2.13,1.89,3.33,4.71,3.33,3.83,0,10-2.22,18.92-7.35L201,280.13,181,268.55c-15.21-8.82-15.42-13-6.76-13.52,5.94-.34,9.92-.6,13.65-2.76,6.52-3.76,6.52-9.84,0-13.6a26,26,0,0,0-23.56,0c-3.74,2.15-4.19,4.45-4.77,7.88-.36,2.13-1.89,3.33-4.71,3.33-3.8,0-9.94-2.19-18.72-7.24l-20-11.57Z"
style="fill:#fff"></path>
</g>
</g>
</g>
<g id="freepik--paint-pot--inject-115">
<g id="freepik--paint-pot--inject-115">
<path
d="M71.58,351.93l-34-.46-.29,27.79h0c0,2.52,1.61,5.05,4.91,7,6.6,3.91,17.38,4,24.07.26,3.37-1.9,5.06-4.43,5.06-7Z"
style="fill:#37474f"></path>
<path
d="M42.61,344.58c-6.69,3.77-6.75,10-.15,13.9s17.38,4,24.07.26,6.76-10,.15-13.9S49.3,340.81,42.61,344.58Z"
style="fill:#455a64"></path>
<path
d="M70.12,351.82a4.15,4.15,0,0,1-.24,1.33,8.25,8.25,0,0,1-4.08,4.3A23.22,23.22,0,0,1,54.47,360a23,23,0,0,1-11.26-2.79,8.25,8.25,0,0,1-3.94-4.3,4.08,4.08,0,0,1-.24-1.42c0-2.08,1.55-4.08,4.31-5.62a22.77,22.77,0,0,1,11.32-2.55,23,23,0,0,1,11.27,2.8C68.66,347.73,70.14,349.74,70.12,351.82Z"
style="fill:#263238"></path>
<path
d="M69.88,353.15a8.25,8.25,0,0,1-4.08,4.3A23.22,23.22,0,0,1,54.47,360a23,23,0,0,1-11.26-2.79,8.25,8.25,0,0,1-3.94-4.3,8.16,8.16,0,0,1,4.07-4.28,23,23,0,0,1,11.32-2.57,23.28,23.28,0,0,1,11.27,2.81A8.36,8.36,0,0,1,69.88,353.15Z"
style="fill:#039BE5"></path>
<path
d="M65.8,357.45a12.61,12.61,0,0,0,1.55-1c-6.21,3.33-16.9,1.93-20.23-.69s-3.78-7.09,1.64-9.09a19.32,19.32,0,0,0-5.42,2,8.16,8.16,0,0,0-4.07,4.28,8.25,8.25,0,0,0,3.94,4.3A23,23,0,0,0,54.47,360,23.22,23.22,0,0,0,65.8,357.45Z"
style="opacity:0.15"></path>
<path
d="M61.82,362.34c.74-.42,1.34-.06,1.33.79a3,3,0,0,1-1.37,2.32c-.74.42-1.34.06-1.33-.79A3,3,0,0,1,61.82,362.34Z"
style="fill:#263238"></path>
<path
d="M37.49,356.36c-1.87,3.68-5.59,12.46-.76,16,.2.15.39.28.59.41l0,1.78c-.48-.3-1-.63-1.46-1-7.22-5.36.93-19.1,1.28-19.67a.64.64,0,0,1,.41-.31Z"
style="fill:#e0e0e0"></path>
<path
d="M62.45,364.24c-.2.43-5.46,10.49-14.11,12.5a12.15,12.15,0,0,1-3,.36,15.1,15.1,0,0,1-8.06-2.52l0-1.78c3.58,2.48,7.17,3.33,10.69,2.52,8-1.87,13.09-11.67,13.13-11.76a.75.75,0,0,1,1-.32A.72.72,0,0,1,62.45,364.24Z"
style="fill:#e0e0e0"></path>
</g>
</g>
<g id="freepik--Pencil--inject-115">
<g id="freepik--pencil--inject-115">
<path id="freepik--shadow--inject-115"
d="M280.4,437.16q2.24,2.58,7.16,3.69a8.11,8.11,0,0,0,5-.9l97.9-57.19L402,371.11a.89.89,0,0,0-.91-1.47l-21.16,7-98.52,56.84C280.07,434.24,279.42,436,280.4,437.16Z"
style="opacity:0.1"></path>
<path d="M380.7,368.77l18.83-3.69a.59.59,0,0,1,.55,1l-12.77,14.47Z"
style="fill:#ffa8a7"></path>
<path
d="M400.08,366a.59.59,0,0,0-.55-1l-3.67.72h0a3.25,3.25,0,0,1,1.52,3l0,.33Z"
style="fill:#263238"></path>
<path
d="M305.24,427.58l1.54-.88,1.86-1.06,78.67-45.13a8.51,8.51,0,0,0-.53-6.24c-1.33-3-3.92-5.35-6.07-5.49l-78.63,45.11-3.55,2C300.9,414.73,307.6,426.36,305.24,427.58Z"
style="fill:#039BE5"></path>
<path
d="M311.11,424.24l3.44-2c1-.54.43-3-.75-5.61-1.57-3.43-4.66-6.75-6-6l-2.54,1.46-.89.53c1.34-.71,4.44,2.61,6,6,1.13,2.47,1.71,4.87.85,5.53h0Z"
style="fill:#ebebeb"></path>
<path
d="M312,423.74c2.36-1.25-4.4-12.89-6.76-11.64l-3.45,2c2.36-1.25,9.12,10.39,6.76,11.64Z"
style="fill:#039BE5"></path>
<path
d="M305.24,427.58l3.4-1.94c2.33-1.21-4.1-12.5-6.56-11.75a.48.48,0,0,0-.14.05l-3.41,2C300.9,414.73,307.6,426.36,305.24,427.58Z"
style="fill:#ebebeb"></path>
<path
d="M400.17,365.41l-.64-.33-13.66,7.48-82.5,47.34c-.14-.21-.25-.22-.33-.08,2,3.13,3.52,7.08,2.2,7.76l1.54-.88,1.86-1.06,78.67-45.13h0L400.08,366A.55.55,0,0,0,400.17,365.41Z"
style="opacity:0.15"></path>
<path
d="M290.8,435.84l14.44-8.26c1-.52.45-3-.72-5.56-1.56-3.43-4.63-6.78-6-6.09h0L284,424.22c-2.87,1.66-.23,7.91,3,10.7C288.2,436,289.54,436.44,290.8,435.84Z"
style="fill:#f28f8f"></path>
<path
d="M291.67,431.37c-.83-3.26-3.47-6.45-5.89-7.13a2.34,2.34,0,0,0-2.16.29c-2.17,2,.35,7.75,3.39,10.39a3.47,3.47,0,0,0,3.72.95C291.81,435.24,292.23,433.57,291.67,431.37Z"
style="opacity:0.1"></path>
</g>
</g>
<g id="freepik--Brushes--inject-115">
<g id="freepik--Brush--inject-115">
<g id="freepik--brush--inject-115">
<path
d="M97.31,404.44h0a174,174,0,0,0-14.9,11,123.07,123.07,0,0,0-14.47,14.81v0h0a.67.67,0,0,0-.1.6.68.68,0,0,0,.86.44.42.42,0,0,0,.14-.06h0s10.41-5.8,17.27-11.57A175.76,175.76,0,0,0,99.45,407h0a.88.88,0,0,0,.15-.76,2.59,2.59,0,0,0-1.51-1.79A.87.87,0,0,0,97.31,404.44Z"
style="fill:#039BE5"></path>
<path
d="M68.68,431.35a.42.42,0,0,0,.14-.06h0s10.41-5.8,17.27-11.57c4.62-3.89,9.07-8.31,11.49-10.8L96,407.55s-27.72,23.79-28.13,23.36A.68.68,0,0,0,68.68,431.35Z"
style="opacity:0.1"></path>
<path
d="M99.05,405.13c.6-.13,3.87-.81,5.38-2.74a2.68,2.68,0,0,1-.45-.84c-.37-1.17.49-1.72.3-2.63s-1.87-.78-1.88-.77h0a7.18,7.18,0,0,0-3.61,2.45,7.34,7.34,0,0,0-1.48,3.84L99.45,407h0Z"
style="fill:#455a64"></path>
<path
d="M105.53,404.52c.19-1.09-.54-1.41-1.1-2.13-1.51,1.93-4.78,2.61-5.38,2.74l.4,1.84c.37-.05.77-.08,1.19-.14l.32-.05.66-.12a9.34,9.34,0,0,0,1-.3c.24-.09.48-.19.73-.31a7.84,7.84,0,0,0,1.5-.94A5.1,5.1,0,0,0,105.53,404.52Z"
style="fill:#37474f"></path>
<path
d="M105.53,404.51a3.07,3.07,0,0,0,.28-.35l0,0,.18-.27.06-.11,0-.09a1.09,1.09,0,0,0,.08-.15l.1-.2.18-.44c.05-.15.1-.3.14-.45s.07-.31.1-.46a7.38,7.38,0,0,0-.06-2.84c0-.07,0-.13,0-.2l0-.05-.06-.23a8.65,8.65,0,0,0-.54-1.31,6,6,0,0,0-.3-.52,4,4,0,0,0-.29-.43c0-.07-.09-.12-.13-.18l-.12-.15-.21-.24-.19-.2a2.93,2.93,0,0,1-1.42,2.06,5.63,5.63,0,0,1-.95.48s1.69-.14,1.88.77-.67,1.46-.3,2.63a2.68,2.68,0,0,0,.45.84c.56.72,1.29,1,1.1,2.13Z"
style="fill:#039BE5"></path>
<path
d="M104.77,395.61a7.68,7.68,0,0,1,.26,5.63,3.6,3.6,0,0,1-.6,1.15c.56.72,1.29,1,1.1,2.13h0a3.07,3.07,0,0,0,.28-.35l0,0,.18-.27.06-.11,0-.09a1.09,1.09,0,0,0,.08-.15l.1-.2.18-.44c.05-.15.1-.3.14-.45s.07-.31.1-.46a7.38,7.38,0,0,0-.06-2.84c0-.07,0-.13,0-.2l0-.05-.06-.23a8.65,8.65,0,0,0-.54-1.31,6,6,0,0,0-.3-.52,4,4,0,0,0-.29-.43c0-.07-.09-.12-.13-.18l-.12-.15-.21-.24-.19-.2Z"
style="opacity:0.1"></path>
<path
d="M99.45,407a.88.88,0,0,0,.15-.76,2.59,2.59,0,0,0-1.51-1.79.87.87,0,0,0-.78,0c-1.12.68-2.29,1.48-3.49,2.36a1.1,1.1,0,0,1,1,0A3.26,3.26,0,0,1,96.73,409a1,1,0,0,1-.23,1C97.65,408.84,98.73,407.74,99.45,407Z"
style="fill:#ebebeb"></path>
<path
d="M96,407.55a3.18,3.18,0,0,1,.78,1.48,1,1,0,0,1-.23,1c1.15-1.18,2.23-2.28,3-3a.88.88,0,0,0,.15-.76,2.42,2.42,0,0,0-.55-1.08h0L96,407.55Z"
style="fill:#e0e0e0"></path>
</g>
</g>
<g id="freepik--brush--inject-115">
<g id="freepik--brush--inject-115">
<path
d="M119.45,402.65h0S93.76,417.87,86,422.83a122.73,122.73,0,0,0-16.26,12.84h0l0,0h0a.67.67,0,0,0-.17.58.68.68,0,0,0,.79.55l.15,0h0s11.07-4.42,18.62-9.27,32.12-22.09,32.12-22.09h0a.88.88,0,0,0,.25-.73,2.59,2.59,0,0,0-1.27-2A.87.87,0,0,0,119.45,402.65Z"
style="fill:#039BE5"></path>
<path
d="M117.7,405.57,119,407c-6,4.18-22.37,15.62-29.12,20l0,0-.73.47c-7.55,4.85-18.62,9.27-18.62,9.27h0l-.15,0a.68.68,0,0,1-.79-.55C69.91,436.76,117.7,405.57,117.7,405.57Z"
style="opacity:0.1"></path>
<path
d="M121.09,403.56c.61-.05,3.94-.31,5.68-2a2.47,2.47,0,0,1-.34-.89c-.22-1.21.71-1.64.64-2.57s-1.75-1-1.77-1h0a7.22,7.22,0,0,0-3.89,2,7.31,7.31,0,0,0-2,3.62l1.79,2.78h0Z"
style="fill:#455a64"></path>
<path
d="M127.59,403.78c.33-1-.36-1.46-.82-2.25-1.74,1.72-5.07,2-5.68,2l.15,1.87,1.2,0h.32l.68,0c.34,0,.7-.09,1.08-.17a6.24,6.24,0,0,0,.76-.21,8.41,8.41,0,0,0,1.61-.74A4.06,4.06,0,0,0,127.59,403.78Z"
style="fill:#37474f"></path>
<path
d="M127.6,403.78l.31-.31,0,0c.08-.08.15-.17.22-.25l.08-.1a.56.56,0,0,0,0-.08,1.71,1.71,0,0,0,.11-.14,1.74,1.74,0,0,0,.11-.18,4.49,4.49,0,0,0,.24-.42c.07-.14.14-.28.2-.43s.11-.29.15-.44a7.46,7.46,0,0,0,.32-2.82,1.5,1.5,0,0,1,0-.2v-.06a1.57,1.57,0,0,0,0-.23,7.64,7.64,0,0,0-.37-1.38c-.07-.2-.15-.38-.22-.55s-.16-.32-.23-.46-.07-.14-.11-.2l-.1-.17-.18-.26-.16-.21a2.94,2.94,0,0,1-1.68,1.86,4.9,4.9,0,0,1-1,.34s1.7.08,1.77,1-.86,1.36-.64,2.57a2.47,2.47,0,0,0,.34.89c.46.79,1.15,1.2.82,2.25Z"
style="fill:#039BE5"></path>
<path
d="M128,394.86a7.66,7.66,0,0,1-.46,5.61,3.69,3.69,0,0,1-.75,1.06c.46.79,1.15,1.2.82,2.25h0l.31-.31,0,0c.08-.08.15-.17.22-.25l.08-.1a.56.56,0,0,0,0-.08,1.71,1.71,0,0,0,.11-.14,1.74,1.74,0,0,0,.11-.18,4.49,4.49,0,0,0,.24-.42c.07-.14.14-.28.2-.43s.11-.29.15-.44a7.46,7.46,0,0,0,.32-2.82,1.5,1.5,0,0,1,0-.2v-.06a1.57,1.57,0,0,0,0-.23,7.64,7.64,0,0,0-.37-1.38c-.07-.2-.15-.38-.22-.55s-.16-.32-.23-.46-.07-.14-.11-.2l-.1-.17-.18-.26-.16-.21Z"
style="opacity:0.1"></path>
<path
d="M121.24,405.43a.88.88,0,0,0,.25-.73,2.59,2.59,0,0,0-1.27-2,.87.87,0,0,0-.77-.08,37,37,0,0,0-3.8,2.26c.25-.14.64-.48,1-.27a3.24,3.24,0,0,1,1.6,2.49c0,.45-.39.65-.63.82C118.94,406.93,120.43,406.11,121.24,405.43Z"
style="fill:#ebebeb"></path>
<path
d="M117.7,405.57a3.09,3.09,0,0,1,.58,1.56c0,.45-.39.65-.63.82a37.65,37.65,0,0,0,3.59-2.52.89.89,0,0,0,.25-.73,2.45,2.45,0,0,0-.4-1.14l0,0-3.35,2Z"
style="fill:#e0e0e0"></path>
</g>
</g>
<g id="freepik--brush--inject-115">
<path
d="M76.73,400.68l17.37-10a1.31,1.31,0,0,0,.54-1.2,4.1,4.1,0,0,0-1.85-3.23,1.29,1.29,0,0,0-1.32-.13l-17.36,10Z"
style="fill:#455a64"></path>
<polygon
points="78.57 393.54 83.84 396.59 76.73 400.68 74.11 396.12 78.57 393.54"
style="fill:#37474f"></polygon>