-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2834 lines (2810 loc) · 228 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Shyam Bodke" />
<meta name="description" content="GrowthZen-We Help You Grow" />
<meta
name="keywords"
content="web design web development digital marketing atlas softweb web design web development and digital marketing company digital marketing web development digital marketing and web development digital marketing web design web development for digital marketing digital web developers girafe- digital marketing website design and web development company in chandigarh and mohali digital marketing and web designing digital marketing website design web development in digital marketing web designing or digital marketing web designing and digital marketing web designing digital marketing digital marketing and web development company website development and digital marketing web designing and web development growth of social media marketing growth of social media marketing in india ecommerce growth social media marketing social media marketing growth statistics business growth thru social media marketing social media marketing growth rate career growth in social media marketing social media marketing growth generation the growth of social media marketing social media marketing for business growth digital marketing social media marketing & growth hacking the growth of social media in marketing is due primarily to growth hacker marketing el futuro del social media y la publicidad social media marketing strategies for rapid growth social media marketing industry growth growth in social media marketing social media marketing job growth social media marketing sales growth social media marketing spending growth startup enterprises in kenya enterprises startup loans startup social enterprises successful startup enterprises uk startup enterprises small enterprise startup benefits of startup enterprises startup micro-enterprises startup small and medium enterprises lean startup social enterprises grants for startup social enterprises seo sem marketing seo sem meaning seo sem courses seo semrush seo sem digital marketing seo sem ppc seo sem smm meaning seo sem smm ppc seo sem difference seo sem are examples for seo sem and google analytics seo sem adwords seo/sem adalah seo/sem analyst seo sem analytics seo/sem and crm software seo sem analytics jobs seo a sem różnica między seo a sem rozdiel medzi seo a sem seo sem basics seo/sem best practices seo sem books seo vs sem seo sem differences between seo and sem benefits seo and sem for beginners best seo sem tools seo sem certification seo sem crm seo sem courses singapore seo sem course online seo sem content marketing seo/sem campaigns seo sem companies seo sem difference between seo sem diferencias seo sem digital marketing adalah seo sem digital media seo sem job description seo sem ppc definitions seo sem edm seo/sem experience seo/sem expert seo sem eğitimi seo en sem seo and sem examples seo vs sem example seo and sem executive seo e sem seo e sem differenza seo e sem cosa sono seo e sem significato seo e sem specialist seo e sem marketing seo e sem pdf seo e sem libro seo sem freelancer seo sem for dummies seo sem farkı seo and sem full form seo smo sem full form formation seo sem seo ve sem arasındaki fark seo sem google analytics seo sem google adwords sem seo tutorial google sem seo gmbh curso seo sem gratis curso seo sem google analytics seo y sem google seo sem html seo/sem jobs in hyderabad seo vs sem in hindi herramientas seo sem seo sem interview questions and answers seo sem integration seo i sem seo and sem in digital marketing seo and sem interview questions seo vs sem infographic seo and sem in marketing seo i sem co to jest seo i sem wikipedia seo i sem różnice seo sem job salary seo/sem marketing jobs ppc seo sem job description seo ja sem seo ja sem koulutus seo sem kpis seo sem keywords seo/sem knowledge seo sem kurs seo sem kurs online seo & sem ksiazka seo sem kursus seo and sem are key tech industry acronyms seo sem marketing meaning seo sem marketing courses seo sem marketing strategies seo sem marketing salary seo sem manager seo sem marketing digital seo sem nedir seo and sem seo ve sem nedir seo ve sem ne demek seo sem marketing nedir narzędzia seo sem seo o sem seo sem online courses seo/sem optimization seo sem online marketing seo sem organic traffic seo or sem seo or sem which is better sem seo online display and social marketing learn seo and sem online seo o sem que es mejor posicionamiento seo o sem estrategia seo o sem costo consulenza seo o sem diferencias de seo o sem seo o sem significado seo o de sem seo sem pdf seo/sem projects seo sem ppt seo sem proposal seo sem podcast seo sem polska seo sem que significa seo y sem que significa tecnico seo/sem que es seo y sem para que sirve seo sem rush seo sem resume seo sem responsibilities seo-sem.ro seo semrush report seo sem redes sociales seo sem conversion rates semrush seo course seo sem services seo sem smm services seo sem specialist salary seo sem specialist job description seo sem smo meaning seo sem strategy seo sem tools seo/sem training seo/sem tactics seo sem texter seo and sem together seo and sem techniques seo sem unterschied seo sem uzmanı maaşları udemy seo sem seo und sem seo und sem definition seo y sem was ist seo und sem usługi seo/sem seo sem valencia seo versus sem seo vs sem vs ppc seo vs sem vs smm seo vs sem difference seo vs sem 2019 seo v sem seo sem wiki seo sem wordpress seo vs sem which is better seo and sem working together seo sem smm web analytics seo sem smo wikipedia seo and sem why seo sem y estrategias de marketing online seo y sem marketing digital seo y sem marketing seo y sem ejemplos seo y sem pdf seo y sem marketing digital pdf sem in seo wikipedia seo y semántica seo sem zarobki specjalista seo sem zarobki zagadnienia seo sem zagadnień seo/sem seosem24 seo sem pozycjonowanie 24h 3. seo/sem marketing"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.min.css" />
<link
rel="shortcut icon"
href="assets/img/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" href="assets/img/favicon.ico" type="image/x-icon" />
<title>GrowthZen-We Help You Grow</title>
<script
src="https://kit.fontawesome.com/c2de84cea7.js"
crossorigin="anonymous"
></script>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.min.js"
integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s"
crossorigin="anonymous"
></script>
</head>
<body>
<header id="main">
<div class="container-fluid container-flex">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="assets/img/Logo.png" alt="logo" srcset="" />
</a>
<button
name="navigation menu"
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNavAltMarkup"
>
<div class="navbar-nav">
<a class="nav-link link-hover" href="#services"
><span>Services</span>
</a>
<a class="nav-link link-hover" href="#work"
><span>Work</span>
</a>
<a class="nav-link link-hover" href="#testimonials"
><span>Testimonials</span>
</a>
<a class="nav-link link-hover" href="#about"
><span>About</span>
</a>
<a class="nav-link link-hover" href="#faq"><span>FAQ</span> </a>
<a class="nav-link link-hover" href="#contact"
><span>Contact</span>
</a>
<div class="social">
<a
class="nav-link social-nav-link social-link-shadow"
href="https://facebook.com/"
><span class="fa-stack">
<i class="fas fa-circle fa-stack-2x"></i>
<i
class="fab fa-facebook-f fa-stack-1x fa-inverse icon-text"
></i> </span
></a>
<a
class="nav-link social-nav-link social-link-shadow"
href="https://twitter.com/"
><span class="fa-stack">
<i class="fas fa-circle fa-stack-2x"></i>
<i
class="fab fa-twitter fa-stack-1x fa-inverse icon-text"
></i> </span
></a>
<a
class="nav-link social-nav-link social-link-shadow"
href="https://linkedin.com/"
><span class="fa-stack">
<i class="fas fa-circle fa-stack-2x"></i>
<i
class="fab fa-linkedin-in fa-stack-1x fa-inverse icon-text"
></i> </span
></a>
</div>
</div>
</div>
</div>
</nav>
<div class="jumbotron jumbotron-fluid">
<div class="container text-center h-100">
<div class="row h-100 justify-content-center align-items-center">
<div class="col-12" data-aos="zoom-in" data-aos-duration="1000">
<h1 class="display-4 font-weight-bold">
We can help you to tranform
<br />
<span class="typed-text"></span
><span class="cursor"> </span>
</h1>
<p class="lead font-weight-bold">
We are a business growth agency that emphasizes a sales-driven
approach. Our team of growth hackers aligns your company goals
with sales and marketing goals to build a well-researched
digital growth strategy. In short, we help you grow your
business by building creative websites and promoting it to the
right audience.
</p>
<a href="#contact">
<button
type="button"
name="Let's talk"
class="btn btn-lg btn-md-shadow font-weight-bold"
>
Let's Talk
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<!-- Services -->
<div id="services" class="mb-4">
<div class="container h-100">
<div class="type">
<div class="d-flex align-items-center justify-content-center h-100">
<div class="d-flex flex-column">
<h3
class="text align-self-center p-2 page-heading h-3 font-weight-bold"
>
Services
</h3>
<h4
class="text-center align-self-center p-2 page-heading h-3 font-weight-bold"
>
We Understand Your Digital Growth Needs
</h4>
<div class="d-flex align-items-center justify-content-center">
<span class="col-5"><hr /></span>
<span class="col-2 text-center"
><i class="fas fa-angle-left"></i>
<i class="fas fa-angle-right"></i>
</span>
<span class="col-5"><hr /></span>
</div>
</div>
</div>
<div
class="row h-100 justify-content-center align-items-center mt-5 mb-5 text-center"
>
<div class="col-sm-4" data-aos="zoom-out" data-aos-duration="700">
<i class="fas fa-rocket fa-4x p-4"></i>
<h4 class="font-weight-bold">Startup</h4>
<p>
New ideas need nurturing, strategy, and the right branding to
be successful. At GrowthZen, we help your business build a web
presence and grow in the digital landscape.
</p>
</div>
<div class="col-sm-4" data-aos="zoom-out" data-aos-duration="700">
<i class="fas fa-city fa-4x p-4"></i>
<h4 class="font-weight-bold">Enterprises</h4>
<p>
Either you have a digital presence of your enterprise or
planning to build one; we know how to educate, engage, and
convert your target audience to grow your revenue.
</p>
</div>
<div class="col-sm-4" data-aos="zoom-out" data-aos-duration="700">
<i class="fas fa-building fa-4x p-4"></i>
<h4 class="font-weight-bold">Agencies</h4>
<p>
We have the right white-label solutions for your agency. Our
team works as an extended unit for your organization, be it
for web design, development, or growth marketing.
</p>
</div>
</div>
</div>
<div class="products">
<div class="d-flex align-items-center justify-content-center h-100">
<div class="d-flex flex-column">
<h4
class="text-center align-self-center p-2 page-heading h-3 font-weight-bold"
>
What do We do for Your Digital Growth?
</h4>
<div class="d-flex align-items-center justify-content-center">
<span class="col-5"><hr /></span>
<span class="col-2 text-center"
><i class="fas fa-angle-left"></i>
<i class="fas fa-angle-right"></i>
</span>
<span class="col-5"><hr /></span>
</div>
</div>
</div>
<div class="row h-100 justify-content-center align-items-center">
<div
class="col-10 col-sm-8 col-lg-5 product-card m-4 zoom-image-hover"
data-aos="zoom-in"
data-aos-duration="700"
>
<img src="assets/img/consultation.jpg" alt="consultation" />
<div class="col-12 m-2">
<div class="d-flex">
<h4>Consultation</h4>
<hr />
</div>
<p>
We know how to grow a business. At GrowthZen, we help you
strategize your business plan by analyzing strengths,
weaknesses, USPs, and a lot more. Our strategists help
nurture your business digitization needs and drive greater
revenue and brand value.
</p>
</div>
</div>
<div
class="col-10 col-sm-8 col-lg-5 product-card m-4 zoom-image-hover"
data-aos="zoom-in"
data-aos-duration="700"
>
<img src="assets/img/web-design.jpg" alt="Web Design" />
<div class="col-12 m-2">
<div class="d-flex">
<h4>Web Design</h4>
<hr />
</div>
<p>
We innovate with design guidelines and carves visuals,
animation, and experience on web pages optimized for
conversion. We research your product and services to
understand the audience, and then designs beautiful websites
for your end-users.
</p>
</div>
</div>
</div>
<div class="row h-100 justify-content-center align-items-center">
<div
class="col-10 col-sm-8 col-lg-5 product-card m-4 zoom-image-hover"
data-aos="zoom-in"
data-aos-duration="700"
>
<img
src="assets/img/web-development.jpg"
alt="Web Development"
/>
<div class="col-12 m-2">
<div class="d-flex">
<h4>Web Development</h4>
<hr />
</div>
<p>
Our team writes clean code. Either it is PHP, CMS based
development on WordPress and Drupal, or e-commerce
development on Magento, WooCommerce, and Shopify, we know
how to develop scalable websites with great functionality
and performance.
</p>
</div>
</div>
<div
class="col-10 col-sm-8 col-lg-5 product-card m-4 zoom-image-hover"
data-aos="zoom-in"
data-aos-duration="700"
>
<img
src="assets/img/digital-marketing.jpg"
alt="Digital Marketing"
/>
<div class="col-12 m-2">
<div class="d-flex">
<h4>Digital Marketing</h4>
<hr />
</div>
<p>
At GrowthZen, we build result-oriented digital marketing
campaigns. Our team analyzes your target audience, current
web presence, and goals to draft marketing strategies with
the right mix of brand positioning, SEO, SEM, SMO, SMM, and
much more to drive growth.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Work -->
<div id="work">
<div class="d-flex align-items-center justify-content-center h-100">
<div class="d-flex flex-column">
<h3
class="text align-self-center p-2 page-heading h-3 font-weight-bold"
>
Work
</h3>
</div>
</div>
<div
id="carouseExampleCaptions"
class="container-fluid carousel slide mt-4 mb-4 carousel-fade"
data-ride="carousel"
data-aos="fade-in"
data-aos-duration="700"
>
<ol class="carousel-indicators">
<li
data-target="#carouseExampleCaptions"
data-slide-to="0"
class="active"
></li>
<li data-target="#carouseExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouseExampleCaptions" data-slide-to="2"></li>
<li data-target="#carouseExampleCaptions" data-slide-to="3"></li>
<li data-target="#carouseExampleCaptions" data-slide-to="4"></li>
<li data-target="#carouseExampleCaptions" data-slide-to="5"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active" id="project-0" data-slide="0">
<img
src="assets/img/project-0.jpg"
class="d-block w-100"
alt="project-1"
/>
<div class="carousel-caption d-none d-md-block caption-0">
<h5>Project-1</h5>
<p>Homely Decor website</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
<div class="carousel-item" id="project-1" data-slide="1">
<img
src="assets/img/project-1.jpg"
class="d-block w-100"
alt="project-2"
/>
<div class="carousel-caption d-none d-md-block caption-1">
<h5>Project-2</h5>
<p>Saas platform website</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
<div class="carousel-item" id="project-2" data-slide="2">
<img
src="assets/img/project-2.jpg"
class="d-block w-100"
alt="project-3"
/>
<div class="carousel-caption d-none d-md-block caption-2">
<h5>Project-3</h5>
<p>Creative agency website</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
<div class="carousel-item" id="project-3" data-slide="3">
<img
src="assets/img/project-3.jpg"
class="d-block w-100"
alt="project-4"
/>
<div class="carousel-caption d-none d-md-block caption-3">
<h5>Project-4</h5>
<p>Covid-19 tracker website</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
<div class="carousel-item" id="project-4" data-slide="4">
<img
src="assets/img/project-4.jpg"
class="d-block w-100"
alt="project-5"
/>
<div class="carousel-caption d-none d-md-block caption-4">
<h5>Project-5</h5>
<p>Product landing page</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
<div class="carousel-item" id="project-5" data-slide="5">
<img
src="assets/img/project-5.jpg"
class="d-block w-100"
alt="project-6"
/>
<div class="carousel-caption d-none d-md-block caption-5">
<h5>Project-6</h5>
<p>Transportation App</p>
<button
name="explore"
class="btn btn-md-shadow btn-explore"
href="https://github.com/"
>
Explore
</button>
</div>
</div>
</div>
<a
name="previous"
class="carousel-control-prev"
href="#carouseExampleCaptions"
role="button"
data-slide="prev"
>
<span class="sr-only">Previous</span>
</a>
<a
name="next"
class="carousel-control-next"
href="#carouseExampleCaptions"
role="button"
data-slide="next"
>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Testimonials -->
<div id="testimonials">
<div class="container">
<div class="d-flex align-items-center justify-content-center h-100">
<div class="d-flex flex-column">
<h3
class="text align-self-center p-2 page-heading h-3 font-weight-bold"
>
Testimonials
</h3>
</div>
</div>
<div class="container testimonial-content mt-4 mb-4">
<div
class="row testimonial-quote group"
data-aos="zoom-in-down"
data-aos-duration="700"
>
<div
class="col-lg-2 d-flex align-items-center justify-content-center h-100 mt-2"
>
<div class="d-flex flex-column">
<img
alt="customer photo"
class="image-fluid"
src="assets/img/testemonial-profile-img1.jpg"
/>
</div>
</div>
<div class="col-lg-10 quote-container">
<blockquote>
<p>
I am happy to share my experience with Grovention; the
people are co-operative and listen to you well. I reached
them via a reference from one of my colleagues recommending
them for their excellent services. I honored them the
project, and to my surprise, they delivered the website,
including the content.”
</p>
</blockquote>
<cite
><span>Pranav Mehta</span><br />
Director<br />
WayFront
</cite>
</div>
</div>
<hr style="margin: 60px auto; opacity: 0.5" />
<div
class="row testimonial-quote group"
data-aos="zoom-in-down"
data-aos-duration="700"
>
<div
class="col-lg-2 d-flex align-items-center justify-content-center h-100 mt-2"
>
<div class="d-flex flex-column">
<img
alt="customer photo"
class="image-fluid"
src="assets/img/testemonial-profile-img2.jpg"
/>
</div>
</div>
<div class="col-lg-10 quote-container">
<blockquote>
<p>
I am happy to share my experience with Grovention; the
people are co-operative and listen to you well. I reached
them via a reference from one of my colleagues recommending
them for their excellent services. I honored them the
project, and to my surprise, they delivered the website,
including the content.”
</p>
</blockquote>
<cite
><span>Pranav Mehta</span><br />
Director<br />
WayFront
</cite>
</div>
</div>
</div>
</div>
</div>
<!-- About -->
<div id="about">
<div class="container">
<div class="d-flex align-items-center justify-content-center h-100">
<div class="d-flex flex-column">
<h3
class="text align-self-center p-2 page-heading h-3 font-weight-bold"
>
About
</h3>
</div>
</div>
<div class="conatiner text-center mt-4 mb-4">
<div class="row about-row">
<div
class="col mx-4 my-1 card-shadow about-card align-items-center justify-content-center"
data-aos="zoom-in"
data-aos-duration="700"
data-aos-delay="500"
>
<div class="at-column">
<div class="at-user">
<div class="at-user__avatar">
<svg
viewBox="0 0 117 118"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g opacity="0.5">
<path
opacity="0.5"
d="M58.5 118C90.8087 118 117 91.5848 117 59C117 26.4152 90.8087 0 58.5 0C26.1913 0 0 26.4152 0 59C0 91.5848 26.1913 118 58.5 118Z"
fill="url(#paint0_linear)"
/>
</g>
<path
d="M58.614 116.379C90.2413 116.379 115.88 90.5206 115.88 58.6229C115.88 26.7253 90.2413 0.867188 58.614 0.867188C26.9867 0.867188 1.34772 26.7253 1.34772 58.6229C1.34772 90.5206 26.9867 116.379 58.614 116.379Z"
fill="#F5F5F5"
/>
<path
d="M58.6675 116.607C69.8574 116.625 80.805 113.321 90.1452 107.106C88.0349 95.4752 80.0041 94.8125 80.0041 94.8125H35.7184C35.7184 94.8125 28.1403 95.4397 25.7734 106.139C35.4032 112.971 46.8941 116.627 58.6675 116.607Z"
fill="#6C63FF"
/>
<path
d="M58.0592 85.283C73.3248 85.283 85.7001 72.802 85.7001 57.4059C85.7001 42.0098 73.3248 29.5288 58.0592 29.5288C42.7936 29.5288 30.4184 42.0098 30.4184 57.4059C30.4184 72.802 42.7936 85.283 58.0592 85.283Z"
fill="#333333"
/>
<path
opacity="0.1"
d="M49.1384 80.6255H66.8493V94.9157C66.8493 97.2838 65.9168 99.5549 64.2568 101.23C62.5968 102.905 60.3452 103.846 57.9972 103.847C55.6486 103.847 53.3961 102.906 51.7354 101.231C50.0747 99.556 49.1417 97.2843 49.1417 94.9157V80.6255H49.1384Z"
fill="black"
/>
<path
d="M49.6998 79.9626H66.2943C66.4433 79.9626 66.5861 80.0223 66.6914 80.1285C66.7967 80.2347 66.8559 80.3788 66.8559 80.529V94.2528C66.8561 95.4261 66.6271 96.5879 66.182 97.6719C65.7368 98.7559 65.0843 99.7408 64.2616 100.57C63.4389 101.4 62.4622 102.058 61.3873 102.507C60.3124 102.955 59.1604 103.186 57.9971 103.186C55.6484 103.186 53.396 102.245 51.7353 100.57C50.0746 98.8949 49.1416 96.6232 49.1416 94.2545V80.529C49.1416 80.3794 49.2003 80.2358 49.3049 80.1297C49.4095 80.0236 49.5514 79.9635 49.6998 79.9626Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M49.1701 87.3706C54.8782 89.5214 61.1613 89.5388 66.881 87.4196V85.2219H49.1701V87.3706Z"
fill="black"
/>
<path
d="M58.0592 88.566C72.0796 88.566 83.4455 77.103 83.4455 62.9627C83.4455 48.8224 72.0796 37.3594 58.0592 37.3594C44.0387 37.3594 32.6729 48.8224 32.6729 62.9627C32.6729 77.103 44.0387 88.566 58.0592 88.566Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M39.9762 39.6737C39.9762 39.6737 50.6755 61.5763 80.8558 48.8567L73.8291 37.7448L61.3731 33.2361L39.9762 39.6737Z"
fill="black"
/>
<path
d="M39.9762 39.3526C39.9762 39.3526 50.6755 61.2553 80.8558 48.5323L73.8291 37.4203L61.3731 32.9116L39.9762 39.3526Z"
fill="#333333"
/>
<path
d="M39.8822 37.8683C40.6036 35.616 41.8504 33.5713 43.5179 31.9058C48.5114 26.9271 56.698 25.8773 60.8969 20.2004C61.9027 21.776 61.1249 24.1986 59.3883 24.8748C63.4113 24.8477 68.0728 24.4927 70.3475 21.1556C70.9096 22.4754 71.0888 23.9291 70.8642 25.3476C70.6396 26.7661 70.0204 28.0912 69.0786 29.1688C72.6439 29.3378 76.4539 31.7722 76.6785 35.3646C76.8328 37.7584 75.3376 40.0238 73.3948 41.3965C71.4521 42.7692 69.0853 43.3998 66.7637 43.9154C59.9851 45.425 35.4587 51.7426 39.8822 37.8683Z"
fill="#333333"
/>
<path
d="M32.6629 67.4055C33.9673 67.4055 35.0247 65.4058 35.0247 62.9391C35.0247 60.4723 33.9673 58.4727 32.6629 58.4727C31.3585 58.4727 30.3011 60.4723 30.3011 62.9391C30.3011 65.4058 31.3585 67.4055 32.6629 67.4055Z"
fill="#FDB797"
/>
<path
d="M83.4422 67.4055C84.7466 67.4055 85.804 65.4058 85.804 62.9391C85.804 60.4723 84.7466 58.4727 83.4422 58.4727C82.1378 58.4727 81.0804 60.4723 81.0804 62.9391C81.0804 65.4058 82.1378 67.4055 83.4422 67.4055Z"
fill="#FDB797"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="58.5"
y1="118"
x2="58.5"
y2="0"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#808080" stop-opacity="0.25" />
<stop
offset="0.54"
stop-color="#808080"
stop-opacity="0.12"
/>
<stop
offset="1"
stop-color="#808080"
stop-opacity="0.1"
/>
</linearGradient>
</defs>
</svg>
</div>
<div class="at-user__name">John Smith</div>
<div class="at-user__title">Founder, Creative Director</div>
<ul class="at-social">
<li class="at-social__item">
<a href="https://facebook.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14 9h3l-.375 3H14v9h-3.89v-9H8V9h2.11V6.984c0-1.312.327-2.304.984-2.976C11.75 3.336 12.844 3 14.375 3H17v3h-1.594c-.594 0-.976.094-1.148.281-.172.188-.258.5-.258.938V9z"
fill-rule="evenodd"
></path></svg
></a>
</li>
<li class="at-social__item">
<a href="https://twitter.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20.875 7.5v.563c0 3.28-1.18 6.257-3.54 8.93C14.978 19.663 11.845 21 7.938 21c-2.5 0-4.812-.687-6.937-2.063.5.063.86.094 1.078.094 2.094 0 3.969-.656 5.625-1.968a4.563 4.563 0 0 1-2.625-.915 4.294 4.294 0 0 1-1.594-2.226c.375.062.657.094.844.094.313 0 .719-.063 1.219-.188-1.031-.219-1.899-.742-2.602-1.57a4.32 4.32 0 0 1-1.054-2.883c.687.328 1.375.516 2.062.516C2.61 9.016 1.938 7.75 1.938 6.094c0-.782.203-1.531.609-2.25 2.406 2.969 5.515 4.547 9.328 4.734-.063-.219-.094-.562-.094-1.031 0-1.281.438-2.36 1.313-3.234C13.969 3.437 15.047 3 16.328 3s2.375.484 3.281 1.453c.938-.156 1.907-.531 2.907-1.125-.313 1.094-.985 1.938-2.016 2.531.969-.093 1.844-.328 2.625-.703-.563.875-1.312 1.656-2.25 2.344z"
fill-rule="evenodd"
></path></svg
></a>
</li>
<li class="at-social__item">
<a href="https://linkedin.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.547 3c.406 0 .75.133 1.031.398.281.266.422.602.422 1.008v15.047c0 .406-.14.766-.422 1.078a1.335 1.335 0 0 1-1.031.469h-15c-.406 0-.766-.156-1.078-.469C3.156 20.22 3 19.86 3 19.453V4.406c0-.406.148-.742.445-1.008C3.742 3.133 4.11 3 4.547 3h15zM8.578 18V9.984H6V18h2.578zM7.36 8.766c.407 0 .743-.133 1.008-.399a1.31 1.31 0 0 0 .399-.96c0-.407-.125-.743-.375-1.009C8.14 6.133 7.813 6 7.406 6c-.406 0-.742.133-1.008.398C6.133 6.664 6 7 6 7.406c0 .375.125.696.375.961.25.266.578.399.984.399zM18 18v-4.688c0-1.156-.273-2.03-.82-2.624-.547-.594-1.258-.891-2.133-.891-.938 0-1.719.437-2.344 1.312V9.984h-2.578V18h2.578v-4.547c0-.312.031-.531.094-.656.25-.625.687-.938 1.312-.938.875 0 1.313.578 1.313 1.735V18H18z"
fill-rule="evenodd"
></path></svg
></a>
</li>
</ul>
</div>
</div>
</div>
<div
class="col mx-4 my-1 card-shadow about-card"
data-aos="zoom-in"
data-aos-duration="700"
data-aos-delay="600"
>
<div class="at-column">
<div class="at-user">
<div class="at-user__avatar">
<svg
viewBox="0 0 117 118"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g opacity="0.5">
<path
opacity="0.5"
d="M58.5 118C90.8087 118 117 91.5848 117 59C117 26.4152 90.8087 0 58.5 0C26.1913 0 0 26.4152 0 59C0 91.5848 26.1913 118 58.5 118Z"
fill="url(#paint0_linear)"
/>
</g>
<path
d="M58.614 116.379C90.2413 116.379 115.88 90.5206 115.88 58.6229C115.88 26.7253 90.2413 0.867188 58.614 0.867188C26.9867 0.867188 1.34772 26.7253 1.34772 58.6229C1.34772 90.5206 26.9867 116.379 58.614 116.379Z"
fill="#F5F5F5"
/>
<path
d="M58.6675 116.607C69.8574 116.625 80.805 113.321 90.1452 107.106C88.0349 95.4752 80.0041 94.8125 80.0041 94.8125H35.7184C35.7184 94.8125 28.1403 95.4397 25.7734 106.139C35.4032 112.971 46.8941 116.627 58.6675 116.607Z"
fill="#6C63FF"
/>
<path
d="M58.0592 85.283C73.3248 85.283 85.7001 72.802 85.7001 57.4059C85.7001 42.0098 73.3248 29.5288 58.0592 29.5288C42.7936 29.5288 30.4184 42.0098 30.4184 57.4059C30.4184 72.802 42.7936 85.283 58.0592 85.283Z"
fill="#333333"
/>
<path
opacity="0.1"
d="M49.1384 80.6255H66.8493V94.9157C66.8493 97.2838 65.9168 99.5549 64.2568 101.23C62.5968 102.905 60.3452 103.846 57.9972 103.847C55.6486 103.847 53.3961 102.906 51.7354 101.231C50.0747 99.556 49.1417 97.2843 49.1417 94.9157V80.6255H49.1384Z"
fill="black"
/>
<path
d="M49.6998 79.9626H66.2943C66.4433 79.9626 66.5861 80.0223 66.6914 80.1285C66.7967 80.2347 66.8559 80.3788 66.8559 80.529V94.2528C66.8561 95.4261 66.6271 96.5879 66.182 97.6719C65.7368 98.7559 65.0843 99.7408 64.2616 100.57C63.4389 101.4 62.4622 102.058 61.3873 102.507C60.3124 102.955 59.1604 103.186 57.9971 103.186C55.6484 103.186 53.396 102.245 51.7353 100.57C50.0746 98.8949 49.1416 96.6232 49.1416 94.2545V80.529C49.1416 80.3794 49.2003 80.2358 49.3049 80.1297C49.4095 80.0236 49.5514 79.9635 49.6998 79.9626Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M49.1701 87.3706C54.8782 89.5214 61.1613 89.5388 66.881 87.4196V85.2219H49.1701V87.3706Z"
fill="black"
/>
<path
d="M58.0592 88.566C72.0796 88.566 83.4455 77.103 83.4455 62.9627C83.4455 48.8224 72.0796 37.3594 58.0592 37.3594C44.0387 37.3594 32.6729 48.8224 32.6729 62.9627C32.6729 77.103 44.0387 88.566 58.0592 88.566Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M39.9762 39.6737C39.9762 39.6737 50.6755 61.5763 80.8558 48.8567L73.8291 37.7448L61.3731 33.2361L39.9762 39.6737Z"
fill="black"
/>
<path
d="M39.9762 39.3526C39.9762 39.3526 50.6755 61.2553 80.8558 48.5323L73.8291 37.4203L61.3731 32.9116L39.9762 39.3526Z"
fill="#333333"
/>
<path
d="M39.8822 37.8683C40.6036 35.616 41.8504 33.5713 43.5179 31.9058C48.5114 26.9271 56.698 25.8773 60.8969 20.2004C61.9027 21.776 61.1249 24.1986 59.3883 24.8748C63.4113 24.8477 68.0728 24.4927 70.3475 21.1556C70.9096 22.4754 71.0888 23.9291 70.8642 25.3476C70.6396 26.7661 70.0204 28.0912 69.0786 29.1688C72.6439 29.3378 76.4539 31.7722 76.6785 35.3646C76.8328 37.7584 75.3376 40.0238 73.3948 41.3965C71.4521 42.7692 69.0853 43.3998 66.7637 43.9154C59.9851 45.425 35.4587 51.7426 39.8822 37.8683Z"
fill="#333333"
/>
<path
d="M32.6629 67.4055C33.9673 67.4055 35.0247 65.4058 35.0247 62.9391C35.0247 60.4723 33.9673 58.4727 32.6629 58.4727C31.3585 58.4727 30.3011 60.4723 30.3011 62.9391C30.3011 65.4058 31.3585 67.4055 32.6629 67.4055Z"
fill="#FDB797"
/>
<path
d="M83.4422 67.4055C84.7466 67.4055 85.804 65.4058 85.804 62.9391C85.804 60.4723 84.7466 58.4727 83.4422 58.4727C82.1378 58.4727 81.0804 60.4723 81.0804 62.9391C81.0804 65.4058 82.1378 67.4055 83.4422 67.4055Z"
fill="#FDB797"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="58.5"
y1="118"
x2="58.5"
y2="0"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#808080" stop-opacity="0.25" />
<stop
offset="0.54"
stop-color="#808080"
stop-opacity="0.12"
/>
<stop
offset="1"
stop-color="#808080"
stop-opacity="0.1"
/>
</linearGradient>
</defs>
</svg>
</div>
<div class="at-user__name">Marco Gomez</div>
<div class="at-user__title">Co-Founder</div>
<ul class="at-social">
<li class="at-social__item">
<a href="https://facebook.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14 9h3l-.375 3H14v9h-3.89v-9H8V9h2.11V6.984c0-1.312.327-2.304.984-2.976C11.75 3.336 12.844 3 14.375 3H17v3h-1.594c-.594 0-.976.094-1.148.281-.172.188-.258.5-.258.938V9z"
fill-rule="evenodd"
></path></svg
></a>
</li>
<li class="at-social__item">
<a href="https://twitter.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20.875 7.5v.563c0 3.28-1.18 6.257-3.54 8.93C14.978 19.663 11.845 21 7.938 21c-2.5 0-4.812-.687-6.937-2.063.5.063.86.094 1.078.094 2.094 0 3.969-.656 5.625-1.968a4.563 4.563 0 0 1-2.625-.915 4.294 4.294 0 0 1-1.594-2.226c.375.062.657.094.844.094.313 0 .719-.063 1.219-.188-1.031-.219-1.899-.742-2.602-1.57a4.32 4.32 0 0 1-1.054-2.883c.687.328 1.375.516 2.062.516C2.61 9.016 1.938 7.75 1.938 6.094c0-.782.203-1.531.609-2.25 2.406 2.969 5.515 4.547 9.328 4.734-.063-.219-.094-.562-.094-1.031 0-1.281.438-2.36 1.313-3.234C13.969 3.437 15.047 3 16.328 3s2.375.484 3.281 1.453c.938-.156 1.907-.531 2.907-1.125-.313 1.094-.985 1.938-2.016 2.531.969-.093 1.844-.328 2.625-.703-.563.875-1.312 1.656-2.25 2.344z"
fill-rule="evenodd"
></path></svg
></a>
</li>
<li class="at-social__item">
<a href="https://linkedin.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.547 3c.406 0 .75.133 1.031.398.281.266.422.602.422 1.008v15.047c0 .406-.14.766-.422 1.078a1.335 1.335 0 0 1-1.031.469h-15c-.406 0-.766-.156-1.078-.469C3.156 20.22 3 19.86 3 19.453V4.406c0-.406.148-.742.445-1.008C3.742 3.133 4.11 3 4.547 3h15zM8.578 18V9.984H6V18h2.578zM7.36 8.766c.407 0 .743-.133 1.008-.399a1.31 1.31 0 0 0 .399-.96c0-.407-.125-.743-.375-1.009C8.14 6.133 7.813 6 7.406 6c-.406 0-.742.133-1.008.398C6.133 6.664 6 7 6 7.406c0 .375.125.696.375.961.25.266.578.399.984.399zM18 18v-4.688c0-1.156-.273-2.03-.82-2.624-.547-.594-1.258-.891-2.133-.891-.938 0-1.719.437-2.344 1.312V9.984h-2.578V18h2.578v-4.547c0-.312.031-.531.094-.656.25-.625.687-.938 1.312-.938.875 0 1.313.578 1.313 1.735V18H18z"
fill-rule="evenodd"
></path></svg
></a>
</li>
</ul>
</div>
</div>
</div>
<div
class="col mx-4 my-1 card-shadow about-card"
data-aos="zoom-in"
data-aos-duration="700"
data-aos-delay="700"
>
<div class="at-column">
<div class="at-user">
<div class="at-user__avatar">
<svg
viewBox="0 0 117 118"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g opacity="0.5">
<path
opacity="0.5"
d="M58.5 118C90.8087 118 117 91.5848 117 59C117 26.4152 90.8087 0 58.5 0C26.1913 0 0 26.4152 0 59C0 91.5848 26.1913 118 58.5 118Z"
fill="url(#paint0_linear)"
/>
</g>
<path
d="M58.614 116.379C90.2413 116.379 115.88 90.5206 115.88 58.6229C115.88 26.7253 90.2413 0.867188 58.614 0.867188C26.9867 0.867188 1.34772 26.7253 1.34772 58.6229C1.34772 90.5206 26.9867 116.379 58.614 116.379Z"
fill="#F5F5F5"
/>
<path
d="M58.6675 116.607C69.8574 116.625 80.805 113.321 90.1452 107.106C88.0349 95.4752 80.0041 94.8125 80.0041 94.8125H35.7184C35.7184 94.8125 28.1403 95.4397 25.7734 106.139C35.4032 112.971 46.8941 116.627 58.6675 116.607Z"
fill="#6C63FF"
/>
<path
d="M58.0592 85.283C73.3248 85.283 85.7001 72.802 85.7001 57.4059C85.7001 42.0098 73.3248 29.5288 58.0592 29.5288C42.7936 29.5288 30.4184 42.0098 30.4184 57.4059C30.4184 72.802 42.7936 85.283 58.0592 85.283Z"
fill="#333333"
/>
<path
opacity="0.1"
d="M49.1384 80.6255H66.8493V94.9157C66.8493 97.2838 65.9168 99.5549 64.2568 101.23C62.5968 102.905 60.3452 103.846 57.9972 103.847C55.6486 103.847 53.3961 102.906 51.7354 101.231C50.0747 99.556 49.1417 97.2843 49.1417 94.9157V80.6255H49.1384Z"
fill="black"
/>
<path
d="M49.6998 79.9626H66.2943C66.4433 79.9626 66.5861 80.0223 66.6914 80.1285C66.7967 80.2347 66.8559 80.3788 66.8559 80.529V94.2528C66.8561 95.4261 66.6271 96.5879 66.182 97.6719C65.7368 98.7559 65.0843 99.7408 64.2616 100.57C63.4389 101.4 62.4622 102.058 61.3873 102.507C60.3124 102.955 59.1604 103.186 57.9971 103.186C55.6484 103.186 53.396 102.245 51.7353 100.57C50.0746 98.8949 49.1416 96.6232 49.1416 94.2545V80.529C49.1416 80.3794 49.2003 80.2358 49.3049 80.1297C49.4095 80.0236 49.5514 79.9635 49.6998 79.9626Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M49.1701 87.3706C54.8782 89.5214 61.1613 89.5388 66.881 87.4196V85.2219H49.1701V87.3706Z"
fill="black"
/>
<path
d="M58.0592 88.566C72.0796 88.566 83.4455 77.103 83.4455 62.9627C83.4455 48.8224 72.0796 37.3594 58.0592 37.3594C44.0387 37.3594 32.6729 48.8224 32.6729 62.9627C32.6729 77.103 44.0387 88.566 58.0592 88.566Z"
fill="#FDB797"
/>
<path
opacity="0.1"
d="M39.9762 39.6737C39.9762 39.6737 50.6755 61.5763 80.8558 48.8567L73.8291 37.7448L61.3731 33.2361L39.9762 39.6737Z"
fill="black"
/>
<path
d="M39.9762 39.3526C39.9762 39.3526 50.6755 61.2553 80.8558 48.5323L73.8291 37.4203L61.3731 32.9116L39.9762 39.3526Z"
fill="#333333"
/>
<path
d="M39.8822 37.8683C40.6036 35.616 41.8504 33.5713 43.5179 31.9058C48.5114 26.9271 56.698 25.8773 60.8969 20.2004C61.9027 21.776 61.1249 24.1986 59.3883 24.8748C63.4113 24.8477 68.0728 24.4927 70.3475 21.1556C70.9096 22.4754 71.0888 23.9291 70.8642 25.3476C70.6396 26.7661 70.0204 28.0912 69.0786 29.1688C72.6439 29.3378 76.4539 31.7722 76.6785 35.3646C76.8328 37.7584 75.3376 40.0238 73.3948 41.3965C71.4521 42.7692 69.0853 43.3998 66.7637 43.9154C59.9851 45.425 35.4587 51.7426 39.8822 37.8683Z"
fill="#333333"
/>
<path
d="M32.6629 67.4055C33.9673 67.4055 35.0247 65.4058 35.0247 62.9391C35.0247 60.4723 33.9673 58.4727 32.6629 58.4727C31.3585 58.4727 30.3011 60.4723 30.3011 62.9391C30.3011 65.4058 31.3585 67.4055 32.6629 67.4055Z"
fill="#FDB797"
/>
<path
d="M83.4422 67.4055C84.7466 67.4055 85.804 65.4058 85.804 62.9391C85.804 60.4723 84.7466 58.4727 83.4422 58.4727C82.1378 58.4727 81.0804 60.4723 81.0804 62.9391C81.0804 65.4058 82.1378 67.4055 83.4422 67.4055Z"
fill="#FDB797"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="58.5"
y1="118"
x2="58.5"
y2="0"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#808080" stop-opacity="0.25" />
<stop
offset="0.54"
stop-color="#808080"
stop-opacity="0.12"
/>
<stop
offset="1"
stop-color="#808080"
stop-opacity="0.1"
/>
</linearGradient>
</defs>
</svg>
</div>
<div class="at-user__name">Hilda Rodgers</div>
<div class="at-user__title">Head of Marketing</div>
<ul class="at-social">
<li class="at-social__item">
<a href="https://facebook.com/">
<svg
viewBox="0 0 24 24"
width="18"
height="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M14 9h3l-.375 3H14v9h-3.89v-9H8V9h2.11V6.984c0-1.312.327-2.304.984-2.976C11.75 3.336 12.844 3 14.375 3H17v3h-1.594c-.594 0-.976.094-1.148.281-.172.188-.258.5-.258.938V9z"
fill-rule="evenodd"