-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
1362 lines (1314 loc) · 48.6 KB
/
service.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="zxx">
<head>
<meta charset="utf-8" />
<title>Grouwthus</title>
<!--Meta For No Index-->
<meta name="robots" content="noindex, Nofollow, Noimageindex">
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- Stylesheets -->
<link href="vendor/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href="vendor/icomoon/style.css" rel="stylesheet" />
<link href="vendor/aos/aos.css" rel="stylesheet" />
<link href="vendor/slick/slick-theme.css" rel="stylesheet" />
<link href="vendor/slick/slick.css" rel="stylesheet" />
<link href="css/theme.css" rel="stylesheet" />
<link href="vendor/phosphor-icons/css/phosphor.css" rel="stylesheet" />
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="icon" href="images/favicon.png" type="image/x-icon" />
</head>
<body>
<!--
#############
Navbar Area
#############
-->
<header>
<!--Navbar-->
<nav
class="navbar navbar-expand-lg position-fixed w-100 zindex-dropdown"
id="navigationBar"
>
<div class="container">
<!--Navbar Brand-->
<a
class="navbar-brand"
href="index.html"
>
<img
src="images/logo.svg"
alt="logo"
/>
</a>
<!--Navbar Toggler-->
<button
class="navbar-toggler p-3"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-default">
<svg
width="14"
height="14"
viewBox="0 0 18 18"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="white"
d="M17.4,6.2H0.6C0.3,6.2,0,5.9,0,5.5V4.1c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,5.9,17.7,6.2,17.4,6.2z M17.4,14.1H0.6c-0.3,0-0.6-0.3-0.6-0.7V12c0-0.4,0.3-0.7,0.6-0.7h16.9c0.3,0,0.6,0.3,0.6,0.7v1.4C18,13.7,17.7,14.1,17.4,14.1z"
></path>
</svg>
</span>
<span class="navbar-toggler-toggled">
<svg
width="14"
height="14"
viewBox="0 0 18 18"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill="white"
d="M11.5,9.5l5-5c0.2-0.2,0.2-0.6-0.1-0.9l-1-1c-0.3-0.3-0.7-0.3-0.9-0.1l-5,5l-5-5C4.3,2.3,3.9,2.4,3.6,2.6l-1,1 C2.4,3.9,2.3,4.3,2.5,4.5l5,5l-5,5c-0.2,0.2-0.2,0.6,0.1,0.9l1,1c0.3,0.3,0.7,0.3,0.9,0.1l5-5l5,5c0.2,0.2,0.6,0.2,0.9-0.1l1-1 c0.3-0.3,0.3-0.7,0.1-0.9L11.5,9.5z"
></path>
</svg>
</span>
</button>
<!--Navbar Menus Collapse-->
<div
class="collapse navbar-collapse"
id="navbarSupportedContent"
>
<ul class="navbar-nav ms-xl-5">
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
role="button"
data-bs-toggle="dropdown"
>
Services
</a>
<ul class="dropdown-menu">
<li class="dropdown-menu-wrapper">
<ul class="list-unstyled">
<li class="dropdown-menu-item">
<a href="expert-consultations.html"> Expert Consultations </a>
</li>
<li class="dropdown-menu-item">
<a href="data-strategy.html"> Data Strategy </a>
</li>
</li>
<li class="dropdown-menu-item">
<a href="data-architecture.html"> Data Architecture </a>
</li>
<li class="dropdown-menu-item">
<a href="data-infrastructure.html"> Data Infrastructure </a>
</li>
<li class="dropdown-menu-item">
<a href="data-warehouse.html"> Data Warehouse </a>
</li>
<li class="dropdown-menu-item">
<a href="ab-platform.html"> AB Platform </a>
</li>
<li class="dropdown-menu-item">
<a href="machine-learning.html"> Machine Learning </a>
</li>
<li class="dropdown-menu-item">
<a href="business-intelligence.html"> Business Intelligence (BI) </a>
</li>
</ul>
</li>
</ul>
</li>
<li class="nav-item">
<a
href="about.html"
class="nav-link "
>
About
</a>
</li>
<li class="nav-item">
<a
class="nav-link "
href="blog.html"
>
Blog
</a>
</li>
<li class="nav-item">
<a
class="nav-link "
href="career.html"
>
Jobs
</a>
</li>
<li class="nav-item">
<a
class="nav-link "
href="contact.html"
>
Contacts
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--
#############
End of Navbar Area
#############
-->
<!--###########
Hero Section for Service Page
########### -->
<section class="service-hero pt-9">
<div class="container">
<!-- start Service Section -->
<div class="row work-item-container align-items-center">
<div class="col-lg-6">
<!-- start Service item banner section-->
<div class="work-item">
<div class="work-item-shape-wrapper">
<div class="work-item-shape bg-primary-light">
<img
src="images/work/work-shap.svg"
alt="hero images"
/>
</div>
</div>
<div class="work-item-wraper">
<div class="work-item-wraper-banner">
<img
src="images/service/service-header-banner.png"
alt="work images"
/>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- start Service Item section-->
<div class="work-item">
<div class="work-content service-hero-content">
<h1 class="service-title">
Services <br />
We provide for your <br />
Bussiness
</h1>
<p>
Discover how our services can grow your business. From digital marketing to web development and design,
our team delivers tailored solutions to exceed your expectations.
</p>
<a
href="#service-item"
class="service-topTobottom"
>
<svg
width="45"
height="63"
viewBox="0 0 45 63"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22.4375 1.87695L22.4375 55.5361"
stroke="#173641"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9.81641 42.9922L22.4371 55.5359L35.0579 42.9922"
stroke="#173641"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ###########
Solution Section
########### -->
<section class="services py-7 ">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="section-header">
<h2>Our Business Solution for Client</h2>
<p>Customized approaches to fit your unique business needs and goals.</p>
</div>
</div>
</div>
<!--start services-item -->
<div class="row">
<div class="col-lg-4">
<div class="services-item">
<div class="services-item-icon">
<img
src="images/service/services-icon-1.svg"
alt="services-icon"
/>
</div>
<div class="services-item-content">
<h3>Strategy and Team</h3>
<p>
If you prefer top-down approach and believe that right people are the key to success we can create a strategy for you
or analyze the existing one. We can also setup Data team profile and assist in hiring for the key roles.
</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services-item">
<div class="services-item-icon">
<img
src="images/service/services-icon-2.svg"
alt="services-icon"
/>
</div>
<div class="services-item-content">
<h3>Data Components</h3>
<p>
If your company's data assets are under-utilized and the team is slowing down
it might be the case you need infrastructural changes. We prefer to start from architecture of the system and
build all necessary Data Solutions from data ingestion to visualization.
</p>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="services-item">
<div class="services-item-icon">
<img
src="images/service/services-icon-3.svg"
alt="services-icon"
/>
</div>
<div class="services-item-content">
<h3>Data Projects</h3>
<p>
For the companies starting their Data journey it's often more preferrable to start from a particular business problem than going through a whole-company Data Transformation. If you have a specific project that you need a help with we can implement it end-to-end.
</p>
</div>
</div>
<!--end services-item -->
</div>
</div>
</div>
</section>
<!-- ###########
Service Items
########### -->
<section
class="service-item work pb-7"
id="service-item"
>
<div class="container">
<!--start Service header section -->
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="section-header">
<h2>Business Service</h2>
<p>
Discover how our services can grow your business. From digital marketing to web development and design, our
team delivers tailored solutions to exceed your expectations.
</p>
</div>
</div>
</div>
<!--start Service item section-->
<!-- start 1st Service item -->
<div class="row work-item-container align-items-center">
<div class="col-lg-6">
<!-- start 1st Service item banner section-->
<div class="work-item">
<div class="work-item-shape-wrapper">
<div class="work-item-shape bg-light-dark">
<img
src="images/work/work-shap.svg"
alt="hero images"
/>
</div>
</div>
<div class="work-item-wraper">
<div class="work-item-wraper-banner">
<img
src="images/service/service-item1.png"
alt="work images"
/>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- start 1st Service item content section-->
<div class="work-item">
<div class="work-content">
<h2>Web Development</h2>
<p>
Establish a strong online presence with our web development services. Our team delivers high-quality
results, from custom website design to e-commerce solutions, using the latest technology.
</p>
<ul class="list-unstyled service-item-list">
<li>
<span>Custom Website Design</span>
</li>
<li>
<span>E-commerce Development</span>
</li>
<li>
<span>CMS Development</span>
</li>
<li>
<span>Web Application Development</span>
</li>
</ul>
<a
href="service-single.html"
class="btn btn-secondary"
>
<span class="position-relative"> Learn More <i class="ph-caret-right"></i> </span>
</a>
</div>
</div>
</div>
</div>
<!-- start 2nd Service item -->
<div class="row work-item-container align-items-center">
<div class="col-lg-6">
<!-- start 2st Service item banner section-->
<div class="work-item">
<div class="work-item-shape-wrapper">
<div class="work-item-shape bg-orange-light">
<img
src="images/work/work-shap.svg"
alt="hero images"
/>
</div>
</div>
<div class="work-item-wraper">
<div class="work-item-wraper-banner">
<img
src="images/service/service-item2.png"
alt="work images"
/>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- start 2st Service item content section-->
<div class="work-item">
<div class="work-content">
<h2>Search Engine Optimization</h2>
<p>
Boost your website's visibility and attract more organic traffic with our proven SEO strategies. Our
experts provide detailed analytics and regular reports to measure success and make ongoing improvements.
</p>
<ul class="list-unstyled service-item-list">
<li>
<span>Keyword Research and Optimization</span>
</li>
<li>
<span>Link Building</span>
</li>
<li>
<span>On-Page Optimization</span>
</li>
</ul>
<a
href="service-single.html"
class="btn btn-secondary"
>
<span class="position-relative"> Learn More <i class="ph-caret-right"></i> </span>
</a>
</div>
</div>
</div>
</div>
<!-- start 3st Service item -->
<div class="row work-item-container align-items-center">
<div class="col-lg-6">
<!-- start 3st Service item banner section-->
<div class="work-item">
<div class="work-item-shape-wrapper">
<div class="work-item-shape bg-primary-light">
<img
src="images/work/work-shap.svg"
alt="hero images"
/>
</div>
</div>
<div class="work-item-wraper">
<div class="work-item-wraper-banner">
<img
src="images/service/service-item3.png"
alt="work images"
/>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- start 3st Service item content section-->
<div class="work-item">
<div class="work-content">
<h2>Design Service</h2>
<p>
Capture your brand's personality and make a lasting impression with our professional design services. Our
team provides customized solutions that meet your unique business needs and enhance your visual identity.
</p>
<ul class="list-unstyled service-item-list">
<li>
<span>Brand Identity</span>
</li>
<li>
<span>Website Design</span>
</li>
<li>
<span>Mobile App Design</span>
</li>
<li>
<span>UI/UX Design</span>
</li>
</ul>
<a
href="service-single.html"
class="btn btn-secondary"
>
<span class="position-relative"> Learn More <i class="ph-caret-right"></i> </span>
</a>
</div>
</div>
</div>
</div>
<!--End work item section-->
</div>
</section>
<!-- ###########
Project Items Section
########### -->
<section class="project project-white pt-7 pb-9">
<div class="container">
<!--Section Header-->
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="section-header">
<h2>Feature Work & Case Study</h2>
<p>
Explore our portfolio of successful projects and case studies to see how we've helped businesses like yours
achieve their goals. Our work speaks for itself, and we're proud to showcase our expertise and achievements.
</p>
</div>
</div>
</div>
<!--Project Work-->
<div class="row">
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image1.png"
alt="project-thumbnail"
/>
<span>Web Design</span>
</div>
<div class="project-item-content">
<h3>Ichhiba Redesign Concept</h3>
</div>
</a>
</div>
</div>
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image2.png"
alt="project-thumbnail"
/>
<span>Redesign</span>
</div>
<div class="project-item-content">
<h3>Exclusive New Site Look</h3>
</div>
</a>
</div>
</div>
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image3.png"
alt="project-thumbnail"
/>
<span>Web App</span>
</div>
<div class="project-item-content">
<h3>StaticMania</h3>
</div>
</a>
</div>
</div>
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image4.png"
alt="project-thumbnail"
/>
<span>Animation</span>
</div>
<div class="project-item-content">
<h3>Exclusive Into Video 2023</h3>
</div>
</a>
</div>
</div>
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image1.png"
alt="project-thumbnail"
/>
<span>3D models</span>
</div>
<div class="project-item-content">
<h3>StaticMania Mobile Apps</h3>
</div>
</a>
</div>
</div>
<!--Project Item-->
<div class="col-md-4">
<div class="project-item-wrapper">
<a
href="project-details.html"
class="project-item"
>
<div class="project-item-thumb">
<img
src="images/project/feature-image2.png"
alt="project-thumbnail"
/>
<span>Themes</span>
</div>
<div class="project-item-content">
<h3>Exclusive Themes 2023</h3>
</div>
</a>
</div>
</div>
<div class="col-md-12 text-center mt-4">
<a
href="project.html"
class="btn btn-secondary"
>
<span class="position-relative"> See More <i class="ph-caret-right"></i> </span>
</a>
</div>
</div>
</div>
</section>
<!-- ###########
Clients Section
###########-->
<section class="client border-top">
<div class="container">
<!-- start section header -->
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="section-header">
<h2>World-Wide Data Expertise</h2>
<p>Our experts worked for companies of all sizes around the world</p>
</div>
</div>
</div>
<!-- end section header -->
<!-- start company logo -->
<div class="row">
<div class="col-md-12">
<div class="client-item-wrapper d-flex justify-content-between align-items-center text-center">
<div class="client-item">
<img
src="images/client/client-logo-1.svg"
alt="company logo"
/>
</div>
<div class="client-item">
<img
src="images/client/client-logo-2.svg"
alt="company logo"
/>
</div>
<div class="client-item">
<img
src="images/client/client-logo-3.svg"
alt="company logo"
/>
</div>
<div class="client-item">
<img
src="images/client/client-logo-4.svg"
alt="company logo"
/>
</div>
<div class="client-item">
<img
src="images/client/client-logo-5.svg"
alt="company logo"
/>
</div>
</div>
</div>
</div>
<!-- end company-logo -->
</div>
</section>
+
<!-- ###########
Testimonial Section
########### -->
<section class="testimonials">
<div class="container">
<!-- section title -->
<div class="row">
<div class="col-lg-12 ms-auto">
<h2>Testimonials</h2>
<!-- start off testimonials slider -->
<div class="slider-wrapper">
<div class="testimonials-slider position-relative">
<!-- start off testimonials slider item one-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-2.png"
alt="thumb"
/>
<img
src="images/testimonial/smiel-icon.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
</div>
<h5>
Suggests that the top planners spend most of their time engaged in analysis and are concerned with
industry.
</h5>
<div class="content">
<h6>Kausar Ahmed</h6>
<p>Founder of Static Mania</p>
</div>
</div>
</div>
<!-- start off testimonials slider item two-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-3.png"
alt="thumb"
/>
<img
src="images/testimonial/icon-love.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
</div>
<h5>
Suggests that the top planners spend most of their time engaged in analysis and are concerned with
industry.
</h5>
<div class="content">
<h6>Jak Houman</h6>
<p>UI Designer of Rono Pixel</p>
</div>
</div>
</div>
<!-- start off testimonials slider item three-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-1.png"
alt="thumb"
/>
<img
src="images/testimonial/icon-love.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
</div>
<h5>
Suggests that the top planners spend most of their time engaged in analysis and are concerned with
industry.
</h5>
<div class="content">
<h6>Sabo Masties</h6>
<p>Founder of Exclusive Addons</p>
</div>
</div>
</div>
<!-- start off testimonials slider item four-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-1.png"
alt="thumb"
/>
<img
src="images/testimonial/icon-love.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
</div>
<h5>
Suggests that the top planners spend most of their time engaged in analysis and are concerned with
industry.
</h5>
<div class="content">
<h6>Sabo Masties</h6>
<p>Founder of Exclusive Addons</p>
</div>
</div>
</div>
<!-- start off testimonials slider item three-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-1.png"
alt="thumb"
/>
<img
src="images/testimonial/icon-love.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="images/testimonial/star.svg"
alt="icon"
/>
<img
src="../images/testimonial/star.svg"
alt="icon"
/>
</div>
<h5>
Suggests that the top planners spend most of their time engaged in analysis and are concerned with
industry.
</h5>
<div class="content">
<h6>Sabo Masties</h6>
<p>Founder of Exclusive Addons</p>
</div>
</div>
</div>
<!-- start off testimonials slider item four-->
<div class="card item">
<div class="profile">
<img
src="images/testimonial/testimonial-thumb-1.png"
alt="thumb"
/>
<img
src="images/testimonial/icon-love.svg"
alt="icon"
/>
</div>
<div class="card-body">
<div class="icon">