-
Notifications
You must be signed in to change notification settings - Fork 1
/
op-index-carousel-3.html
2006 lines (1746 loc) · 111 KB
/
op-index-carousel-3.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>
<title>Pasific Site Template | Carousel Three</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta charset="utf-8">
<meta name="author" content="Harry Boo">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<!-- Favicons -->
<link rel="shortcut icon" href="assets/img/favicon.png">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/img/apple-touch-icon-114x114.png">
<!-- Load Core CSS
=====================================-->
<link rel="stylesheet" href="assets/css/core/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/core/animate.min.css">
<!-- Load Main CSS
=====================================-->
<link rel="stylesheet" href="assets/css/main/main.min.css">
<!-- Load Magnific Popup CSS
=====================================-->
<link rel="stylesheet" href="assets/css/magnific/magic.min.css">
<link rel="stylesheet" href="assets/css/magnific/magnific-popup.css">
<link rel="stylesheet" href="assets/css/magnific/magnific-popup-zoom-gallery.css">
<!-- Load OWL Carousel CSS
=====================================-->
<link rel="stylesheet" href="assets/css/owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="assets/css/owl-carousel/owl.theme.css">
<link rel="stylesheet" href="assets/css/owl-carousel/owl.transitions.css">
<!-- Load Color CSS - Please uncomment to apply the color.
=====================================
<link rel="stylesheet" href="assets/css/color/blue.css">
<link rel="stylesheet" href="assets/css/color/brown.css">
<link rel="stylesheet" href="assets/css/color/cyan.css">
<link rel="stylesheet" href="assets/css/color/dark.css">
<link rel="stylesheet" href="assets/css/color/green.css">
<link rel="stylesheet" href="assets/css/color/orange.css">
<link rel="stylesheet" href="assets/css/color/purple.css">
<link rel="stylesheet" href="assets/css/color/pink.css">
<link rel="stylesheet" href="assets/css/color/red.css">
<link rel="stylesheet" href="assets/css/color/yellow.css">-->
<link rel="stylesheet" href="assets/css/color/pasific.css">
<!-- Load Fontbase Icons - Please Uncomment to use linea icons
=====================================
<link rel="stylesheet" href="assets/css/icon/linea-arrows-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-basic-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-basic-elaboration-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-ecommerce-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-music-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-software-10.css">
<link rel="stylesheet" href="assets/css/icon/linea-weather-10.css">-->
<link rel="stylesheet" href="assets/css/icon/font-awesome.css">
<link rel="stylesheet" href="assets/css/icon/et-line-font.css">
<!-- Load JS
HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries
WARNING: Respond.js doesn't work if you view the page via file://
=====================================-->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar" data-offset="100">
<!-- Page Loader
===================================== -->
<div id="pageloader">
<div class="loader-item">
<img src="assets/img/other/puff.svg" alt="page loader">
</div>
</div>
<!-- Navigation Area
===================================== -->
<nav class="navbar navbar-pasific navbar-op navbar-fixed-top">
<div class="navbar-header">
<a class="navbar-brand" href="#page-top">Pasific</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav mr20">
<li class="hidden"><a href="#page-top"></a></li>
<li><a href="#welcome">Welcome</a></li>
<li><a href="#portfolioGrid">Works</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#price">Price</a></li>
<li><a href="#blogs">Blog</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#" data-toggle="modal" data-target="#loginModal"><i class="fa fa-lock fa-fw"></i>Login</a></li>
<li><a href="#" data-toggle="modal" data-target="#searchModal"><i class="fa fa-search fa-fw"></i></a></li>
</ul>
</div>
</nav>
<!-- Login Modal Dialog Box
===================================== -->
<div id="loginModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header bg-gray">
<button type="button" class="close" data-dismiss="modal">×</button>
<h5 class="modal-title text-center"><i class="fa fa-lock fa-fw"></i> Sign In</h5>
</div>
<div class="modal-body pt25">
<div class="text-center">
<span class="text-dark">Sign in with your social account</span><br>
<a href="#">
<img src="assets/img/other/fbconnect.png" alt="" class="mt10 mb10">
</a>
<a href="#">
<img src="assets/img/other/twconnect.png" alt="" class="mt10 mb10"><br><br>
</a>
<span class="text-dark">- Or sign in with your email address -</span>
</div>
<form class="form-horizontal mt25 ml50">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-8">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-8">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-8">
<button type="submit" class="button button-pasific button-block">Sign in</button>
</div>
</div>
</form>
</div>
<div class="modal-footer bg-gray">
<span class="text-center">Don't have an account? <a href="#" class="text-gray">Register Now</a></span>
</div>
</div>
</div>
</div>
<!-- Search Modal Dialog Box
===================================== -->
<div id="searchModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header bg-gray">
<button type="button" class="close" data-dismiss="modal">×</button>
<h5 class="modal-title text-center"><i class="fa fa-search fa-fw"></i> Search here</h5>
</div>
<div class="modal-body">
<form action="#" class="inline-form">
<input type="text" class="modal-search-input" autofocus>
</form>
</div>
<div class="modal-footer bg-gray">
<span class="text-center"><a href="#" class="text-gray">Advanced Search</a></span>
</div>
</div>
</div>
</div>
<!-- Intro Area
===================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item carousel-img carousel-img7 active">
<div class="container">
<div class="carousel-caption animated" data-animation="bounceInLeft" data-animation-delay="100">
<h1 class="font-pacifico text-capitalize color-light mt-50 text-right"><span class="alpha10">No. #1 Recommended<br>Web Service</span><br>
</h1>
<p class="color-light text-right mt20 ml10">
<a href="#" class="color-light alpha5 font-pacifico">~ George Webb. Themeforest.net</a>
</p>
</div>
</div>
</div>
<div class="item carousel-img carousel-img8">
<div class="container">
<div class="carousel-caption mt-50 animated" data-animation="bounceInUp" data-animation-delay="100">
<h1 class="font-pacifico text-capitalize color-dark mt-25">
The One Stop<br>Website Service
</h1>
<p class="color-dark mt25">
Wordpress. Joomla. eCommerce. HTML. Etc.<br>
<a href="#" class="button button-md button-pasific hover-ripple-out mt30">Start Project</a>
</p>
</div>
</div>
</div>
<div class="item carousel-img carousel-img9">
<div class="container">
<div class="carousel-caption animated" data-animation="bounceInLeft" data-animation-delay="100">
<h1 class="font-pacifico text-capitalize text-left color-dark mt-50">We <i class="fa fa-wordpress"></i>Wordpress<br>Developer.</h1>
<p class="mt25 text-left color-light">The most powerfull website engine so far.<br>
<a href="#" class="button button-pasific hover-ripple-out button-md mt30">Start Project</a>
</p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#myCarousel" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>
<div class="svg-container">
<svg id="svgLineTop" xmlns="http://www.w3.org/2000/svg" version="1.1"
width="100%" height="250" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2000 250" preserveAspectRatio="xMinYMax">
<polygon points="-150,220 0,10 600,190 2000,20 5200,225"
fill="url(#BglinierGradientHeaderTop)" stroke="none">
</polygon>
<defs>
<lineargradient id="BglinierGradientHeaderTop" x1="0" y1="0" x2="0" y2="1">
<stop id="BglinierGradientHeaderTopStop_1" stop-opacity="1" stop-color="#ffffff" offset="0"></stop>
<stop id="BglinierGradientHeaderTopStop_2" stop-opacity="1" stop-color="#ffffff" offset="1"></stop>
</lineargradient>
</defs>
</svg>
</div>
</div>
<!-- Welcome Area
===================================== -->
<section id="welcome" class="pt50">
<div class="container">
<div class="row">
<div class="col-md-3">
<h3 class="text-uppercase font-montserrat color-dark">
Welcome to Pasific Template
<small class="heading heading-solid"></small>
</h3>
</div>
<div class="col-md-9">
<p class="mt15">
<i class="lead">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium totam rem aperiam
eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta.</i><br><br>
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Area
===================================== -->
<div id="portfolioGrid">
<div class="pt50"> </div>
<div class="container-fluid bg-gray pt30">
<div class="row">
<div class="col-md-12">
<!-- filters start -->
<ul class="filters text-center mt25 mb50">
<li><a class="active" data-filter="*">All Projects</a></li>
<li><a data-filter=".html">HTMl</a></li>
<li><a data-filter=".wordpress">Wordpress</a></li>
<li><a data-filter=".woocommerce">WooCommerce</a></li>
<li><a data-filter=".joomla">Joomla</a></li>
<li><a data-filter=".magento">Magento</a></li>
<li><a data-filter=".shopify">Shopify</a></li>
</ul>
<!-- filters end -->
<div class="portfolio center-block">
<!-- portfolio item one start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 wordpress woocommerce" data-category="">
<a href="assets/img/portfolio/preview/1.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-1.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item one end -->
<!-- portfolio item two start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 joomla html">
<a href="assets/img/portfolio/preview/2.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-3.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item two end -->
<!-- portfolio item three start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 wordpress joomla">
<a href="assets/img/portfolio/preview/img-370x165-1.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-2.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item three end -->
<!-- portfolio item four start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html wordpress">
<a href="assets/img/portfolio/preview/3.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-4.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item four end -->
<!-- portfolio item five start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html joomla wordpress">
<a href="assets/img/portfolio/preview/4.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-6.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item five end -->
<!-- portfolio item six start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 html shopify joomla">
<a href="assets/img/portfolio/preview/5.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-5.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item six end -->
<!-- portfolio item seven start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 wordpress magento woocommerce">
<a href="assets/img/portfolio/preview/6.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-7.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item seven end -->
<!-- portfolio item eight start -->
<div class="portfolio-item col-lg-3 col-md-4 col-sm-6 col-xs-12 joomla html">
<a href="assets/img/portfolio/preview/7.jpg" class="magnific-popup">
<span class="glyphicon glyphicon-search hover-bounce-out"></span>
</a>
<img src="assets/img/portfolio/thumbs/img-550x350-8.jpg" alt="portfolio woocommerce" class="img-responsive">
</div>
<!-- portfolio item eight end -->
</div><!-- portfolio end -->
</div><!-- col-md-12 end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section portfolio end -->
<!-- Service Area
===================================== -->
<div id="service" class="pt75 pb25">
<div class="container">
<!-- title and short description start -->
<div class="row">
<div class="col-md-12 text-center">
<h1 class="font-size-normal">
<small>Modern Service</small>
We Build Website & App
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<div class="col-md-8 col-md-offset-2 text-center">
<p class="lead">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt voluptatem.
</p>
</div>
</div>
<!-- title and short description end -->
<!-- service one start -->
<div class="row mt75">
<div class="col-md-6 animated" data-animation="fadeInLeft" data-animation-delay="100">
<img src="assets/img/other/img-other-3.png" alt="website service" class="img-responsive">
</div>
<div class="col-md-5 animated" data-animation="fadeIn" data-animation-delay="100">
<h3 class="font-size-normal">
<small class="color-primary">Web Design & Development</small>
Wordpress. Joomla. Opencart. Etc.
</h3>
<p class="mt20">
We design & develope modern website and app for any type of business. Landing page, ecommerce, company profile, web application, mobile app,
anything that you want to make great success.
</p>
<p>
<i class="fa fa-wordpress fa-2x color-gray2 mr10"></i>
<i class="fa fa-joomla fa-2x color-gray2 mr10"></i>
<i class="fa fa-drupal fa-2x color-gray2 mr10"></i>
<i class="fa fa-shopping-basket fa-2x color-gray2 mr10"></i>
</p>
<p>
<a class="button-o button-sm button-primary hover-fade">Start Project</a>
</p>
</div>
</div>
<!-- service one end -->
<!-- service two start -->
<div class="row mt100">
<div class="col-md-6 col-md-push-6 animated" data-animation="fadeInRight" data-animation-delay="100">
<img src="assets/img/other/img-other-4.png" alt="website service" class="img-responsive">
</div>
<div class="col-md-5 col-md-pull-5">
<h3 class="font-size-normal">
<small class="color-success">App Design & Development</small>
Android. iOS. Windows. Etc.
</h3>
<p class="mt20 animated" data-animation="fadeIn" data-animation-delay="100">
We design & develope modern website and app for any type of business. Landing page, ecommerce, company profile, web application, mobile app,
anything that you want to make great success.
</p>
<p>
<i class="fa fa-android fa-2x color-gray2 mr10"></i>
<i class="fa fa-apple fa-2x color-gray2 mr10"></i>
<i class="fa fa-windows fa-2x color-gray2 mr10"></i>
<i class="fa fa-amazon fa-2x color-gray2 mr10"></i>
</p>
<p>
<a class="button-o button-sm button-success hover-fade">Start Project</a>
</p>
</div>
</div>
<!-- service two end -->
<!-- service three start -->
<div class="row mt75">
<div class="col-md-6 animated" data-animation="fadeInLeft" data-animation-delay="100">
<img src="assets/img/other/img-other-5.jpg" alt="website service" class="img-responsive">
</div>
<div class="col-md-5">
<h3 class="font-size-normal">
<small class="color-red">Graphic Design</small>
Logo. Icon. Infographic. Etc.
</h3>
<p class="mt20 animated" data-animation="fadeIn" data-animation-delay="100">
We design & develope modern website and app for any type of business. Landing page, ecommerce, company profile, web application, mobile app,
anything that you want to make great success.
</p>
<p>
<i class="fa fa-file-image-o fa-2x color-gray2 mr10"></i>
<i class="fa fa-object-ungroup fa-2x color-gray2 mr10"></i>
<i class="fa fa-paper-plane-o fa-2x color-gray2 mr10"></i>
<i class="fa fa-camera-retro fa-2x color-gray2 mr10"></i>
</p>
<p>
<a class="button-o button-sm button-red hover-fade">Start Project</a>
</p>
</div>
</div>
<!-- service three end -->
</div><!-- container end -->
</div><!-- section service end -->
<!-- Info Area
===================================== -->
<div id="info-1" class="pt50 pb50 mt75 parallax-window" data-parallax="scroll" data-speed="0.5" data-image-src="assets/img/bg/img-bg-2.jpg">
<div class="container">
<div class="row pt75">
<div class="col-md-12 text-center">
<h1 class="color-light">
<small class="color-light">The best way to be success</small>
Are you ready to be success with us?
</h1>
<a class="button button-md button-pasific hover-ripple-out mt25">Start Project</a>
<a class="button-o button-md button-green hover-fade mt25"><span class="color-light">Contact Us</span></a>
</div>
</div>
</div>
</div>
<!-- Team Area
===================================== -->
<div id="team" class="pt75">
<div class="container">
<!-- title and short description start -->
<div class="row">
<div class="col-md-12 text-center">
<h1 class="font-size-normal">
<small>Amazing Team</small>
We have a lot of Smart People
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<div class="col-md-8 col-md-offset-2 text-center">
<p class="lead">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt voluptatem.
</p>
</div>
</div>
<!-- title and short description end -->
</div>
<div class="container-fluid">
<div class="row">
<!-- team member one start -->
<div class="col-md-2 col-md-offset-1 col-sm-4 col-xs-6 mt30">
<div class="team team-two">
<img src="assets/img/team/img-team-1.jpg" alt="" class="img-responsive">
<div class="team-social">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
<h5>Michael Doe<small class="color-pasific">Co-Founder & CEO</small></h5>
</div>
</div>
<!-- team member one end -->
<!-- team member two start -->
<div class="col-md-2 col-sm-4 col-xs-6 mt30">
<div class="team team-two">
<img src="assets/img/team/img-team-2.jpg" alt="" class="img-responsive">
<div class="team-social">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
<h5>Michael Doe<small class="color-pasific">Co-Founder & CEO</small></h5>
</div>
</div>
<!-- team member two end -->
<!-- team member three start -->
<div class="col-md-2 col-sm-4 col-xs-6 mt30">
<div class="team team-two">
<img src="assets/img/team/img-team-3.jpg" alt="" class="img-responsive">
<div class="team-social">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
<h5>Michael Doe<small class="color-pasific">Co-Founder & CEO</small></h5>
</div>
</div>
<!-- team member three end -->
<!-- team member four start -->
<div class="col-md-2 col-sm-4 col-xs-6 mt30">
<div class="team team-two">
<img src="assets/img/team/img-team-4.jpg" alt="" class="img-responsive">
<div class="team-social">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
<h5>Michael Doe<small class="color-pasific">Co-Founder & CEO</small></h5>
</div>
</div>
<!-- team member four end -->
<!-- team member five start -->
<div class="col-md-2 col-sm-4 col-xs-6 mt30">
<div class="team team-two">
<img src="assets/img/team/img-team-5.jpg" alt="" class="img-responsive">
<div class="team-social">
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
<h5>Michael Doe<small class="color-pasific">Co-Founder & CEO</small></h5>
</div>
</div>
<!-- team member five end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section team end -->
<!-- Skill Area
===================================== -->
<div id="progressBar2">
<div class="container pt50 pb75">
<div class="row">
<!-- left skill start -->
<div class="col-sm-6 col-md-6">
<h5 class="text-uppercase font-montserrat color-dark text-center mb25">Design Skills</h5>
<!-- skill one start -->
<h5 class="text-right">Adobe Photoshop</h5>
<div class="progress progress-xs progress-circle right">
<div class="progress-bar bg-primary" role="progressbar" data-transitiongoal="40"></div>
</div>
<!-- skill one end -->
<!-- skill two start -->
<h5 class="text-right">Adobe Illustrator</h5>
<div class="progress progress-sm progress-circle right">
<div class="progress-bar bg-success" role="progressbar" data-transitiongoal="60"></div>
</div>
<!-- skill two end -->
<!-- skill three start -->
<h5 class="text-right">Adobe InDesign</h5>
<div class="progress progress-md progress-circle right">
<div class="progress-bar bg-info" role="progressbar" data-transitiongoal="80"></div>
</div>
<!-- skill three end -->
<!-- skill four start -->
<h5 class="text-right">Sketch</h5>
<div class="progress progress-lg progress-circle right">
<div class="progress-bar bg-pasific" role="progressbar" data-transitiongoal="95"></div>
</div>
<!-- skill four end -->
</div>
<!-- left skill end -->
<!-- right skill start -->
<div class="col-sm-6 col-md-6">
<h5 class="text-uppercase font-montserrat color-dark text-center mb25">CMS Programming Skills</h5>
<!-- skill five start -->
<h5>Wordpress</h5>
<div class="progress progress-circle progress-xs">
<div class="progress-bar bg-primary" role="progressbar" data-transitiongoal="40"></div>
</div>
<!-- skill five end -->
<!-- skill six start -->
<h5>WooCommerce</h5>
<div class="progress progress-circle progress-sm">
<div class="progress-bar bg-success" role="progressbar" data-transitiongoal="60"></div>
</div>
<!-- skill six end -->
<!-- skill seven start -->
<h5>Opencart</h5>
<div class="progress progress-circle progress-md">
<div class="progress-bar bg-info" role="progressbar" data-transitiongoal="80"></div>
</div>
<!-- skill seven end -->
<!-- skill eight start -->
<h5>Shopify</h5>
<div class="progress progress-circle progress-lg">
<div class="progress-bar bg-pasific" role="progressbar" data-transitiongoal="95"></div>
</div>
<!-- skill eight end -->
</div>
<!-- right skill end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section skill end -->
<!-- Fun Fact Area
===================================== -->
<div id="fact" class="bg-grad-stellar pt100 pb100">
<div class="container">
<!-- title and short description start -->
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center mb50">
<h1 class="font-size-normal color-light">
<small class="color-light">Your Business Partner</small>
Better Solution for Better Business
</h1>
</div>
</div>
<!-- title and short description end -->
<div class="row">
<!-- fun fact left start -->
<div class="col-md-3">
<div class="row">
<!-- fun fact one start -->
<div class="col-md-12 col-sm-6 col-xs-6">
<div class="fact">
<div class="fact-number timer" data-perc="387">
<span class="factor color-light"></span>
</div>
<span class="fact-title color-light alpha7">Projects Completed</span>
</div>
</div>
<!-- fun fact one end -->
<!-- fun fact two start -->
<div class="col-md-12 col-sm-6 col-xs-6">
<div class="fact">
<div class="fact-number timer" data-perc="578">
<span class="factor color-light"></span>
</div>
<span class="fact-title color-light alpha7">Happy Clients</span>
</div>
</div>
<!-- fun fact two end -->
</div>
</div>
<!-- fun fact left end -->
<!-- fun fact right start -->
<div class="col-md-3 col-md-push-6">
<div class="row">
<!-- fun fact three start -->
<div class="col-md-12 col-sm-6 col-xs-6">
<div class="fact">
<div class="fact-number timer" data-perc="175">
<span class="factor color-light"></span>
</div>
<span class="fact-title color-light alpha7">Coffee Cups</span>
</div>
</div>
<!-- fun fact three end -->
<!-- fun fact four start -->
<div class="col-md-12 col-sm-6 col-xs-6">
<div class="fact">
<div class="fact-number timer" data-perc="350">
<span class="factor color-light"></span>
</div>
<span class="fact-title color-light alpha7">Cupcakes</span>
</div>
</div>
<!-- fun fact four end -->
</div>
</div>
<!-- fun fact right end -->
<div class="col-md-6 col-md-pull-3">
<img src="assets/img/other/map.png" alt="macbook" class="img-responsive">
</div>
</div>
<div class="row">
<div class="col-sm-8 col-sm-push-2 text-center">
<h4 class="pt25 color-light">Have an idea? We will do the rest!</h4>
<p class="pb10 color-light alpha8">Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.</p>
<a href="#" class="button button-md button-gray hover-ripple-out"><span class="color-primary">Start Project</span></a>
</div>
</div>
</div><!-- container end -->
</div><!-- section fun fact end -->
<!-- Features Area
===================================== -->
<div id="features" class="pt75 mb25">
<div class="container">
<!-- title and short description start -->
<div class="row">
<div class="col-md-12 text-center">
<h1 class="font-size-normal">
<small>Amazing Features</small>
Best Template with Tons of Features
<small class="heading heading-solid center-block"></small>
</h1>
</div>
<div class="col-md-8 col-md-offset-2 text-center">
<p class="lead">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt voluptatem.
</p>
</div>
</div>
<!-- title and short description end -->
<div class="row mt50">
<!-- feature one start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-mobile color-primary border-primary"></span>
<h5>Mobile Optimized</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature one end -->
<!-- feature two start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-documents color-success border-success"></span>
<h5>Online Documentation</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature two end -->
<!-- feature three start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-basket color-cyan border-cyan"></span>
<h5>Shop Ready</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature three end -->
<!-- feature four start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-layers color-pasific border-pasific"></span>
<h5>Clean Code</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature four end -->
<!-- feature five start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-adjustments color-green border-green"></span>
<h5>Easy to Customized</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature five end -->
<!-- feature six start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-bike color-red border-red"></span>
<h5>2000+ Icons Included</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature six end -->
<!-- feature seven start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-video color-pink border-pink"></span>
<h5>Video Background</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature seven end -->
<!-- feature eight start -->
<div class="col-md-3 col-sm-6 col-xs-12 mb35">
<div class="content-box content-box-center content-box-icon-o">
<span class="icon-tools color-warning border-warning"></span>
<h5>Full Support</h5>
<p>Pellentesque ipsum erat, facilisis ut venenatis eu, sodales vel dolor.</p>
</div>
</div>
<!-- feature eight end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- section feature end -->
<!-- SVG Cart Area
===================================== -->
<div class="svg-container2">
<!-- svg start -->
<svg id="svgLine" xmlns="http://www.w3.org/2000/svg" version="1.1"
width="100%" height="300" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2000 250" preserveAspectRatio="xMinYMax">
<polygon points="-150,300 200,90 550,140 800,60 1100,150 1400,100 1700,10 1900,50 2500,90 2500,300"
fill="url(#BglinierGradient)" stroke="none">
</polygon>
<polyline points="-150,244 200,90 550,140 800,60 1100,150 1400,100 1700,10 1900,50 2500,90 2500,500"
fill="none" stroke="#7668af" stroke-width="0">
</polyline>
<text x="170" y="20" fill="#8b949b" style="font-size: 120%; font-weight: 400;">Lines of Code</text>
<text x="170" y="60" fill="#5cb85c" style="font-size: 250%; font-weight: 300;">120K</text>
<text x="510" y="60" fill="#8b949b" style="font-size: 120%; font-weight: 400;">Shortcodes</text>
<text x="520" y="100" fill="#5f6467" style="font-size: 250%; font-weight: 300;">750</text>
<text x="760" y="0" fill="#8b949b" style="font-size: 120%; font-weight: 400;">Icons Included</text>
<text x="760" y="40" fill="#b2cc71" style="font-size: 250%; font-weight: 300;">2000+</text>
<text x="1060" y="70" fill="#8b949b" style="font-size: 120%; font-weight: 400;">Happy Clients</text>
<text x="1060" y="110" fill="#3c88c6" style="font-size: 250%; font-weight: 300;">950</text>
<text x="1350" y="30" fill="#8b949b" style="font-size: 120%; font-weight: 400;">Item Sales</text>
<text x="1350" y="70" fill="#1abc9c" style="font-size: 250%; font-weight: 300;">5,780</text>
<text x="1650" y="90" fill="#333333" style="font-size: 140%; font-weight: 300; font-family: 'Pacifico', cursive;">Counting..</text>
<ellipse id="svg_1" rx="15" ry="15" cx="200" cy="90" fill="#5cb85c" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_2" rx="10" ry="10" cx="550" cy="140" fill="#5f6467" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_3" rx="15" ry="15" cx="800" cy="60" fill="#b2cc71" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_4" rx="15" ry="15" cx="1100" cy="150" fill="#3c88c6" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_5" rx="10" ry="10" cx="1400" cy="100" fill="#1abc9c" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_6" rx="10" ry="10" cx="1700" cy="10" fill="#a85ad4" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_7" rx="9" ry="9" cx="1900" cy="50" fill="#ff8b34" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_8" rx="6" ry="6" cx="2500" cy="90" fill="#fd40b3" stroke="#ffffff" stroke-width="5"></ellipse>
<ellipse id="svg_9" rx="6" ry="6" cx="2200" cy="90" fill="#fd3635" stroke="#ffffff" stroke-width="5"></ellipse>
<defs>
<lineargradient id="BglinierGradient" x1="0" y1="0" x2="0" y2="1">
<stop id="BgLinierGradientStop_1" stop-opacity="1" stop-color="#e8f3f5" offset="0"></stop>
<stop id="BgLinierGradientStop_2" stop-opacity="1" stop-color="#e8f3f5" offset="1"></stop>
</lineargradient>
</defs>
</svg>
<!-- svg end -->
</div><!-- svg container end -->
<!-- Achievement Area
===================================== -->
<div class="pt50" style="background: url(assets/img/bg/bg-wood.jpg) 100% 100% repeat-x #e8f3f5;">
<div class="container">
<!-- title and short description start -->
<div class="row">
<div class="col-md-12">
<h2 class="font-source-sans-pro text-center mb50">
<small class="heading heading-icon heading-icon-rounded bg-grad-stellar center-block">
<i class="fa fa-trophy color-light"></i>
</small>
The Best Web & App Developer 2016
<small class="heading-desc text-lowercase color-dark">
Every day, We makes thousands of customers happy.
</small>
</h2>
</div>
</div>
<!-- title and short description end -->
<div class="row mb50 text-center">
<div class="col-sm-12">
<i class="fa fa-android fa-3x mr20 color-green"></i>
<i class="fa fa-apple fa-4x mr20 color-dark"></i>
<i class="fa fa-amazon fa-4x mr20 color-red"></i>
<i class="fa fa-windows fa-3x color-purple"></i>
</div>
</div>
<div class="col-md-12">
<img src="assets/img/other/img-other-6.png" alt="device" class="img-responsive center-block">
</div>