-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1961 lines (1763 loc) · 114 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About | AI Tool - Tailwind CSS Template for AI Tools</title>
<link rel="icon" href="favicon.ico"><link href="style.css" rel="stylesheet"></head>
<body x-data="{ page: 'about', 'loaded': true, 'stickyMenu': false, 'navigationOpen': false, 'scrollTop': false }">
<!-- ===== Header Start ===== -->
<header class="fixed left-0 top-0 w-full z-9999 py-7 lg:py-0"
:class="{ 'bg-dark/70 backdrop-blur-lg shadow !py-4 lg:!py-0 transition duration-100 before:absolute before:w-full before:h-[1px] before:bottom-0 before:left-0 before:features-row-border' : stickyMenu }"
@scroll.window="stickyMenu = (window.scrollY > 0) ? true : false">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 lg:flex items-center justify-between relative">
<div class="w-full lg:w-1/4 flex items-center justify-between">
<a href="https://osjobs.net/en/" class="flex items-center">
<img src="images/logo.svg" alt="Logo" style="width: 14%; height: auto;" />
<p class="ml-2 text-lg font-bold">
Overseas Rabbit
</p>
</a>
<!-- Hamburger Toggle BTN -->
<button class="lg:hidden block" @click="navigationOpen = !navigationOpen">
<span class="block relative cursor-pointer w-5.5 h-5.5">
<span class="du-block absolute right-0 w-full h-full">
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-[0]"
:class="{ '!w-full delay-300': !navigationOpen }"></span>
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-150"
:class="{ '!w-full delay-400': !navigationOpen }"></span>
<span
class="block relative top-0 left-0 bg-white rounded-sm w-0 h-0.5 my-1 ease-in-out duration-200 delay-200"
:class="{ '!w-full delay-500': !navigationOpen }"></span>
</span>
<span class="du-block absolute right-0 w-full h-full rotate-45">
<span
class="block bg-white rounded-sm ease-in-out duration-200 delay-300 absolute left-2.5 top-0 w-0.5 h-full"
:class="{ '!h-0 delay-[0]': !navigationOpen }"></span>
<span
class="block bg-white rounded-sm ease-in-out duration-200 delay-400 absolute left-0 top-2.5 w-full h-0.5"
:class="{ '!h-0 dealy-200': !navigationOpen }"></span>
</span>
</span>
</button>
<!-- Hamburger Toggle BTN -->
</div>
<div class="w-full lg:w-3/4 h-0 lg:h-auto invisible lg:visible lg:flex items-center justify-between"
:class="{ '!visible bg-dark shadow-lgrelative !h-auto max-h-[400px] overflow-y-scroll rounded-md mt-4 p-7.5': navigationOpen }">
<nav>
<ul class="flex lg:items-center flex-col lg:flex-row gap-5 lg:gap-2">
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#home"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient"
:class="{'!text-white nav-gradient' :page === 'home'}">Home</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#features"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Features</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#coaches"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Our Coaches</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="/#pricing"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Pricing</a>
</li>
<li class="nav__menu lg:py-7" :class="{ 'lg:!py-4' : stickyMenu }">
<a href="mailto:contact@osjobs.net?subject=Hello"
class="relative text-white/80 text-sm py-1.5 px-4 border border-transparent hover:text-white hover:nav-gradient">Contact Us</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- ===== Header End ===== -->
<main>
<!-- ===== Breadcrumb Section Start ===== -->
<section class="relative z-10 pt-30 lg:pt-35 xl:pt-40 pb-18">
<!-- bg shapes -->
<div class="absolute top-25 left-0 w-full flex flex-col gap-3 -z-1 opacity-50">
<div class="w-full h-[1.24px] footer-bg-gradient"></div>
<div class="w-full h-[2.47px] footer-bg-gradient"></div>
<div class="w-full h-[3.71px] footer-bg-gradient"></div>
<div class="w-full h-[4.99px] footer-bg-gradient"></div>
<div class="w-full h-[6.19px] footer-bg-gradient"></div>
<div class="w-full h-[7.42px] footer-bg-gradient"></div>
<div class="w-full h-[8.66px] footer-bg-gradient"></div>
<div class="w-full h-[9.90px] footer-bg-gradient"></div>
<div class="w-full h-[13px] footer-bg-gradient"></div>
</div>
<div class="absolute bottom-0 left-0 w-full h-24 bg-gradient-to-b from-dark/0 to-dark -z-1">
</div>
<div class="text-center px-4">
<h1 class="font-extrabold text-heading-2 text-white mb-5.5">
About AI Tool
</h1>
<ul class="flex items-center justify-center gap-2">
<li class="font-medium"><a href="index.html">Home</a></li>
<li class="font-medium">/ About Us</li>
</ul>
</div>
</section>
<!-- ===== Breadcrumb Section End ===== -->
<!-- ===== About Section Start ===== -->
<section class="overflow-hidden">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0 py-20 lg:py-25 relative">
<div class="absolute bottom-0 left-0 w-full h-[1px] about-divider-gradient"></div>
<div class="flex gap-11 flex-wrap justify-between">
<div class="wow fadeInLeft max-w-[570px] w-full">
<span class="hero-subtitle-text font-semibold block mb-5">About Our App</span>
<h2 class="text-white mb-5 text-2xl font-extrabold sm:text-4xl xl:text-heading-2">
10,000+ Writers, Marketers, & Business owners Love AI Tool.
</h2>
<p class="mb-9 font-medium">
Our AI writing tool is designed to empower you with exceptional
writing capabilities, making the writing process more efficient.
</p>
<a href="#"
class="hero-button-gradient inline-flex rounded-lg py-3 px-7 text-white font-medium ease-in duration-300 hover:opacity-80">
Start Writing - It's Free
</a>
</div>
<div class="wow fadeInRight hidden xl:block">
<img src="images/about.svg" alt="about" />
</div>
</div>
</div>
</section>
<!-- ===== About Section End ===== -->
<!-- ===== Features grid Section Start ===== -->
<section class="overflow-hidden py-17.5 lg:py-22.5 xl:py-27.5">
<div class="max-w-[1222px] mx-auto px-4 sm:px-8 xl:px-0">
<!-- Section Title -->
<div class="wow fadeInUp text-center">
<span
class="hero-subtitle-gradient relative mb-4 font-medium text-sm inline-flex items-center gap-2 py-2 px-4.5 rounded-full">
<img src="images/icon-title.svg" alt="icon">
<span class="hero-subtitle-text"> Some of Main Features </span>
</span>
<h2 class="text-white mb-4.5 text-2xl font-extrabold sm:text-4xl xl:text-heading-2">
Key Features of Our Tool
</h2>
<p class="max-w-[714px] mx-auto mb-5 font-medium">
Our AI writing tool is designed to empower you with exceptional
writing capabilities, making the writing process more efficient,
accurate, and enjoyable.
</p>
</div>
<div class="relative">
<div
class="features-row-border rotate-90 w-1/2 h-[1px] absolute top-1/2 left-1/2 -translate-y-1/2 lg:-translate-x-1/3 lg:left-1/4 hidden lg:block">
</div>
<div
class="features-row-border rotate-90 w-1/2 h-[1px] absolute top-1/2 right-1/2 -translate-y-1/2 lg:right-[8.3%] hidden lg:block">
</div>
<!--=== Features Row ===-->
<div class="flex flex-wrap justify-center">
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-01.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Intelligent Writing Assistance
</h4>
<p class="font-medium">
Our AI writing tool analyzes your content, suggests
improvements,
</p>
</div>
</div>
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-02.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Grammar and Spell Check
</h4>
<p class="font-medium">
Say goodbye to embarrassing typos and grammar mistakes
</p>
</div>
</div>
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-03.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Plagiarism Detection
</h4>
<p class="font-medium">
Originality is key, and our AI writing tool helps you
maintain it
</p>
</div>
</div>
</div>
<div class="features-row-border w-full h-[1px]"></div>
<!--=== Features Row ===-->
<div class="flex flex-wrap justify-center">
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1 rotate-180"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-04.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Voice to Text Conversion
</h4>
<p class="font-medium">
Transform your spoken words into written text easily &
effortlessly
</p>
</div>
</div>
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1 rotate-180"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-05.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Style and Tone Adaptation
</h4>
<p class="font-medium">
Whether you need a professional, or positive tone it has
everyone
</p>
</div>
</div>
<!-- Features Item -->
<div class="w-full sm:w-1/2 lg:w-1/3">
<div class="group relative overflow-hidden text-center py-8 sm:py-10 xl:py-15 px-4 lg:px-8 xl:px-13">
<span
class="group-hover:opacity-100 opacity-0 features-bg absolute w-full h-full left-0 top-0 -z-1 rotate-180"></span>
<span
class="icon-border relative max-w-[80px] w-full h-20 rounded-full inline-flex items-center justify-center mb-8 mx-auto">
<img src="images/icon-06.svg" alt="icon" />
</span>
<h4 class="font-semibold text-lg text-white mb-4">
Content Generation
</h4>
<p class="font-medium">
Need inspiration or assistance with generating content?
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Features grid Section End ===== -->
<!-- ===== Video Section Start ===== -->
<section>
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0">
<div class="relative rounded-3xl z-999">
<a href="https://www.youtube.com/watch?v=xcJtL7QggTI" data-fslightbox
class="absolute z-10 left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 w-27.5 h-27.5 rounded-full flex items-center justify-center bg-gradient-to-b from-[#A073EE] to-[#6E25ED] shadow-video">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M25.1688 16.8077L7.26999 27.1727C5.73764 28.0601 3.75 27.0394 3.75 25.3651V4.63517C3.75 2.96091 5.73764 1.94018 7.26997 2.82754L25.1688 13.1925C26.6104 14.0274 26.6104 15.9729 25.1688 16.8077Z"
fill="white" />
</svg>
</a>
<span
class="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 z-1 block w-32 h-32 rounded-full backdrop-blur-[5px] bg-white/[0.04]"></span>
<img src="images/video.png" alt="video" />
</div>
</div>
</section>
<!-- ===== Video Section End ===== -->
<!-- ===== Team Section Start ===== -->
<section class="overflow-hidden py-17.5 lg:py-22.5 xl:py-27.5">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0">
<!-- section title -->
<div class="wow fadeInUp mb-17.5 text-center">
<span
class="hero-subtitle-gradient relative mb-4 font-medium text-sm inline-flex items-center gap-2 py-2 px-4.5 rounded-full">
<img src="images/icon-title.svg" alt="icon">
<span class="hero-subtitle-text"> Meet Out Team </span>
</span>
<h2 class="text-white mb-4.5 text-2xl font-extrabold sm:text-4xl xl:text-heading-2">
Our Dynamic Team
</h2>
<p class="max-w-[714px] mx-auto font-medium">
Our AI writing tool is designed to empower you with exceptional
writing capabilities, making the writing process more efficient,
accurate, and enjoyable.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-10 lg:gap-17.5">
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-01.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Andreo Tate
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-02.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Davis Curtis
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-03.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
James Donin
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-04.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Erin Bergson
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-05.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Erin Botosh
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-06.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Ryan Kenter
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-07.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Corey Korsgaard
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
<!-- team item -->
<div class="wow fadeInUp group text-center">
<div
class="team-img-gradient group-hover:before:gradient-3 max-w-50 mx-auto w-full h-50 rounded-full relative mb-7.5">
<img src="images/team-08.png" alt="team" />
</div>
<h4 class="text-white font-semibold text-heading-6 mb-2.5">
Martin Geidt
</h4>
<p class="font-medium mb-6">Product Designer</p>
<div class="flex items-center justify-center gap-5">
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.9163 20.1213C16.5485 19.6614 20.1663 15.7531 20.1663 10.9999C20.1663 5.93731 16.0622 1.83325 10.9997 1.83325C5.93706 1.83325 1.83301 5.93731 1.83301 10.9999C1.83301 15.4347 4.98223 19.1339 9.16634 19.9833V14.6666H6.41634V11.9166H9.16634V8.97946C9.16634 6.85153 10.9717 5.17051 13.0943 5.32211L15.583 5.49988V8.24988H13.7497C12.7371 8.24988 11.9163 9.07069 11.9163 10.0833V11.9166H15.583L14.6663 14.6666H11.9163V20.1213Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M6.97812 19.7311C15.0906 19.7311 19.4906 13.0279 19.4906 7.21855C19.4906 7.08105 19.4906 6.84043 19.4562 6.63418C20.3156 6.01543 21.0719 5.2248 21.6562 4.36543C20.8312 4.74355 20.0063 4.9498 19.1469 5.05293C20.075 4.50293 20.7625 3.64355 21.0719 2.6123C20.2125 3.09355 19.3188 3.47168 18.2531 3.67793C17.4281 2.81855 16.3281 2.26855 15.0562 2.26855C12.6156 2.26855 10.6219 4.2623 10.6219 6.70293C10.6219 7.04668 10.6562 7.39043 10.725 7.73418C7.18438 7.49355 3.95312 5.74043 1.75312 3.09355C1.375 3.78105 1.16875 4.50293 1.16875 5.29355C1.16875 6.84043 1.95937 8.14668 3.1625 8.9373C2.44062 8.90293 1.75313 8.69668 1.16875 8.3873C1.16875 8.42168 1.16875 8.42168 1.16875 8.42168C1.16875 10.5186 2.68125 12.3404 4.675 12.7529C4.29688 12.8561 3.88437 12.8904 3.575 12.8904C3.3 12.8904 2.99062 12.8561 2.75 12.7873C3.33437 14.5404 4.95 15.8123 6.875 15.8467C5.3625 17.0154 3.47187 17.7373 1.44375 17.7373C1.03125 17.8061 0.6875 17.7373 0.34375 17.7029C2.2 19.0092 4.50312 19.7311 6.97812 19.7311Z"
fill="" />
</svg>
</a>
<a href="#" class="hover:text-white ease-in duration-300">
<svg class="fill-current" width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_117_13418)">
<path
d="M21.6219 6.6C21.5875 5.5 21.3813 4.70937 21.1406 3.9875C20.9 3.26563 20.5219 2.68125 19.9375 2.09687C19.3531 1.5125 18.7688 1.16875 18.0813 0.89375C17.3938 0.61875 16.6375 0.446875 15.4688 0.4125C14.2656 0.34375 13.9219 0.34375 11 0.34375C8.07813 0.34375 7.76875 0.34375 6.6 0.378125C5.43125 0.4125 4.70938 0.61875 3.9875 0.859375C3.26563 1.1 2.68125 1.5125 2.09688 2.09687C1.5125 2.68125 1.13438 3.26563 0.89375 3.9875C0.61875 4.675 0.446875 5.43125 0.4125 6.6C0.378125 7.76875 0.34375 8.07812 0.34375 11C0.34375 13.9219 0.34375 14.2312 0.378125 15.4C0.4125 16.5688 0.61875 17.2906 0.859375 18.0125C1.1 18.7344 1.47813 19.3188 2.0625 19.9031C2.64688 20.4875 3.26563 20.8656 3.95313 21.1063C4.64063 21.3469 5.39688 21.5531 6.56563 21.5875C7.73438 21.6562 8.04375 21.6562 10.9656 21.6562C13.8875 21.6562 14.1969 21.6562 15.3656 21.6219C16.5344 21.5875 17.2563 21.3813 17.9781 21.1406C18.7 20.9 19.2844 20.5219 19.8688 19.9375C20.4531 19.3531 20.8313 18.7344 21.0719 18.0469C21.3125 17.3594 21.5188 16.6031 21.5531 15.4344C21.5875 14.3344 21.5875 13.9906 21.5875 11.0688C21.5875 8.14688 21.6563 7.76875 21.6219 6.6ZM19.6969 15.2969C19.6625 16.3281 19.4563 16.8781 19.3188 17.2906C19.1125 17.7719 18.8719 18.15 18.4938 18.4937C18.1156 18.8719 17.7719 19.0781 17.2906 19.3188C16.9125 19.4563 16.3625 19.6625 15.2969 19.6969C14.1969 19.6969 13.8531 19.6969 11.0344 19.6969C8.21563 19.6969 7.8375 19.6969 6.7375 19.6625C5.70625 19.6281 5.15625 19.4219 4.74375 19.2844C4.2625 19.0781 3.88438 18.8375 3.54063 18.4594C3.1625 18.0813 2.95625 17.7375 2.71563 17.2563C2.57813 16.8781 2.37188 16.3281 2.3375 15.2625C2.3375 14.1969 2.3375 13.8531 2.3375 11C2.3375 8.14687 2.3375 7.80312 2.37188 6.70312C2.40625 5.67188 2.6125 5.12187 2.75 4.70937C2.95625 4.22812 3.19688 3.85 3.54063 3.50625C3.91875 3.12812 4.2625 2.92188 4.74375 2.71563C5.12188 2.57812 5.67188 2.37188 6.7375 2.3375C7.8375 2.30313 8.18125 2.30312 11.0344 2.30312C13.8875 2.30312 14.2313 2.30313 15.3313 2.3375C16.3625 2.37188 16.9125 2.57812 17.325 2.71563C17.8063 2.92188 18.1844 3.1625 18.5281 3.50625C18.9063 3.88437 19.1125 4.22812 19.3531 4.70937C19.4906 5.0875 19.6969 5.6375 19.7313 6.70312C19.7656 7.80312 19.7656 8.14687 19.7656 11C19.7656 13.8531 19.7313 14.1969 19.6969 15.2969Z"
fill="" />
<path
d="M11.0008 5.53418C7.94141 5.53418 5.53516 8.00918 5.53516 10.9998C5.53516 14.0592 8.01016 16.4654 11.0008 16.4654C13.9914 16.4654 16.5008 14.0592 16.5008 10.9998C16.5008 7.94043 14.0602 5.53418 11.0008 5.53418ZM11.0008 14.5748C9.00703 14.5748 7.42578 12.9592 7.42578 10.9998C7.42578 9.04043 9.04141 7.4248 11.0008 7.4248C12.9945 7.4248 14.5758 9.00605 14.5758 10.9998C14.5758 12.9936 12.9945 14.5748 11.0008 14.5748Z"
fill="" />
<path
d="M16.7406 6.56572C17.4431 6.56572 18.0125 5.99627 18.0125 5.29385C18.0125 4.59139 17.4431 4.02197 16.7406 4.02197C16.0382 4.02197 15.4688 4.59139 15.4688 5.29385C15.4688 5.99627 16.0382 6.56572 16.7406 6.56572Z"
fill="" />
</g>
<defs>
<clipPath id="clip0_117_13418">
<rect width="22" height="22" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ===== Team Section End ===== -->
<!-- ====== User Section Start -->
<section x-data="{ 'showContent': false, 'scrollContent': false, }" class="relative z-20 overflow-hidden pb-20">
<div class="max-w-[1170px] mx-auto px-4 sm:px-8 xl:px-0">
<!-- section title -->
<div class="wow fadeInUp mb-15 text-center">
<span
class="hero-subtitle-gradient relative mb-4 font-medium text-sm inline-flex items-center gap-2 py-2 px-4.5 rounded-full">
<img src="images/icon-title.svg" alt="icon">
<span class="hero-subtitle-text"> Wall of love </span>
</span>
<h2 class="text-white mb-4.5 text-2xl font-extrabold sm:text-4xl xl:text-heading-2">
What Our User Says
</h2>
<p class="max-w-[714px] mx-auto font-medium">
Our AI writing tool is designed to empower you with exceptional
writing capabilities, making the writing process more efficient,
accurate, and enjoyable.
</p>
</div>
<div @scroll.window="scrollContent = (scrollY > $el.offsetTop - 500) ? true : false"
:class="{ 'max-h-[855px] overflow-hidden' :!showContent }"
class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-7.5">
<!-- user column -->
<div class="space-y-7.5">
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-01.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Machel Pildium
</h5>
<p class="font-medium text-sm">@machel</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-02.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Wilson Bator
</h5>
<p class="font-medium text-sm">@wilson</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<p class="mt-6">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-03.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Roger George
</h5>
<p class="font-medium text-sm">@roger</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-04.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Adison Dias
</h5>
<p class="font-medium text-sm">@adison</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<p class="mt-6">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-05.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Abram Lipshutz
</h5>
<p class="font-medium text-sm">@abram</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-06.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Jaylon Press
</h5>
<p class="font-medium text-sm">@jaylon</p>
</div>
</div>
<div class="user-divider relative my-6 w-full h-[1px]"></div>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's.
</p>
<!-- bg shapes -->
<div class="absolute -z-10 pointer-events-none inset-0 overflow-hidden">
<span class="absolute right-0 bottom-0 -z-1">
<img src="images/blur-18.svg" alt="blur" class="max-w-none">
</span>
</div>
</div>
<!-- user item -->
<div class="user-border-gradient relative overflow-hidden px-8 py-9 rounded-[19px]">
<div class="flex items-center gap-4.5">
<div class="max-w-[48px] w-full h-12 rounded-full">
<img src="images/user-07.png" alt="user" />
</div>
<div>
<h5 class="text-white text-sm font-medium">
Zain Franci
</h5>
<p class="font-medium text-sm">@zain</p>
</div>
</div>