-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·921 lines (829 loc) · 33.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>CTS - Space Life</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/linea-icon.css" />
<link rel="stylesheet" href="css/fancy-buttons.css" />
<!--=== Google Fonts ===-->
<link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:300,700,400' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:600,400,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<!--=== Other CSS files ===-->
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/jquery.vegas.css" />
<link rel="stylesheet" href="css/baraja.css" />
<link rel="stylesheet" href="css/jquery.bxslider.css" />
<!--=== Main Stylesheets ===-->
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
<!--=== Color Scheme, three colors are available red.css, orange.css and gray.css ===-->
<link rel="stylesheet" id="scheme-source" href="css/schemes/gray.css" />
<!--=== Internet explorer fix ===-->
<!-- [if lt IE 9]>
<script src="http://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="http://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif] -->
</head>
<body>
<!--=== Preloader section starts ===-->
<section id="preloader">
<div class="loading-circle fa-spin"></div>
</section>
<!--=== Preloader section Ends ===-->
<!--=== Header section Starts ===-->
<div id="header" class="header-section">
<!-- sticky-bar Starts-->
<div class="sticky-bar-wrap">
<div class="sticky-section">
<div id="topbar-hold" class="nav-hold container">
<nav class="navbar" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--=== Site Name ===-->
<a class="site-name navbar-brand" href="#"><span>E</span>gret</a>
</div>
<!-- Main Navigation menu Starts -->
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="current"><li><a href="#section-feature">Space Life</a></li>
<li><a href="timeline.html">Timeline</a></li>
<li><a href="#step-1">Quizz</a></li>
<li><a href="#section-screenshots">ISS 3D Map</a></li>
<li><a href="#section-pricing">Latest ISS Imagery</a></li>
<li><a href="#section-download">Real Time Tracking</a></li>
</ul>
</div>
<!-- Main Navigation menu ends-->
</nav>
</div>
</div>
</div>
<!-- sticky-bar Ends-->
<!--=== Header section Ends ===-->
</div>
<!--=== Features section Starts ===-->
<section id="section-feature" class="feature-wrap">
<div class="container features center">
<div class="row">
<div class="col-lg-12">
<!--Features container Starts -->
<ul id="card-ul" class="features-hold baraja-container">
<!-- Single Feature Starts -->
<li class="single-feature" title="Card style">
<img src="images/5.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">Card style</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut.
</p>
<a href="#" class="fancy-button button-line btn-col small vertical">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="50+ SVG Icon included">
<img src="images/2.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">50+ SVG Icon included</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="MailChimp Ready">
<img src="images/3.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">MailChimp Ready</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="4 home style">
<img src="images/4.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">4 home style</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="Parallax Backgrounds">
<img src="images/5.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">Parallax Backgrounds</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="Ajax contact form">
<img src="images/6.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">Ajax contact form</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="unlimited Google fonts">
<img src="images/7.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">unlimited Google fonts</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
<!-- Single Feature Starts -->
<li class="single-feature" title="Feature heading">
<img src="images/8.jpg" alt="" class="feature-image" /><!-- Feature Icon -->
<h4 class="feature-title color-scheme">Feature heading</h4>
<p class="feature-text">
Curabitur posuere feugiat ipsum, sed elementum tortor maximus ut
</p>
<a href="#" class="fancy-button button-line btn-col small zoom">
Details
<span class="icon">
<i class="fa fa-leaf"></i>
</span>
</a>
</li>
<!-- Single Feature Ends -->
</ul>
<!--Features container Ends -->
<!-- Features Controls Starts -->
<div class="features-control relative">
<button class="control-icon fancy-button button-line no-text btn-col bell" id="feature-prev" title="Previous" >
<span class="icon">
<i class="fa fa-arrow-left"></i>
</span>
</button>
<button class="control-icon fancy-button button-line no-text btn-col zoom" id="feature-expand" title="Expand" >
<span class="icon">
<i class="fa fa-expand"></i>
</span>
</button>
<button class="control-icon fancy-button button-line no-text btn-col zoom" id="feature-close" title="Collapse" >
<span class="icon">
<i class="fa fa-compress"></i>
</span>
</button>
<button class="control-icon fancy-button button-line no-text btn-col bell" id="feature-next" title="Next" >
<span class="icon">
<i class="fa fa-arrow-right"></i>
</span>
</button>
</div>
<!-- Features Controls Ends -->
</div>
</div>
</div>
</section>
<!--=== Features section Ends ===-->
<!--=== Services section Starts ===-->
<section id="section-services" class="services-wrap">
<div class="container services">
<div class="row">
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>What we do best</h3>
</div>
<!-- Single Service Starts -->
<div class="col-md-6 col-sm-6 service animated" data-animation="fadeInLeft" data-animation-delay="700">
<span class="service-icon center"><i class="icon icon-basic-book-pencil fa-3x"></i></span>
<div class="service-desc">
<h4 class="service-title color-scheme">Clean Design</h4>
<p class="service-description justify">
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
</p>
</div>
</div>
<!-- Single Service Ends -->
<!-- Single Service Starts -->
<div class="col-md-6 col-sm-6 service animated" data-animation="fadeInUp" data-animation-delay="700">
<span class="service-icon center"><i class="icon icon-basic-paperplane fa-3x"></i></span>
<div class="service-desc">
<h4 class="service-title color-scheme">Full responsive</h4>
<p class="service-description justify">
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
</p>
</div>
</div>
<!-- Single Service ends -->
<!-- Single Service Starts -->
<div class="col-md-6 col-sm-6 service animated" data-animation="fadeInRight" data-animation-delay="700">
<span class="service-icon center"><i class="icon icon-basic-accelerator fa-3x"></i></span>
<div class="service-desc">
<h4 class="service-title color-scheme">Ajax contact form</h4>
<p class="service-description justify">
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
</p>
</div>
</div>
<!-- Single Service Ends -->
<!-- Single Service Starts -->
<div class="col-md-6 col-sm-6 service animated" data-animation="fadeInUp" data-animation-delay="700">
<span class="service-icon center"><i class="icon icon-basic-lightbulb fa-3x"></i></span>
<div class="service-desc">
<h4 class="service-title color-scheme">Mailchimp ready</h4>
<p class="service-description justify">
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
Cillum laboris consequat, qui elit retro next level skateboard freegan hella.
</p>
</div>
</div>
<!-- Single Service Ends -->
</div>
</div>
</section>
<!--=== Services section Ends ===-->
<!--=== Step-1 section Starts ===-->
<section id="step-1" class="section-step step-wrap">
<div class="container step animated" data-animation="bounceInLeft" data-animation-delay="700">
<div class="row">
<!-- Step Description Starts -->
<div class="col-md-8 step-desc">
<div class="col-md-2 center">
<div class="step-no">
<span class="no-inner">1</span>
</div>
</div>
<div class="col-md-10 step-details">
<h3 class="step-title color-scheme">Work flow title here</h3>
<p class="step-description">Cillum laboris <strong>consequat</strong>, qui elit retro next level
skateboard freegan hella. Cillum laboris consequat qui elit retro next level
skateboard freegan hella. Cillum laboris consequat skateboard freegan hella</p>
<ul class="sub-steps"> <!-- Sub steps here -->
<li>
<span class="icon fa fa-comments color-scheme"></span>
<span class="sub-text">skateboard freegan hella. Cillum laboris consequat qui elit</span>
</li>
<li>
<span class="icon fa fa-pencil-square-o color-scheme"></span>
<span class="sub-text">Documenting collected data</span>
</li>
</ul>
</div> <!-- End step-details -->
</div>
<!-- Step Description Ends -->
<div class="col-md-4 step-img">
<img src="images/note.png" alt="" /> <!-- Step Photo Here -->
</div>
</div>
</div>
</section>
<!--=== Step-1 section Ends ===-->
<!--=== Step-2 section Starts ===-->
<section id="step-2" class="section-step step-even step-wrap">
<div class="container step animated" data-animation="bounceInRight" data-animation-delay="700">
<div class="row">
<!-- Step Description Starts -->
<div class="col-md-8 step-desc">
<div class="col-md-2 center">
<div class="step-no">
<span class="no-inner">2</span>
</div>
</div>
<div class="col-md-10 step-details">
<h3 class="step-title color-scheme">Work flow title here</h3>
<p class="step-description">Cillum laboris <strong>consequat</strong>, qui elit retro next level
skateboard freegan hella. Cillum laboris consequat qui elit retro next level
skateboard freegan hella. Cillum laboris consequat skateboard freegan hella</p>
<ul class="sub-steps"> <!-- Sub steps here -->
<li>
<span class="icon fa fa-comments color-scheme"></span>
<span class="sub-text">skateboard freegan hella. Cillum laboris consequat qui elit</span>
</li>
<li>
<span class="icon fa fa-pencil-square-o color-scheme"></span>
<span class="sub-text">Documenting collected data</span>
</li>
</ul>
</div><!-- End step-details -->
</div>
<!-- Step Description Ends -->
<div class="col-md-4 step-img">
<img src="images/desk.png" alt="" /> <!-- Step Photo Here -->
</div>
</div>
</div>
</section>
<!--=== Step-2 section Ends ===-->
<!--=== Video section Starts ===-->
<section id="section-video" class="section-video-wrap">
<div class="section-overlay"></div>
<div class="container big-video center animated" data-animation="fadeInLeft" data-animation-delay="700">
<div class="row">
<div class="col-md-12 section-title">
<h3>Describe with a video</h3>
</div>
<div class="col-md-10 col-md-offset-1 video-content">
<iframe src="http://player.vimeo.com/video/75317749?title=0&byline=0&portrait=0" width="400" height="240"></iframe>
</div>
</div>
</div>
</section>
<!--=== Video section Ends ===-->
<!--=== ScreenShots section Starts ===-->
<section id="section-screenshots" class="screenshots-wrap">
<div class="container screenshots animated" data-animation="fadeInUp" data-animation-delay="1000">
<div class="row porfolio-container">
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>Our Latest Projects</h3>
</div>
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/7.jpg" alt="" />
<div class="photo-overlay">
<h4>Wordpress theme</h4>
</div>
<span class="photo-zoom">
<a href="single-project.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/2.jpg" alt="" />
<div class="photo-overlay">
<h4>User Interface design</h4>
</div>
<span class="photo-zoom">
<a href="single-project-2.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/3.jpg" alt="" />
<div class="photo-overlay">
<h4>PSD template design</h4>
</div>
<span class="photo-zoom">
<a href="single-project.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/4.jpg" alt="" />
<div class="photo-overlay">
<h4>User Experience design</h4>
</div>
<span class="photo-zoom">
<a href="single-project-2.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/5.jpg" alt="" />
<div class="photo-overlay">
<h4>Page builder plugin</h4>
</div>
<span class="photo-zoom">
<a href="single-project.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
<!-- Single screenshot starts -->
<div class="col-md-4 col-sm-4 col-xs-6">
<div class="screenshot">
<div class="photo-box">
<img src="images/6.jpg" alt="" />
<div class="photo-overlay">
<h4>Corporate website</h4>
</div>
<span class="photo-zoom">
<a href="single-project-2.html" class="view-project"><i class="fa fa-search-plus fa-2x"></i></a>
</span>
</div>
</div>
</div>
<!-- Single screenshot ends -->
</div>
<div id="portfolio-loader" class="center">
<div class="loading-circle fa-spin"></div>
</div> <!--=== Portfolio loader ===-->
<div id="portfolio-load"></div><!--=== ajax content will be loaded here ===-->
<div class="col-md-12 center back-button">
<a class="backToProject fancy-button button-line bell btn-col" href="#">
Back
<span class="icon">
<i class="fa fa-arrow-left"></i>
</span>
</a>
</div><!--=== Single portfolio back button ===-->
</div>
</section>
<!--=== ScreenShots section Ends ===-->
<!--=== Testimonials section Starts ===-->
<section id="section-testimonials" class="testimonials-wrap">
<div class="section-overlay"></div>
<div class="container testimonials center animated" data-animation="rollIn" data-animation-delay="500">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="testimonial-slider">
<!-- Single Testimonial Starts -->
<div class="testimonial">
<p class="comment">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu sem ante. Nullam quis risus eu
purus commodo dignissim. Donec iaculis ac ex vel posuere. Sed posuere, elit vitae mattis condimentum,
quam urna fringilla magna
</p>
<h5 class="happy-client">Jhon Doe</h5>
<span class="client-info">Executive at CDF Corp.</span>
</div>
<!-- Single Testimonial Ends -->
<!-- Single Testimonial Starts -->
<div class="testimonial">
<p class="comment">
Dolor sit amet, consectetur adipiscing elit. Nullam eu sem ante. Nullam quis risus eu
purus commodo dignissim. Donec iaculis ac ex vel posuere. Sed posuere, elit vitae mattis condimentum,
quam urna fringilla magna
</p>
<h5 class="happy-client">JB Jeniffer</h5>
<span class="client-info">Developer at TTF Corp.</span>
</div>
<!-- Single Testimonial Ends -->
<!-- Single Testimonial Starts -->
<div class="testimonial">
<p class="comment">
Consectetur adipiscing elit. Nullam eu sem ante. Nullam quis risus eu
purus commodo dignissim. Donec iaculis ac ex vel posuere. Sed posuere, elit vitae mattis condimentum,
quam urna fringilla magna
</p>
<h5 class="happy-client">Chan Jhin</h5>
<span class="client-info">CEO of MutiNaTakio.</span>
</div>
<!-- Single Testimonial Ends -->
</div>
<div id="bx-pager" class="client-photos">
<a data-slide-index="0" href="" class="photo-hold">
<span class="photo-bg">
<img src="images/client_1.jpg" alt="" /> <!-- Client photo 1 -->
</span>
</a>
<a data-slide-index="1" href="" class="photo-hold">
<span class="photo-bg">
<img src="images/client_2.jpg" alt="" /> <!-- Client photo 2 -->
</span>
</a>
<a data-slide-index="2" href="" class="photo-hold">
<span class="photo-bg">
<img src="images/client_3.jpg" alt="" /> <!-- Client photo 3 -->
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!--=== Testimonials section Ends ===-->
<!--=== Pricing section Starts ===-->
<section id="section-pricing" class="pricing-wrap">
<div class="container pricing">
<div class="row">
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>Plans & pricing</h3>
</div>
<!-- Single Price Starts -->
<div class="col-md-3 col-sm-6 single-pricing-wrap center animated" data-animation="bounceInLeft" data-animation-delay="500">
<div class="single-pricing">
<div class="pricing-head">
<h4 class="pricing-heading color-scheme">Basic</h4>
<div class="price">
<h3>
<span class="dollar">$</span>
40
<span class="month">/month</span>
</h3>
</div>
</div>
<ul class="package-features">
<li><span class="color-scheme fa fa-check"></span>Unlimited Downloads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Uploads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Email Accounts</li>
<li><span class="color-scheme fa fa-check"></span>Email Forwards</li>
<li><span class="color-scheme fa fa-close"></span>Cloud Storage</li>
<li><span class="color-scheme fa fa-close"></span>Voice call</li>
<li><span class="color-scheme fa fa-close"></span>Screen Share</li>
</ul>
<div class="sign-up">
<a href="#" class="fancy-button button-line btn-col zoom">
Sign up
<span class="icon">
<i class="fa fa-thumbs-o-up"></i>
</span>
</a>
</div>
</div>
</div>
<!-- Single Price Ends -->
<!-- Single Price Starts -->
<div class="col-md-3 col-sm-6 single-pricing-wrap center animated" data-animation="bounceInLeft" data-animation-delay="700">
<div class="single-pricing best-pricing"> <!-- this is best-pricing -->
<div class="pricing-head">
<h4 class="pricing-heading color-scheme">Advance</h4>
<div class="price">
<h3>
<span class="dollar">$</span>
60
<span class="month">/month</span>
</h3>
</div>
</div>
<ul class="package-features">
<li><span class="color-scheme fa fa-check"></span>Unlimited Downloads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Uploads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Email Accounts</li>
<li><span class="color-scheme fa fa-check"></span>Email Forwards</li>
<li><span class="color-scheme fa fa-check"></span>Cloud Storage</li>
<li><span class="color-scheme fa fa-close"></span>Voice call</li>
<li><span class="color-scheme fa fa-close"></span>Screen Share</li>
</ul>
<div class="sign-up">
<a href="#" class="fancy-button button-line btn-col vertical">
Sign up
<span class="icon">
<i class="fa fa-hand-o-up"></i>
</span>
</a>
</div>
</div>
</div>
<!-- Single Price Ends -->
<!-- Single Price Starts -->
<div class="col-md-3 col-sm-6 single-pricing-wrap center animated" data-animation="bounceInLeft" data-animation-delay="900">
<div class="single-pricing">
<div class="pricing-head">
<h4 class="pricing-heading color-scheme">Premium</h4>
<div class="price">
<h3>
<span class="dollar">$</span>
80
<span class="month">/month</span>
</h3>
</div>
</div>
<ul class="package-features">
<li><span class="color-scheme fa fa-check"></span>Unlimited Downloads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Uploads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Email Accounts</li>
<li><span class="color-scheme fa fa-check"></span>Email Forwards</li>
<li><span class="color-scheme fa fa-check"></span>Cloud Storage</li>
<li><span class="color-scheme fa fa-check"></span>Voice call</li>
<li><span class="color-scheme fa fa-close"></span>Screen Share</li>
</ul>
<div class="sign-up">
<a href="#" class="fancy-button button-line btn-col rotate">
Sign up
<span class="icon">
<i class="fa fa-thumbs-o-up"></i>
</span>
</a>
</div>
</div>
</div>
<!-- Single Price Ends -->
<!-- Single Price Starts -->
<div class="col-md-3 col-sm-6 single-pricing-wrap center animated" data-animation="bounceInLeft" data-animation-delay="1100">
<div class="single-pricing">
<div class="pricing-head">
<h4 class="pricing-heading color-scheme">Ultra</h4>
<div class="price">
<h3>
<span class="dollar">$</span>
100
<span class="month">/month</span>
</h3>
</div>
</div>
<ul class="package-features">
<li><span class="color-scheme fa fa-check"></span>Unlimited Downloads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Uploads</li>
<li><span class="color-scheme fa fa-check"></span>Unlimited Email Accounts</li>
<li><span class="color-scheme fa fa-check"></span>Email Forwards</li>
<li><span class="color-scheme fa fa-check"></span>Cloud Storage</li>
<li><span class="color-scheme fa fa-check"></span>Voice call</li>
<li><span class="color-scheme fa fa-check"></span>Screen Share</li>
</ul>
<div class="sign-up">
<a href="#" class="fancy-button button-line btn-col zoom">
Sign up
<span class="icon">
<i class="fa fa-thumbs-o-up"></i>
</span>
</a>
</div>
</div>
</div>
<!-- Single Price Ends -->
</div>
</div>
</section>
<!--=== Pricing section Ends ===-->
<!--=== Subscribe section Starts ===-->
<section id="section-subscribe" class="subscribe-wrap">
<div class="section-overlay"></div>
<div class="container subscribe center">
<div class="row">
<div class="col-lg-12">
<p class="subscription-success"></p>
<p class="subscription-failed"></p>
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>Newsletter</h3>
</div>
<form id="subscription-form">
<input type="email" name="EMAIL" required="required" placeholder="Your Email" class="input-email" />
<button type="submit" id="subscription-btn" class="fancy-button button-line button-white large zoom">
Subscribe
<span class="icon">
<i class="fa fa-sign-in"></i>
</span>
</button>
</form>
</div>
</div>
</div>
</section>
<!--=== Subscribe section Ends ===-->
<!--=== Download section Starts ===-->
<section id="section-download" class="download-wrap">
<div class="container download center">
<div class="row">
<div class="col-lg-12">
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>Download app</h3>
</div>
<div class="download-buttons clearfix"> <!-- Download Buttons -->
<a class="fancy-button button-line no-text btn-col large zoom" href="#" title="Download from App store">
<span class="icon">
<i class="fa fa-apple"></i>
</span>
</a>
<a class="fancy-button button-line btn-col no-text large zoom" href="#" title="Download from App store">
<span class="icon">
<i class="fa fa-android"></i>
</span>
</a>
<a class="fancy-button button-line btn-col no-text large zoom" href="#" title="Download from App store">
<span class="icon">
<i class="fa fa-windows"></i>
</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!--=== Download section Ends ===-->
<!--=== Contact section Starts ===-->
<section id="section-contact" class="contact-wrap">
<div class="section-overlay"></div>
<div class="container contact center animated" data-animation="flipInY" data-animation-delay="1000">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="col-md-10 col-md-offset-1 center section-title">
<h3>Leave a message</h3>
</div>
<div class="confirmation">
<p><span class="fa fa-check"></span></p>
</div>
<form class="contact-form support-form">
<div class="col-lg-12">
<input id="name" class="input-field form-item field-name" type="text" required="required" name="contact-name" placeholder="Name" />
<input id="email" class="input-field form-item field-email" type="email" required="required" name="contact-email" placeholder="Email" />
<input id="subject" class="input-field form-item field-subject" type="text" required="required" name="contact-subject" placeholder="Subject" />
<textarea id="message" class="textarea-field form-item field-message" rows="10" name="contact-message" placeholder="Message"></textarea>
</div>
<button type="submit" class="fancy-button button-line button-white large zoom subform">
Send message
<span class="icon">
<i class="fa fa-paper-plane-o"></i>
</span>
</button>
</form>
</div>
</div>
</div>
</section>
<!--=== Contact section Ends ===-->
<!--=== Footer section Starts ===-->
<div id="section-footer" class="footer-wrap">
<div class="container footer center">
<div class="row">
<div class="col-lg-12">
<h4 class="footer-title"><!-- Footer Title -->
<a class="site-name" href="#"><span>E</span>gret</a>
</h4>
<!-- Social Links -->
<div class="social-icons">
<ul>
<li><a href="#"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="#"><i class="fa fa-twitter-square"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus-square"></i></a></li>
<li><a href="#"><i class="fa fa-pinterest-square"></i></a></li>
<li><a href="#"><i class="fa fa-flickr"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</div>
<p class="copyright">All rights reserved © 2015</p>
</div>
</div>
</div>
</div>
<!--=== Footer section Ends ===-->
<!--==== Js files ====-->
<!--==== Essential files ====-->
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrapValidator.min.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<!--==== Slider and Card style plugin ====-->
<script type="text/javascript" src="js/jquery.baraja.js"></script>
<script type="text/javascript" src="js/jquery.vegas.min.js"></script>
<script type="text/javascript" src="js/jquery.bxslider.min.js"></script>
<!--==== MailChimp Widget plugin ====-->
<script type="text/javascript" src="js/jquery.ajaxchimp.min.js"></script>
<!--==== Scroll and navigation plugins ====-->
<script type="text/javascript" src="js/jquery.nicescroll.min.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<script type="text/javascript" src="js/jquery.appear.js"></script>
<script type="text/javascript" src="js/jquery.fitvids.js"></script>
<!--==== Custom Script files ====-->
<script type="text/javascript" src="js/custom.js"></script>
</body>
</html>