-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-details.html
854 lines (811 loc) · 32.6 KB
/
project-details.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
<!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 Projects
###########
-->
<section class="page-hero">
<div class="container">
<div class="row">
<div class="@@collClass">
<div class="page-heading">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li
class="breadcrumb-item"
aria-current="page"
>
<a href="index.html"> Home </a>
</li>
<li
class="breadcrumb-item active "
aria-current="page"
>
Case Study
</li>
</ol>
</nav>
<div class="page-heading-content">
<h1>Usable Templates <br>and Blocks for JAMstack</h1>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ###########
Project Details Section
########### -->
<section class="project-desc py-8 py-lg-8">
<div class="container">
<!--Section Header-->
<div class="row">
<div class="col-md-12">
<div class="project-feature-photo">
<img
src="images/project/feature-image.png"
alt="Feature Image"
class="w-100"
/>
</div>
</div>
</div>
<div class="section-header text-start">
<div class="row justify-content-center">
<div class="col-md-5">
<h2>Brand Overview</h2>
</div>
<div class="col-md-5">
<p>
If so, you know how amazing and attractive they look. Yes, it is a smart way to grow the reader’s attention,
and the moving text inspires the users to concentrate on that specific part, especially. Don’t you apply
this amazing thing on your website yet? Don’t worry; we are offering our helping hand, just hold.
</p>
</div>
</div>
</div>
<div class="section-header text-start">
<div class="row justify-content-center">
<div class="col-md-5">
<h2>Services</h2>
</div>
<div class="col-md-5">
<ul class="list-unstyled service-item-list">
<li>
<span>Research & Discovery</span>
</li>
<li>
<span>Prototyping & Interactions</span>
</li>
<li>
<span>Competitive Analysis</span>
</li>
<li>
<span>Motion Graphics</span>
</li>
<li>
<span>Front-End Development</span>
</li>
</ul>
</div>
</div>
</div>
<div class="row gy-4 mb-5">
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub1.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub1.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="section-header text-start">
<h2 class="mb-4">Visual identity</h2>
<p class="mb-5">
A lot of font generators are there. Definitely, they also offer their own features. But we recommend
exclusive Addons animated text generator widgets. Don’t you want to know why? Well, numerous reasons are
there for choosing this widget. However, the followings are the primary reasons.
</p>
<p>You may have seen the animated text on many other websites, haven’t you?</p>
<p>
If so, you know how amazing and attractive they look. Yes, it is a smart way to grow the reader’s attention,
and the moving text inspires the users to concentrate on that specific part, especially.
</p>
<p>
Don’t you apply this amazing thing on your website yet? Don’t worry; we are offering our helping hand, just
hold. If you use the animated text widget of exclusive addons for elementor, it’s a matter of a while to
animate your desired text anytime. The widget lets you add free animated text in different styles as you
like. In a word, it gives you the option to configure text in your own preference. Can’t you believe it?
Let’s see.
</p>
</div>
</div>
</div>
<div class="row gy-4 mb-5">
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub3.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub4.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub5.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
<div class="col-md-6">
<div class="project-subfeature-photo">
<img
src="images/project/feature-image-sub6.png"
alt="Sub Feature Image"
class="w-100"
/>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="section-header text-start">
<h2 class="mb-4">The result</h2>
<p class="mb-5">
Within 30 days after the launch, A lot of font generators are there. Definitely, they also offer their own
features. But we recommend exclusive Addons animated text generator widgets. Don’t you want to know why?
Well, numerous reasons are there for choosing this widget. However, the followings are the primary reasons.
</p>
<p>You may have seen the animated text on many other websites, haven’t you?</p>
<p>
If so, you know how amazing and attractive they look. Yes, it is a smart way to grow the reader’s attention,
and the moving text inspires the users to concentrate on that specific part, especially.
</p>
<p>
If so, you know how amazing and attractive they look. Yes, it is a smart way to grow the reader’s attention,
and the moving text inspires the users to concentrate on that specific part, especially.
</p>
<p>
Don’t you apply this amazing thing on your website yet? Don’t worry; we are offering our helping hand, just
hold/
</p>
</div>
</div>
</div>
<div class="row mb-5">
<div class="container">
<div class="col-lg-10 mx-auto">
<blockquote>
<div class="comment">
“Trust their process. They will provide a lot of different options, but generally, they’ve put a lot of
thinking behind them.
<br />
They’re very experienced and know what they’re doing as designers. If you listen to them, they will help
elevate your brand and achieve your goals.” 😍
</div>
<div class="comment-author d-flex align-items-center mt-4">
<div class="comment-author-thumb rounded-circle flex-shrink-0 me-3">
<img
src="images/project/profile-picture.png"
alt="Profile Pictures"
/>
</div>
<div class="comment-author-desc flex-grow-1">
<h5>Kristin Bale</h5>
<p>Co-founder and CDO</p>
</div>
</div>
</blockquote>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="section-header text-start">
<h2 class="mb-4">Those who have worked <br />in this project</h2>
<p class="mb-5">
Within 30 days after the launch, A lot of font generators are there. Definitely, they also offer their own
features. But we recommend exclusive Addons animated text generator widgets. Don’t you want to know why?
Well, numerous reasons are there for choosing this widget. However, the followings are the primary reasons.
</p>
</div>
</div>
<div class="col-md-5">
<h4 class="mb-4">Project Management</h4>
<ul class="list-unstyled service-item-list">
<li>
<span>Annette Black</span>
</li>
<li>
<span>Devon Lane</span>
</li>
<li>
<span>Floyd Miles</span>
</li>
</ul>
</div>
<div class="col-md-5">
<h4 class="mb-4">Design & Development</h4>
<ul class="list-unstyled service-item-list">
<li>
<span>Courtney Harry</span>
</li>
<li>
<span>Jerome Bell</span>
</li>
<li>
<span>Davod lane</span>
</li>
<li>
<span>Kristin Watson</span>
</li>
<li>
<span>Michel Mason</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ###########
Project Releted Items Section
########### -->
<section class="project py-7">
<div class="container">
<!--Section Header-->
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="section-header text-start">
<h2>What Next?</h2>
</div>
</div>
</div>
<!--Project Work-->
<div class="row justify-content-center">
<!--Project Item-->
<div class="col-md-5">
<div class="project-item-wrapper">
<div class="project-item">
<div class="project-item-thumb">
<img
src="images/project/feature-image1.png"
alt="feature-image"
/>
<span>UI UX</span>
</div>
<div class="project-item-content">
<h3>Ichhiba Redesign Concept</h3>
</div>
</div>
</div>
</div>
<!--Project Item-->
<div class="col-md-5">
<div class="project-item-wrapper">
<div class="project-item">
<div class="project-item-thumb">
<img
src="images/project/feature-image2.png"
alt="feature-image"
/>
<span>Web Design</span>
</div>
<div class="project-item-content">
<h3>Exclusive New Site Look</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #############
CTA Section with Input Buttons Only
############# -->
<section class="cta position-relative">
<div class="shape">
<div class="shape-left position-absolute">
<svg
width="338"
height="568"
viewBox="0 0 338 568"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M276.282 706.843L243.282 685.31C244.803 682.37 247.78 677.909 251.634 672.135C269.026 646.074 304.282 593.245 304.282 532.574C302.889 512.329 291.153 488.154 266.258 461.594C242.233 435.963 203.143 412.326 162.007 390.486C148.361 383.242 134.309 376.114 120.675 369.199L120.673 369.198C94.6533 356 70.1586 343.576 52.9269 332.589C23.7119 313.961 8.74022 288.122 14.9342 262.134C21.0884 236.314 46.9041 215.55 85.8405 204.463C121.449 194.324 174.718 179.052 215.983 154.413C256.795 130.044 282.417 98.8554 271.489 55.8869C271.025 54.0641 269.868 47.0352 268.313 37.593L268.313 37.5926C264.088 11.928 256.928 -31.5652 252.782 -36.8045L292.827 -44.316C292.728 -33.6804 295.977 -20.2851 299.682 -5.0034C311.64 44.3083 328.36 113.262 252.782 172.519C207.071 199.813 132.607 221.419 97.6299 231.377L96.9241 231.578C65.3487 240.569 51.607 255.113 48.6013 267.724C45.6356 280.167 51.9017 295.881 73.7659 309.822C89.6214 319.932 111.302 330.916 136.044 343.45C150.028 350.535 164.99 358.115 180.431 366.312C221.741 388.244 265.326 414.103 293.294 443.941C320.391 472.85 335.993 499.706 337.946 528.094C331.067 616.546 293.387 678.647 278.066 703.896L278.06 703.906C277.428 704.948 276.834 705.927 276.282 706.843ZM-363.199 270.731L-327.899 279.129C-327.142 284.555 -326.085 289.618 -324.719 294.362L-308.763 244.906C-310.076 253.206 -310.82 261.861 -311.113 270.567C-311.791 290.669 -310.05 310.369 -307.8 325.515C-294.178 340.806 -272.38 353.54 -237.662 365.226C-201.501 377.397 -153.488 381.555 -104.779 383.302C-88.6255 383.882 -72.1902 384.19 -56.2442 384.489L-56.2416 384.489L-56.232 384.49L-56.2291 384.49C-25.7897 385.061 2.86635 385.598 24.3717 387.923C60.8321 391.863 89.2776 407.993 99.482 433.084C109.621 458.013 99.7027 486.768 72.6246 512.618C47.8611 536.258 10.8775 571.714 -10.0982 610.272C-30.8443 648.408 -34.3491 686.111 0.856598 718.762C6.4096 723.912 13.8863 728.415 23.0915 732.255L-43.3476 716.45C-69.92 677.345 -61.265 635.028 -41.3542 598.428C-18.1184 555.715 21.9659 517.45 46.291 494.229L46.7818 493.761C68.7408 472.798 71.9285 454.468 66.9768 442.292C62.0908 430.279 47.2499 419.284 19.9634 416.335C0.175561 414.197 -25.1809 413.732 -54.1165 413.202L-54.1173 413.202L-54.1275 413.202C-70.4794 412.902 -87.9741 412.581 -106.253 411.926C-155.167 410.171 -208.405 405.966 -250.501 391.797C-291.286 378.069 -320.886 361.322 -339.584 337.552C-354.469 318.629 -361.426 296.548 -363.199 270.731ZM77.9562 745.307C90.0873 746.795 102.748 747.708 115.49 748.163C147.219 749.296 178.313 747.552 201.106 745.28L193.587 767.298C192.624 770.116 189.107 771.749 185.731 770.946L77.9562 745.307ZM143.308 -37.7779L151.117 -61.9801C125.833 -60.461 104.274 -55.4466 85.9045 -45.0568C62.8301 -32.0059 46.7696 -11.5957 33.8022 16.4155C20.4181 45.3267 16.9327 81.726 15.7985 115.144C15.3745 127.635 15.2697 139.586 15.1717 150.757C14.9982 170.519 14.8462 187.838 12.9868 201.374C10.4227 220.039 -0.175838 230.304 -11.8928 233.784C-23.7673 237.31 -41.7718 235.353 -62.5815 220.611L-63.0466 220.281C-86.0978 203.951 -124.083 177.04 -166.226 161.687C-202.339 148.53 -243.918 143.127 -281.93 161.738L-296.626 207.29C-292.973 200.959 -288.648 195.8 -283.667 191.947C-252.085 167.519 -215.089 169.461 -177.461 183.169C-139.417 197.029 -104.223 221.856 -80.7553 238.481C-55.0943 256.66 -26.791 263.088 -2.47775 255.867C21.9931 248.6 37.4622 228.985 40.8883 204.044C42.9092 189.333 43.0933 169.761 43.2888 148.971L43.2888 148.969L43.2888 148.962L43.2889 148.957C43.3913 138.067 43.497 126.843 43.8715 115.808C45.001 82.5303 48.502 49.6984 59.9991 24.8634C71.9128 -0.87171 85.204 -16.3456 101.66 -25.6529C112.738 -31.9186 126.148 -35.8983 143.308 -37.7779Z"
fill="white"
fill-opacity="0.2"
/>
</svg>
</div>
<div class="shape-right position-absolute">
<svg
width="531"
height="568"
viewBox="0 0 531 568"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M148.179 916.409L146.113 919.134C147.562 919.546 149.005 919.947 150.443 920.337L154.69 927.705C156.96 931.643 162.287 933.591 166.588 932.055L180.925 926.938C201.879 930.216 221.659 930.457 240.701 927.041C277.452 920.446 308.298 900.795 338.565 869.593C369.804 837.388 391.361 790.61 408.406 746.699C414.775 730.29 420.47 714.45 425.792 699.645L425.794 699.641L425.796 699.635L425.796 699.634C435.215 673.434 443.468 650.475 452.234 633.342C464.321 609.716 483.187 601.009 500.386 601.846C517.816 602.694 540.849 613.693 561.668 643.001L562.133 643.656C585.194 676.123 623.196 729.622 672.1 769.693C714.006 804.029 766.787 830.605 825.987 823.582L866.708 769.862C858.906 776.577 850.757 781.42 842.341 784.221C788.987 801.977 740.692 782.142 697.028 746.365C652.881 710.192 617.622 660.764 594.144 627.713C568.471 591.572 533.821 569.825 498.133 568.089C462.213 566.341 432.523 585.211 416.371 616.78C406.845 635.4 397.501 661.341 387.576 688.897L387.575 688.899L387.574 688.9C382.374 703.338 377.013 718.22 371.383 732.724C354.41 776.451 334.491 818.478 307.656 846.142C279.849 874.808 254.98 889.187 228.77 893.89C211.126 897.056 191.443 896.095 167.749 890.591L166.932 891.669C149.936 876.413 131.849 858.99 114.749 840.486C103.091 827.871 92.063 814.935 82.23 802.007L148.179 916.409ZM915.39 692.471C910.953 703.911 905.94 715.074 900.335 725.499L944.547 667.174C944.157 674.119 943.209 681.346 941.693 688.914L984.73 716.543C994.376 681.385 995.39 648.778 984.392 616.672C970.578 576.343 939.002 540.269 891.148 502.994C841.757 464.521 772.917 434.101 708.686 408.957C684.689 399.563 661.578 390.98 639.977 382.957L639.969 382.954L639.959 382.95L639.949 382.947L639.948 382.946C601.716 368.748 568.213 356.305 542.893 344.233C507.979 327.586 493.355 306.045 492.443 287.79C491.518 269.291 504.279 246.402 543.226 228.766L544.096 228.371C587.239 208.836 658.333 176.645 709.089 130.681C752.583 91.2951 783.765 39.0593 766.609 -25.3346L685.607 -77.3363C696.063 -67.9371 703.911 -58.4618 708.902 -49.0235C740.538 10.814 718.35 59.3162 673.032 100.355C627.212 141.848 561.548 171.749 517.627 191.638C469.601 213.385 443.043 246.999 444.936 284.878C446.841 323.002 477.169 357.717 523.822 379.96C551.339 393.08 589.196 407.158 629.409 422.113L629.413 422.115L629.428 422.12L629.431 422.121L629.434 422.122L629.436 422.123C650.5 429.957 672.21 438.03 693.419 446.333C757.38 471.371 819.295 499.291 861.723 532.34C902.458 564.07 925.525 591.17 936.53 617.856C932.48 639.046 925.637 666.055 915.39 692.471ZM228.911 -34.9326L252.645 6.23824C233.954 23.8808 222.815 41.2317 217.726 59.7932C210.166 87.3648 215.046 120.929 235.804 167.858C255.836 213.146 296.828 262.808 341.379 311.034C356.154 327.029 371.525 343.059 386.438 358.61L386.445 358.617L386.448 358.62C414.912 388.304 441.71 416.248 459.516 438.895C489.706 477.291 497.603 518.634 477.284 550.304C457.096 581.77 413.113 597.343 356.181 593.928C304.116 590.805 226.179 586.272 159.85 599.793C94.2472 613.166 45.6757 642.692 40.2321 704.928C39.3735 714.745 41.1327 725.842 45.3427 738.017L0.673528 660.528C22.1246 600.94 81.1613 572.328 144.123 559.493C217.598 544.515 301.874 549.571 353.016 552.639L354.048 552.701C400.217 555.47 425.252 542.538 435.112 527.17C444.841 512.006 443.814 488.187 421.22 459.452C404.836 438.614 381.111 413.896 354.037 385.69L354.035 385.689L354.029 385.682C338.729 369.742 322.359 352.687 305.64 334.589C260.902 286.159 214.964 231.445 191.644 178.725C169.05 127.645 160.789 84.657 171.39 45.9955C179.829 15.2173 199.647 -10.7138 228.911 -34.9326ZM618.715 -120.279C603.275 -127.914 586.864 -135.033 570.13 -141.58C528.465 -157.883 486.304 -170.064 454.939 -177.673L475.174 -203.446C477.764 -206.744 483.2 -207.276 487.317 -204.633L618.715 -120.279Z"
fill="white"
fill-opacity="0.2"
/>
</svg>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="w-100 py-8 py-lg-10 text-center position-relative">
<div class="position-relative">
<h2 class="mb-5 text-white">
Sounds Good? <br />
Let’s Improve Your Data Together.
</h2>
<form action="#">
<button
type="submit"
class="btn btn-outline mb-3"
>
Let’s Talk
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
#############
Navigation Footer Section
#############
-->
<footer
class="footer text-center text-md-start py-7"
id="footer"
>
<div class="container">
<!--Navigation Top Footer area-->
<div class="row">
<!-- Navigation Footer Logo -->
<div class="col-12 col-lg-3 me-auto mt-4">
<div class="footer-description text-center text-lg-start">
<a
href="index.html"
class="mb-5"
>
<img
src="images/footer-logo.svg"
alt="logo"
/>
</a>
<p>Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing .</p>
</div>
<div class="footer-description text-center text-lg-start pb-md-6">
<p class="mb-3">Stay in touch</p>
<form
action="#"
class="footer-submit-form"
>
<div class="from-group">
<div class="input-group">
<input
type="email"
class="form-control"
placeholder="Your email address"
/>
<div class="submit">
<button type="submit">
<svg
width="16"
height="14"
viewBox="0 0 16 14"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.00761904 14L16 7L0.00761904 0L0 5.44444L11.4286 7L0 8.55556L0.00761904 14Z"
fill="white"
/>
</svg>
</button>
</div>
</div>
</div>
</form>
</div>
</div>
<!--Navigation Footer Logo-->
<!--Navigation Footer Cols-->
<div class="col-12 col-md-4 col-lg-2">
<div class="footer-widget pt-3">
<h6>Company</h6>
<ul class="list-unstyled">
<li>
<a
href="service.html"
class="py-2"
>Services
</a>
</li>
<li>
<a
href="career.html"
class="py-2"
>Career</a
>
</li>
<li>
<a
href="blog.html"
class="py-2"
>Blogs</a
>
</li>
<li>
<a
href="contact.html"
class="py-2"
>Contact us</a
>
</li>
</ul>
</div>
<div class="footer-widget pt-3">
<h6>Company</h6>
<ul class="list-unstyled">
<li>
<a
href="privacy-policy.html"
class="py-2"
>
Privacy Policy</a
>
</li>
<li>
<a
href="terms-condition.html"
class="py-2"
>Terms of Service</a
>
</li>
<li>
<a
href="business-policy.html"
class="py-2"
>Business Policy</a
>
</li>
</ul>
</div>
</div>
<!--End of Navigation Footer Cols-->
<!--Navigation Footer Cols-->
<div class="col-12 col-md-4 col-lg-3">
<div class="footer-widget pt-3">
<h6>Canada</h6>
<p>
1901 Thornridge Cir. Shiloh, <br />
Hawaii 81063
</p>
</div>
<div class="footer-widget pt-3">
<h6>United States</h6>
<p>
2118 Thornridge Cir. Syracuse,<br />
Connecticut 35624
</p>
</div>
<div class="footer-widget pt-3">
<h6>Work inquiries</h6>
<ul class="list-unstyled">
<li>
<p class="mb-0">Interested in working with us?</p>
</li>
<li>
<a
href="mailto:info@growthus.com"
class="mb-4"
>
info@growthus.com</a
>
</li>
<li><a href="tel:+3.230.705.5448"> Ph: +3.230.705.5448</a></li>
</ul>
</div>
</div>
<!--End of Navigation Footer Cols-->
<!--Navigation Footer Cols-->
<div class="col-12 col-md-4 col-lg-2">
<div class="footer-widget pt-3">
<h6>Social Media</h6>
<ul class="list-unstyled">
<li>
<a
href="#"
class="py-2"
>
Facebook
</a>
</li>
<li>
<a
href="#"
class="py-2"
>
Twitter
</a>
</li>
<li>
<a
href="#"
class="py-2"
>
Lindedin
</a>
</li>
</ul>
</div>
<div class="footer-widget pt-3">
<h6>Resources</h6>
<ul class="list-unstyled">
<li>
<a
href="contact.html"
class="py-2"
>
Help & Support
</a>
</li>
<li>
<a
href="project.html"
class="py-2"
>
Customer Case Studies
</a>
</li>
</ul>
</div>
</div>
<!--End of Navigation Footer Cols-->
</div>
<!--End of Navigation Footer Top Area-->
<!-- Footer Bottom Area -->
<div class="row clearfix">
<div class="col-md-12">
<div class="text-center text-lg-start">
<p class="text-secondary-light mb-0">
Copyright <span id="copyrightYear"></span> Growthus, All rights reserved!
</p>
</div>
</div>
</div>
<!-- End of Footer Bottom Area -->
</div>
<!--End of footer Items-->
</footer>
<!--
#############
End Navigation Footer Section
#############
-->
<!--
#############
Footer Area
#############
-->
<!-- Mark up for Script Section-->
<script src="vendor/jQuery/jquery.min.js"></script>
<script src="vendor/bootstrap/bootstrap.bundle.min.js"></script>
<script src="vendor/slick/slick.min.js"></script>
<script src="vendor/aos/aos.js"></script>
<script src="vendor/tweenmax/TweenMax.min.js"></script>
<script src="vendor/isotop/isotop-package.js"></script>
<script src="vendor/waypoints/waypoints.min.js"></script>
<script src="vendor/counter-up/countup.js"></script>
<script src="js/script.js"></script>
</body>
</html>