-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing-page-1.html
1697 lines (1363 loc) · 88.3 KB
/
landing-page-1.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, height=device-height, initial-scale=1">
<!--<base href="../" />-->
<title>Landing Page 1 - Ace Admin</title>
<!-- include common vendor stylesheets & fontawesome -->
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="node_modules/@fortawesome/fontawesome-free/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="node_modules/@fortawesome/fontawesome-free/css/regular.css">
<link rel="stylesheet" type="text/css" href="node_modules/@fortawesome/fontawesome-free/css/brands.css">
<link rel="stylesheet" type="text/css" href="node_modules/@fortawesome/fontawesome-free/css/solid.css">
<!-- include vendor stylesheets used in "Landing Page 1" page. see "/views//pages/partials/landing-page-1/@vendor-stylesheets.hbs" -->
<link rel="stylesheet" type="text/css" href="node_modules/aos/dist/aos.css">
<!-- include fonts -->
<link rel="stylesheet" type="text/css" href="dist/css/ace-font.css">
<!-- ace.css -->
<link rel="stylesheet" type="text/css" href="dist/css/ace.css">
<!-- favicon -->
<link rel="icon" type="image/png" href="assets/favicon.png" />
<!-- "Landing Page 1" page styles, specific to this page for demo only -->
<link rel="stylesheet" type="text/css" href="./views/pages/landing-page-1/@page-style.css">
<link rel="stylesheet" type="text/css" href="dist/css/ace-themes.css">
</head>
<body>
<div class="body-container">
<div class="pos-abs" id="scroll-down"></div>
<div class="pos-abs" id="scroll-up"></div>
<nav class="navbar navbar-expand-lg navbar-darkblue" id="navbar-dark">
<div class="navbar-inner">
<div class="container">
<button type="button" class="navbar-toggler btn btn-burger burger-times static collapsed d-flex d-lg-none ml-2" data-toggle="collapse" data-target="#navbarMenu1-dark" aria-controls="navbarMenu1-dark" aria-expanded="false" aria-label="Toggle navbar menu">
<span class="bars text-white"></span>
</button><!-- mobile navbar toggler button -->
<div class="navbar-intro justify-content-xl-between bgc-transparent">
<a class="navbar-brand text-white text-180" href="#">
<i class="fa fa-leaf text-105 text-green-l5 mr-1"></i>
<span>ACE</span>
<span class="text-70">Application</span>
</a><!-- /.navbar-brand -->
</div><!-- /.navbar-intro -->
<div class="navbar-menu collapse navbar-collapse navbar-backdrop " id="navbarMenu1-dark">
<div class="navbar-nav">
<ul class="nav nav-compact-3">
<li class="nav-item pos-rel dropdown dropdown-mega dropdown-hover">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-list-alt mr-2 d-lg-none"></i>
Mega
<i class="caret fa fa-angle-down d-none d-lg-block"></i>
<i class="caret fa fa-angle-left d-block d-lg-none"></i>
</a>
<div class="p-0 dropdown-menu dropdown-center dropdown-lg border-0 shadow radius-2 mt-1 mt-lg-3">
<div class="row mx-0">
<div class="bgc-white col-lg-6 col-12 p-2 p-lg-3 p-xl-4">
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-blue-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-edit text-160 text-blue mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
New Post
</a>
<p class="text-dark-tp4 pl-1">
Praesent commodo cursus...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-green-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-comments text-160 text-green mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Comments
</a>
<p class="text-dark-tp4 pl-1">
Donec id elit non mi...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-orange-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-star text-160 text-orange-d2 mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Favorites
</a>
<p class="text-dark-tp4 pl-1">
Commodo tortor mauri...
</p>
</div>
</div>
</div><!-- .col:mega links -->
<div class="bgc-white col-lg-6 col-12 p-2 p-lg-3 p-xl-4">
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-blue-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-globe text-160 text-blue mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Links
</a>
<p class="text-dark-tp4 pl-1">
Praesent commodo cursus...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-purple-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-copy text-160 text-purple mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Documents
</a>
<p class="text-dark-tp4 pl-1">
Donec id elit non mi...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-red-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-list text-160 text-danger mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Mega Menu
</a>
<p class="text-dark-tp4 pl-1">
Commodo tortor mauri...
</p>
</div>
</div>
</div><!-- .col:mega links -->
</div><!-- .row: mega -->
<div class="px-4 mx-0 order-first order-lg-last bgc-primary-l4 border-t-1 brc-secondary-l2">
<div class="py-3">
<button class="mx-2px btn px-25 py-2 text-100 btn-blue radius-round px-4 border-2">
Get Started Now
</button>
<div class="d-block d-md-inline-block mt-3 mt-md-0">
<span class="text-dark-tp3 ml-3">
or call us now to learn more
</span>
<b class="text-600">
111-222-333
</b>
</div>
</div>
</div><!-- .row:megamenu big buttons -->
</div>
</li>
<li class="nav-item dropdown mx-1px">
<a class="nav-link" href="#">
<i class="fa fa-magic mr-15"></i>
Features
</a>
</li>
<li class="nav-item dropdown mx-1px">
<a class="nav-link" href="#">
Contact
</a>
</li>
<li class="nav-item ml-xl-2">
<a class="d-none d-lg-block nav-link h-auto py-15 mt-1 bgc-black-tp8 bgc-h-black-tp7 text-white radius-1" href="#">
Special Offer
</a>
<a class="d-lg-none nav-link" href="#">
** Special Offer **
</a>
</li>
</ul><!-- /.navbar-nav menu -->
</div><!-- /.navbar-nav -->
</div><!-- /.navbar-menu.navbar-collapse -->
<button type="button" class="d-style btn btn-burger static collapsed mr-2 px-4 navbar-toggler d-flex d-lg-none" data-toggle="collapse" data-target="#navbarMenu2-dark" aria-controls="navbarMenu2-dark" aria-expanded="false" aria-label="Toggle navbar menu">
<i class="fa fa-caret-down d-collapsed text-80"></i>
<i class="fa fa-caret-up d-n-collapsed text-80"></i>
<i class="fa fa-user ml-2"></i>
</button><!-- mobile navbar toggler button -->
<div class="navbar-menu collapse navbar-collapse navbar-backdrop" id="navbarMenu2-dark">
<div class="navbar-nav">
<ul class="nav nav-compact">
<li class="nav-item dropdown px-lg-2 d-lg-flex flex-column justify-content-center">
<a class="d-none d-lg-block h-auto btn btn-outline-white btn-bold radius-round border-2 dropdown-toggle px-2 px-xl-3" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Login
</a>
<a class="d-lg-none nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-caret-right bgc-white text-blue radius-round py-2 px-3 mr-2"></i>
Login
</a>
<div style="width: 20rem;" data-display="static" class="dropdown-menu dropdown-menu-right overflow-hidden dropdown-animated animated-2 shadow radius-1 p-2 p-lg-0 border-0 mt-lg-n1 mr-lg-n2">
<!-- login dialog -->
<h4 class="text-120 mb-3 text-secondary-d3 px-3 mt-3 mb-2">Please enter your details</h4>
<hr class="border-dotted brc-default-l2" />
<form class="dropdown-clickable text-grey-d2">
<div class="dropdown-body my-25">
<div class="form-group mx-3">
<div class="d-flex align-items-center input-floating-label text-blue-m1 brc-blue-m2">
<input placeholder="Username" type="text" class="form-control pr-4 shadow-none" autocomplete="off" />
<i class="fa fa-user text-grey-m2 ml-n4"></i>
<label class="floating-label text-grey-l1 ml-n3">Username</label>
</div>
</div>
<div class="form-group mx-3">
<div class="d-flex align-items-center input-floating-label text-blue-m1 brc-blue-m2">
<input placeholder="Password" type="password" class="form-control pr-4 shadow-none" autocomplete="off" />
<i class="fa fa-key text-grey-m2 ml-n4"></i>
<label class="floating-label text-grey-l1 ml-n3">Password</label>
</div>
</div>
<div class="mx-3">
<label class="d-inline-block mt-2 text-secondary-d2">
<input type="checkbox" class="mr-1" />
Remember me
</label>
</div>
</div>
<div class="dropdown-footer text-center py-25 bgc-default-l4 border-t-1 brc-default-l2">
<button type="button" class="btn px-4 py-15 text-95 btn-blue" data-dismiss="dropdown">
Login
</button>
<button type="button" class="btn px-25 py-15 text-95 btn-outline-green btn-bgc-white">
Register
</button>
</div>
</form>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle px-lg-3" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="text-140 fa fa-search"></i>
<span class="d-lg-none ml-2">
Open Search
</span>
</a>
<div style="width: 20rem;" data-display="static" class="dropdown-menu dropdown-menu-right dropdown-animated animated-2 dropdown-caret radius-1 p-2 p-lg-0 border-0 mt-lg-n1 mr-lg-n2 shadow">
<form class="dropdown-clickable text-grey-d2">
<div class="dropdown-body my-25">
<div class="px-2 px-md-3">
<input type="text" class="form-control shadow-none m-0" placeholder="Enter Keywords to Search ..." />
</div>
</div>
<div class="dropdown-footer py-2 text-center pos-rel border-t-1 brc-secondary-l2">
<button type="button" class="btn px-4 btn-sm btn-primary" data-dismiss="dropdown">Find</button>
<button type="reset" class="btn btn-sm btn-outline-secondary">Clear</button>
</div>
</form>
</div>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
<i class="text-140 far fa-heart text-yellow-l3"></i>
<span class="d-lg-none ml-2 text-yellow-l3">
Bookmark
</span>
</a>
</li>
<li class="nav-item px-3 py-3">
<span class="text-white p-2 border-b-3 brc-white-tp5 bgc-h-white-tp9 radius-t-1">
<i class="fa fa-phone fa-flip-horizontal text-125 text-green-l4 mr-1"></i>
<span class="text-90 ml-1 ml-lg-0 d-lg-none d-xl-inline-block">
CALL NOW
</span>
<span class="ml-1 text-600 letter-spacing-1 d-lg-none d-xl-inline-block">
11-22-33
</span>
</span>
</li>
</ul>
</div>
</div><!-- .navbar-menu -->
</div><!-- /.container -->
</div><!-- /.navbar-inner -->
</nav>
<nav class="navbar navbar-expand-lg navbar-white d-none" id="navbar-light">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-burger burger-times static navbar-toggler collapsed d-flex d-lg-none ml-2" data-toggle="collapse" data-target="#navbarMenu1-light" aria-controls="navbarMenu1-light" aria-expanded="false" aria-label="Toggle navbar menu">
<span class="bars text-dark-tp3"></span>
</button><!-- mobile navbar toggler button -->
<div class="navbar-intro justify-content-xl-between border-0 w-auto">
<a class="navbar-brand text-dark-tp3 text-180" href="#">
<i class="fa fa-leaf text-105 text-success-m2 mr-1"></i>
<span>ACE</span>
<span class="text-70">Application</span>
</a><!-- /.navbar-brand -->
</div><!-- /.navbar-intro -->
<div class="navbar-menu collapse navbar-collapse navbar-backdrop " id="navbarMenu1-light">
<div class="navbar-nav">
<ul class="nav nav-compact-3">
<li class="nav-item dropdown dropdown-mega pos-rel dropdown-hover">
<a class="btn btn-white btn-text-dark btn-h-default btn-a-default border-0 dropdown-toggle" href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-list-alt mr-2 d-lg-none"></i>
Mega
<i class="caret fa fa-angle-down d-none d-lg-block"></i>
<i class="caret fa fa-angle-left d-block d-lg-none"></i>
</a>
<div class="p-0 dropdown-menu dropdown-center dropdown-lg border-0 shadow border-t-2 brc-primary-m2 radius-b-2 mt-1 mt-lg-3">
<div class="row mx-0">
<div class="bgc-white col-lg-6 col-12 p-2 p-lg-3 p-xl-4">
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-blue-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-edit text-160 text-blue mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
New Post
</a>
<p class="text-dark-tp4 pl-1">
Praesent commodo cursus...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-green-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-comments text-160 text-green mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Comments
</a>
<p class="text-dark-tp4 pl-1">
Donec id elit non mi...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-orange-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-star text-160 text-orange-d2 mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Favorites
</a>
<p class="text-dark-tp4 pl-1">
Commodo tortor mauri...
</p>
</div>
</div>
</div><!-- .col:mega links -->
<div class="bgc-white col-lg-6 col-12 p-2 p-lg-3 p-xl-4">
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-blue-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-globe text-160 text-blue mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Links
</a>
<p class="text-dark-tp4 pl-1">
Praesent commodo cursus...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-purple-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="far fa-copy text-160 text-purple mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Documents
</a>
<p class="text-dark-tp4 pl-1">
Donec id elit non mi...
</p>
</div>
</div>
<div class="d-flex align-items-center">
<div class="pos-rel">
<i class="bgc-red-l3 w-4 h-4 radius-round position-r mr-2 mt-25"></i>
<i class="fa fa-list text-160 text-danger mr-2 mb-3 w-6 h-6 radius-round text-center pt-1 pos-rel"></i>
</div>
<div>
<a href="#" class="d-block py-1px px-1 radius-1 no-underline text-dark-tp3 text-600 bgc-h-primary-l2 text-95">
Mega Menu
</a>
<p class="text-dark-tp4 pl-1">
Commodo tortor mauri...
</p>
</div>
</div>
</div><!-- .col:mega links -->
</div><!-- .row: mega -->
<div class="px-4 mx-0 order-first order-lg-last bgc-primary-l4 border-t-1 brc-secondary-l2">
<div class="py-3">
<button class="mx-2px btn px-25 py-2 text-100 btn-blue radius-round px-4 border-2">
Get Started Now
</button>
<div class="d-block d-md-inline-block mt-3 mt-md-0">
<span class="text-dark-tp3 ml-3">
or call us now to learn more
</span>
<b class="text-600">
111-222-333
</b>
</div>
</div>
</div><!-- .row:megamenu big buttons -->
</div>
</li>
<li class="nav-item dropdown mx-1px">
<a class="btn btn-white btn-text-dark btn-h-default btn-a-default border-0" href="#">
<i class="fa fa-magic mr-15 opacity-1"></i> Features
</a>
</li>
<li class="nav-item dropdown mx-1px">
<a class="btn btn-white btn-h-default btn-a-default border-0" href="#">
Contact
</a>
</li>
<li class="nav-item ml-xl-2">
<a class="btn btn-lighter-orange text-orange-d3 border-1 d-none d-lg-inline-flex" href="#">
*Special Offer*
</a>
<a class="btn btn-lighter-orange text-orange-d3 d-lg-none" href="#">
*Special Offer*
</a>
</li>
</ul><!-- /.navbar-nav menu -->
</div><!-- /.navbar-nav -->
</div><!-- /.navbar-menu.navbar-collapse -->
<button type="button" class="d-style mr-2 px-4 navbar-toggler btn btn-burger static collapsed d-flex d-lg-none" data-toggle="collapse" data-target="#navbarMenu2-light" aria-controls="navbarMenu2-light" aria-expanded="false" aria-label="Toggle navbar menu">
<i class="fa fa-caret-down d-collapsed text-grey-m1 text-80"></i>
<i class="fa fa-caret-up d-n-collapsed text-grey-m1 text-80"></i>
<i class="fa fa-user text-orange-d1 ml-2"></i>
</button><!-- mobile navbar toggler button -->
<div class="navbar-menu collapse navbar-collapse navbar-backdrop " id="navbarMenu2-light">
<div class="navbar-nav">
<ul class="nav">
<li class="nav-item dropdown px-lg-2 d-lg-flex flex-column justify-content-center">
<a class="d-none d-lg-block h-auto btn btn-outline-blue btn-bold radius-round border-2 dropdown-toggle px-2 px-xl-3" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Login
</a>
<a class="d-lg-none nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-caret-right bgc-blue radius-round text-white py-2 px-3 mr-2"></i>
Login
</a>
<div style="width: 20rem;" data-display="static" class="dropdown-menu dropdown-menu-right overflow-hidden dropdown-animated animated-2 shadow radius-1 p-0 brc-primary-m3 mt-lg-n1 mr-lg-n2">
<!-- login dialog -->
<h4 class="text-120 mb-3 text-secondary-d3 px-3 mt-3 mb-2">Please enter your details</h4>
<hr class="border-dotted brc-default-l2" />
<form class="dropdown-clickable text-grey-d2">
<div class="dropdown-body my-25">
<div class="form-group mx-3">
<div class="d-flex align-items-center input-floating-label text-blue-m1 brc-blue-m2">
<input placeholder="Username" type="text" class="form-control pr-4 shadow-none" autocomplete="off" />
<i class="fa fa-user text-grey-m2 ml-n4"></i>
<label class="floating-label text-grey-l1 ml-n3">Username</label>
</div>
</div>
<div class="form-group mx-3">
<div class="d-flex align-items-center input-floating-label text-blue-m1 brc-blue-m2">
<input placeholder="Password" type="password" class="form-control pr-4 shadow-none" autocomplete="off" />
<i class="fa fa-key text-grey-m2 ml-n4"></i>
<label class="floating-label text-grey-l1 ml-n3">Password</label>
</div>
</div>
<div class="mx-3">
<label class="d-inline-block mt-2 text-secondary-d2">
<input type="checkbox" class="mr-1" />
Remember me
</label>
</div>
</div>
<div class="dropdown-footer text-center py-25 bgc-default-l4 border-t-1 brc-default-l2">
<button type="button" class="btn px-4 py-15 text-95 btn-blue" data-dismiss="dropdown">
Login
</button>
<button type="button" class="btn px-25 py-15 text-95 btn-outline-green btn-bgc-white">
Register
</button>
</div>
</form>
</div>
</li>
<li class="nav-item dropdown border-l-1 brc-secondary-l2">
<a href="#" class="nav-link dropdown-toggle px-lg-3" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="text-140 fa fa-search text-grey-m1"></i>
<span class="d-lg-none ml-2 text-blue-d1">Open Search</span>
</a>
<div style="width: 20rem;" data-display="static" class="dropdown-menu dropdown-menu-right dropdown-caret dropdown-animated animated-2 shadow radius-1 p-0 border-1 brc-primary-m3 mt-lg-n1 mr-lg-n2">
<form class="dropdown-clickable text-grey-d2">
<div class="dropdown-body my-25">
<div class="px-2 px-md-3">
<input type="text" class="form-control shadow-none m-0" placeholder="Enter Keywords to Search ..." />
</div>
</div>
<div class="dropdown-footer py-2 text-center pos-rel border-t-1 brc-secondary-l2">
<button type="button" class="btn px-4 btn-sm btn-primary" data-dismiss="dropdown">Find</button>
<button type="reset" class="btn btn-sm btn-outline-secondary">Clear</button>
</div>
</form>
</div>
</li>
<li class="nav-item border-l-1 brc-secondary-l2">
<a href="#" class="nav-link">
<i class="text-140 far fa-heart text-purple-m1"></i>
<span class="d-lg-none ml-2 text-purple-d1">
Bookmark
</span>
</a>
</li>
<li class="nav-item px-3 border-l-1 brc-secondary-l2">
<span class="d-flex h-100 align-items-center text-grey-d1 py-3">
<i class="fa fa-phone fa-flip-horizontal text-125 text-success-m1 mr-1"></i>
<span class="text-90 ml-1 ml-lg-0 d-lg-none d-xl-inline-block">
CALL NOW
</span>
<span class="ml-1 text-600 text-grey-d3 letter-spacing-1 d-lg-none d-xl-inline-block">
11-22-33
</span>
</span>
</li>
</ul>
</div>
</div><!-- .navbar-menu -->
</div><!-- /.container -->
</div><!-- /.navbar-inner -->
</nav>
<div class="main-container bgc-white">
<div role="main" class="main-content">
<div class="page-content p-0">
<!-- the page intro for dark theme -->
<div id="page-intro-dark" class="page-intro pos-rel navbar-darkblue py-2 pt-xl-4 py-xl-5 text-white">
<!-- some random circles -->
<div class="d-none d-lg-block">
<div class="pos-abs bgc-white radius-round" style="opacity: 0.16;width:4px; height:4px; top:30%; left:85%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.2;width:6px; height:6px; top:91%; left:15%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.3;width:8px; height:8px; top:1%; left:87%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.24;width:6px; height:6px; top:0%; left:70%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.17;width:16px; height:16px; top:79%; left:20%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.35;width:6px; height:6px; top:10%; left:0%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.17;width:14px; height:14px; top:16%; left:87%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.15;width:17px; height:17px; top:82%; left:71%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.2;width:12px; height:12px; top:17%; left:92%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.19;width:12px; height:12px; top:44%; left:64%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.27;width:11px; height:11px; top:43%; left:89%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.18;width:9px; height:9px; top:55%; left:25%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.38;width:10px; height:10px; top:5%; left:71%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.11;width:9px; height:9px; top:62%; left:22%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.39;width:18px; height:18px; top:47%; left:3%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.18;width:6px; height:6px; top:12%; left:20%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.34;width:10px; height:10px; top:97%; left:95%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.33;width:7px; height:7px; top:74%; left:87%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.17;width:7px; height:7px; top:84%; left:72%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.14;width:9px; height:9px; top:7%; left:23%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.39;width:15px; height:15px; top:94%; left:91%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.28;width:14px; height:14px; top:60%; left:83%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.3;width:15px; height:15px; top:65%; left:66%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.1;width:7px; height:7px; top:3%; left:95%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.39;width:10px; height:10px; top:20%; left:53%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.14;width:13px; height:13px; top:13%; left:77%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.38;width:13px; height:13px; top:76%; left:13%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.19;width:16px; height:16px; top:9%; left:42%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.21;width:16px; height:16px; top:37%; left:69%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.11;width:4px; height:4px; top:21%; left:95%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.16;width:10px; height:10px; top:76%; left:74%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.16;width:17px; height:17px; top:9%; left:88%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.21;width:15px; height:15px; top:79%; left:131%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.37;width:14px; height:14px; top:94%; left:8%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.2;width:9px; height:9px; top:65%; left:87%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.1;width:16px; height:16px; top:4%; left:93%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.32;width:18px; height:18px; top:36%; left:81%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.35;width:7px; height:7px; top:0%; left:21%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.22;width:11px; height:11px; top:69%; left:82%;"></div>
<div class="pos-abs bgc-white radius-round" style="opacity: 0.32;width:6px; height:6px; top:68%; left:79%;"></div>
</div>
<div class="row container container-plus mx-auto mt-3 mb-5">
<div class="col-12 col-md-7 d-flex flex-column justify-content-center text-center" data-aos="fade-right" data-aos-delay="100">
<h1 class="align-self-center">
<span class="text-110 text-yellow-l3">
Our tech
</span>
<span class="text-90">
makes your life easier...
</span>
</h1>
<h4 class="my-3 text-white text-120">
Start using this amazing app and see instant results!
</h4>
<h6 class="my-3 text-105 px-3 radius-3px">
Or put a slideshow here ...
</h6>
<div class="mt-3 row justify-content-center align-items-center">
<div class="col-12 col-sm-6 col-lg-5 col-xl-4 pos-rel">
<i class="fa fa-hand-point-right fa-2x position-l ml-n4 mt-2"></i>
<select autocomplete="off" class="no-border theme-select form-control ace-select border-1 brc-white-tp9 shadow-none bgc-white-tp10 bgc-h-black-tp10 text-white text-600 h-auto">
<option value="" class="text-600">Change Theme/Color</option>
<option value="" class="text-secondary-l3">_______________________</option>
<option value="darkblue" class="text-primary-d1 text-600">Blue</option>
<option value="teal" class="text-green-d1 text-600">Green</option>
<option value="purple" class="text-purple-d1 text-600">Purple</option>
<option value="" class="text-secondary-l3">_______________________</option>
<option value="light" class="bgc-primary-l3">Light</option>
<option value="white">White</option>
</select>
</div>
</div>
<div class="text-center mt-3">
<!-- sample button with custom background -->
<button type="button" class="btn btn-info brc-white-tp5 py-2 text-110 px-475 mx-15 mb-1 mb-lg-0">
<span class="position-tl w-102 h-102 m-n1px bgc-success-tp4 opacity-5"></span>
<span class="pos-rel">
Action 1
</span>
</button>
<button type="button" class="btn btn-outline-white brc-white-tp3 py-2 text-110 px-475 mx-15">
Action 2
</button>
</div>
</div><!-- /.col -->
<div class="col-12 col-md-5 order-first order-md-last mb-4 mb-md-0" data-aos="fade-left">
<img alt="Product Image" src="assets/image/landing/preview.png" class="w-90 1mx-auto" />
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /#page-intro-dark -->
<!-- the page intro for light theme -->
<div id="page-intro-light" class="d-none page-intro pos-rel bgc-primary-l4 py-2 pt-xl-4 py-xl-5 overflow-hidden">
<!-- some random shapes -->
<div class="d-none d-lg-block">
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.25;width:17px; height:17px; top:89%; left:90%;"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.36;width:15px; height:15px; top:20%; left:61%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.38;width:10px; height:10px; top:78%; left:93%;"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.2;width:12px; height:12px; top:13%; left:64%;"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.37;width:18px; height:18px; top:27%; left:88%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.31;width:15px; height:15px; top:32%; left:56%;"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.34;width:16px; height:16px; top:35%; left:90%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.36;width:17px; height:17px; top:76%; left:32%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.3;width:14px; height:14px; top:16%; left:91%;"></div>
<div class="pos-abs bgc-green radius-2px" style="opacity: 0.25;width:17px; height:17px; top:67%; left:96%; transform: rotate(355deg)"></div>
<div class="pos-abs bgc-primary radius-2px" style="opacity: 0.39;width:19px; height:19px; top:63%; left:58%; transform: rotate(325deg)"></div>
<div class="pos-abs bgc-orange radius-2px" style="opacity: 0.26;width:23px; height:23px; top:49%; left:58%; transform: rotate(280deg)"></div>
<div class="pos-abs bgc-primary radius-2px" style="opacity: 0.27;width:12px; height:12px; top:57%; left:92%; transform: rotate(354deg)"></div>
<div class="pos-abs brc-primary shape-triangle radius-1" style="opacity: 0.39;border-width:0 17px 27px 17px; top:14%; left:63%; transform: rotate(130deg)"></div>
<div class="pos-abs brc-green shape-triangle radius-1" style="opacity: 0.22;border-width:0 12px 19px 12px; top:15%; left:97%; transform: rotate(346deg)"></div>
<div class="pos-abs brc-orange shape-triangle radius-1" style="opacity: 0.35;border-width:0 19px 30px 19px; top:69%; left:82%; transform: rotate(319deg)"></div>
<div class="pos-abs brc-green shape-triangle radius-1" style="opacity: 0.31;border-width:0 19px 30px 19px; top:6%; left:29%; transform: rotate(59deg);"></div>
<div class="pos-abs brc-orange shape-triangle radius-1" style="opacity: 0.21;border-width:0 14px 22px 14px; top:57%; left:95%; transform: rotate(333deg)"></div>
<div class="pos-abs brc-primary shape-triangle radius-1" style="opacity: 0.24;border-width:0 16px 25px 16px; top:46%; left:50%; transform: rotate(33deg)"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.29;width:18px; height:18px; top:11%; left:78%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.34;width:11px; height:11px; top:10%; left:73%;"></div>
<div class="pos-abs bgc-orange radius-round" style="opacity: 0.31;width:17px; height:17px; top:39%; left:92%;"></div>
<div class="pos-abs bgc-orange radius-2px" style="opacity: 0.38;width:19px; height:19px; top:79%; left:14%; transform: rotate(339deg)"></div>
<div class="pos-abs bgc-primary radius-round" style="opacity: 0.21;width:14px; height:14px; top:85%; left:14%;"></div>
<div class="pos-abs bgc-green radius-round" style="opacity: 0.27;width:11px; height:11px; top:44%; left:15%;"></div>
<div class="pos-abs bgc-primary radius-2px" style="opacity: 0.25;width:13px; height:13px; top:32%; left:13%; transform: rotate(331deg)"></div>
</div>
<div class="row container container-plus mx-auto mt-4 mb-5">
<div class="col-12 col-md-7 d-flex flex-column justify-content-center text-center" data-aos="fade-right" data-aos-delay="100">
<h1 class="text-dark-m2 pb-2 align-self-center">
<span class="text-blue-d3">
Our tech
</span>
<span class="text-90">
makes your life easier...
</span>
</h1>
<h4 class="my-3 text-dark-tp2">
Start using this amazing app and see instant results!
</h4>
<h6 class="my-3 bgc-blue-d2 text-120 text-white align-self-center p-2 radius-3px">
Or put a slideshow here ...
</h6>
<div class="mt-1 mb-3">
<div class="text-uppercase text-600 text-95 text-dark-m3 mb-1">
Get it from
</div>
<a href="#" class="no-underline">
<img alt="Google Play Button" src="assets/image/landing/google-play-badge.png" width="180" />
</a>
<a href="#" class="no-underline">
<img alt="Apple Store Button" src="assets/image/landing/app-store-badge.svg" width="145" />
</a>
</div>
<div class="mt-0 form-group">
<select autocomplete="off" class="theme-select col-12 col-sm-6 col-lg-5 col-xl-4 mx-auto form-control ace-select border-1 bgc-white brc-info-m1 text-dark-m3 h-auto py-1">
<option value="" class="text-600">Change Theme/Color</option>
<option value="" class="text-secondary-l3">_______________________</option>
<option value="darkblue" class="text-primary-d1 text-600">Blue</option>
<option value="teal" class="text-green-d1 text-600">Green</option>
<option value="purple" class="text-purple-d1 text-600">Purple</option>
<option value="" class="text-secondary-l3">_______________________</option>
<option value="light" class="bgc-primary-l3">Light</option>
<option value="white">White</option>
</select>
</div>
</div><!-- /.col -->
<div class="col-12 col-md-5 order-first order-md-last mb-4 mb-md-0" data-aos="fade-left">
<img alt="Product Image" src="assets/image/landing/preview.png" class="w-90 1mx-auto" />
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /#page-intro-light -->
<div class="bgc-white">
<!-- or use a different color -->
<div class="container container-plus pos-rel mt-n5 text-center py-2">
<div class="row mt-n4">
<div class="col-12 col-lg-10 col-xl-8 mx-auto">
<div class="row my-4">
<!-- features -->
<div class="col-12 col-md-4 mb-4 mb-md-0" data-aos="fade-up" data-aos-delay="300">
<div class="feature-item radius-2 bgc-white shadow-1 p-4 h-100">
<div class="d-inline-block pos-rel text-center py-2 px-3 text-150">
<!-- the lines beneath icon -->
<div class="rotate-n45 brc-purple-m4 border-t-2 w-75 position-tl mt-35 mr-1"></div>
<div class="rotate-n45 brc-purple-m4 border-t-3 w-90 position-br mr-1 mb-425"></div>
<div class="rotate-n45 brc-purple-m4 border-t-2 w-90 position-bl mb-4 ml-35"></div>
<i class="fa fa-rocket fa-2x text-purple-d1 pos-rel"></i>
</div>
<h3 class="text-secondary-d3 text-160 my-3">
Speed
</h3>
<p class="text-dark-m3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit...
</p>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0" data-aos="fade-up" data-aos-delay="450">
<div class="feature-item radius-2 bgc-white shadow-1 p-4 h-100">
<div class="d-inline-block pos-rel text-center p-2 text-150">
<!-- the lines beneath icon -->
<div class="brc-blue-m4 border-t-2 w-75 position-tl mt-3 ml-n2"></div>
<div class="brc-blue-m4 border-t-3 w-90 position-lc ml-n1 mt-n2"></div>
<div class="brc-blue-m4 border-t-2 w-90 position-bl mb-4 ml-n3"></div>
<i class="fa fa-running fa-2x text-blue-d1 pos-rel"></i>
</div>
<h3 class="text-secondary-d3 text-160 my-3">
Flexibility
</h3>
<p class="text-dark-m3">
Praesent commodo cursus magna, vel scelerisque nisl consectetur...
</p>
</div>
</div>
<div class="col-12 col-md-4 mb-4 mb-md-0" data-aos="fade-up" data-aos-delay="600">
<div class="feature-item radius-2 bgc-white shadow-1 p-4 h-100">
<div class="d-inline-block text-center p-2 text-150 pos-rel">
<!-- the circles beneath icon -->
<div class="brc-orange-m4 border-2 w-3 h-3 radius-round position-tl mt-2 ml-n1"></div>
<div class="brc-orange-m4 border-2 w-2 h-2 radius-round position-tr mt-n1 ml-n1"></div>
<div class="brc-orange-m4 border-2 w-4 h-4 radius-round position-br mb-2"></div>
<i class="fa fa-key fa-2x text-orange pos-rel"></i>
</div>
<h3 class="text-secondary-d3 text-160 my-3">
Security
</h3>
<p class="text-dark-m3">
Nulla vitae elit libero, a pharetra augue mollis interdum...
</p>
</div>
</div>
</div><!-- /.row -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</div>
<div class="bgc-white">
<!-- or use a different color -->
<div class="container container-plus py-3 pos-rel">
<!-- the large circle on right the green square on left -->
<div data-aos="zoom-in" class="d-none d-lg-block position-br bgc-purple-l3 mb-5 mr-5 opacity-1 radius-100" style="width: 180px; max-width: 80vw; height: 180px; max-height: 80vw;"></div>
<div data-aos="zoom-in" class="d-none d-lg-block position-lc bgc-success-l3 opacity-1 ml-5 mt-5 radius-1" style="width: 100px; height: 100px;"></div>
<div class="row pt-45 mt-1 mt-lg-5">
<div class="col-12 col-lg-10 col-xl-8 mx-auto">
<div class="d-flex flex-column align-items-center flex-md-row align-items-md-start">
<div class="radius-2 mt-1 mr-md-5 pos-rel" data-aos="fade">
<!-- the small squares -->
<div class="position-tl bgc-grey-l3 mt-n45 ml-n45 radius-1" style="width: 100px; height: 100px;"></div>
<div class="position-br bgc-brown-l3 mb-n45 mr-n45 radius-1" style="width: 110px; height: 110px;"></div>
<div class="overflow-hidden radius-1 pos-rel border-1 p-2px brc-secondary-l2 bgc-white">
<img alt="Do More" src="assets/image/landing/do-more.jpg" width="220" />
</div>
</div>
<div class="flex-grow-1 text-dark-tp3 mt-4 mt-md-0 ml-md-2">
<h3 class="text-primary-d2 my-4 text-center text-md-left" data-aos="fade-up">
Increase your productivity with our app
</h3>
<div data-aos="fade-up">
<p>
Justo odio, dapibus ac facilisis in, egestas eget quam.
</p>
<p>
Donec id elit non mi porta gravida at eget metus.
</p>
<p>
Onec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo.
</p>
</div>
<p class="mt-md-5" data-aos="fade-left">
<a href="#" class="mt-3 mt-md-4 btn btn-outline-default btn-bold btn-bgc-white">
Read More
</a>
</p>
</div>
</div>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</div>
<div class="bgc-white mt-4 mt-lg-5">
<div class="container container-plus py-2 py-lg-4">
<div class="row">
<div class="col-12 col-lg-10 col-xl-8 mx-auto">