-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1114 lines (1026 loc) · 59.9 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">
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- fontawesom -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css" />
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap" rel="stylesheet">
<!-- my styling -->
<link rel="stylesheet" href="scss/styles.css">
<title>Mario-nanni</title>
<!-- wow js -->
<link rel="stylesheet" href="css/animate.css">
</head>
<body>
<div class="wrapper">
<div class="bg-white sticky-top pageNav d-flex justify-content-center align-items-center">
<nav data-wow-duration=".7s" data-wow-delay=".01s"
class="wow fadeInDown bg-white navbar navbar-light navbar-expand-lg justifyCenter-on-big max-wrapper">
<div class="log-container">
<strong id="logo">
<div>
<span class="d-block"><a href="#">
<img src="images/avada-marketing-logo-2x.png" class="logo" width="100%" alt="Logo">
</a></span>
</div>
</strong>
</div>
<button class="navbar-toggler order2 " type="button" data-toggle="collapse"
data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false"
aria-label="Toggle navigation">
<span>Menu</span>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse navLinks-responsive justify-content-center nav-links"
id="navbarNavAltMarkup">
<ul class="navbar-nav w-100 justify-content-between">
<li class="position-relative nav-item navLinkHover ">
<a class="nav-item nav-link nav-links-margin active" href="#">
<span class="nav-link-border"></span>
<div class="d-flex align-items-center justify-content-center">
<span
class="responsive-fonts font-weight-500 color-black whie-s-nowrap ">Home</span>
<span class="nav-link-angle color-black"><i class="fa fa-angle-down"></i></span>
</div>
<span class="sr-only">(current)</span>
</a>
<div class="hide-992 position-absolute nav-link-drop-down">
<ul class="d-flex flex-column">
<li class="nav-link-dropDrown-li bg-white"><a
class="hover-c-primary responsive-fonts font-weight-500 color-black whie-s-nowrap d-block"
href="#">Home Alternate</a></li>
</ul>
</div>
</li>
<li id="services-link" class=" position-static li nav-item navLinkHover">
<a class="position-relative nav-item nav-link nav-links-margin " href="#">
<span class="nav-link-border"></span>
<div class="d-flex align-items-center justify-content-center">
<span
class="responsive-fonts font-weight-500 color-black whie-s-nowrap">Services</span>
<span class="nav-link-angle color-black"><i class="fa fa-angle-down"></i></span>
</div>
</a>
<div
class="bg-white container hide-992 primary-box-shadow position-absolute services-drop-down">
<div class="row">
<div class="col-md-4">
<div class="mega-menu-card p-3">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-light-blue c-pointer">
<i class="fa fa-eye"></i>
</div>
<div class="mega-menu-card-text">
<h3 class="menu-card-title my-3"><a href="#"
class="color-black font-weight-500 hover-c-primary">Strategic
Marketing Plan</a></h3>
<p class="my-3 responsive-fonts">Maecenas ut erat malesuada tortor
mattis scelerisque eu ut tortor.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="mega-menu-card p-3">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-light-pink c-pointer">
<i class="fa fa-eye"></i>
</div>
<div class="mega-menu-card-text">
<h3 class="menu-card-title my-3"><a href="#"
class="color-black font-weight-500 hover-c-primary">Sales
Development</a></h3>
<p class="my-3 responsive-fonts">Maecenas ut erat malesuada tortor
mattis scelerisque eu ut tortor.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="mega-menu-card p-3">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-light-green c-pointer">
<i class="fa fa-eye"></i>
</div>
<div class="mega-menu-card-text">
<h3 class="menu-card-title my-3"><a href="#"
class="color-black font-weight-500 hover-c-primary">Digital
Marketing</a></h3>
<p class="my-3 responsive-fonts">Maecenas ut erat malesuada tortor
mattis scelerisque eu ut tortor.</p>
</div>
</div>
</div>
</div>
</div>
</li>
<li class=" li nav-item navLinkHover text-center">
<a class="position-relative nav-item nav-link nav-links-margin text-center"
href="why-us.html" target="_blank">
<span class="nav-link-border"></span>
<span class="responsive-fonts font-weight-500 color-black whie-s-nowrap">Why Us</span>
</a>
</li>
<li class=" li nav-item navLinkHover">
<a class="position-relative nav-item nav-link nav-links-margin text-center" href="#">
<span class="nav-link-border"></span>
<span class="responsive-fonts font-weight-500 color-black whie-s-nowrap">Case
Studies</span>
</a>
</li>
<li class="li nav-item navLinkHover ">
<a class="position-relative navLinkHover nav-item nav-link nav-links-margin text-center"
href="#">
<span class="nav-link-border"></span>
<span class="responsive-fonts font-weight-500 color-black whie-s-nowrap">About </span>
</a>
</li>
<li class="li text-center nav-item navLinkHover">
<a class="position-relative nav-item nav-link nav-links-margin" href="blog.html"
target="_blank">
<span class="nav-link-border"></span>
<span class="responsive-fonts font-weight-500 color-black whie-s-nowrap">Blog </span>
</a>
</li>
</ul>
</div>
<div class="nav-right-side hide-on-phone">
<div class="d-flex align-items-center after-border gap-12">
<div class="d-flex align-items-center navPhone">
<span class="color-primary nav-phone-icon"><i class="fa fa-phone"></i></span>
<span class="font-weight-500 color-black whie-s-nowrap responsive-fonts">(555)
802-1234</span>
</div>
<a href="#" class="light-pink-btn border-radius-10 bg-light-pink d-inline-block">
<span class="responsive-fonts font-weight-500 free-quote-text whie-s-nowrap">
Free Quote
</span>
</a>
</div>
</div>
</nav>
</div>
<header id="header" class="home-header pb-4 wow fadeInDown">
<div class="container-fluid home-hero max-wrapper">
<div class="row">
<div class="col-lg-6">
<div class="md-text-center wow fadeInLeft">
<h1 class="homeHero-title font-weight-700 bigger-title text-white my-3 family-serif">
Unlock Your Online Growth Potential
</h1>
<div class="homeHeaderP">
<p class="family-serif">
Online marketing to secure customer retention, leads, and sales. We focus on the
bigger
picture
</p>
</div>
<div class="my-lg-5 my-2">
<a href="#"
class="bg-white d-inline-block border-radius-10 py-3 color-black px-5 hiteBtn">
<div class="d-flex align-items-center">
<strong class="mx-2">Our Services</strong>
<span><i class="fa fa-arrow-right"></i></span>
</div>
</a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="contact-form bg-white primary-box-shadow wow fadeInRight">
<div class="mx-auto homeHeader-formP">
<img src="images/marketing-consultant-expert.jpg" width="100%" class="rounded-circle"
alt="">
</div>
<h4 class="color-black text-center">Richard Madsen</h4>
<div class="profession">
<p class="text-secondary text-center d-block">Marketing Consultant Expert
</p>
</div>
<div class="mx-auto border-radius-10 justify-content-center d-flex">
<span class="color-primary mx-3"><i class="fa fa-phone"></i></span>
<h5 class="font-weight-500 color-primary whie-s-nowrap">(555) 802-1234</h5>
</div>
<form>
<div class="mt-3">
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Name*">
</div>
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Email*">
</div>
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Phone Number*">
</div>
<div class="btn-c-primary my-3">
<button type="button"
class="w-100 primary-hovered border-radius-10 font-weight-500">
<span>Get a Callback</span>
</button>
</div>
<div class="my-3">
<small class="d-block text-center text-secondary">By submitting my data I agree
to be contacted</small>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</header>
<section class="animSection max-wrapper">
<div class="container-fluid anim-sec-width">
<div class="row">
<div class="col-md-6 my-5">
<div class="animImg position-relative wow bounceInLeft">
<div class="position-absolute anim-layer anim-layer-1 wow zoomIn" data-wow-duration="1.6s">
<img src="images/anim1.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-2 wow bounceInLeft"
data-wow-duration="1.8s">
<img src="images/anim2.png" width="100%" alt="">
</div>
<div data-wow-iteration="1" data-wow-duration="0.6"
class="position-absolute anim-layer anim-layer-3 wow bounceIn">
<img src="images/anim3.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-4 wow bounceIn" data-wow-iteration="4"
data-wow-duration=".3s" data-wow-delay=".2s"
style="visibility: visible; animation-iteration-count: 3; animation-name: pulse;">
<img src="images/boy.png" width="100%" alt="">
</div>
</div>
</div>
<div class="col-md-6 my-5">
<div class="hero-right anim-col-space animated wow fadeInRight">
<div class="d-flex align-items-center">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-blue c-pointer">
<i class="fa fa-eye"></i>
</div>
<h4 class="hover-c-primary mb-0 anim-icon-text font-weight-500">
Business Growth
</h4>
</div>
<h1 class="hero-heading big-title">
Increase Brand Awareness
</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor placerat luctus.
Nullam sit amet ante sed orci convallis gravida et at massa.
</p>
<div class="btn-c-primary my-4">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Get a Consultation</span>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="animSection max-wrapper">
<div class="container-fluid anim-sec-width">
<div class="row reverseRow-small">
<div class="col-md-6 my-5">
<div class="hero-right anim-col-space animated wow fadeInRight">
<div class="d-flex align-items-center">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-blue c-pointer">
<i class="fa fa-eye"></i>
</div>
<h4 class="hover-c-primary mb-0 anim-icon-text font-weight-500">
Investors In People
</h4>
</div>
<h1 class="hero-heading big-title">
In-House Sales Training
</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor placerat luctus.
Nullam sit amet ante sed orci convallis gravida et at massa.
</p>
<div class="btn-c-primary my-4">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Get a Consultation</span>
</button>
</div>
</div>
</div>
<div class="col-md-6 my-5">
<div class="animImg position-relative wow bounceInRight">
<div class="position-absolute anim-layer anim-layer-1 wow zoomIn" data-wow-duration="1.6s">
<img src="images/anim1.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-2 wow bounceInRight"
data-wow-duration="1.8s">
<img src="images/anim2.png" width="100%" alt="">
</div>
<div data-wow-iteration="1" data-wow-duration="0.6"
class="position-absolute anim-layer anim-layer-3 wow bounceIn">
<img src="images/anim3.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-4 wow bounceIn" data-wow-iteration="4"
data-wow-duration=".3s" data-wow-delay=".2s"
style="visibility: visible; animation-iteration-count: 3; animation-name: pulse;">
<img src="images/boy.png" width="100%" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="animSection max-wrapper">
<div class="container-fluid anim-sec-width">
<div class="row">
<div class="col-md-6 my-5">
<div class="animImg position-relative wow bounceInLeft">
<div class="position-absolute anim-layer anim-layer-1 wow zoomIn" data-wow-duration="1.6s">
<img src="images/anim1.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-2 wow bounceInLeft"
data-wow-duration="1.8s">
<img src="images/anim2.png" width="100%" alt="">
</div>
<div data-wow-iteration="1" data-wow-duration="0.6"
class="position-absolute anim-layer anim-layer-3 wow bounceIn">
<img src="images/anim3.png" width="100%" alt="">
</div>
<div class="position-absolute anim-layer anim-layer-4 wow bounceIn" data-wow-iteration="4"
data-wow-duration=".3s" data-wow-delay=".2s"
style="visibility: visible; animation-iteration-count: 3; animation-name: pulse;">
<img src="images/boy.png" width="100%" alt="">
</div>
</div>
</div>
<div class="col-md-6 my-5">
<div class="hero-right anim-col-space animated wow fadeInRight">
<div class="d-flex align-items-center">
<div
class="mega-menu-card-icon d-flex justify-content-center align-items-center icon-bg-blue c-pointer">
<i class="fa fa-eye"></i>
</div>
<h4 class="hover-c-primary mb-0 anim-icon-text font-weight-500">
Social Media Analysis
</h4>
</div>
<h1 class="hero-heading big-title">
Harness Your Social Proof
</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed auctor placerat luctus.
Nullam sit amet ante sed orci convallis gravida et at massa.
</p>
<div class="btn-c-primary my-4">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Get a Consultation</span>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="max-wrapper">
<div class="container-fluid after-anims">
<div class="row">
<div class="col-md-12">
<div class="md-w-60 mx-auto py-lg-5 py-md-4 ">
<h2 class="family-serif someBrands-title font-weight-700 text-center wow fadeInLeft">
Some Brands We Work With
</h2>
<p class="someBrands-dec text-center wow fadeInUp">
Quisque aliquet, libero consequat elementum convallis.
</p>
</div>
<div class="row wow fadeInUp">
<div class="col-md-12">
<div
class="d-flex flex-wrap-small align-items-center justify-content-center mid-flex-wrap">
<div class="max-w-200px p-4 mx-auto">
<img src="images/abstract.png" width="100%" alt="Lorem">
</div>
<div class="max-w-200px p-4 mx-auto">
<img src="images/cglobal.png" width="100%" alt="Lorem">
</div>
<div class="max-w-200px p-4 mx-auto">
<img src="images/digitalbox.png" width="100%" alt="Lorem">
</div>
<div class="max-w-200px p-4 mx-auto">
<img src="images/hemisferio.png" width="100%" alt="Lorem">
</div>
<div class="max-w-200px p-4 mx-auto">
<img src="images/next.png" width="100%" alt="Lorem">
</div>
<div class="max-w-200px p-4 mx-auto">
<img src="images/spaces.png" width="100%" alt="Lorem">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="max-wrapper py-md-4 py-lg-4 sticky-sec">
<div class="container-fluid wow fadeInDown">
<div class="row">
<div class="col-md-12">
<div class="sticky-row bg-white">
<div class="sticky-row-img-sec">
<div class="sticky-row-img">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/06/marketing-expert-cta.png"
width="100%" alt="">
</div>
<div class="mx-5">
<h4 class="color-black text-left">Sandy Reiff</h4>
<small class="d-block consultant-profession text-secondary">Marketing Consultant
Expert</small>
</div>
</div>
<div>
<h4 class="md-title font-weight-500 color-black text-center">Drive Leads and Sales with
Avada
</h4>
</div>
<a href="#" class="light-pink-btn border-radius-10 bg-light-pink d-flex max-w-fit">
<span class="color-primary mx-3"><i class="fa fa-phone"></i></span>
<span class="font-weight-500 color-primary whie-s-nowrap">(555) 802-1234</span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="max-wrapper">
<div class="container-fluid wow fadeInDown trusted-sec">
<div class="trusted-title-container">
<h2 class="text-center trusted-title font-weight-700">
Trusted by Leading Organisations
</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/06/case-studies-1.jpg"
width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="help-card-footer">
<div class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
How Spaces attracted five million visitors by improving the content
</a>
</h2>
</div>
<div class="help-card-border">
</div>
<div class="wow fadeInUp">
<p class="big-title">
200%
</p>
<p class="font-20px">
Higher revenue from digital
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="images/case-studies-4.jpg" width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="help-card-footer">
<div class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
Creativity helped Hemisferio to increase their brand reach vertically
</a>
</h2>
</div>
<div class="help-card-border">
</div>
<div class="wow fadeInUp">
<p class="big-title">
10x
</p>
<p class="font-20px">
Sales increase with the same ad spend
</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="images/case-studies-6.jpg" width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="help-card-footer">
<div class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
How DigitalBox used AI-powered data insight to boost sales
</a>
</h2>
</div>
<div class="help-card-border">
</div>
<div class="wow fadeInUp">
<p class="big-title">
3-year
</p>
<p class="font-20px">
Partnership with Avada Consultant
</p>
</div>
</div>
</div>
</div>
<div class="py-3">
<div class="btn-c-primary my-4 text-center">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Read More Case Studies</span>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="grey-section">
<div class="container-fluid max-wrapper">
<div class="row align-items-center">
<div class="col-md-6">
<div class="weboost-col animated wow fadeInRight">
<h1 class="hero-heading mid-title font-weight-700 color-black">We Boost Our Clients’ Bottom
Line by Optimizing Their Growth Potential.</h1>
<p class="desc-p">
Quisque aliquet, libero consequat elementum convallis, erat risus imperdiet
pellentesque
sem neque eget.
</p>
<div class="btn-c-primary my-4">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Why Work With Us</span>
</button>
</div>
</div>
</div>
<div class="col-md-6">
<div class="wow bounceInRight">
<div class="meeting-img">
<img class="border-radius-10" src="images/why-work.jpg" width="100%"
alt="Meeting image">
</div>
</div>
</div>
</div>
<div class="seperator-row">
<div class="sep-1">
<div class="sep-2">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 my-20px">
<div class="we-buildSpacingLeft">
<div class="animated wow fadeInLeft ">
<div class="my-4">
<h3>We Build Relationships</h3>
<p class="mb-20px font-20px line-height-1-6">
Curabitur ac leo nunc. Vestibulum et mauris vel ante finibus maximus nec ut leo.
Integer consectetur.
</p>
</div>
</div>
<div class="mt-5 animated wow fadeInLeft">
<div class="my-4">
<h3 class="font-weight-700">Proprietary Processes</h3>
<p class="mb-20px font-20px line-height-1-6">
Curabitur ac leo nunc. Vestibulum et mauris vel ante finibus maximus nec ut leo.
Integer consectetur.
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 my-20px">
<div class="we-buildSpacingRight">
<div class="mb-5 weBuild-icons-text d-flex align-items-center wow fadeInDown"
data-wow-duration="1.5s" data-wow-delay=".01s">
<div class="weBuild-icon-container">
<div class="weBuild-icon">
<i class="fa fa-plus"></i>
</div>
</div>
<div>
<h3 class="hover-c-primary">Accountability </h3>
<h5 class="mt-3">
Curabitur ac leo nunc vestibulum
</h5>
</div>
</div>
<div class="mb-5 weBuild-icons-text d-flex align-items-center wow fadeInDown"
data-wow-duration="1.5s" data-wow-delay="1s">
<div class="weBuild-icon-container">
<div class="weBuild-icon">
<i class="fa fa-plus"></i>
</div>
</div>
<div>
<h3 class="hover-c-primary">Transparency </h3>
<h5 class="mt-3">
Curabitur ac leo nunc vestibulum
</h5>
</div>
</div>
<div class="mb-5 weBuild-icons-text d-flex align-items-center wow fadeInDown"
data-wow-duration="1.5s" data-wow-delay="1.7s">
<div class="weBuild-icon-container">
<div class="weBuild-icon">
<i class="fa fa-plus"></i>
</div>
</div>
<div>
<h3 class="hover-c-primary">Investment </h3>
<h5 class="mt-3">
Curabitur ac leo nunc vestibulum
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid max-wrapper wow fadeInUpBig" data-wow-duration="1.1s" data-wow-delay=".2s">
<div class="row py-lg-5 py-lg-5 py-2" style="padding-bottom: 50px !important">
<h4 class="sec-title text-center">Awards</h4>
<div class="col-md-3 col-lg-3 col-sm-6 col-6">
<div class="awards-img mx-auto awards-img1">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/07/award-a.png"
width="100%" alt="">
</div>
<div class="awards-text">
<p class="mb-20px font-20px line-height-1-6 text-center">Winner Seo Master MAGT Smart Start
Award 2017</h4>
</div>
</div>
<div class="col-md-3 col-lg-3 col-sm-6 col-6">
<div class="awards-img mx-auto awards-img2">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/07/award-b.png"
width="100%" alt="">
</div>
<div class="awards-text">
<p class="mb-20px font-20px line-height-1-6 text-center">Top Social Media Agencies Next
Partner 2018</h4>
</div>
</div>
<div class="col-md-3 col-lg-3 col-sm-6 col-6">
<div class="awards-img mx-auto awards-img3">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/07/award-c.png"
width="100%" alt="">
</div>
<div class="awards-text">
<p class="mb-20px font-20px line-height-1-6 text-center">0 Fastest Growing Abstract Solution
Providers 2019</h4>
</div>
</div>
<div class="col-md-3 col-lg-3 col-sm-6 col-6">
<div class="awards-img mx-auto awards-img4">
<img src="https://avada.theme-fusion.com/marketing-consultant/wp-content/uploads/sites/142/2020/07/award-d.png"
width="100%" alt="">
</div>
<div class="awards-text">
<p class="mb-20px font-20px line-height-1-6 text-center">National Excellence Agencie Award
Winner 2020</p>
</div>
</div>
</div>
</div>
</section>
<section class="max-wrapper">
<div class="container-fluid">
<div class="row align-items-center" style="padding-bottom: 6% !important; padding-top: 5%;">
<div class="col-md-6 my-20px">
<div class="col-text-spacing col-img-boxShadow wow fadeInLeft">
<div class="col-img">
<img class="border-radius-10" src="images/glasses-girl.jpg" width="100%" alt="">
</div>
</div>
</div>
<div class="col-md-6">
<div class="anim-col-space wow fadeInRight">
<h6 class="font-weight-700 famin
sec-title mb-20px">
“The team at Avada Marketing Consultant is fabulous. They helped us unlock our potential
online and offline. We have experienced year on year growth due to their progressive
approach.”
</h6>
<strong class="family-serif mt-20px d-block responsive-fonts">
Andreas Casey
</strong>
<small class="text-secondary d-block">Marketing Consultant Expert</small>
</div>
</div>
</div>
</div>
</section>
<section class="bg-grey py-6-percent px-32">
<div class="container-fluid max-wrapper">
<div class="row align-items-end">
<div class="col-md-6">
<h2 class="mid-title family-serif font-weight-700 wow fadeInLeft color-black">
Marketing Resources: Insider Advice on How to Increase Online Sales
</h2>
</div>
<div class="col-md-6">
<div class="btn-c-primary my-4 text-right wow fadeInRight">
<button type="button" class="primary-hovered border-radius-10 font-weight-500">
<span>Explore All Resources</span>
</button>
</div>
</div>
</div>
<div class="row mb-20px mt-4-percent">
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="images/laptop.jpg" width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="my-3 my-md-4 my-lg-4 help-card-link wow fadeInDown" data-wow-delay=".5s"
data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
Marketing Tips And Tricks For Your Website
</a>
</h2>
</div>
</div>
</div>
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="images/blog-posts-5.jpg" width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="my-3 my-md-4 my-lg-4 help-card-link wow fadeInDown" data-wow-delay=".5s"
data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
How to Write Stunning Blog Post Titles
</a>
</h2>
</div>
</div>
</div>
<div class="col-md-4">
<div class="help-card wow fadeInDown">
<div class="help-card-img position-relative">
<img src="images/blog-posts-4.jpg" width="100%" alt="">
<a class="hlp-card-overlay" href="#"></a>
</div>
<div class="my-3 my-md-4 my-lg-4 help-card-link wow fadeInDown" data-wow-delay=".5s"
data-wow-duration="1s">
<h2 class="help-card-link">
<a href="#" class="color-black hover-c-primary">
Techniques to Reduce Facebook Ads Spend
</a>
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="black-section black-container no-box-shadow">
<div class="container-fluid max-wrapper wow fadeInRight">
<div class="row">
<div class="col-md-6">
<div class="col-img-spacing">
<div class="title-margin">
<h4 class="font-bigger font-weight-700 text-white">
Let’s Make Things Happen
</h4>
</div>
<p class="blackFooter-p mb-20px">
Curabitur ac leo nunc. Vestibulum et mauris vel ante finibus maximus nec ut leo. Integer
consectetur.
</p>
<div class="lightBlackBorder">
</div>
<div class="my-4">
<p>
<em class="text-white blackEm-text">“The team at Avada Marketing Consultant is
fabulous.
They helped us unlock our potential online and offline. We have experienced year
on
year growth due to their progressive approach.”</em>
</p>
</div>
<div class="author-role">
<p class="text-white font-20px">
George Anderson
</p>
<p class="text-secondary">Digitalbox CEO</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="contact-form bg-white primary-box-shadow wow fadeInRight">
<div class="mx-auto homeHeader-formP">
<img src="images/marketing-consultant-expert.jpg" width="100%" class="rounded-circle"
alt="">
</div>
<h4 class="color-black text-center">Richard Madsen</h4>
<div class="profession">
<p class="text-secondary text-center d-block">Marketing Consultant Expert
</p>
</div>
<div class="mx-auto border-radius-10 justify-content-center d-flex">
<span class="color-primary mx-3"><i class="fa fa-phone"></i></span>
<h5 class="font-weight-500 color-primary whie-s-nowrap">(555) 802-1234</h5>
</div>
<form>
<div class="mt-3">
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Name*">
</div>
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Email*">
</div>
<div class="form-input my-3">
<input type="text" required class="input" placeholder="Your Phone Number*">
</div>
<div class="btn-c-primary my-3">
<button type="button"
class="w-100 primary-hovered border-radius-10 font-weight-500">
<span>Get a Callback</span>
</button>
</div>
<div class="my-3">
<small class="d-block text-center text-secondary">By submitting my data I agree
to be contacted</small>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<footer class="footer max-wrapper" id="footer">
<div class="container-fluid">
<div class="row">
<div class="col-md-5">
<div class="my-20px">
<div class="p-3 footer-f-column">
<h3 class="footerTitle">
Grow Your Online Business Strategically, and Improve Customer Retention.
</h3>
<ul class="d-flex align-items-center footer-social-icons">
<li><a href="#">
<i class="font-20px fab fa-facebook-f color-black"></i>
</a></li>
<li><a href="#">
<i class="font-20px fab fa-twitter color-black"></i>
</a></li>
<li><a href="#">
<i class="font-20px fab fa-instagram color-black"></i>
</a></li>
<li><a href="#">
<i class="font-20px fab fa-youtube color-black"></i>
</a></li>
<li><a href="#">
<i class="font-20px fab fa-linkedin color-black"></i>
</a></li>
<li><a href="#">
<i class="font-20px fab fa-tiktok color-black"></i>
</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-7">
<div class="row">
<div class="col-md-4">
<ul class="my-20px d-flex flex-column">
<li>
<h4 class="color-black font-20px">
Services
</h4>
</li>
<li> <a href="#" class="font-20px hover-c-primary my-2 d-block footer-link">
Marketing Plan
</a></li>
<li> <a href="#" class="font-20px hover-c-primary my-2 d-block footer-link">
Sales Development