-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-custom-video.html
1119 lines (1012 loc) · 62 KB
/
index-custom-video.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>ATLAS - HTML5 Website Template | CreateWebsite.net Freebies</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- end Google Font -->
<link href='http://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,500,600,700,800,300' rel='stylesheet' type='text/css'>
<!-- owl carousel SLIDER -->
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- end awesome icons -->
<link rel="stylesheet" href="css/font-awesome.css">
<!-- lightbox -->
<link href="css/prettyPhoto.css" rel="stylesheet">
<!-- Animation Effect CSS -->
<link rel="stylesheet" href="css/animation.css">
<!-- Main Stylesheet CSS -->
<link rel="stylesheet" href="style.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- SLIDER REVOLUTION 4.x CSS SETTINGS -->
<link rel="stylesheet" type="text/css" href="rs-plugin/css/settings.css" media="screen" />
</head>
<body data-spy="scroll" data-offset="25">
<div class="animationload"><div class="loader">Loading...</div></div> <!-- End Preloader -->
<!--/HEADER SECTION -->
<header class="header">
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">ATLAS <br> <span class="slogo">CREATIVE <span></a>
</div><!-- end navbar-header -->
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a data-scroll href="#home" class="int-collapse-menu">Home</a></li>
<li><a data-scroll href="#features" class="int-collapse-menu">Why Us ?</a></li>
<li><a data-scroll href="#about" class="int-collapse-menu">About</a></li>
<li><a data-scroll href="#services" class="int-collapse-menu">Services</a></li>
<li><a data-scroll href="#pricing" class="int-collapse-menu">Pricing</a></li>
<li><a data-scroll href="#team" class="int-collapse-menu">Team</a></li>
<li><a data-scroll href="#works" class="int-collapse-menu">Portfolio</a></li>
<li><a data-scroll href="#contact" class="int-collapse-menu">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</div>
</div><!-- end container -->
</header><!-- end header -->
<div class="brand-promotion">
<div class="container">
<div class="media row">
<div class="col-sm-4">
<div class="brand-content wow fadeIn animated" style="visibility: visible; -webkit-animation: fadeIn 700ms 300ms;">
<i class="fa fa-lightbulb-o fa-4x pull-left"></i>
<div class="media-body">
<h2>Ask Us Anything</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Curabitur euismod enim a metus adipiscing aliquam. </p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="brand-content wow fadeIn animated" style="visibility: visible; -webkit-animation: fadeIn 700ms 400ms;">
<i class="fa fa-laptop fa-4x pull-left"></i>
<div class="media-body">
<h2>Brand & Identity</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Curabitur euismod enim a metus.</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="brand-content wow fadeIn animated" style="visibility: visible; -webkit-animation: fadeIn 700ms 500ms;">
<i class="fa fa-headphones fa-4x pull-left"></i>
<div class="media-body">
<h2>Full Support</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Curabitur euismod enim a metus adipiscing aliquam.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--/SLIDER SECTION -->
<section id="home" class="sliderwrapper clearfix">
<div class="tp-banner-container">
<div class="tp-banner-video">
<ul>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500" >
<!-- MAIN IMAGE -->
<!-- LAYER NR. 1 -->
<div class="tp-caption tp-fade fadeout fullscreenvideo"
data-x="0"
data-y="0"
data-speed="1000"
data-start="1100"
data-easing="Power4.easeOut"
data-endspeed="1500"
data-endeasing="Power4.easeIn"
data-autoplay="true"
data-autoplayonlyfirsttime="false"
data-nextslideatend="true"
data-forceCover="1"
data-bgposition="center center"
data-dottedoverlay="twoxtwo"
data-aspectratio="16:9"
data-forcerewind="on"
style="z-index: 2">
<video class="video-js vjs-default-skin" preload="none" width="100%" height="100%"
poster='slider-images/video_forest.jpg' data-setup="{}">
<source src='rs-plugin/revslider.mp4' type='video/mp4' />
<source src='rs-plugin/revslider.webm' type='video/webm' />
<source src='rs-plugin/revslider.ogv' type='video/ogg' />
</video>
</div>
<!-- LAYER NR. 3 -->
<div class="tp-caption rev-video skewfromleft customout"
data-x="center"
data-y="170"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="800"
data-start="1500"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power1.easeIn"
data-captionhidden="on"
style="z-index: 6"><hr class="topline"><h2>Experience the <br> Clean and unique <br> One page Design</h2><hr class="bottomline">
</div>
<!-- LAYER NR. 4 -->
<div class="tp-caption rev-video2 skewfromright customout"
data-x="center" data-hoffset="0"
data-y="380"
data-customout="x:0;y:0;z:0;rotationX:0;rotationY:0;rotationZ:0;scaleX:0.75;scaleY:0.75;skewX:0;skewY:0;opacity:0;transformPerspective:600;transformOrigin:50% 50%;"
data-speed="800"
data-start="1700"
data-easing="Power4.easeOut"
data-endspeed="300"
data-endeasing="Power1.easeIn"
data-captionhidden="on"
style="z-index: 7"><p> EFFECTIVE BUSINESS SOLUTIONS <br> THAT MAKES YOUR BUSINESS FLY HIGH </p>
</div>
</li>
</ul>
<div class="tp-bannertimer"></div>
</div>
</div>
</section><!-- end slider-wrapper -->
<section id="features" class="feature-wrapper">
<div class="container">
<div data-scroll-reveal="enter from the bottom after 0.3s" class="title text-center" data-scroll-reveal-id="2" data-scroll-reveal-initialized="true" data-scroll-reveal-complete="true">
<h2>Why Us ?</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div>
<div data-scroll-reveal="enter from the bottom after 0.4s" class="feature-img">
<img class="img-responsive" src="demos/home_01.png" alt="">
</div>
<div class="col-lg-7 col-md-7 col-sm-7 col-xs-12">
<div class="widget">
<h3> WHY Choose Atlas Creative ?</h3>
<p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros.</p>
<div id="accordion-second" class="clearfix">
<div class="accordion" id="accordion2">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseOne">
<em class="fa fa-plus icon-fixed-width"></em>Atlas Creative is fully responsive and perfectly fits on any Mobile device.
</a>
</div>
<div id="collapseOne" class="accordion-body collapse">
<div class="accordion-inner">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor...
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseTwo">
<em class="fa fa-plus icon-fixed-width"></em>Atlas Creative is automatically creates retina ready images.
</a>
</div>
<div id="collapseTwo" class="accordion-body collapse">
<div class="accordion-inner">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor...
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseThree">
<em class="fa fa-plus icon-fixed-width"></em>Atlas Creative contains 365 Retina Ready Font Awesome icons.
</a>
</div>
<div id="collapseThree" class="accordion-body collapse">
<div class="accordion-inner">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor...
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseFour">
<em class="fa fa-plus icon-fixed-width"></em>Atlas Creative is Powerful Admin Panel
</a>
</div>
<div id="collapseFour" class="accordion-body collapse">
<div class="accordion-inner">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor...
</div>
</div>
</div>
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion2" href="#collapseFive">
<em class="fa fa-plus icon-fixed-width"></em>Atlas Creative comes with Unlimited Color Schemes
</a>
</div>
<div id="collapseFive" class="accordion-body collapse">
<div class="accordion-inner">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor...
</div>
</div>
</div>
</div><!-- end accordion -->
</div><!-- end accordion first -->
</div><!-- end widget -->
</div><!-- end col-lg-6 -->
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-12">
<div class="widget">
<h3>LATEST NEWS</h3>
<div id="owl-blog" class="owl-carousel">
<div class="blog-carousel">
<div class="entry">
<img src="demos/work_03.jpg" alt="" class="img-responsive">
<div class="magnifier">
<div class="buttons">
<a class="st" rel="bookmark" href="blog-single-sidebar.html"><i class="fa fa-link"></i></a>
</div><!-- end buttons -->
</div><!-- end magnifier -->
<div class="post-type">
<i class="fa fa-picture-o"></i>
</div><!-- end pull-right -->
</div><!-- end entry -->
<div class="blog-carousel-header">
<h3><a title="" href="blog-single-sidebar.html">New Graphic Designer on the block</a></h3>
<div class="blog-carousel-meta">
<span><i class="fa fa-calendar"></i> April 01, 2014</span>
<span><i class="fa fa-comment"></i> <a href="#">03 Comments</a></span>
<span><i class="fa fa-eye"></i> <a href="#">84 Views</a></span>
</div><!-- end blog-carousel-meta -->
</div><!-- end blog-carousel-header -->
</div><!-- end blog-carousel -->
<div class="blog-carousel">
<div class="entry">
<img src="demos/work_04.jpg" alt="" class="img-responsive">
<div class="magnifier">
<div class="buttons">
<a class="st" rel="bookmark" href="blog-single-sidebar.html"><i class="fa fa-link"></i></a>
</div><!-- end buttons -->
</div><!-- end magnifier -->
<div class="post-type">
<i class="fa fa-picture-o"></i>
</div><!-- end pull-right -->
</div><!-- end entry -->
<div class="blog-carousel-header">
<h3><a title="" href="blog-single-sidebar.html">New Graphic Designer on the block</a></h3>
<div class="blog-carousel-meta">
<span><i class="fa fa-calendar"></i> April 01, 2014</span>
<span><i class="fa fa-comment"></i> <a href="#">03 Comments</a></span>
<span><i class="fa fa-eye"></i> <a href="#">84 Views</a></span>
</div><!-- end blog-carousel-meta -->
</div><!-- end blog-carousel-header -->
</div><!-- end blog-carousel -->
</div><!-- end owl-blog -->
</div><!-- end widget -->
</div><!-- end col-lg-6 -->
</div><!-- end container -->
</section><!-- end grey-wrapper -->
<!--/ ABOUT SECTION -->
<section id="about" class="about-wrapper">
<div class="container">
<div data-scroll-reveal="enter from the bottom after 0.3s" class="title text-center">
<h2>About</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div><!-- end title -->
<div class="row text-center">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div data-scroll-reveal="enter from the bottom after 0.4s" class="about-box">
<div class="about-border"> <i class="fa fa-tablet aligncenter"></i></div>
<h3>RESPONSIVE DESIGN</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div><!-- end column -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div data-scroll-reveal="enter from the bottom after 0.5s" class="about-box">
<div class="about-border"> <i class="fa fa-bars aligncenter"></i></div>
<h3>EXCELLENT FEATURES</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div><!-- end column -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div data-scroll-reveal="enter from the bottom after 0.5s" class="about-box">
<div class="about-border"> <i class="fa fa-folder-o aligncenter"></i></div>
<h3>SIMPLE & CLEAN</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div><!-- end column -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div data-scroll-reveal="enter from the bottom after 0.5s" class="about-box">
<div class="about-border"> <i class="fa fa-gear aligncenter"></i></div>
<h3>PARALLAX EFFECTS</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div><!-- end column -->
</div><!-- end row -->
</div><!-- end container -->
<div class="clearfix">
<div class="widget-wrapper">
<div class="container">
<div class="col-lg-7 col-md-7 col-sm-7 col-xs-12">
<div class="widget">
<h3>WHY <span>Atlas Creative</span> IS SIMPLE & VERY POWERFUL?</h3>
<p>Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatisNam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis
faucibus. Nullam quis ante. Etiam sit amet orci eget eros. <a href="#"> Read More </a> </p>
</div><!-- end widget -->
</div><!-- end col-lg-6 -->
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-12">
<div class="widget">
<h3>OUR <span>POWERFUL</span> SKILLS!</h3>
<div id="skills" class="skills_bar">
<small>Adobe Photoshop</small>
<div class="progress wow slideInLeft animated" style="visibility: visible;">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;">
<span class="skill_count">90%</span>
</div>
</div><!-- end progress -->
<small>HTML5 & CSS3</small>
<div class="progress wow slideInLeft animated" style="visibility: visible;">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%;">
<span class="skill_count">80%</span>
</div>
</div><!-- end progress -->
<small>WordPress</small>
<div class="progress wow slideInLeft animated" style="visibility: visible;">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;">
<span class="skill_count">90%</span>
</div>
</div><!-- end progress -->
<small>Customer Support</small>
<div class="progress wow slideInLeft animated" style="visibility: visible;">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 90%;">
<span class="skill_count">90%</span>
</div>
</div><!-- end progress -->
<small>Shopify Design</small>
<div class="progress wow slideInLeft animated" style="visibility: visible;">
<div class="progress-bar" role="progressbar" aria-valuenow="78" aria-valuemin="0" aria-valuemax="100" style="width: 78%;">
<span class="skill_count">80%</span>
</div>
</div><!-- end progress -->
</div><!-- end skills_bar -->
</div><!-- end widget -->
</div><!-- end col-lg-6 -->
</div><!-- end container -->
</div>
</section><!-- End About Section -->
<!--/ COUNT SECTION -->
<section id="count_parallax" class="parallax" style="background-image: url('demos/parallax_01.jpg');" data-stellar-background-ratio="0.6" data-stellar-vertical-offset="20">
<div class="overlay">
<div class="container">
<div class="stat f-container">
<div class="f-element col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="milestone-counter">
<i class="fa fa-user fa-3x"></i>
<span class="stat-count highlight">122</span>
<div class="milestone-details">Happy Customers</div>
</div>
</div>
<div class="f-element col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="milestone-counter">
<i class="fa fa-coffee fa-3x"></i>
<span class="stat-count highlight">4226</span>
<div class="milestone-details">Ordered Coffee's</div>
</div>
</div>
<div class="f-element col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="milestone-counter">
<i class="fa fa-trophy fa-3x"></i>
<span class="stat-count highlight">14</span>
<div class="milestone-details">Awards Win</div>
</div>
</div>
<div class="f-element col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="milestone-counter">
<i class="fa fa-camera fa-3x"></i>
<span class="stat-count highlight">232</span>
<div class="milestone-details">Photos Taken</div>
</div>
</div>
</div><!-- stat -->
</div><!-- end container -->
</div><!-- end overlay -->
</section>
<!--/ SERVICE SECTION -->
<section id="services" class="white-wrapper">
<div class="container">
<div class="title text-center">
<h2>Services we offer</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div><!-- end title -->
<div class="row">
<div data-scroll-reveal="enter from the bottom after 0.3s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-lightbulb-o alignleft"></i></div>
<h3>Design & Development</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
<div data-scroll-reveal="enter from the bottom after 0.6s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-laptop alignleft"></i></div>
<h3>VIDEO PRODUCTION</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
<div data-scroll-reveal="enter from the bottom after 0.9s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-headphones alignleft"></i></div>
<h3>24/7 SUPPORT</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
</div> <!-- end row 1 -->
<div class="row">
<div data-scroll-reveal="enter from the bottom after 1.2s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-mobile alignleft"></i></div>
<h3>MOBILE APPS</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
<div data-scroll-reveal="enter from the bottom after 1.5s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-shopping-cart alignleft"></i></div>
<h3>ONLINE SHOPPING</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
<div data-scroll-reveal="enter from the bottom after 1.8s" class="col-lg-4 col-md-4 col-sm-8 col-xs-12">
<div class="service-box">
<div class="service-border"><i class="fa fa-gears alignleft"></i></div>
<h3>SOCIAL MEDIA</h3>
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
</div>
</div>
</div> <!-- end row 2 -->
<!-- TESTIMONIAL SECTION -->
<div class="testimonial text-center">
<h2 class="three" data-scroll-reveal="enter from the bottom after 0.2s">And What They Say</h2>
</div><!-- end title -->
<div id="testimonial" class="owl-carousel owl-theme text-center">
<div class="testimonial" data-scroll-reveal="enter from the bottom after 0.3s">
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
<h1> DANIEL Smith </h1>
</div>
<div class="testimonial">
<p>A dsfadsfads In sagittis, eros faucibus ullamcorper nibh dolor</p>
<h1> DANIEL Smith </h1>
</div>
<div class="testimonial">
<p>Quisque est enim lacinia lobortis da viverra interdum, quam. In sagittis, eros faucibus ullamcorper nibh dolor</p>
<h1> DANIEL Smith </h1>
</div>
</div><!-- end #testimonial -->
<div class="customNavigation">
<a class="btn prev"><i class="fa fa-angle-left fa-2x"></i></a>
<a class="btn next"><i class="fa fa-angle-right fa-2x"></i></a>
</div><!-- end customnav -->
</div> <!-- end container -->
</section><!-- Service and Testimonial End -->
<!--/ SKILL SECTION -->
<section id="skills_parallax" class="parallax" style="background-image: url('demos/parallax_02.jpg');" data-stellar-background-ratio="0.6" data-stellar-vertical-offset="20">
<div class="overlay">
<div class="container">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="skill">
<span class="chart" data-bar-color="#fff" data-percent="50"><span class="percent"></span></span>
<h3>Graphic Design</h3>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="skill">
<span class="chart" data-bar-color="#fff" data-percent="70"><span class="percent"></span></span>
<h3>Web Development</h3>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="skill">
<span class="chart" data-bar-color="#fff" data-percent="99"><span class="percent"></span></span>
<h3>Identity</h3>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="skill">
<span class="chart" data-bar-color="#fff" data-percent="100"><span class="percent"></span></span>
<h3>CUSTOMER SUPPORT</h3>
</div>
</div>
</div><!-- end container -->
</div><!-- end overlay -->
</section><!-- End Skill parallax -->
<!--PRICING SECTION -->
<section id="pricing" class="dark-wrapper">
<div class="container">
<div class="title text-center">
<h2>Pricing Structure</h2>
</div><!-- end title -->
<div class="row text-center">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12" data-effect="helix">
<div class="pricing-box">
<span class="hideme"><i class="fa fa-star bigstar"></i></span>
<div class="title"><h3>Standard</h3></div>
<div class="price">
<p class="price-value"><sub>$</sub> 99</p>
<p class="price-month">Per month</p>
</div>
<ul class="pricing clearfix">
<li>10 Pages Website</li>
<li>1 Domain</li>
<li>2 Sub Domains</li>
<li>3 MySQL DBs</li>
<li>2 Emails</li>
</ul>
<a class="jtbtn" href="#">order now</a>
</div><!-- Pricing Box -->
</div><!-- Column 1 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12" data-effect="helix">
<div class="pricing-box">
<span class="hideme"><i class="fa fa-star bigstar"></i></span>
<div class="title"><h3>Premium</h3></div>
<div class="price">
<p class="price-value"><sub>$</sub>149</p>
<p class="price-month">Per month</p>
</div>
<ul class="pricing clearfix">
<li>150 Mb Storage</li>
<li>1 Domain</li>
<li>2 Sub Domains</li>
<li>3 MySQL DBs</li>
<li>2 Emails</li>
</ul>
<a class="jtbtn" href="#">order now</a>
</div><!-- Pricing Box -->
</div><!-- Column 2 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12" data-effect="helix">
<div class="pricing-box">
<span class="hideme"><i class="fa fa-star bigstar"></i></span>
<div class="title"><h3>delux</h3></div>
<div class="price">
<p class="price-value"><sub>$</sub>199</p>
<p class="price-month">Per month</p>
</div>
<ul class="pricing clearfix">
<li>150 Mb Storage</li>
<li>1 Domain</li>
<li>2 Sub Domains</li>
<li>3 MySQL DBs</li>
<li>2 Emails</li>
</ul>
<a class="jtbtn" href="#">order now</a>
</div><!-- Pricing Box -->
</div><!-- Column 3 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12" data-effect="helix">
<div class="pricing-box">
<span class="hideme"><i class="fa fa-star bigstar"></i></span>
<div class="title"><h3>corporate</h3></div>
<div class="price">
<p class="price-value"><sub>$</sub>299</p>
<p class="price-month">Per month</p>
</div>
<ul class="pricing clearfix">
<li>150 Mb Storage</li>
<li>1 Domain</li>
<li>2 Sub Domains</li>
<li>3 MySQL DBs</li>
<li>2 Emails</li>
</ul>
<a class="jtbtn" href="#">order now</a>
</div><!-- Pricing Box -->
</div><!-- Column 4 -->
</div><!-- end row -->
</div><!-- end container -->
</section><!-- End Pricing -->
<!-- TEAM SECTION -->
<section id="team" class="team-wrapper">
<div class="container">
<div class="title text-center">
<h2>Meet Our Team</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div><!-- end title -->
<div class="row text-center">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="team-box" data-effect="helix">
<img class="aligncenter" src="demos/team1.png" alt="">
<div class="social-icons">
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Facebook"><i class="fa fa-facebook"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Google Plus"><i class="fa fa-google-plus"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Twitter"><i class="fa fa-twitter"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Youtube"><i class="fa fa-youtube"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Linkedin"><i class="fa fa-linkedin"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Dribbble"><i class="fa fa-dribbble"></i></a></span>
</div>
<h3>ANDREA SMITH</h3>
<p>Developer</p>
<div class="clearfix"></div>
</div> <!-- end teambox -->
</div> <!-- end column 1 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="team-box" data-effect="helix">
<img class="aligncenter" src="demos/team2.png" alt="">
<div class="social-icons">
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Facebook"><i class="fa fa-facebook"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Google Plus"><i class="fa fa-google-plus"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Twitter"><i class="fa fa-twitter"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Youtube"><i class="fa fa-youtube"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Linkedin"><i class="fa fa-linkedin"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Dribbble"><i class="fa fa-dribbble"></i></a></span>
</div>
<h3>Dave SMITH</h3>
<p>Designer</p>
<div class="clearfix"></div>
</div> <!-- end teambox -->
</div> <!-- end column 2 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="team-box" data-effect="helix">
<img class="aligncenter" src="demos/team3.png" alt="">
<div class="social-icons">
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Facebook"><i class="fa fa-facebook"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Google Plus"><i class="fa fa-google-plus"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Twitter"><i class="fa fa-twitter"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Youtube"><i class="fa fa-youtube"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Linkedin"><i class="fa fa-linkedin"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Dribbble"><i class="fa fa-dribbble"></i></a></span>
</div>
<h3>SARA SMITH</h3>
<p>Developer</p>
<div class="clearfix"></div>
</div> <!-- end teambox -->
</div> <!-- end column 3 -->
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-12">
<div class="team-box" data-effect="helix">
<img class="aligncenter" src="demos/team4.png" alt="">
<div class="social-icons">
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Facebook"><i class="fa fa-facebook"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Google Plus"><i class="fa fa-google-plus"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Twitter"><i class="fa fa-twitter"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Youtube"><i class="fa fa-youtube"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Linkedin"><i class="fa fa-linkedin"></i></a></span>
<span><a data-toggle="tooltip" data-placement="bottom" title="" href="#" data-original-title="Dribbble"><i class="fa fa-dribbble"></i></a></span>
</div>
<h3>William SMITH</h3>
<p>Marketing</p>
<div class="clearfix"></div>
</div> <!-- end teambox -->
</div> <!-- end column 4 -->
<div class="title">
<h2>Got Some Great IDEAS to Start With ?</h2>
<p>Let's get together and start building those ideas...</p>
<a class="jtbtn" href="#">Contact us </a>
</div><!-- end title -->
</div><!-- end row 1 -->
</div><!-- end container -->
</section><!-- end team -->
<!--/ VIDEO PARALLAX SECTINO -->
<section class="videobg clearfix text-center">
<a id="volume" onclick="$('#bgndVideo').toggleVolume()"><i class="fa fa-volume-down"></i></a>
<a id="bgndVideo" class="player" data-property="{videoURL:'http://www.youtube.com/watch?v=W7Las-MJnJo',containment:'body',autoPlay:true, mute:true, startAt:33, opacity:1}">youtube</a>
<div class="videooverlay" data-scroll-reveal="enter from the bottom after 0.4s">
<div class="container">
<div class="general-title text-center">
<h3>Video Background Support</h3>
<p>This is an another awesome feature!</p>
</div>
</div><!-- end container -->
</div><!-- end overlay -->
</section><!--/ Video Parallex End -->
<!--/ PORTFOLIO SECTION -->
<section id="works" class="dark-wrapper">
<div class="container">
<div class="title text-center">
<h2>Our Best Work</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div><!-- end title -->
<div class="text-center clearfix">
<nav class="portfolio-filter">
<ul>
<li><a class="btn btn-primary" href="#" data-filter="*"><span></span>All</a></li>
<li><a class="btn btn-primary" href="#" data-filter=".photography">Photography</a></li>
<li><a class="btn btn-primary" href="#" data-filter=".app-design">App Design</a></li>
<li><a class="btn btn-primary" href="#" data-filter=".logo">Logo</a></li>
</ul>
</nav>
</div>
<div class="norow">
<div class="masonry_wrapper" data-scroll-reveal="enter from the bottom after 0.5s">
<div class="item entry item-h2 photography print">
<img src="demos/work_01.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_01.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
<div class="item entry item-h2 webdesign print">
<img src="demos/work_02.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_02.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
<div class="item entry item-h2 videos print">
<img src="demos/work_03.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_03.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
<div class="item entry item-h2 photography">
<img src="demos/work_04.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_04.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
<div class="item entry item-h2 videos">
<img src="demos/work_05.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_05.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
<div class="item entry item-h2 webdesign">
<img src="demos/work_06.jpg" alt="" class="img-responsive">
<div class="hovereffect">
<a data-gal="prettyPhoto[product-gallery]" rel="bookmark" href="demos/work_06.jpg"><span class="icon"><i class="fa fa-plus"></i></span></a>
<div class="buttons">
<h4>Portfolio Work</h4>
<h5>WEB DESIGN, LOGO, PRINT, VIDEO</h5>
</div><!-- end buttons -->
</div><!-- end hovereffect -->
</div>
</div><!-- end portfolio-masonry -->
</div><!-- end row -->
</div> <!-- end Container-->
</section><!-- end work -->
<!--/ FEATURE SECTION -->
<section id="featured_parallax" class="parallax" style="background-image: url('demos/parallax_01.jpg');" data-stellar-background-ratio="0.5" data-stellar-vertical-offset="20">
<div class="overlay">
<div class="container">
<div class="featured-box" data-effect="slide-bottom">
<h3>ATLAS IS A FEATURED RICH CLEAN <br> & MODERN DESIGN</h3>
<img class="img-respnsive" src="images/banner.png" alt="">
</div>
</div><!-- end container -->
</div><!-- end overlay -->
</section><!--/ Featured Parallex -->
<!--/ CONTACT AND MAP SECTION -->
<section id="contact" class="contact-wrapper">
<div class="title text-center">
<h2>Contact Us</h2>
<p>ETIAM DIGNISSIM LEO VESTIBULUM VOLUTPAT MORB</p>
<hr>
</div><!-- end title -->
<div class="contact_tab text-center">
<ul id="myTab" class="container text-center nav nav-tabs" role="tablist">
<li class="active"><a href="#tab1" role="tab" data-toggle="tab">Contact Details</a></li>
<li><a href="#tab2" role="tab" data-toggle="tab">Location Maps</a></li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="tab1">
<div class="container">
<p>Eget pede fringilla rutrum. Fusce eget tortor vel magna iaculis convallis. Mauris molestie magna. Mauris Integer eget arcu. asiscing eleifend dui. Nullam lectus neque, blandit quis, mattis quis, varius eros. Proin porta pellentesque ante.Fusce In sagittis eros aliquam quis purus nunc ut turpis sed </p>
<div id="message"></div>
<form id="contactform" action="contact.php" name="contactform" method="post" data-scroll-reveal="enter from the bottom after 0.4s">
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<input type="text" name="name" id="name" class="form-control" placeholder="Name">
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<input type="text" name="email" id="email" class="form-control" placeholder="Email Address">
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<input type="text" name="subject" id="subject" class="form-control" placeholder="Subject">
</div>
<div class="clearfix"></div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<textarea class="form-control" name="comments" id="comments" rows="6" placeholder="Message"></textarea>
</div>
<div class="text-center">
<button type="submit" value="SEND" id="submit" class="btn btn-lg btn-contact btn-primary">SUBMIT</button>
</div>
</form> <!-- End Form -->
</div> <!-- End Container -->
</div><!-- End Tab Pane -->
<!-- /Google Map -->
<div class="tab-pane fade" id="tab2">
<div id="map"></div>
</div>
</div><!-- /end my tab content -->
</div><!-- /contact_tab -->
<div class="container">
<div class="title text-center">
<div class="clearfix"></div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="contact-box" data-scroll-reveal="enter from the bottom after 0.6s">
<a title="" href="#"><i class="fa fa-envelope-o aligncenter"></i></a>
<h2>[email protected]</h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="contact-box" data-scroll-reveal="enter from the bottom after 0.6s">
<a title="" href="#"><i class="fa fa-map-marker aligncenter"></i></a>
<h2>ATLAS PTY LTD, MELBOURNE, AUSTRALIA </h2>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="contact-box" data-scroll-reveal="enter from the bottom after 0.6s">
<a title="" href="#"><i class="fa fa-phone aligncenter"></i></a>
<h2>+8 ATLAS 6666 </h2>
</div>
</div>
</div> <!-- end title -->
</div><!-- end container -->
</section><!--/ Contact End -->
<!--/ FOOTER SECTION-->
<section id="footer" class="footer-wrapper text-center">
<div class="container">
<div class="title text-center" data-scroll-reveal="enter from the bottom after 0.5s">
<div class="aligncenter">
<a href="https://www.createwebsite.net" class="navbar-brand">Designed By Create Website <br> <span class="slogo">CREATIVE <span></a>
<div class="socialFooter">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-flickr"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
</div>
<!-- don't removed this as we are providing it for free -->
<p>Designed by © 2015 <a href="http://www.createwebsite.net">Create Website</a></p>
<a data-scroll-reveal="enter from the bottom after 0.3s" href="#home"><i class="fa fa-angle-up"></i></a>
</div> <!-- end title -->
</div> <!-- end container -->
</section><!--/ Footer End -->
<!-- SECTION CLOSED -->
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/smooth-scroll.js"></script>
<script src="js/jquery.parallax-1.1.3.js"></script>
<script src="js/jquery.easypiechart.min.js"></script>
<script src="js/owl.carousel.js"></script>
<script src="js/jquery.jigowatt.js"></script>
<script src="js/custom.js"></script>
<script src="js/jquery.unveilEffects.js"></script>
<script src="js/jquery.isotope.min.js"></script>