-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1247 lines (1090 loc) · 106 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>
<head>
<meta name="robots" content="noindex">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Daley Mottley | A.I. Consultant </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name=" description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Daley Mottley" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="Daley Mottley | A.I. Consultant" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons -->
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EBJP4J0R5C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EBJP4J0R5C');
</script>
<script>
!function(t,e){var o,n,p,r;e.__SV||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="init push capture register register_once register_for_session unregister unregister_for_session getFeatureFlag getFeatureFlagPayload isFeatureEnabled reloadFeatureFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSessionId getSurveys getActiveMatchingSurveys renderSurvey canRenderSurvey getNextSurveyStep identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted loadToolbar get_property getSessionProperty createPersonProfile opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing clear_opt_in_out_capturing debug".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
posthog.init('phc_d12Cfip5bAiE4Q82fjAJ5Oh4ygZ5k7ev14IvckWrLfq',{api_host:'https://us.i.posthog.com', person_profiles: 'identified_only' // or 'always' to create profiles for anonymous users as well
})
</script>
</head>
<body>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img"
style="background-image: url(https://res.cloudinary.com/dzpafdvkm/image/upload/v1719909061/Portfolio/profile-pic.png);">
</div>
<h1 id="colorlib-logo"><a href="index.html">Daley Mottley</a></h1>
<span class="position"><a href="#">A.I. Consultant</a> in Barbados</span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<!-- <li class="active"><a href="#" data-nav-section="home">Home</a></li> -->
<li><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="services">Services</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="projects">Projects</a></li>
<li><a href="#" data-nav-section="contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="colorlib-footer">
</div>
</aside>
<div class="container">
<div id="colorlib-main">
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<div class="row row-bottom-padded-sm z">
<div class="col-md-12">
<div class="about-desc">
<span class="heading-meta animate-box"
data-animate-effect="fadeInLeft">About Me</span>
<h2 class="colorlib-heading animate-box" data-animate-effect="fadeInLeft">
Who Am I?</h2>
<div class="author-img visible-xs-block hidden-sm hidden-md hidden-lg animate-box"
data-animate-effect="fadeIn"
style="background-image: url(https://res.cloudinary.com/dzpafdvkm/image/upload/v1719909061/Portfolio/profile-pic.png);">
</div>
<p class="animate-box" data-animate-effect="fadeInLeft"> <strong>Hi, I'm
Daley Mottley</strong> and welcome to my corner of the
web! I'm an A.I. Consultant and Full-Stack Web Developer, proudly based
in the
beautiful island of Barbados. With a Bachelor of Applied Science
(B.A.Sc) in Computer Science, I'm
passionate about crafting A.I.-powered solutions and dynamic web
applications that elevate business
performance and efficiency.
</p>
<p class="animate-box" data-animate-effect="fadeInLeft">
My mission is to empower companies and entrepreneurs by creating custom
applications and intelligent
solutions that streamline operations and boost efficiency. I’m
passionate about leveraging technology to
solve complex problems and transform them into user-friendly, effective
tools that drive success. Whether
you're looking to automate workflows, engage users with A.I. assistants,
or build robust web platforms, I’m
here to help you achieve your goals with precision and creativity.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-services" data-section="services">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">What I do?</span>
<h2 class="colorlib-heading">Here are some of my expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-12 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-bulb"></i>
</span>
<div class="desc">
<h3>Artificial Intelligence (A.I.) Consulting</h3>
<p>Providing strategic guidance and implementing advanced A.I. technologies to
optimize business processes and decision-making.</p>
</div>
</div>
</div>
<div class="col-md-12 text-center animate-box">
<div class="services color-3">
<span class="icon">
<i class="icon-user"></i>
</span>
<div class="desc">
<h3>A.I. Assistant Development
</h3>
<p>Creating intelligent A.I. assistants that enhance user engagement, automate
interactions, and provide personalized experiences.</p>
</div>
</div>
</div>
<div class="col-md-12 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-world"></i>
</span>
<div class="desc">
<h3>Web Development</h3>
<p>Crafting high-quality, responsive websites designed to enhance user
experience and support business growth.</p>
</div>
</div>
</div>
<div class="col-md-12 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-settings"></i>
</span>
<div class="desc">
<h3>Automated Workflow Solutions
</h3>
<p>Automating workflows and boosting productivity with adaptable solutions that
streamline your operations.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Specialty</span>
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
</div>
</div>
<div class="row">
<h3 class="header-3 col-md-12 animate-box" data-animate-effect="fadeInLeft">Programming
Languages</h3>
<div class="flex flex-wrap justify-center space-x-12 col-md-12">
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/python-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Python</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/javascript-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Javascript</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/java-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Java</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/php-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">PHP</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/cplusplus-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">C++</p>
</div>
</div>
</div>
<div class="row">
<h3 class="header-3 col-md-12 animate-box" data-animate-effect="fadeInLeft">Backend
Development</h3>
<div class="flex flex-wrap justify-center space-x-12 col-md-12">
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/nodejs.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">NodeJS</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/firebase-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Firebase</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/aws-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">AWS</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/mongodb-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">MongoDB</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/airtable-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">AirTable</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/mysql-logo.png"
class="w100" style="margin-bottom:0;">
<p class="text-sm lg:text-base">MySQL</p>
</div>
</div>
</div>
<div class="row">
<h3 class="header-3 col-md-12 animate-box" data-animate-effect="fadeInLeft">Frontend
Development</h3>
<div class="flex flex-wrap justify-center space-x-12 col-md-12">
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/vuejs.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">VueJS</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/nuxtjs-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">NuxtJS</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/sass-logo.png"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Sass</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1727666324/Portfolio/logos/figma-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Figma</p>
</div>
</div>
</div>
<div class="row">
<h3 class="header-3 col-md-12 animate-box" data-animate-effect="fadeInLeft">Content
Management Systems</h3>
<div class="flex flex-wrap justify-center space-x-12 col-md-12">
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/wordpress.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Wordpress</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/webflow.svg"
class="w70" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Webflow</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/drupal.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Drupal</p>
</div>
</div>
</div>
<div class="row">
<h3 class="header-3 col-md-12 animate-box" data-animate-effect="fadeInLeft">A.I. Development
& Automation Platforms</h3>
<div class="flex flex-wrap justify-center space-x-12 col-md-12">
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/openai-logo.png"
class="w90" style="margin-bottom:0;">
<p class="text-sm lg:text-base"> OpenAI</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/langchain-logo.svg"
class="w100" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Langchain</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720600489/Portfolio/logos/voiceflow-logo.jpg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Voiceflow</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/botpress-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Botpress</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720603511/Portfolio/logos/agentive-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Agentive</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720602723/Portfolio/logos/make-logo.webp"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Make</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/zapier-logo.svg"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Zapier</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1719815960/Portfolio/logos/stack-ai-logo.svg"
class="w70" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Stack AI</p>
</div>
<div class="flex flex-col justify-center items-center animate-box"
data-animate-effect="fadeInTop">
<img src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720602723/Portfolio/logos/vapi-ai-logo.webp"
class="w-[40px] lg:w-[50px] h-[40px] lg:h-[50px] m-0" style="margin-bottom:0;">
<p class="text-sm lg:text-base">Vapi AI</p>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-work" data-section="projects">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Work</span>
<h2 class="colorlib-heading animate-box">Recent Work</h2>
</div>
</div>
<div class="row row-bottom-padded-sm animate-box">
<div class="col-md-12">
<p class="work-menu">
<span><a href="#" class="filter-btn active" data-filter="all">All</a></span>
<span><a href="#" class="filter-btn" data-filter="A.I. Development">A.I.
Development</a></span>
<span><a href="#" class="filter-btn" data-filter="Web Development">Web
Development</a></span>
<span><a href="#" class="filter-btn" data-filter="Workflow Automation">Workflow
Automation</a></span>
</p>
</div>
</div>
<div class="row" id="project-list">
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeIn"
data-category="A.I. Development">
<article class="cardProject cardProject--reverse"><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/c_scale,w_720/v1720462357/Portfolio/dental-exam.jpg">
<div class="cardProject__information">
<h3>Dental - A.I. Receptionist</h3>
<p>
The Dental - A.I. Receptionist optimizes dental practices by automating
appointment
scheduling, offering practice information, providing basic dental advice,
and capturing leads. Seamlessly integrating with existing systems, it uses
A.I. and natural language processing to effectively respond to inquiries,
reducing staff workload and enhancing efficiency.
</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Voiceflow</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>ChatGPT</span></div>
</div>
<div class="cardProject_links">
<div class="cardLink"><a target="_blank"
href="https://creator.voiceflow.com/prototype/657a0096e7a945cff74e73cf">View
demo <svg stroke="currentColor" fill="currentColor" stroke-width="0"
viewBox="0 0 512 512" height="2rem" width="2rem"
xmlns="http://www.w3.org/2000/svg">
<path
d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z">
</path>
</svg></a></div>
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInLeft"
data-category="Web Development">
<article class="cardProject cardProject--reverse"><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1718755654/Portfolio/web%20development/real-estate-1-compressed.jpg">
<div class="cardProject__information">
<h3>Real Estate Website </h3>
<p>The realtor company's website is a dynamic platform designed to drive
property sales and enhance client engagement in property management and
valuation services. This website features comprehensive listings for
property sales, detailed information on property management solutions, and
tools for accurate property valuation. Developed to increase property sales,
the website provides an intuitive user experience that simplifies browsing
and inquiry processes for potential buyers. It integrates advanced search
capabilities, detailed property descriptions, and virtual tours to attract
and retain client interest. </p>
<div class="cardProject_skills">
<div class="cardSkill"><span>NodeJs</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>ExpressJs</span></div>
<div class="cardSkill"><span>MongoDB</span></div>
</div>
<div class="cardProject_links">
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInTop"
data-category="A.I. Development">
<article class="cardProject "><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/Portfolio/spa-compressed.jpg">
<div class="cardProject__information">
<h3>Spa & Wellness Clinic - A.I. Receptionist </h3>
<p>The Spa & Wellness Clinic - A.I. Receptionist is a virtual assistant designed
to enhance client service and streamline operations. Utilizing advanced
A.I.,
it manages appointment scheduling, provides information on services, and
answers client inquiries. It offers personalized treatment recommendations
and integrates with the center’s booking systems for efficient management.
This intelligent receptionist automates routine tasks, ensuring a smooth and
welcoming experience that boosts operational efficiency and elevates the
client experience.</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Voiceflow</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>ChatGPT</span></div>
</div>
<div class="cardProject_links">
<div class="cardLink"><a target="_blank"
href="https://creator.voiceflow.com/prototype/653887a24b145e00079d62fb">View
demo <svg stroke="currentColor" fill="currentColor" stroke-width="0"
viewBox="0 0 512 512" height="2rem" width="2rem"
xmlns="http://www.w3.org/2000/svg">
<path
d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z">
</path>
</svg></a></div>
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInLeft"
data-category="A.I. Development">
<article class="cardProject "><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720436838/Portfolio/real-estate-compressed.png">
<div class="cardProject__information">
<h3>Real Estate - A.I. Assistant </h3>
<p>The Real Estate - A.I. Assistant is an advanced digital tool designed to
streamline the property buying, selling, and management process. Using
cutting-edge A.I., it provides instant property listings, schedules
viewings,
and answers client inquiries 24/7. It offers personalized property
recommendations based on user preferences and market trends, and it
automates routine tasks like lead capture and follow-ups. Integrating
seamlessly with CRM systems, this assistant enhances agent productivity and
improves client engagement, making the property transaction process faster
and more efficient.</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Voiceflow</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>Airtable</span></div>
</div>
<div class="cardProject_links">
<div class="cardLink"><a target="_blank"
href="https://creator.voiceflow.com/prototype/6539889031e94a00074d71a3">View
demo <svg stroke="currentColor" fill="currentColor" stroke-width="0"
viewBox="0 0 512 512" height="2rem" width="2rem"
xmlns="http://www.w3.org/2000/svg">
<path
d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z">
</path>
</svg></a></div>
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInBottom"
data-category="A.I. Development">
<article class="cardProject cardProject--reverse"><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1727899164/Portfolio/ai-insights-screenshot.png">
<div class="cardProject__information">
<h3>AI Insights Report Generator</h3>
<p>AI Insights Report Generator is a web-based application designed to provide valuable insights for your business using AI-driven analytics. The application leverages multiple data sources to deliver comprehensive reports and visualizations, helping users make data-driven decisions with ease.
</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Python</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>ChatGPT</span></div>
</div>
<div class="cardProject_links">
<div class="cardLink"><a target="_blank"
href="https://ai-insights-production.up.railway.app">View
demo <svg stroke="currentColor" fill="currentColor" stroke-width="0"
viewBox="0 0 512 512" height="2rem" width="2rem"
xmlns="http://www.w3.org/2000/svg">
<path
d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z">
</path>
</svg></a></div>
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInBottom"
data-category="Web Development">
<article class="cardProject cardProject--reverse"><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1718819208/Portfolio/web%20development/pharmaceuticals-1-compressed.jpg">
<div class="cardProject__information">
<h3>Wordpress Quotation Plugin for E-commerce</h3>
<p>The WordPress Quotation Plugin for e-commerce websites is designed to enhance
the shopping experience by allowing visitors to easily request quotations
for selected products. This user-friendly plugin integrates seamlessly into
your WordPress e-commerce site, providing a "Add to Invoice" option for
visitors as they browse and select items. Shoppers can compile a list of
desired products and submit a single request for a personalized quote. The
plugin captures the details and sends them to your sales team for prompt
follow-up. By streamlining the quotation process, this tool helps convert
interested visitors into customers, improving engagement and driving sales.
</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Wordpress</span></div>
<div class="cardSkill"><span>PHP</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>MySQL</span></div>
<div class="cardProject_links">
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInRight"
data-category="A.I. Development">
<article class="cardProject cardProject--reverse">
<img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720400926/Portfolio/it-support-compressed.jpg">
<div class="cardProject__information">
<h3>Tech Company - A.I. Receptionist</h3>
<p>The Tech Company - A.I. Receptionist is an advanced virtual assistant
designed
to streamline front-desk operations and enhance visitor interactions.
Leveraging cutting-edge A.I. and natural language processing, appointment
scheduling, and providing company information. Key features include the
ability to acquire detailed project descriptions from clients and seamlessly
capture leads through Google Sheets integration, ensuring efficient lead
management and follow-up. It supports multi-channel communication, offers
personalized assistance, and integrates smoothly with existing systems. This
intelligent receptionist not only optimizes operational efficiency but also
elevates the overall customer experience by automating routine tasks and
providing timely, accurate information.</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Botpress</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>ChatGPT</span></div>
<div class="cardSkill"><span>Stack A.I.</span></div>
<div class="cardSkill"><span>Google Sheets API</span></div>
</div>
<div class="cardProject_links">
<div class="cardLink"><a target="_blank"
href="https://mediafiles.botpress.cloud/cf32ae64-549a-4ac2-b3e9-f3a91c5e1fe4/webchat/bot.html">View
demo <svg stroke="currentColor" fill="currentColor" stroke-width="0"
viewBox="0 0 512 512" height="2rem" width="2rem"
xmlns="http://www.w3.org/2000/svg">
<path
d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z">
</path>
</svg></a></div>
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInRight"
data-category="Workflow Automation">
<article class="cardProject cardProject--reverse">
<img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720735053/Portfolio/logos/whatsapp-square-logo.svg">
<div class="cardProject__information">
<h3>Whatsapp Business - A.I. Autoresponder</h3>
<p>The WhatsApp Business - A.I. Autoresponder enhances customer engagement by
automatically responding to inquiries in real-time. It categorizes messages,
generates personalized replies, and handles various queries such as product
details and appointment scheduling. By integrating with existing systems, it
ensures efficient customer service, freeing up your team for more complex
tasks and improving overall operational efficiency.</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Python</span></div>
<div class="cardSkill"><span>Cloud API</span></div>
</div>
<div class="cardProject_links">
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInRight"
data-category="Workflow Automation">
<article class="cardProject cardProject--reverse">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 1000 1000" width="1000" height="1000"
preserveAspectRatio="xMidYMid meet"
style="width: 100%; height: 100%; transform: translate3d(0px, 0px, 0px); content-visibility: visible;">
<defs>
<clipPath id="__lottie_element_28">
<rect width="1000" height="1000" x="0" y="0"></rect>
</clipPath>
<g id="__lottie_element_30">
<g style="display: none;">
<g>
<path></path>
</g>
</g>
</g>
<filter id="__lottie_element_36" filterUnits="objectBoundingBox" x="0%"
y="0%" width="100%" height="100%">
<feComponentTransfer in="SourceGraphic">
<feFuncA type="table" tableValues="1.0 0.0"></feFuncA>
</feComponentTransfer>
</filter>
<mask id="__lottie_element_30_2" mask-type="alpha">
<g filter="url(#__lottie_element_36)">
<rect width="1000" height="1000" x="0" y="0" fill="#ffffff"
opacity="0">
</rect>
<use xlink:href="#__lottie_element_30"></use>
</g>
</mask>
</defs>
<g clip-path="url(#__lottie_element_28)">
<g transform="matrix(0.9100000262260437,0,0,0.9190999865531921,480,540)"
opacity="1" style="display: block;">
<g opacity="1"
transform="matrix(-1.113864541053772,-0.11707188189029694,0.11707188189029694,-1.113864541053772,2,-75)">
<path fill="rgb(61,128,240)" fill-opacity="0.15"
d=" M-70.01255798339844,-401.86431884765625 C169.99371337890625,-444.6972351074219 442.586669921875,-274.12939453125 396.586669921875,8.870599746704102 C361.763671875,223.10659790039062 172.55076599121094,371.9076232910156 -28,388.413330078125 C-227.5035400390625,404.7160949707031 -365.1322937011719,224.6052703857422 -382.8580322265625,12.296480178833008 C-399.66583251953125,-272.1670837402344 -267.71356201171875,-366.3424072265625 -70.01255798339844,-401.86431884765625z">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,2,-19)">
<path fill="rgb(61,128,240)" fill-opacity="0.2"
d=" M-70.01255798339844,-401.86431884765625 C169.99371337890625,-444.6972351074219 442.586669921875,-274.12939453125 396.586669921875,8.870599746704102 C361.763671875,223.10659790039062 172.55076599121094,371.9076232910156 -28,388.413330078125 C-227.5035400390625,404.7160949707031 -365.1322937011719,224.6052703857422 -382.8580322265625,12.296480178833008 C-399.66583251953125,-272.1670837402344 -267.71356201171875,-366.3424072265625 -70.01255798339844,-401.86431884765625z">
</path>
</g>
</g>
<g transform="matrix(0.5600000023841858,0,0,0.5600000023841858,-522.8927612304688,-92.48309326171875)"
opacity="0.99" style="display: block;">
<g opacity="1"
transform="matrix(5.671279430389404,1.766406774520874,-1.766406774520874,5.671279430389404,1785.1390380859375,947.1640014648438)">
<path fill="rgb(0,0,0)" fill-opacity="0.2"
d=" M78.73500061035156,-34.70800018310547 C78.73500061035156,-34.70800018310547 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -77.06500244140625,13.819000244140625 -77.06500244140625,13.819000244140625 C-77.77200317382812,11.545999526977539 -77.41999816894531,9.932999610900879 -76.63200378417969,7.874000072479248 C-75.6989974975586,5.434999942779541 -21.424999237060547,-10.03600025177002 -6.934999942779541,-15.232000350952148 C-4.73799991607666,-16.020000457763672 -2.174999952316284,-16.81999969482422 0.09000000357627869,-17.42300033569336 C15.008999824523926,-21.39699935913086 72.32599639892578,-41.59400177001953 74.43499755859375,-40.27299880981445 C76.41300201416016,-39.034000396728516 77.97699737548828,-37.111000061035156 78.73500061035156,-34.70800018310547z M78.73500061035156,-34.70800018310547 C78.73500061035156,-34.70800018310547 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -77.06500244140625,13.819000244140625 -77.06500244140625,13.819000244140625 C-77.77200317382812,11.545999526977539 -77.41999816894531,9.932999610900879 -76.63200378417969,7.874000072479248 C-75.6989974975586,5.434999942779541 -21.424999237060547,-10.03600025177002 -6.934999942779541,-15.232000350952148 C-4.73799991607666,-16.020000457763672 -2.174999952316284,-16.81999969482422 0.09000000357627869,-17.42300033569336 C15.008999824523926,-21.39699935913086 72.32599639892578,-41.59400177001953 74.43499755859375,-40.27299880981445 C76.41300201416016,-39.034000396728516 77.97699737548828,-37.111000061035156 78.73500061035156,-34.70800018310547z">
</path>
</g>
<g opacity="1"
transform="matrix(5.671279430389404,1.766406774520874,-1.766406774520874,5.671279430389404,1801.1390380859375,934.1640014648438)">
<path fill="rgb(44,115,227)" fill-opacity="1"
d=" M78.73500061035156,-34.70800018310547 C78.73500061035156,-34.70800018310547 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -77.06500244140625,13.819000244140625 -77.06500244140625,13.819000244140625 C-77.77200317382812,11.545999526977539 -77.41999816894531,9.932999610900879 -76.63200378417969,7.874000072479248 C-75.6989974975586,5.434999942779541 -32.50899887084961,-52.69499969482422 -21.15399932861328,-67.95800018310547 C-19.433000564575195,-70.27200317382812 -16.871999740600586,-71.08200073242188 -14.137999534606934,-70.18000030517578 C3.869999885559082,-64.23500061035156 72.32599639892578,-41.59400177001953 74.43499755859375,-40.27299880981445 C76.41300201416016,-39.034000396728516 77.97699737548828,-37.111000061035156 78.73500061035156,-34.70800018310547z M78.73500061035156,-34.70800018310547 C78.73500061035156,-34.70800018310547 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -77.06500244140625,13.819000244140625 -77.06500244140625,13.819000244140625 C-77.77200317382812,11.545999526977539 -77.41999816894531,9.932999610900879 -76.63200378417969,7.874000072479248 C-75.6989974975586,5.434999942779541 -32.50899887084961,-52.69499969482422 -21.15399932861328,-67.95800018310547 C-19.433000564575195,-70.27200317382812 -16.871999740600586,-71.08200073242188 -14.137999534606934,-70.18000030517578 C3.869999885559082,-64.23500061035156 72.32599639892578,-41.59400177001953 74.43499755859375,-40.27299880981445 C76.41300201416016,-39.034000396728516 77.97699737548828,-37.111000061035156 78.73500061035156,-34.70800018310547z">
</path>
</g>
<g opacity="1"
transform="matrix(5.671279430389404,1.766406774520874,-1.766406774520874,5.671279430389404,1801.1390380859375,792.859375)">
<g opacity="1" transform="matrix(1,0,0,1,-1792,-1153)">
<path fill="rgb(236,242,251)" fill-opacity="1"
d=" M1861.2080078125,1111.7490234375 C1861.2080078125,1111.7490234375 1886.1209716796875,1191.5579833984375 1886.1209716796875,1191.5579833984375 C1887.27294921875,1195.248046875 1885.2139892578125,1199.1729736328125 1881.5240478515625,1200.324951171875 C1881.5240478515625,1200.324951171875 1753.446044921875,1240.4090576171875 1753.446044921875,1240.4090576171875 C1749.7559814453125,1241.56103515625 1745.8299560546875,1239.5030517578125 1744.677978515625,1235.81298828125 C1744.677978515625,1235.81298828125 1719.7650146484375,1156.0050048828125 1719.7650146484375,1156.0050048828125 C1718.613037109375,1152.31494140625 1720.6719970703125,1148.3890380859375 1724.362060546875,1147.237060546875 C1724.362060546875,1147.237060546875 1852.4410400390625,1107.1529541015625 1852.4410400390625,1107.1529541015625 C1856.1309814453125,1106.0009765625 1860.0560302734375,1108.0589599609375 1861.2080078125,1111.7490234375z M1861.2080078125,1111.7490234375 C1861.2080078125,1111.7490234375 1886.1209716796875,1191.5579833984375 1886.1209716796875,1191.5579833984375 C1887.27294921875,1195.248046875 1885.2139892578125,1199.1729736328125 1881.5240478515625,1200.324951171875 C1881.5240478515625,1200.324951171875 1753.446044921875,1240.4090576171875 1753.446044921875,1240.4090576171875 C1749.7559814453125,1241.56103515625 1745.8299560546875,1239.5030517578125 1744.677978515625,1235.81298828125 C1744.677978515625,1235.81298828125 1719.7650146484375,1156.0050048828125 1719.7650146484375,1156.0050048828125 C1718.613037109375,1152.31494140625 1720.6719970703125,1148.3890380859375 1724.362060546875,1147.237060546875 C1724.362060546875,1147.237060546875 1852.4410400390625,1107.1529541015625 1852.4410400390625,1107.1529541015625 C1856.1309814453125,1106.0009765625 1860.0560302734375,1108.0589599609375 1861.2080078125,1111.7490234375z">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,-1792,-1153)">
<path stroke-linecap="round" stroke-linejoin="round"
fill-opacity="0" stroke="rgb(191,206,226)"
stroke-opacity="1" stroke-width="5"
d=" M1741.751953125,1155.5560302734375 C1741.751953125,1155.5560302734375 1784.0400390625,1142.4549560546875 1787.31494140625,1141.43994140625">
</path>
<g opacity="1" transform="matrix(1,0,0,1,15,45)"></g>
<g opacity="1" transform="matrix(1,0,0,1,10,30)"></g>
<g opacity="1" transform="matrix(1,0,0,1,5,15)"></g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)"></g>
</g>
</g>
<g opacity="1"
transform="matrix(5.671279430389404,1.766406774520874,-1.766406774520874,5.671279430389404,1801.1390380859375,934.1640014648438)">
<path fill="rgb(0,122,255)" fill-opacity="1"
d=" M78.95800018310547,-33.9900016784668 C78.95800018310547,-33.9900016784668 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -76.84100341796875,14.536999702453613 -76.84100341796875,14.536999702453613 C-78.51100158691406,9.164999961853027 -74.7030029296875,6.060999870300293 -68.3290023803711,7.683000087738037 C-68.3290023803711,7.683000087738037 12.317000389099121,29.180999755859375 12.317000389099121,29.180999755859375 C12.317000389099121,29.180999755859375 68.06099700927734,-34.76599884033203 68.06099700927734,-34.76599884033203 C72.19999694824219,-39.37900161743164 77.26799774169922,-39.34400177001953 78.95800018310547,-33.9900016784668z M78.95800018310547,-33.9900016784668 C78.95800018310547,-33.9900016784668 103.17500305175781,43.82400131225586 103.17500305175781,43.82400131225586 C103.53500366210938,44.98099899291992 103.67500305175781,46.15999984741211 103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.744998931884766,94.48400115966797 -52.275001525878906,93.4540023803711 -52.6349983215332,92.31800079345703 C-52.6349983215332,92.31800079345703 -76.84100341796875,14.536999702453613 -76.84100341796875,14.536999702453613 C-78.51100158691406,9.164999961853027 -74.7030029296875,6.060999870300293 -68.3290023803711,7.683000087738037 C-68.3290023803711,7.683000087738037 12.317000389099121,29.180999755859375 12.317000389099121,29.180999755859375 C12.317000389099121,29.180999755859375 68.06099700927734,-34.76599884033203 68.06099700927734,-34.76599884033203 C72.19999694824219,-39.37900161743164 77.26799774169922,-39.34400177001953 78.95800018310547,-33.9900016784668z M103.572998046875,47.13399887084961 C103.42400360107422,51.39400100708008 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01300048828125 -39.904998779296875,99.01300048828125 C-44.125,100.3280029296875 -48.5880012512207,98.66699981689453 -51.11800003051758,95.21700286865234 C-51.11800003051758,95.21700286865234 5.468999862670898,25.01099967956543 5.468999862670898,25.01099967956543 C5.468999862670898,25.01099967956543 8.102999687194824,21.832000732421875 10.819999694824219,21.020000457763672 C13.536999702453613,20.20800018310547 17.107999801635742,21.540000915527344 17.107999801635742,21.540000915527344 C17.107999801635742,21.540000915527344 103.572998046875,47.13399887084961 103.572998046875,47.13399887084961z M103.572998046875,47.13399887084961 C103.42400360107422,51.39400100708008 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01300048828125 -39.904998779296875,99.01300048828125 C-44.125,100.3280029296875 -48.5880012512207,98.66699981689453 -51.11800003051758,95.21700286865234 C-51.11800003051758,95.21700286865234 5.468999862670898,25.01099967956543 5.468999862670898,25.01099967956543 C5.468999862670898,25.01099967956543 8.102999687194824,21.832000732421875 10.819999694824219,21.020000457763672 C13.536999702453613,20.20800018310547 17.107999801635742,21.540000915527344 17.107999801635742,21.540000915527344 C17.107999801635742,21.540000915527344 103.572998046875,47.13399887084961 103.572998046875,47.13399887084961z M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z">
</path>
<path fill="rgb(32,32,32)" fill-opacity="0.3"
d=" M103.572998046875,47.13399887084961 C103.42400360107422,51.39400100708008 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01300048828125 -39.904998779296875,99.01300048828125 C-44.125,100.3280029296875 -48.5880012512207,98.66699981689453 -51.11800003051758,95.21700286865234 C-51.11800003051758,95.21700286865234 5.468999862670898,25.01099967956543 5.468999862670898,25.01099967956543 C5.468999862670898,25.01099967956543 8.102999687194824,21.832000732421875 10.819999694824219,21.020000457763672 C13.536999702453613,20.20800018310547 17.107999801635742,21.540000915527344 17.107999801635742,21.540000915527344 C17.107999801635742,21.540000915527344 103.572998046875,47.13399887084961 103.572998046875,47.13399887084961z M103.572998046875,47.13399887084961 C103.42400360107422,51.39400100708008 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01300048828125 -39.904998779296875,99.01300048828125 C-44.125,100.3280029296875 -48.5880012512207,98.66699981689453 -51.11800003051758,95.21700286865234 C-51.11800003051758,95.21700286865234 5.468999862670898,25.01099967956543 5.468999862670898,25.01099967956543 C5.468999862670898,25.01099967956543 8.102999687194824,21.832000732421875 10.819999694824219,21.020000457763672 C13.536999702453613,20.20800018310547 17.107999801635742,21.540000915527344 17.107999801635742,21.540000915527344 C17.107999801635742,21.540000915527344 103.572998046875,47.13399887084961 103.572998046875,47.13399887084961z M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z">
</path>
<path fill="rgb(89,151,238)" fill-opacity="1"
d=" M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M103.625,47.301998138427734 C103.44499969482422,51.4640007019043 100.68499755859375,55.25699996948242 96.48500061035156,56.564998626708984 C96.48500061035156,56.564998626708984 -39.904998779296875,99.01399993896484 -39.904998779296875,99.01399993896484 C-44.125,100.3290023803711 -48.564998626708984,98.73899841308594 -51.064998626708984,95.38700103759766 C-51.064998626708984,95.38700103759766 5.9019999504089355,26.402000427246094 5.9019999504089355,26.402000427246094 C5.9019999504089355,26.402000427246094 8.553000450134277,23.277999877929688 11.270000457763672,22.46500015258789 C13.987000465393066,21.652000427246094 17.541000366210938,22.927000045776367 17.541000366210938,22.927000045776367 C17.541000366210938,22.927000045776367 103.625,47.301998138427734 103.625,47.301998138427734z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z">
</path>
<path fill="rgb(102,162,246)" fill-opacity="0"
d=" M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z M-73.9260025024414,5.758999824523926 C-73.92787170410156,5.761000156402588 -73.93099975585938,5.769000053405762 -73.93399810791016,5.77400016784668 C-73.93399810791016,5.77400016784668 -73.93399810791016,5.7769999504089355 -73.93299865722656,5.7779998779296875 C-73.93199920654297,5.78000020980835 -73.93287658691406,5.781000137329102 -73.93199920654297,5.781000137329102 C-73.93199920654297,5.781000137329102 -73.90799713134766,5.7729997634887695 -73.90799713134766,5.7729997634887695 C-73.9071273803711,5.7729997634887695 -73.90699768066406,5.7729997634887695 -73.90799713134766,5.769999980926514 C-73.90799713134766,5.769000053405762 -73.90899658203125,5.767000198364258 -73.90899658203125,5.767000198364258 C-73.91400146484375,5.763999938964844 -73.9229965209961,5.758999824523926 -73.92500305175781,5.758999824523926 C-73.92500305175781,5.758999824523926 -73.9260025024414,5.758999824523926 -73.9260025024414,5.758999824523926z">
</path>
</g>
</g>
<g transform="matrix(0.6459482908248901,0.17790690064430237,-0.17790690064430237,0.6459482908248901,-952.0526123046875,-321.78729248046875)"
opacity="1" style="display: block;">
<g opacity="1"
transform="matrix(1,0,0,1,2140.425048828125,652.02099609375)">
<path fill="rgb(0,0,0)" fill-opacity="0.18"
d=" M-4,-52.45249938964844 C31.019433975219727,-52.45249938964844 59.45249938964844,-24.019433975219727 59.45249938964844,11 C59.45249938964844,46.01943588256836 31.019433975219727,74.45249938964844 -4,74.45249938964844 C-39.01943588256836,74.45249938964844 -67.45249938964844,46.01943588256836 -67.45249938964844,11 C-67.45249938964844,-24.019433975219727 -39.01943588256836,-52.45249938964844 -4,-52.45249938964844z">
</path>
</g>
<g opacity="1"
transform="matrix(1,0,0,1,2140.425048828125,652.02099609375)">
<path fill="rgb(225,234,245)" fill-opacity="1"
d=" M0,-63.45249938964844 C35.01943588256836,-63.45249938964844 63.45249938964844,-35.01943588256836 63.45249938964844,0 C63.45249938964844,35.01943588256836 35.01943588256836,63.45249938964844 0,63.45249938964844 C-35.01943588256836,63.45249938964844 -63.45249938964844,35.01943588256836 -63.45249938964844,0 C-63.45249938964844,-35.01943588256836 -35.01943588256836,-63.45249938964844 0,-63.45249938964844z M17.93600082397461,34.33000183105469 C12.602999687194824,37.12900161743164 5.40500020980835,38.59600067138672 -1.3930000066757202,38.59600067138672 C-21.2549991607666,38.59600067138672 -35.51900100708008,25.93199920654297 -35.51900100708008,3.6700000762939453 C-35.51900100708008,-21.791000366210938 -17.6560001373291,-37.7869987487793 2.740000009536743,-37.7869987487793 C23.402000427246094,-37.7869987487793 34.597999572753906,-24.323999404907227 34.597999572753906,-6.99399995803833 C34.597999572753906,8.336000442504883 27.398000717163086,15.73900032043457 21.667999267578125,15.534000396728516 C17.93600082397461,15.401000022888184 17.003000259399414,11.802000045776367 18.336000442504883,3.937000036239624 C18.336000442504883,3.937000036239624 22.334999084472656,-20.724000930786133 22.334999084472656,-20.724000930786133 C19.00200080871582,-22.59000015258789 12.336999893188477,-24.05699920654297 6.4720001220703125,-24.05699920654297 C-12.723999977111816,-24.05699920654297 -24.722000122070312,-9.260000228881836 -24.722000122070312,7.002999782562256 C-24.722000122070312,17.93400001525879 -18.45599937438965,24.332000732421875 -9.791000366210938,24.332000732421875 C-2.7260000705718994,24.332000732421875 3.2720000743865967,20.867000579833984 7.40500020980835,14.067999839782715 C7.40500020980835,14.067999839782715 7.671000003814697,14.067999839782715 7.671000003814697,14.067999839782715 C8.338000297546387,21.132999420166016 12.869999885559082,24.332000732421875 19.13599967956543,24.332000732421875 C33.53200149536133,24.332000732421875 44.4630012512207,12.067999839782715 44.4630012512207,-7.394000053405762 C44.4630012512207,-29.788999557495117 27.66699981689453,-45.91899871826172 4.205999851226807,-45.91899871826172 C-25.92099952697754,-45.91899871826172 -45.650001525878906,-22.323999404907227 -45.650001525878906,4.869999885559082 C-45.650001525878906,30.99799919128418 -26.187000274658203,46.861000061035156 -4.059999942779541,46.861000061035156 C5.40500020980835,46.861000061035156 12.336999893188477,45.6609992980957 20.334999084472656,42.0620002746582 C20.334999084472656,42.0620002746582 17.93600082397461,34.33000183105469 17.93600082397461,34.33000183105469z M6.604000091552734,-0.32899999618530273 C5.4039998054504395,7.4029998779296875 0.20600000023841858,13.668000221252441 -4.72599983215332,13.668000221252441 C-9.12399959564209,13.668000221252441 -11.390999794006348,10.468999862670898 -11.390999794006348,5.4029998779296875 C-11.390999794006348,-4.861000061035156 -4.459000110626221,-13.526000022888184 4.339000225067139,-13.526000022888184 C6.071000099182129,-13.526000022888184 7.4039998054504395,-13.260000228881836 8.470000267028809,-12.993000030517578 C8.470000267028809,-12.993000030517578 6.604000091552734,-0.32899999618530273 6.604000091552734,-0.32899999618530273z">
</path>
<path fill="rgb(0,122,255)" fill-opacity="1"
d=" M17.93600082397461,34.33000183105469 C12.602999687194824,37.12900161743164 5.40500020980835,38.59600067138672 -1.3930000066757202,38.59600067138672 C-21.2549991607666,38.59600067138672 -35.51900100708008,25.93199920654297 -35.51900100708008,3.6700000762939453 C-35.51900100708008,-21.791000366210938 -17.6560001373291,-37.7869987487793 2.740000009536743,-37.7869987487793 C23.402000427246094,-37.7869987487793 34.597999572753906,-24.323999404907227 34.597999572753906,-6.99399995803833 C34.597999572753906,8.336000442504883 27.398000717163086,15.73900032043457 21.667999267578125,15.534000396728516 C17.93600082397461,15.401000022888184 17.003000259399414,11.802000045776367 18.336000442504883,3.937000036239624 C18.336000442504883,3.937000036239624 22.334999084472656,-20.724000930786133 22.334999084472656,-20.724000930786133 C19.00200080871582,-22.59000015258789 12.336999893188477,-24.05699920654297 6.4720001220703125,-24.05699920654297 C-12.723999977111816,-24.05699920654297 -24.722000122070312,-9.260000228881836 -24.722000122070312,7.002999782562256 C-24.722000122070312,17.93400001525879 -18.45599937438965,24.332000732421875 -9.791000366210938,24.332000732421875 C-2.7260000705718994,24.332000732421875 3.2720000743865967,20.867000579833984 7.40500020980835,14.067999839782715 C7.40500020980835,14.067999839782715 7.671000003814697,14.067999839782715 7.671000003814697,14.067999839782715 C8.338000297546387,21.132999420166016 12.869999885559082,24.332000732421875 19.13599967956543,24.332000732421875 C33.53200149536133,24.332000732421875 44.4630012512207,12.067999839782715 44.4630012512207,-7.394000053405762 C44.4630012512207,-29.788999557495117 27.66699981689453,-45.91899871826172 4.205999851226807,-45.91899871826172 C-25.92099952697754,-45.91899871826172 -45.650001525878906,-22.323999404907227 -45.650001525878906,4.869999885559082 C-45.650001525878906,30.99799919128418 -26.187000274658203,46.861000061035156 -4.059999942779541,46.861000061035156 C5.40500020980835,46.861000061035156 12.336999893188477,45.6609992980957 20.334999084472656,42.0620002746582 C20.334999084472656,42.0620002746582 17.93600082397461,34.33000183105469 17.93600082397461,34.33000183105469z M6.604000091552734,-0.32899999618530273 C5.4039998054504395,7.4029998779296875 0.20600000023841858,13.668000221252441 -4.72599983215332,13.668000221252441 C-9.12399959564209,13.668000221252441 -11.390999794006348,10.468999862670898 -11.390999794006348,5.4029998779296875 C-11.390999794006348,-4.861000061035156 -4.459000110626221,-13.526000022888184 4.339000225067139,-13.526000022888184 C6.071000099182129,-13.526000022888184 7.4039998054504395,-13.260000228881836 8.470000267028809,-12.993000030517578 C8.470000267028809,-12.993000030517578 6.604000091552734,-0.32899999618530273 6.604000091552734,-0.32899999618530273z">
</path>
</g>
</g>
<g transform="matrix(0.8199999928474426,0,0,0.8199999928474426,478.48223876953125,853.4967651367188)"
opacity="1" style="display: block;">
<g opacity="1" transform="matrix(1,0,0,1,200.25,-287)">
<path fill="rgb(0,0,0)" fill-opacity="0.17"
d=" M127.75,-39.5 C127.75,-39.5 127.75,51.5 127.75,51.5 C127.75,57.01900100708008 123.26899719238281,61.5 117.75,61.5 C117.75,61.5 -129.75,61.5 -129.75,61.5 C-135.2689971923828,61.5 -139.75,57.01900100708008 -139.75,51.5 C-139.75,51.5 -139.75,-39.5 -139.75,-39.5 C-139.75,-45.01900100708008 -135.2689971923828,-49.5 -129.75,-49.5 C-129.75,-49.5 117.75,-49.5 117.75,-49.5 C123.26899719238281,-49.5 127.75,-45.01900100708008 127.75,-39.5z M127.75,-39.5 C127.75,-39.5 127.75,51.5 127.75,51.5 C127.75,57.01900100708008 123.26899719238281,61.5 117.75,61.5 C117.75,61.5 -129.75,61.5 -129.75,61.5 C-135.2689971923828,61.5 -139.75,57.01900100708008 -139.75,51.5 C-139.75,51.5 -139.75,-39.5 -139.75,-39.5 C-139.75,-45.01900100708008 -135.2689971923828,-49.5 -129.75,-49.5 C-129.75,-49.5 117.75,-49.5 117.75,-49.5 C123.26899719238281,-49.5 127.75,-45.01900100708008 127.75,-39.5z M133.75,-45.5 C133.75,-45.5 133.75,45.5 133.75,45.5 C133.75,51.01900100708008 129.2689971923828,55.5 123.75,55.5 C123.75,55.5 -123.75,55.5 -123.75,55.5 C-129.2689971923828,55.5 -133.75,51.01900100708008 -133.75,45.5 C-133.75,45.5 -133.75,-45.5 -133.75,-45.5 C-133.75,-51.01900100708008 -129.2689971923828,-55.5 -123.75,-55.5 C-123.75,-55.5 123.75,-55.5 123.75,-55.5 C129.2689971923828,-55.5 133.75,-51.01900100708008 133.75,-45.5z M133.75,-45.5 C133.75,-45.5 133.75,45.5 133.75,45.5 C133.75,51.01900100708008 129.2689971923828,55.5 123.75,55.5 C123.75,55.5 -123.75,55.5 -123.75,55.5 C-129.2689971923828,55.5 -133.75,51.01900100708008 -133.75,45.5 C-133.75,45.5 -133.75,-45.5 -133.75,-45.5 C-133.75,-51.01900100708008 -129.2689971923828,-55.5 -123.75,-55.5 C-123.75,-55.5 123.75,-55.5 123.75,-55.5 C129.2689971923828,-55.5 133.75,-51.01900100708008 133.75,-45.5z M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z">
</path>
<path fill="rgb(255,255,255)" fill-opacity="1"
d=" M133.75,-45.5 C133.75,-45.5 133.75,45.5 133.75,45.5 C133.75,51.01900100708008 129.2689971923828,55.5 123.75,55.5 C123.75,55.5 -123.75,55.5 -123.75,55.5 C-129.2689971923828,55.5 -133.75,51.01900100708008 -133.75,45.5 C-133.75,45.5 -133.75,-45.5 -133.75,-45.5 C-133.75,-51.01900100708008 -129.2689971923828,-55.5 -123.75,-55.5 C-123.75,-55.5 123.75,-55.5 123.75,-55.5 C129.2689971923828,-55.5 133.75,-51.01900100708008 133.75,-45.5z M133.75,-45.5 C133.75,-45.5 133.75,45.5 133.75,45.5 C133.75,51.01900100708008 129.2689971923828,55.5 123.75,55.5 C123.75,55.5 -123.75,55.5 -123.75,55.5 C-129.2689971923828,55.5 -133.75,51.01900100708008 -133.75,45.5 C-133.75,45.5 -133.75,-45.5 -133.75,-45.5 C-133.75,-51.01900100708008 -129.2689971923828,-55.5 -123.75,-55.5 C-123.75,-55.5 123.75,-55.5 123.75,-55.5 C129.2689971923828,-55.5 133.75,-51.01900100708008 133.75,-45.5z M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z">
</path>
<path fill="rgb(223,229,243)" fill-opacity="1"
d=" M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-46.75 C-48.198673248291016,-46.75 -27.25,-25.80132484436035 -27.25,0 C-27.25,25.80132484436035 -48.198673248291016,46.75 -74,46.75 C-99.80132293701172,46.75 -120.75,25.80132484436035 -120.75,0 C-120.75,-25.80132484436035 -99.80132293701172,-46.75 -74,-46.75z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z">
</path>
<path fill="rgb(255,255,255)" fill-opacity="1"
d=" M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z M-74,-32 C-63.36899948120117,-32 -54.75,-23.381000518798828 -54.75,-12.75 C-54.75,-3.9839999675750732 -60.60900115966797,7.322999954223633 -68.625,11.020999908447266 C-69.45600128173828,11.404999732971191 -45,13.625 -43.935001373291016,27.259000778198242 C-48.75,33.875 -60.625,40.25 -74,40.25 C-88.3759994506836,40.25 -100.375,32.125 -105.00199890136719,26.947999954223633 C-104.375,13.25 -79.21700286865234,11.142999649047852 -80.26799774169922,10.572999954223633 C-87.8219985961914,6.478000164031982 -93.25,-4.313000202178955 -93.25,-12.75 C-93.25,-23.381000518798828 -84.63099670410156,-32 -74,-32z">
</path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="round" stroke-linejoin="round"
fill-opacity="0" stroke="rgb(222,228,243)" stroke-opacity="1"
stroke-width="10"
d=" M192.5,-298 C192.5,-298 313,-298 313,-298 M192.5,-298 C192.5,-298 313,-298 313,-298 M192.5,-256 C192.5,-256 313,-256 313,-256 M192.5,-277 C192.5,-277 313,-277 313,-277 M192.5,-298 C192.5,-298 313,-298 313,-298">
</path>
<g opacity="1" transform="matrix(1,0,0,1,0,42)"></g>
<g opacity="1" transform="matrix(1,0,0,1,0,21)"></g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)"></g>
</g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="round" stroke-linejoin="round"
fill-opacity="0" stroke="rgb(0,122,255)" stroke-opacity="1"
stroke-width="10"
d=" M192.5,-319.5 C192.5,-319.5 250.5,-319.5 250.5,-319.5 M192.5,-319.5 C192.5,-319.5 250.5,-319.5 250.5,-319.5">
</path>
</g>
</g>
<g mask="url(#__lottie_element_30_2)" style="display: block;">
<g transform="matrix(0.5613787174224854,-0.3276490569114685,0.3276490569114685,0.5613787174224854,-304.583984375,436.71759033203125)"
opacity="1">
<g opacity="1"
transform="matrix(1,0,0,1,790.9019775390625,773.677978515625)">
<path fill="rgb(0,0,0)" fill-opacity="0.2"
d=" M7.052504539489746,5.769775867462158 C7.052504539489746,5.769775867462158 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 12.07128620147705,-25.30948257446289 12.07128620147705,-25.30948257446289 C12.07128620147705,-25.30948257446289 5.23260498046875,-2.920881509780884 5.23260498046875,-2.920881509780884 C5.23260498046875,-2.920881509780884 6.8237481117248535,-1.9594812393188477 6.8237481117248535,-1.9594812393188477 C6.8237481117248535,-1.9594812393188477 7.052504539489746,5.769775867462158 7.052504539489746,5.769775867462158z M119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 2.1396780014038086,-17.904640197753906 2.1396780014038086,-17.904640197753906 C2.1396780014038086,-17.904640197753906 -63.87567138671875,8.888751029968262 -63.87567138671875,8.888751029968262 C-63.87567138671875,8.888751029968262 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312z M13.148059844970703,-23.729455947875977 C13.148059844970703,-23.729455947875977 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 6.514551162719727,-58.76594161987305 6.514551162719727,-58.76594161987305 C6.514551162719727,-58.76594161987305 13.148059844970703,-23.729455947875977 13.148059844970703,-23.729455947875977z">
</path>
</g>
<g opacity="1"
transform="matrix(1,0,0,1,795.9019775390625,768.677978515625)">
<path fill="rgb(166,189,219)" fill-opacity="1"
d=" M7.052504539489746,5.769775867462158 C7.052504539489746,5.769775867462158 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 12.07128620147705,-25.30948257446289 12.07128620147705,-25.30948257446289 C12.07128620147705,-25.30948257446289 5.23260498046875,-2.920881509780884 5.23260498046875,-2.920881509780884 C5.23260498046875,-2.920881509780884 6.8237481117248535,-1.9594812393188477 6.8237481117248535,-1.9594812393188477 C6.8237481117248535,-1.9594812393188477 7.052504539489746,5.769775867462158 7.052504539489746,5.769775867462158z M119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 2.1396780014038086,-17.904640197753906 2.1396780014038086,-17.904640197753906 C2.1396780014038086,-17.904640197753906 -63.87567138671875,8.888751029968262 -63.87567138671875,8.888751029968262 C-63.87567138671875,8.888751029968262 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312z M13.148059844970703,-23.729455947875977 C13.148059844970703,-23.729455947875977 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 6.514551162719727,-58.76594161987305 6.514551162719727,-58.76594161987305 C6.514551162719727,-58.76594161987305 13.148059844970703,-23.729455947875977 13.148059844970703,-23.729455947875977z">
</path>
<path fill="rgb(211,223,237)" fill-opacity="1"
d=" M119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 2.1396780014038086,-17.904640197753906 2.1396780014038086,-17.904640197753906 C2.1396780014038086,-17.904640197753906 -63.87567138671875,8.888751029968262 -63.87567138671875,8.888751029968262 C-63.87567138671875,8.888751029968262 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312z M13.148059844970703,-23.729455947875977 C13.148059844970703,-23.729455947875977 119.51065063476562,17.357742309570312 119.51065063476562,17.357742309570312 C119.51065063476562,17.357742309570312 6.514551162719727,-58.76594161987305 6.514551162719727,-58.76594161987305 C6.514551162719727,-58.76594161987305 13.148059844970703,-23.729455947875977 13.148059844970703,-23.729455947875977z">
</path>
</g>
</g>
</g>
</g>
</svg>
<div class="cardProject__information">
<h3>Email - A.I. Autoresponder</h3>
<p>The Email - A.I. Autoresponder streamlines email management by automatically
categorizing incoming messages and drafting personalized responses based on
past emails. Leveraging advanced machine learning, it efficiently sorts
emails into appropriate categories and generates response drafts that match
your unique communication style. This tool saves time and ensures
consistent, high-quality responses, making it ideal for professionals and
businesses aiming to optimize their email workflows and boost productivity.
</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Gmail API</span></div>
<div class="cardSkill"><span>ChatGPT</span></div>
</div>
<div class="cardProject_links">
</div>
</div>
</article>
</div>
<div class="card-project-container col-md-12 animate-box" data-animate-effect="fadeInLeft"
data-category="Web Development">
<article class="cardProject cardProject--reverse"><img
src="https://res.cloudinary.com/dzpafdvkm/image/upload/v1720646770/Portfolio/web%20development/dessert-shop-2-website.jpg">
<div class="cardProject__information">
<h3>Dessert Shop Website </h3>
<p>
The Dessert Shop website is designed to showcase a selection of handcrafted
ice creams, cakes, and desserts while providing a user-friendly experience
for visitors. I included an engaging about section detailing the shop's
history, high-quality product galleries with ordering options, and a contact
form for inquiries and custom orders. The site also lists distributor
information and integrates social media links for updates and promotions. By
combining visual appeal with functionality, this website ensures customers
can easily access information, place orders, and connect with the brand.
</p>
<div class="cardProject_skills">
<div class="cardSkill"><span>Wordpress</span></div>
<div class="cardSkill"><span>Elementor</span></div>
<div class="cardSkill"><span>Javascript</span></div>
<div class="cardSkill"><span>PHP</span></div>
</div>
<div class="cardProject_links">
</div>
</div>
</article>
</div>
<!-- <div class="card-project-container col-md-12 animate-box"
data-animate-effect="fadeInLeft" data-category="Web Development">
<article class="cardProject cardProject--reverse"><img src="">
<div class="cardProject__information">
<h3>YouTube Thumbnail Extractor </h3>
<p>
The YouTube Thumbnail Extractor is a user-friendly tool designed to extract thumbnails from YouTube videos quickly and efficiently. By simply entering the video URL, users can download high-quality thumbnails in various resolutions to suit their needs. This tool streamlines the process of obtaining video thumbnails for purposes such as social media sharing, presentations, and content creation, enhancing productivity and ease of use.
</p>