-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1211 lines (1187 loc) · 48.5 KB
/
Copy pathindex.html
File metadata and controls
1211 lines (1187 loc) · 48.5 KB
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" />
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fusion HTML5 Tailwind Template</title>
<link rel="stylesheet" href="assets/css/tiny-slider.css" />
<link rel="stylesheet" href="assets/css/lineicons.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- Header Section Start -->
<header class="header bg-white w-full top-0 left-0 z-20">
<div class="container mx-auto px-3 relative">
<div class="flex items-center justify-between">
<div class="logo px-3 py-6 lg:py-3">
<a href="index.html">
<img src="assets/images/logo.png" alt="Fusion" />
</a>
</div>
<button class="focus-visible:ring-none menu-btn block lg:hidden">
<span
class="relative transition duration-200 w-8 h-0.5 bg-gray-700 block my-[6px]"
></span>
<span
class="relative transition duration-200 w-8 h-0.5 bg-gray-700 block my-[6px]"
></span>
<span
class="relative transition duration-200 w-8 h-0.5 bg-gray-700 block my-[6px]"
></span>
</button>
<nav
class="nav-box w-64 lg:w-full px-6 lg:px-3 absolute right-0 top-full bg-white hidden lg:block lg:static shadow-lg lg:shadow-none rounded lg:rounded-none py-6"
>
<ul class="lg:flex justify-end">
<li>
<a
href="#home"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Home</a
>
</li>
<li>
<a
href="#services"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Services</a
>
</li>
<li>
<a
href="#features"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Features</a
>
</li>
<li>
<a
href="#team"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Team</a
>
</li>
<li>
<a
href="#pricing"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Pricing</a
>
</li>
<li>
<a
href="#contact"
class="text-gray-600 text-md hover:text-red-600 block py-2 lg:py-0 lg:ml-10"
>Contact</a
>
</li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Header Section End -->
<!-- Hero Section Start -->
<section
id="home"
class="hero-section bg-center bg-cover bg-no-repeat"
style="background-image: url('assets/images/hero-area.svg')"
>
<div class="container mx-auto px-3">
<div class="flex flex-wrap items-center">
<div class="px-3 w-full md:w-10/12 lg:w-1/2">
<div class="pt-20 pb-20 lg:mb-16">
<h1
class="text-[34px] sm:text-[40px] font-bold text-black mb-8 leading-snug"
>
App, Business & SaaS Landing Page Template
</h1>
<p class="text-base leading-normal text-gray-400 mb-10">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rem
repellendus quasi fuga nesciunt dolorum nulla magnam veniam
sapiente, fugiat! fuga nesciunt dolorum nulla magnam veniam
sapiente, fugiat!
</p>
<ul class="flex flex-wrap">
<li class="mr-4 py-2">
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white hover:text-red-500 hover:bg-white"
>
Download Now
</a>
</li>
<li class="mr-4 py-2">
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase text-red-500 border-red-500 border bg-white hover:bg-red-500 hover:text-white"
>
Learn More
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-3 lg:w-1/2">
<div class="lg:py-10">
<img src="assets/images/intro-mobile.png" alt="" class="w-full" />
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Service Section Start -->
<section id="services" class="services-section py-20">
<div class="container mx-auto px-3">
<div class="w-full px-3">
<div class="text-center mb-12">
<h2 class="text-3xl text-gray-800 font-bold">Our Services</h2>
<span class="w-16 h-0.5 bg-red-500 inline-block"></span>
</div>
</div>
<div class="row flex flex-wrap justify-center">
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-cog"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
EASY TO USED
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-stats-up"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
AWESOME DESIGN
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-users"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
EASY TO CUSTOMIZE
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-layers"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
UI/UX DESIGN
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-mobile"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
APP DEVELOPMENT
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
<div class="px-3 w-full sm:w-3/4 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-6 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="mx-auto mb-6 w-20 h-20 rounded-full border border-gray-100 flex items-center justify-center text-red-500 text-3xl bg-white transition duration-200 group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-rocket"></i>
</div>
<h3 class="text-md uppercase mb-4 font-semibold text-gray-800">
USER FRIENDLY INTERFACE
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Ut maximus enim dolor. Aenean auctor risus eget tincidunt
lobortis. Donec tincidunt bibendum gravida.
</p>
</div>
</div>
<!-- End Single Service -->
</div>
<!-- End Row -->
</div>
</section>
<!-- Service Section End -->
<!-- About Section Start -->
<section class="about-section bg-gray-50 py-20">
<div class="container mx-auto px-3">
<div class="flex flex-wrap items-center">
<div class="px-3 w-full lg:w-6/12">
<span class="text-sm text-gray-400 mb-4 block"
>Manage Statistics</span
>
<h2 class="text-3xl text-gray-800 font-bold mb-8">
Detailed Statistics of your Company
</h2>
<p class="text-sm text-gray-400 mb-8 leading-relaxed">
Praesent imperdiet, tellus et euismod euismod, risus lorem euismod
erat, at finibus neque odio quis metus. Donec vulputate arcu quam.
Morbi quis tincidunt ligula. Sed rutrum tincidunt pretium. Mauris
auctor, purus a pulvinar fermentum, odio dui vehicula lorem, nec
pharetra justo risus quis mi. Ut ac ex sagittis, viverra nisl vel,
rhoncus odio.
</p>
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white hover:bg-white hover:text-red-500"
>
Read More
</a>
</div>
<div class="px-3 w-full lg:w-6/12">
<div class="text-center mt-12 lg:mt-0">
<img src="assets/images/about-image.png" alt="about image" />
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Features Section Start -->
<section id="features" class="features-section py-20">
<div class="container mx-auto px-3">
<div class="w-full px-3">
<div class="text-center mb-12">
<h2 class="text-3xl text-gray-800 font-bold">Awesome Features</h2>
<span class="w-16 h-0.5 bg-red-500 inline-block"></span>
</div>
</div>
<div class="flex flex-wrap items-center">
<div class="px-3 w-full md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded-md shadow-md p-4 flex flex-row-reverse md:flex-row mb-6 hover:shadow-lg"
>
<div class="w-full md:text-right">
<h3 class="text-md mb-2 font-semibold text-gray-800">
Tailwind Based
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-rocket"></i>
</div>
</div>
<div
class="bg-white rounded-md shadow-md p-4 flex flex-row-reverse md:flex-row mb-6 hover:shadow-lg"
>
<div class="w-full md:text-right">
<h3 class="text-md mb-2 font-semibold text-gray-800">
Fully Responsive
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-laptop-phone"></i>
</div>
</div>
<div
class="bg-white rounded-md shadow-md p-4 flex flex-row-reverse md:flex-row mb-6 hover:shadow-lg"
>
<div class="w-full md:text-right">
<h3 class="text-md mb-2 font-semibold text-gray-800">
HTML5, CSS3 & SASS
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-cog"></i>
</div>
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full lg:w-1/3 order-last lg:order-2">
<div class="text-center">
<img src="assets/images/intro-mobile-1.png" alt="" />
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full md:w-1/2 lg:w-1/3 lg:order-3">
<div
class="bg-white rounded-md shadow-md p-4 flex mb-6 hover:shadow-lg"
>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-leaf"></i>
</div>
<div class="w-full">
<h3 class="text-md mb-2 font-semibold text-gray-800">
Modern Design
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
<div
class="bg-white rounded-md shadow-md p-4 flex mb-6 hover:shadow-lg"
>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-layers"></i>
</div>
<div class="w-full">
<h3 class="text-md mb-2 font-semibold text-gray-800">
Multi-purpose Template
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
<div
class="bg-white rounded-md shadow-md p-4 flex mb-6 hover:shadow-lg"
>
<div
class="w-20 max-w-full px-3 text-center text-red-500 text-3xl"
>
<i class="lni lni-leaf"></i>
</div>
<div class="w-full">
<h3 class="text-md mb-2 font-semibold text-gray-800">
Working Contact Form
</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<!-- End Col -->
</div>
</div>
</section>
<!-- Features Section End -->
<!-- Team Section Start -->
<section id="team" class="team-section bg-gray-50 py-20">
<div class="container mx-auto px-3">
<div class="w-full px-3">
<div class="text-center mb-12">
<h2 class="text-3xl text-gray-800 font-bold">Meet our team</h2>
<span class="w-16 h-0.5 bg-red-500 inline-block"></span>
</div>
</div>
<div class="flex flex-wrap">
<div class="px-3 w-full md:w-1/2">
<div
class="bg-white sm:flex md:block lg:flex shadow-md items-center transiton duration-200 mb-6 hover:shadow-lg"
>
<div class="max-w-full">
<img
src="assets/images/team/team-01.png"
alt="team image"
class="w-full h-full object-cover"
/>
</div>
<div class="w-full px-4 py-3 xl:px-8">
<h3 class="text-md uppercase mb-1 font-semibold text-gray-800">
David Smith
</h3>
<p class="text-sm text-gray-600 mb-4">Frontend Developer</p>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod
eos id officiis hic tenetur.
</p>
<ul class="flex pt-3">
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-indigo-700 text-lg"
>
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-blue-400 text-lg"
>
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-red-500 text-lg"
>
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- End Single Team -->
</div>
<!-- End Col -->
<div class="px-3 w-full md:w-1/2">
<div
class="bg-white sm:flex md:block lg:flex shadow-md items-center transiton duration-200 mb-6 hover:shadow-lg"
>
<div class="max-w-full">
<img
src="assets/images/team/team-02.png"
alt="team image"
class="w-full h-full object-cover"
/>
</div>
<div class="w-full px-4 py-3 xl:px-8">
<h3 class="text-md uppercase mb-1 font-semibold text-gray-800">
ERIC PETERSON
</h3>
<p class="text-sm text-gray-600 mb-4">Product Developer</p>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod
eos id officiis hic tenetur.
</p>
<ul class="flex pt-3">
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-indigo-700 text-lg"
>
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-blue-400 text-lg"
>
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-red-500 text-lg"
>
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- End Single Team -->
</div>
<!-- End Col -->
<div class="px-3 w-full md:w-1/2">
<div
class="bg-white sm:flex md:block lg:flex shadow-md items-center transiton duration-200 mb-6 hover:shadow-lg"
>
<div class="max-w-full">
<img
src="assets/images/team/team-03.png"
alt="team image"
class="w-full h-full object-cover"
/>
</div>
<div class="w-full px-4 py-3 xl:px-8">
<h3 class="text-md uppercase mb-1 font-semibold text-gray-800">
DURWIN BABB
</h3>
<p class="text-sm text-gray-600 mb-4">Backend Developer</p>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod
eos id officiis hic tenetur.
</p>
<ul class="flex pt-3">
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-indigo-700 text-lg"
>
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-blue-400 text-lg"
>
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-red-500 text-lg"
>
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- End Single Team -->
</div>
<!-- End Col -->
<div class="px-3 w-full md:w-1/2">
<div
class="bg-white sm:flex md:block lg:flex shadow-md items-center transiton duration-200 mb-6 hover:shadow-lg"
>
<div class="max-w-full">
<img
src="assets/images/team/team-04.png"
alt="team image"
class="w-full h-full object-cover"
/>
</div>
<div class="w-full px-4 py-3 xl:px-8">
<h3 class="text-md uppercase mb-1 font-semibold text-gray-800">
MARIJN OTTE
</h3>
<p class="text-sm text-gray-600 mb-4">Lead Designer</p>
<p class="text-sm text-gray-400 leading-relaxed">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod
eos id officiis hic tenetur.
</p>
<ul class="flex pt-3">
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-indigo-700 text-lg"
>
<i class="lni lni-facebook-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-blue-400 text-lg"
>
<i class="lni lni-twitter-filled"></i>
</a>
</li>
<li>
<a
href="#0"
class="flex items-center justify-center w-8 h-8 text-red-500 text-lg"
>
<i class="lni lni-instagram-filled"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- End Single Team -->
</div>
<!-- End Col -->
</div>
</div>
</section>
<!-- Team Section End -->
<!-- Pricing Section Start -->
<section id="pricing" class="pricing-section py-20">
<div class="container mx-auto px-3">
<div class="w-full px-3">
<div class="text-center mb-12">
<h2 class="text-3xl text-gray-800 font-bold">Pricing</h2>
<span class="w-16 h-0.5 bg-red-500 inline-block"></span>
</div>
</div>
<div class="flex flex-wrap justify-center">
<div class="px-3 w-full sm:w-5/6 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-8 text-center group mb-6 transition duration-200 hover:shadow-lg"
>
<div
class="w-20 h-20 flex items-center justify-center bg-gray-100 text-3xl text-red-500 mx-auto mb-5 rounded-full group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-package"></i>
</div>
<p class="text-red-500 text-2xl mb-3">
$10 <span class="text-gray-400 text-sm">/mo</span>
</p>
<h3 class="text-lg uppercase mb-3 font-semibold text-gray-800">
Pro
</h3>
<ul class="pb-4">
<li>
<p class="text-sm text-gray-400 mb-3">1 user</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">10 GB storage</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">Email support</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">Lifetime updates</p>
</li>
</ul>
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white"
>
Buy Now
</a>
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full sm:w-5/6 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-8 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="w-20 h-20 flex items-center justify-center text-3xl mx-auto mb-5 rounded-full bg-red-500 text-white"
>
<i class="lni lni-drop"></i>
</div>
<p class="text-red-500 text-2xl mb-3">
$35 <span class="text-gray-400 text-sm">/mo</span>
</p>
<h3 class="text-lg uppercase mb-3 font-semibold text-gray-800">
Plus
</h3>
<ul class="pb-4">
<li>
<p class="text-sm text-gray-400 mb-3">10 user</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">30 GB storage</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">
Priority Email support
</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">Lifetime updates</p>
</li>
</ul>
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white"
>
Buy Now
</a>
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full sm:w-5/6 md:w-1/2 lg:w-1/3">
<div
class="bg-white rounded shadow-md p-8 text-center mb-6 transition duration-200 group hover:shadow-lg"
>
<div
class="w-20 h-20 flex items-center justify-center bg-gray-100 text-3xl text-red-500 mx-auto mb-5 rounded-full group-hover:bg-red-500 group-hover:text-white"
>
<i class="lni lni-star"></i>
</div>
<p class="text-red-500 text-2xl mb-3">
$150 <span class="text-gray-400 text-sm">/mo</span>
</p>
<h3 class="text-lg uppercase mb-3 font-semibold text-gray-800">
Premium
</h3>
<ul class="pb-4">
<li>
<p class="text-sm text-gray-400 mb-3">Unlimited user</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">Unlimited storage</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">24/7 support</p>
</li>
<li>
<p class="text-sm text-gray-400 mb-3">Lifetime updates</p>
</li>
</ul>
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white"
>
Buy Now
</a>
</div>
</div>
<!-- End Col -->
</div>
</div>
</section>
<!-- Pricing Section End -->
<!-- Testimonial Section Start -->
<section class="testimonial-section py-16 bg-red-500">
<div class="container mx-auto px-3">
<div class="relative pb-16">
<div class="flex flex-wrap testimonial-active">
<div class="px-3 w-full lg:w-1/3">
<div class="bg-white rounded py-10 px-6 text-center">
<div
class="w-20 h-20 rounded-full overflow-hidden mx-auto mb-6"
>
<img
src="assets/images/testimonial/testimonial-1.jpg"
alt="testimonial image"
class="w-full h-full object-cover object-center"
/>
</div>
<h3 class="font-bold text-gray-800 uppercase mb-2">
Domeni Gesson
</h3>
<h4 class="text-sm text-gray-800 font-bold mb-3">
Awesome Technology co.
</h4>
<p class="text-gray-600 text-sm leading-relaxed">
Praesent cursus nulla non arcu tempor, ut egestas elit tempus.
In ac ex fermentum, gravida felis nec, tincidunt ligula.
</p>
</div>
<!-- End Single Testimonial -->
</div>
<!-- End Col -->
<div class="px-3 w-full lg:w-1/3">
<div class="bg-white rounded py-10 px-6 text-center">
<div
class="w-20 h-20 rounded-full overflow-hidden mx-auto mb-6"
>
<img
src="assets/images/testimonial/testimonial-1.jpg"
alt="testimonial image"
class="w-full h-full object-cover object-center"
/>
</div>
<h3 class="font-bold text-gray-800 uppercase mb-2">
Domeni Gesson
</h3>
<h4 class="text-sm text-gray-800 font-bold mb-3">
Awesome Technology co.
</h4>
<p class="text-gray-600 text-sm leading-relaxed">
Praesent cursus nulla non arcu tempor, ut egestas elit tempus.
In ac ex fermentum, gravida felis nec, tincidunt ligula.
</p>
</div>
<!-- End Single Testimonial -->
</div>
<!-- End Col -->
<div class="px-3 w-full lg:w-1/3">
<div class="bg-white rounded py-10 px-6 text-center">
<div
class="w-20 h-20 rounded-full overflow-hidden mx-auto mb-6"
>
<img
src="assets/images/testimonial/testimonial-1.jpg"
alt="testimonial image"
class="w-full h-full object-cover object-center"
/>
</div>
<h3 class="font-bold text-gray-800 uppercase mb-2">
Domeni Gesson
</h3>
<h4 class="text-sm text-gray-800 font-bold mb-3">
Awesome Technology co.
</h4>
<p class="text-gray-600 text-sm leading-relaxed">
Praesent cursus nulla non arcu tempor, ut egestas elit tempus.
In ac ex fermentum, gravida felis nec, tincidunt ligula.
</p>
</div>
<!-- End Single Testimonial -->
</div>
<!-- End Col -->
</div>
</div>
</div>
</section>
<!-- Testimonial Section End -->
<!-- CTA Section Start -->
<section class="cta-section py-12">
<div class="container mx-auto px-3">
<div class="flex flex-wrap items-center">
<div class="px-3 w-full md:w-2/3 lg:w-1/2">
<div class="text-center mb-8 md:mb-0 md:text-left">
<h2 class="text-4xl text-gray-800 font-bold mb-3">
Get 30 days free trial
</h2>
<p class="text-sm text-gray-400 leading-relaxed">
Praesent imperdiet, tellus et euismod euismod, risus lorem
euismod erat, at finibus neque odio quis metus. Donec vulputate
arcu quam.
</p>
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full md:w-1/3 lg:w-1/2">
<div class="text-center md:text-right">
<a
href="#0"
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white"
>
Register Now
</a>
</div>
</div>
<!-- End Col -->
</div>
</div>
</section>
<!-- CTA Section End -->
<!-- Contact Section Start -->
<section id="contact" class="contact-section bg-gray-50 py-20">
<div class="container mx-auto px-3">
<div class="w-full px-3">
<div class="text-center mb-12">
<h2 class="text-3xl text-gray-800 font-bold">Contact Us</h2>
<span class="w-16 h-0.5 bg-red-500 inline-block"></span>
</div>
</div>
<div class="flex flex-wrap">
<div class="px-3 w-full lg:w-7/12">
<div class="mb-8 lg:mb-0">
<form action="#">
<div class="flex flex-wrap -mx-3">
<div class="px-3 w-full md:w-1/2">
<input
type="text"
name="name"
placeholder="Name"
class="w-full bg-white border border-gray-100 rounded py-2 px-4 text-sm text-gray-600 mb-5"
/>
</div>
<div class="px-3 w-full md:w-1/2">
<input
type="email"
name="email"
placeholder="Email"
class="w-full bg-white border border-gray-100 rounded py-2 px-4 text-sm text-gray-600 mb-5"
/>
</div>
<div class="px-3 w-full">
<input
type="text"
name="subject"
placeholder="Subject"
class="w-full bg-white border border-gray-100 rounded py-2 px-4 text-sm text-gray-600 mb-5"
/>
</div>
<div class="px-3 w-full">
<textarea
rows="8"
name="message"
placeholder="Your Message"
class="w-full bg-white border border-gray-100 rounded py-2 px-4 text-sm text-gray-600 mb-5"
></textarea>
</div>
<div class="px-3 w-full">
<button
class="inline-flex py-3 px-8 text-sm tracking-wide rounded-full uppercase bg-red-500 border-red-500 border text-white"
>
Send Message
</button>
</div>
</div>
</form>
</div>
</div>
<!-- End Col -->
<div class="px-3 w-full lg:w-5/12">
<div class="map">
<object
style="border: 0; height: 300px; width: 100%"
data="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d34015.943594576835!2d-106.43242624069771!3d31.677719472407432!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x86e75d90e99d597b%3A0x6cd3eb9a9fcd23f1!2sCourtyard+by+Marriott+Ciudad+Juarez!5e0!3m2!1sen!2sbd!4v1533791187584"
></object>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Footer Start -->
<footer class="pt-40">
<div class="container mx-auto px-3">
<div class="pb-20">
<div class="flex flex-wrap">
<div class="px-3 w-full md:w-1/2 lg:w-1/4">
<div class="mb-8">
<a href="index.html" class="inline-block mb-4">
<img src="assets/images/logo.png" alt="" />
</a>
<p class="text-sm text-gray-600 leading-relaxed mb-5">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.