-
Notifications
You must be signed in to change notification settings - Fork 1
/
template_demo.html
1248 lines (1151 loc) · 70.2 KB
/
template_demo.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, shrink-to-fit=no">
<!-- SEO Meta Tags -->
<meta name="description" content="Aria is a business focused HTML landing page template built with Bootstrap to help you create lead generation websites for companies and their services.">
<meta name="author" content="Inovatik">
<!-- OG Meta Tags to improve the way the post looks when you share the page on LinkedIn, Facebook, Google+ -->
<meta property="og:site_name" content="" /> <!-- website name -->
<meta property="og:site" content="" /> <!-- website link -->
<meta property="og:title" content=""/> <!-- title shown in the actual shared post -->
<meta property="og:description" content="" /> <!-- description shown in the actual shared post -->
<meta property="og:image" content="" /> <!-- image link, make sure it's jpg -->
<meta property="og:url" content="" /> <!-- where do you want your post to link to -->
<meta property="og:type" content="article" />
<!-- Website Title -->
<title>Aria - Business HTML Landing Page Template</title>
<!-- Styles -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:500,700&display=swap&subset=latin-ext" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600&display=swap&subset=latin-ext" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/fontawesome-all.css" rel="stylesheet">
<link href="css/swiper.css" rel="stylesheet">
<link href="css/magnific-popup.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="images/favicon.png">
</head>
<body data-spy="scroll" data-target=".fixed-top">
<!-- Preloader -->
<div class="spinner-wrapper">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</div>
<!-- end of preloader -->
<!-- Navbar -->
<nav class="navbar navbar-expand-md navbar-dark navbar-custom fixed-top">
<!-- Text Logo - Use this if you don't have a graphic logo -->
<!-- <a class="navbar-brand logo-text page-scroll" href="index.html">Aria</a> -->
<!-- Image Logo -->
<a class="navbar-brand logo-image" href="index.html"><img src="images/logo.svg" alt="alternative"></a>
<!-- Mobile Menu Toggle Button -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-awesome fas fa-bars"></span>
<span class="navbar-toggler-awesome fas fa-times"></span>
</button>
<!-- end of mobile menu toggle button -->
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link page-scroll" href="#header">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#intro">INTRO</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#services">SERVICES</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#callMe">CALL ME</a>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="#projects">PROJECTS</a>
</li>
<!-- Dropdown Menu -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle page-scroll" href="#about" id="navbarDropdown" role="button" aria-haspopup="true" aria-expanded="false">ABOUT</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="terms-conditions.html"><span class="item-text">TERMS CONDITIONS</span></a>
<div class="dropdown-items-divide-hr"></div>
<a class="dropdown-item" href="privacy-policy.html"><span class="item-text">PRIVACY POLICY</span></a>
</div>
</li>
<!-- end of dropdown menu -->
<li class="nav-item">
<a class="nav-link page-scroll" href="#contact">CONTACT</a>
</li>
</ul>
<span class="nav-item social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
</div>
</nav> <!-- end of navbar -->
<!-- end of navbar -->
<!-- Header -->
<header id="header" class="header">
<div class="header-content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-container">
<h1>BUSINESS <span id="js-rotating">TEMPLATE, SERVICES, SOLUTIONS</span></h1>
<p class="p-heading p-large">Aria is a top consultancy company specializing in business growth using online marketing and conversion optimization tactics</p>
<a class="btn-solid-lg page-scroll" href="#intro">DISCOVER</a>
</div>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of header-content -->
</header> <!-- end of header -->
<!-- end of header -->
<!-- Intro -->
<div id="intro" class="basic-1">
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="text-container">
<div class="section-title">INTRO</div>
<h2>We Offer Some Of The Best Business Growth Services In Town</h2>
<p>Launching a new company or developing the market position of an existing one can be quite an overwhelming processs at times.</p>
<p class="testimonial-text">"Our mission here at Aira is to get you through those tough moments relying on our team's expertise in starting and growing companies."</p>
<div class="testimonial-author">Louise Donovan - CEO</div>
</div> <!-- end of text-container -->
</div> <!-- end of col -->
<div class="col-lg-7">
<div class="image-container">
<img class="img-fluid" src="images/intro-office.jpg" alt="alternative">
</div> <!-- end of image-container -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of basic-1 -->
<!-- end of intro -->
<!-- Description -->
<div class="cards-1">
<div class="container">
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card">
<span class="fa-stack">
<span class="hexagon"></span>
<i class="fas fa-binoculars fa-stack-1x"></i>
</span>
<div class="card-body">
<h4 class="card-title">Environment Analysis</h4>
<p>The starting point of any success story is knowing your current position in the business environment</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<span class="fa-stack">
<span class="hexagon"></span>
<i class="fas fa-list-alt fa-stack-1x"></i>
</span>
<div class="card-body">
<h4 class="card-title">Development Planning</h4>
<p>After completing the environmental analysis the next stage is to design and plan your development strategy</p>
</div>
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<span class="fa-stack">
<span class="hexagon"></span>
<i class="fas fa-chart-pie fa-stack-1x"></i>
</span>
<div class="card-body">
<h4 class="card-title">Execution & Evaluation</h4>
<p>In this phase you will focus on executing the actions plan and evaluating the results after each marketing campaign</p>
</div>
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-1 -->
<!-- end of description -->
<!-- Services -->
<div id="services" class="cards-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">SERVICES</div>
<h2>Choose The Service Package<br> That Suits Your Needs</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/services-1.jpg" alt="alternative">
</div>
<div class="card-body">
<h3 class="card-title">Off The Ground Off The Ground</h3>
<p>Perfect for fresh ideas or young startups, this package will help get the business off the ground</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Environment and competition</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Designing the marketing plan</div>
</li>
</ul>
<p class="price">Starting at <span>$199</span></p>
</div>
<div class="button-container">
<a class="btn-solid-reg page-scroll" href="#callMe">DETAILS</a>
</div> <!-- end of button-container -->
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/services-2.jpg" alt="alternative">
</div>
<div class="card-body">
<h3 class="card-title">Accelerated Growth</h3>
<p>Use this service pack to give your company the necessary impulse to become an industry leader</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Business strategy planning</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Taking the planned actions</div>
</li>
</ul>
<p class="price">Starting at <span>$299</span></p>
</div>
<div class="button-container">
<a class="btn-solid-reg page-scroll" href="#callMe">DETAILS</a>
</div> <!-- end of button-container -->
</div>
<!-- end of card -->
<!-- Card -->
<div class="card">
<div class="card-image">
<img class="img-fluid" src="images/services-3.jpg" alt="alternative">
</div>
<div class="card-body">
<h3 class="card-title">Market Domination</h3>
<p>You already are a reference point in your industry now you need to learn about acquisitions</p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Maintaining the leader status</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Acquisitions the right way</div>
</li>
</ul>
<p class="price">Starting at <span>$299</span></p>
</div>
<div class="button-container">
<a class="btn-solid-reg page-scroll" href="#callMe">DETAILS</a>
</div> <!-- end of button-container -->
</div>
<!-- end of card -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of cards-2 -->
<!-- end of services -->
<!-- Details 1 -->
<div id="details" class="accordion">
<div class="area-1">
</div><!-- end of area-1 on same line and no space between comments to eliminate margin white space --><div class="area-2">
<!-- Accordion -->
<div class="accordion-container" id="accordionOne">
<h2>Accelerate Business Growth To Improve Revenue Numbers</h2>
<div class="item">
<div id="headingOne">
<span data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne" role="button">
<span class="circle-numbering">1</span><span class="accordion-title">How Can Aria Help Your Business</span>
</span>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionOne">
<div class="accordion-body">
At Aria solutions, we’ve taken the consultancy concept one step further by offering a full service management organization with expertise.
</div>
</div>
</div> <!-- end of item -->
<div class="item">
<div id="headingTwo">
<span class="collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo" role="button">
<span class="circle-numbering">2</span><span class="accordion-title">Great Strategic Business Planning</span>
</span>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionOne">
<div class="accordion-body">
Aria partners with businesses to business growth and development ideas including environment analysis, plan execution and evaluation.
</div>
</div>
</div> <!-- end of item -->
<div class="item">
<div id="headingThree">
<span class="collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree" role="button">
<span class="circle-numbering">3</span><span class="accordion-title">Online Marketing Campaigns</span>
</span>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionOne">
<div class="accordion-body">
An awesome online marketing plan won't save your bad product but paired with a good product, the sky is the limit for what can be achieved.
</div>
</div>
</div> <!-- end of item -->
</div> <!-- end of accordion-container -->
<!-- end of accordion -->
</div> <!-- end of area-2 -->
</div> <!-- end of accordion -->
<!-- end of details 1 -->
<!-- Details 2 -->
<div class="tabs">
<div class="area-1">
<div class="tabs-container">
<!-- Tabs Links -->
<ul class="nav nav-tabs" id="ariaTabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="nav-tab-1" data-toggle="tab" href="#tab-1" role="tab" aria-controls="tab-1" aria-selected="true"><i class="fas fa-th"></i> Business</a>
</li>
<li class="nav-item">
<a class="nav-link" id="nav-tab-2" data-toggle="tab" href="#tab-2" role="tab" aria-controls="tab-2" aria-selected="false"><i class="fas fa-th"></i> Expertise</a>
</li>
<li class="nav-item">
<a class="nav-link" id="nav-tab-3" data-toggle="tab" href="#tab-3" role="tab" aria-controls="tab-3" aria-selected="false"><i class="fas fa-th"></i> Quality</a>
</li>
</ul>
<!-- end of tabs links -->
<!-- Tabs Content -->
<div class="tab-content" id="ariaTabsContent">
<!-- Tab -->
<div class="tab-pane fade show active" id="tab-1" role="tabpanel" aria-labelledby="tab-1">
<h4>Business Services For Companies</h4>
<p>Aria provides the most innovative and customized business services in the industry. Our <a class="green page-scroll" href="#services">Services</a> section shows how flexible we are for all types of budgets.</p>
<!-- Progress Bars -->
<div class="progress-container">
<div class="title">Business Development 100%</div>
<div class="progress">
<div class="progress-bar first" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="title">Opportunity Spotting 76%</div>
<div class="progress">
<div class="progress-bar second" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="title">Online Marketing 90%</div>
<div class="progress">
<div class="progress-bar third" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div> <!-- end of progress-container -->
<!-- end of progress bars -->
</div> <!-- end of tab-pane -->
<!-- end of tab -->
<!-- Tab -->
<div class="tab-pane fade" id="tab-2" role="tabpanel" aria-labelledby="tab-2">
<ul class="list-unstyled li-space-lg first">
<li class="media">
<div class="media-bullet">1</div>
<div class="media-body"><strong>High quality</strong> is on top of our list when it comes to the way we deliver the services</div>
</li>
<li class="media">
<div class="media-bullet">2</div>
<div class="media-body"><strong>Maximum impact</strong> is what we look for in our actions</div>
</li>
<li class="media">
<div class="media-bullet">3</div>
<div class="media-body"><strong>Quality standards</strong> are important but meant to be exceeded</div>
</li>
</ul>
<ul class="list-unstyled li-space-lg last">
<li class="media">
<div class="media-bullet">4</div>
<div class="media-body"><strong>We're always looking</strong> for industry leaders to help them win their market position</div>
</li>
<li class="media">
<div class="media-bullet">5</div>
<div class="media-body"><strong>Evaluation</strong> is a key aspect of this business and important</div>
</li>
<li class="media">
<div class="media-bullet">6</div>
<div class="media-body"><strong>Ethic</strong> procedures ar alwasy at the base of everything we do</div>
</li>
</ul>
</div> <!-- end of tab-pane -->
<!-- end of tab -->
<!-- Tab -->
<div class="tab-pane fade" id="tab-3" role="tabpanel" aria-labelledby="tab-3">
<p><strong>We strive to achieve</strong> 100% customer satisfaction for both types of customers: hiring companies and job seekers. Types of customers: <a class="green" href="#your-link">with huge potential</a></p>
<p><strong>Our goal is to help</strong> your company achieve its full potential and establish long term stability for <a class="green" href="#your-link">the stakeholders</a></p>
<ul class="list-unstyled li-space-lg">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">It's easy to get a quotation, just call our office anytime</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">We'll get back to you with an initial estimate soon</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Get ready to see results even after only 30 days</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Ask for a quote and start improving your business</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Just fill out the form and we'll call you right away</div>
</li>
</ul>
</div> <!-- end of tab-pane -->
<!-- end of tab -->
</div> <!-- end of tab-content -->
<!-- end of tabs content -->
</div> <!-- end of tabs-container -->
</div><!-- end of area-1 on same line and no space between comments to eliminate margin white space --><div class="area-2"></div> <!-- end of area-2 -->
</div> <!-- end of tabs -->
<!-- end of details 2 -->
<!-- Testimonials -->
<div class="slider">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Read Our Customer Testimonials</h2>
<p class="p-heading">Our clients are our partners and we can not imagine a better future for our company without helping them reach their objectives</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Card Slider -->
<div class="slider-container">
<div class="swiper-container card-slider">
<div class="swiper-wrapper">
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-1.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">The guys from Aria helped with getting my business off the ground and turning into a profitable company.</div>
<div class="testimonial-author">Jude Thorn - Founder</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-2.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">I purchased the Growth Accelerator service pack a few years ago and I renewed the contract each year. </div>
<div class="testimonial-author">Marsha Singer - Marketer</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-3.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">Aria's CEO personally attends client meetings and gives his feedback on business growth strategies.</div>
<div class="testimonial-author">Roy Smith - Developer</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-4.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">At the beginning I thought the prices are a little high for what they offer but they over deliver each and every time.</div>
<div class="testimonial-author">Ronald Spice - Owner</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-5.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">I recommend Aria to every business owner or growth leader that wants to take his company to the next level.</div>
<div class="testimonial-author">Lindsay Rune - Manager</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
<!-- Slide -->
<div class="swiper-slide">
<div class="card">
<img class="card-image" src="images/testimonial-6.jpg" alt="alternative">
<div class="card-body">
<div class="testimonial-text">My goals for using Aria's services seemed high when I first set them but they've met them with no problems.</div>
<div class="testimonial-author">Ann Black - Consultant</div>
</div>
</div>
</div> <!-- end of swiper-slide -->
<!-- end of slide -->
</div> <!-- end of swiper-wrapper -->
<!-- Add Arrows -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<!-- end of add arrows -->
</div> <!-- end of swiper-container -->
</div> <!-- end of sliedr-container -->
<!-- end of card slider -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of slider -->
<!-- end of testimonials -->
<!-- Call Me -->
<div id="callMe" class="form-1">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="text-container">
<div class="section-title">CALL ME</div>
<h2 class="white">Have Us Contact You By Filling And Submitting The Form</h2>
<p class="white">You are just a few steps away from a personalized offer. Just fill in the form and send it to us and we'll get right back with a call to help you decide what service package works.</p>
<ul class="list-unstyled li-space-lg white">
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">It's very easy just fill in the form so we can call</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">During the call we'll require some info about the company</div>
</li>
<li class="media">
<i class="fas fa-square"></i>
<div class="media-body">Don't hesitate to email us for any questions or inquiries</div>
</li>
</ul>
</div>
</div> <!-- end of col -->
<div class="col-lg-6">
<!-- Call Me Form -->
<form id="callMeForm" data-toggle="validator" data-focus="false">
<div class="form-group">
<input type="text" class="form-control-input" id="lname" name="lname" required>
<label class="label-control" for="lname">Name</label>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<input type="text" class="form-control-input" id="lphone" name="lphone" required>
<label class="label-control" for="lphone">Phone</label>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<input type="email" class="form-control-input" id="lemail" name="lemail" required>
<label class="label-control" for="lemail">Email</label>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<select class="form-control-select" id="lselect" required>
<option class="select-option" value="" disabled selected>Interested in...</option>
<option class="select-option" value="Off The Ground">Off The Ground</option>
<option class="select-option" value="Accelerated Growth">Accelerated Growth</option>
<option class="select-option" value="Market Domination">Market Domination</option>
</select>
<div class="help-block with-errors"></div>
</div>
<div class="form-group checkbox white">
<input type="checkbox" id="lterms" value="Agreed-to-Terms" name="lterms" required>I agree with Aria's stated <a class="white" href="privacy-policy.html">Privacy Policy</a> and <a class="white" href="terms-conditions.html">Terms & Conditions</a>
<div class="help-block with-errors"></div>
</div>
<div class="form-group">
<button type="submit" class="form-control-submit-button">CALL ME</button>
</div>
<div class="form-message">
<div id="lmsgSubmit" class="h3 text-center hidden"></div>
</div>
</form>
<!-- end of call me form -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of form-1 -->
<!-- end of call me -->
<!-- Projects -->
<div id="projects" class="filter">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title">PROJECTS</div>
<h2>Projects That We're Proud Of</h2>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Filter -->
<div class="button-group filters-button-group">
<a class="button is-checked" data-filter="*"><span>SHOW ALL</span></a>
<a class="button" data-filter=".design"><span>DESIGN</span></a>
<a class="button" data-filter=".development"><span>DEVELOPMENT</span></a>
<a class="button" data-filter=".marketing"><span>MARKETING</span></a>
<a class="button" data-filter=".seo"><span>SEO</span></a>
</div> <!-- end of button group -->
<div class="grid">
<div class="element-item development">
<a class="popup-with-move-anim" href="#project-1"><div class="element-item-overlay"><span>Online Banking</span></div><img src="images/project-1.jpg" alt="alternative"></a>
</div>
<div class="element-item development">
<a class="popup-with-move-anim" href="#project-2"><div class="element-item-overlay"><span>Classic Industry</span></div><img src="images/project-2.jpg" alt="alternative"></a>
</div>
<div class="element-item design development marketing">
<a class="popup-with-move-anim" href="#project-3"><div class="element-item-overlay"><span>BoomBap Audio</span></div><img src="images/project-3.jpg" alt="alternative"></a>
</div>
<div class="element-item design development marketing">
<a class="popup-with-move-anim" href="#project-4"><div class="element-item-overlay"><span>Van Moose</span></div><img src="images/project-4.jpg" alt="alternative"></a>
</div>
<div class="element-item design development marketing seo">
<a class="popup-with-move-anim" href="#project-5"><div class="element-item-overlay"><span>Joy Moments</span></div><img src="images/project-5.jpg" alt="alternative"></a>
</div>
<div class="element-item design marketing seo">
<a class="popup-with-move-anim" href="#project-6"><div class="element-item-overlay"><span>Spark Events</span></div><img src="images/project-6.jpg" alt="alternative"></a>
</div>
<div class="element-item design marketing">
<a class="popup-with-move-anim" href="#project-7"><div class="element-item-overlay"><span>Casual Wear</span></div><img src="images/project-7.jpg" alt="alternative"></a>
</div>
<div class="element-item design marketing">
<a class="popup-with-move-anim" href="#project-8"><div class="element-item-overlay"><span>Zazoo Apps</span></div><img src="images/project-8.jpg" alt="alternative"></a>
</div>
</div> <!-- end of grid -->
<!-- end of filter -->
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of container -->
</div> <!-- end of filter -->
<!-- end of projects -->
<!-- Project Lightboxes -->
<!-- Lightbox -->
<div id="project-1" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-1.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Online Banking</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-2" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-2.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Classic Industry</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-3" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-3.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>BoomBap Audio</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-4" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-4.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Van Moose</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-5" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-5.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Joy Moments</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-6" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-6.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Spark Events</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-7" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-7.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Casual Wear</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- Lightbox -->
<div id="project-8" class="lightbox-basic zoom-anim-dialog mfp-hide">
<div class="row">
<button title="Close (Esc)" type="button" class="mfp-close x-button">×</button>
<div class="col-lg-8">
<img class="img-fluid" src="images/project-8.jpg" alt="alternative">
</div> <!-- end of col -->
<div class="col-lg-4">
<h3>Zazoo Apps</h3>
<hr class="line-heading">
<h6>Strategy Development</h6>
<p>Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current needs</p>
<p>By offering the best professional services and quality products in the market. Don't hesitate and get in touch with us.</p>
<div class="testimonial-container">
<p class="testimonial-text">Need a solid foundation for your business growth plans? Aria will help you manage sales and meet your current requirements.</p>
<p class="testimonial-author">General Manager</p>
</div>
<a class="btn-solid-reg" href="#your-link">DETAILS</a> <a class="btn-outline-reg mfp-close as-button" href="#projects">BACK</a>
</div> <!-- end of col -->
</div> <!-- end of row -->
</div> <!-- end of lightbox-basic -->
<!-- end of lightbox -->
<!-- end of project lightboxes -->
<!-- Team -->
<div class="basic-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>Our Team Of Consultants</h2>
<p class="p-heading">We're only as strong and as knowledgeable as our team. So here are the men and women which help customers meet goals and grow companies</p>
</div> <!-- end of col -->
</div> <!-- end of row -->
<div class="row">
<div class="col-lg-12">
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/team-1.png" alt="alternative">
</div> <!-- end of image-wrapper -->
<p class="p-large">John Whitelong</p>
<p class="job-title">General Manager</p>
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/team-2.png" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Veronique Smith</p>
<p class="job-title">Business Developer</p>
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/team-3.png" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Chris Zimerman</p>
<p class="job-title">Online Marketer</p>
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-twitter fa-stack-1x"></i>
</a>
</span>
</span>
</div> <!-- end of team-member -->
<!-- end of team member -->
<!-- Team Member -->
<div class="team-member">
<div class="image-wrapper">
<img class="img-fluid" src="images/team-4.png" alt="alternative">
</div> <!-- end of image wrapper -->
<p class="p-large">Mary Villalonga</p>
<p class="job-title">Community Manager</p>
<span class="social-icons">
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>
<i class="fab fa-facebook-f fa-stack-1x"></i>
</a>
</span>
<span class="fa-stack">
<a href="#your-link">
<span class="hexagon"></span>