-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-v4.html
1035 lines (946 loc) · 74.8 KB
/
index-v4.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>
<!--[if IE 7 ]> <html lang="en-gb" class="isie ie7 oldie no-js"> <![endif]-->
<!--[if IE 8 ]> <html lang="en-gb" class="isie ie8 oldie no-js"> <![endif]-->
<!--[if IE 9 ]> <html lang="en-gb" class="isie ie9 no-js"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en-gb" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Priority - Multipurpose HTML5 Template</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- **CSS - stylesheets** -->
<link id="default-css" rel="stylesheet" href="style.css" type="text/css" media="all" />
<link id="shortcodes-css" rel="stylesheet" href="shortcodes.css" type="text/css" media="all"/>
<link id="skin-css" rel="stylesheet" href="skins/skyblue/style.css" type="text/css" media="all"/>
<link id="layer-slider" rel="stylesheet" href="css/layerslider.css" media="all" />
<!-- **Additional - stylesheets** -->
<link rel="stylesheet" href="responsive.css" type="text/css" media="all"/>
<link rel="stylesheet" href="css/meanmenu.css" type="text/css" media="all"/>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/animations.css" type="text/css" media="all" />
<!-- **Font Awesome** -->
<link rel="stylesheet" href="css/font-awesome.min.css" type="text/css" />
<!-- **Google - Fonts** -->
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="loader-wrapper">
<div id="loader-image"></div>
</div>
<!-- **Wrapper** -->
<div class="wrapper">
<div class="inner-wrapper">
<!-- **Top Bar** -->
<div class="top-bar">
<div class="container">
<ul class="top-menu">
<li> <i class="fa fa-phone"></i> Any Questions? Call Us: <span> 1-223-355-2214 </span></li>
<li> <i class="fa fa-skype"></i> Skype: <a href="#" title="Design Themes"> DesignThemes </a></li>
</ul>
<div class="top-right">
<span>Get social with us!</span>
<ul class="dt-sc-social-icons">
<li> <a href="#" title="facebook"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a href="#" title="twitter"> <i class="fa fa-twitter"></i> </a> </li>
<li> <a href="#" title="google-plus"> <i class="fa fa-google-plus"></i> </a> </li>
<li> <a href="#" title="pinterest"> <i class="fa fa-pinterest"></i> </a> </li>
<li> <a href="#" title="skype"> <i class="fa fa-skype"></i> </a> </li>
<li> <a href="#" title="youtube"> <i class="fa fa-youtube"></i> </a> </li>
</ul>
</div>
</div>
</div><!-- **Top Bar - End** -->
<div id="header-wrapper">
<!-- **Header** -->
<header class="header">
<div class="container">
<!-- **Logo - End** -->
<div id="logo">
<a href="index.html" title="Priority"> <img src="images/logo.png" alt="logo"/> </a>
</div><!-- **Logo - End** -->
<div id="menu-container">
<!-- **Nav - Starts**-->
<nav id="main-menu">
<div id="dt-menu-toggle" class="dt-menu-toggle">
Menu
<span class="dt-menu-toggle-icon"></span>
</div>
<ul class="menu">
<li class="current_page_item menu-item-simple-parent"><a href="index.html">Home</a>
<ul class="sub-menu">
<li><a href="index.html">Home Example 1</a></li>
<li><a href="index-v2.html">Home Example 2</a></li>
<li><a href="index-v3.html">Home Example 3</a></li>
<li class="current_page_item"><a href="index-v4.html">Home Example 4</a></li>
<li><a href="index-v5.html">Home Example 5</a></li>
<li><a href="index-v6.html">Home Example 6</a></li>
<li><a href="index-v7.html">Home Example 7</a></li>
<li><a href="index-v8.html">Home Example 8</a></li>
<li><a href="one-page.html">One page Layout</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-4-columns-group menu-item-depth-0"><a href="side-navigation.html">Features</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li class="menu-item-with-widget-area">
<a href="#">Templates</a>
<p>We are the best in what we do.</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">404 Page</a></li>
<li><a href="#">Coming soon</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Shortcodes</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">Side Tabs</a></li>
<li><a href="#">Icon Boxes</a></li>
<li><a href="#">Progress Bar</a></li>
<li><a href="#">Accordions & Tabs</a></li>
<li><a href="#">Donut Charts</a></li>
<li><a href="#">Pricing Tables</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Home Page Designs</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">Multipurpose Version 1</a></li>
<li><a href="#">Multipurpose Version 2</a></li>
<li><a href="#">Multipurpose Version 3</a></li>
<li><a href="#">Shop Page</a></li>
<li><a href="#">Portfolio Page</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li class="menu-item-with-widget-area">
<a href="#">Miscellaneous</a>
<p>The following features we have</p>
<div class="menu-item-widget-area-container">
<ul>
<li class="widget widget_text">
<div class="textwidget">
<ul>
<li><a href="#">100% Fully Responsive</a></li>
<li><a href="#">Boxed and Wide Versions</a></li>
<li><a href="#">10 Unique Home Page Options</a></li>
<li><a href="#">Font Awesome Icons</a></li>
<li><a href="#">Valid HTML5 and CSS3</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="tabs-accordions.html" >Pages</a>
<ul class="sub-menu">
<li class="menu-item-simple-parent menu-item-depth-0"><a href="headers.html">Headers</a>
<ul class="sub-menu">
<li><a href="headers.html">Header 1</a></li>
<li><a href="header2.html">Header 2</a></li>
<li><a href="header3.html">Header 3</a></li>
<li><a href="header4.html">Header 4</a></li>
<li><a href="header5.html">Header 5</a></li>
<li><a href="header6.html">Header 6</a></li>
<li><a href="header7.html">Header 7</a></li>
<li><a href="header8.html">Header 8</a></li>
<li><a href="header9.html">Header 9</a></li>
<li><a href="header10.html">Header 10</a></li>
<li><a href="header11.html">Header 11</a></li>
<li><a href="header12.html">Header 12</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent menu-item-depth-0"><a href="footer1.html">Footers</a>
<ul class="sub-menu">
<li><a href="footer1.html">Footer 1</a></li>
<li><a href="footer2.html">Footer 2</a></li>
<li><a href="footer3.html">Footer 3</a></li>
<li><a href="footer4.html">Footer 4</a></li>
<li><a href="footer5.html">Footer 5</a></li>
<li><a href="footer6.html">Footer 6</a></li>
<li><a href="footer7.html">Footer 7</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent menu-item-depth-0"><a href="about.html">About</a>
<ul class="sub-menu">
<li><a href="about.html">About 1</a></li>
<li><a href="about-2.html">About 2</a></li>
<li><a href="about-3.html">About 3</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="team.html"> Team </a></li>
<li><a href="services.html"> Services </a></li>
<li><a href="pricing-table.html"> Pricing </a></li>
<li><a href="tabs-accordions.html"> Shortcodes </a></li>
<li><a href="miscellaneous.html"> Miscellaneous </a></li>
<li><a href="coming-soon.html"> Coming Soon </a></li>
<li><a href="login.html"> Login </a></li>
<li><a href="register.html"> Register </a></li>
<li><a href="404-page.html"> 404 - page </a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-4-columns-group menu-item-depth-0"><a href="blog-with-rhs.html">Blog</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li><a href="blog.html"> I Column</a>
<ul class="sub-menu">
<li><a href="blog.html">Fullwidth</a></li>
<li><a href="blog-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-with-rhs.html">With Right Sidebar</a></li>
<li><a href="blog-with-pagination.html">With Pagination</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-2-column.html"> II Column</a>
<ul class="sub-menu">
<li><a href="blog-2-column.html">Fullwidth</a></li>
<li><a href="blog-2-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-2-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="blog-2-column-with-pagination.html">With Pagination</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-masonry.html"> Blog Masonry</a>
<ul class="sub-menu">
<li><a href="blog-masonry.html">Fullwidth</a></li>
<li><a href="blog-masonry-with-lhs.html">With Left Sidebar</a></li>
<li><a href="blog-masonry-with-rhs.html">With Right Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="blog-detail.html"> Single Post </a>
<ul class="sub-menu">
<li><a href="blog-detail.html">Fullwidth</a></li>
<li><a href="blog-detail-with-left-sidebar.html">With Left Sidebar</a></li>
<li><a href="blog-detail-with-right-sidebar.html">With Right Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-megamenu-parent megamenu-5-columns-group menu-item-depth-0"><a href="portfolio-4-column-with-space.html">Portfolio</a>
<div class="megamenu-child-container">
<ul class="sub-menu">
<li><a href="portfolio-1-column-without-space.html"> I Column</a>
<ul class="sub-menu">
<li><a href="portfolio.html">Fullwidth</a></li>
<li><a href="portfolio-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-without-space.html">Without Space</a></li>
<li><a href="portfolio-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-2-column-without-space.html"> II Column</a>
<ul class="sub-menu">
<li><a href="portfolio-2-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-2-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-2-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-2-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-2-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-2-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-3-column-without-space.html"> III Column</a>
<ul class="sub-menu">
<li><a href="portfolio-3-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-3-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-3-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-3-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-3-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-3-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-4-column-without-space.html"> IV Column</a>
<ul class="sub-menu">
<li><a href="portfolio-4-column-with-space.html">Fullwidth</a></li>
<li><a href="portfolio-4-column-with-lhs.html">With Left Sidebar</a></li>
<li><a href="portfolio-4-column-with-rhs.html">With Right Sidebar</a></li>
<li><a href="portfolio-4-column-without-space.html">Without Space</a></li>
<li><a href="portfolio-4-column-with-pagination.html">With Pagination</a></li>
<li><a href="portfolio-4-column-without-filter.html">Without Filter</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="portfolio-detail.html"> Gallery Single</a>
<ul class="sub-menu">
<li><a href="portfolio-detail-v2.html">Fullwidth</a></li>
<li><a href="portfolio-detail.html">Left Gallery</a></li>
<li><a href="portfolio-detail-v3.html">Right Gallery</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</div>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="shop.html">Shop</a>
<ul class="sub-menu">
<li><a href="shop.html">Shop Pages</a>
<ul class="sub-menu">
<li><a href="shop-without-sidebar.html">Without Sidebar</a></li>
<li><a href="shop.html">With Sidebar</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li><a href="shop-cart.html">Cart</a></li>
<li><a href="shop-checkout.html">Checkout</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
<li class="menu-item-simple-parent"><a href="contact.html" >Contact</a>
<ul class="sub-menu">
<li><a href="contact.html">Contact Layout 1</a></li>
<li><a href="contact-v2.html">Contact Layout 2</a></li>
</ul>
<a class="dt-menu-expand">+</a>
</li>
</ul>
</nav>
<!-- **Nav - End**-->
</div>
</div>
</header><!-- **Header - End** -->
</div>
<!-- **Main - Starts** -->
<div id="main">
<!-- **banner - Starts** -->
<div class="banner">
<!-- **Slider Section** -->
<div id="layerslider_9" class="ls-wp-container" style="width:100%;height:645px;max-width:1920px;margin:0 auto;margin-bottom: 0px;">
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;">
<img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Banner1" class="ls-bg" alt="bg3" />
<div class="ls-l" style="top:170px;left:830px;font-weight:300; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:44px;line-height:46px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:2500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">Create with the </div>
<div class="ls-l" style="top:308px;left:781px;font-weight:normal; z-index:3;font-family:'Lato';font-size:13px;line-height:26px;color:#a2abb8;white-space: nowrap;" data-ls="offsetxin:-100;durationin:2000;delayin:4000;">We present you the <strong>modern multi-purpose HTML5 Template.</strong> <br>Can be used by creatives who likes to make a portfolio of their <br>own or create a website for a company.</div>
<div class="ls-l" style="top:230px;left:830px;font-weight:700; z-index:3;font-family:'Lato';font-size:60px;line-height:26px;color:#01a8df;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:50;durationin:2000;delayin:3000;">BEST IDEA</div>
<div class="ls-l" style="top:135px;left:832px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:3000;"><span style="background: #00a5df; color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 20px; font-weight: 300; line-height: 24px; margin: 10px 0 0; padding: 0 7px 0 7px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; ">Deliciously</span> </div>
<img class="ls-l" style="top:145px;left:780px;white-space: nowrap;" data-ls="durationin:1600;delayin:3500;rotateyin:90;" src="images/sliders/blank.gif" data-src="images/sliders/quote.png" alt="image">
<img class="ls-l" style="top:405px;left:1070px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:5500;rotateyin:180;" src="images/sliders/blank.gif" data-src="images/sliders/html-logo.png" alt="image">
<img class="ls-l" style="top:405px;left:790px;white-space: nowrap;" data-ls="offsetxin:0;delayin:4500;rotateyin:180;" src="images/sliders/blank.gif" data-src="images/sliders/css3-logo.png" alt="image">
<img class="ls-l" style="top:0px;left:70px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;durationin:1500;delayin:500;" src="images/sliders/blank.gif" data-src="images/sliders/browser.png" alt="image">
<img class="ls-l" style="top:196px;left:-32px;white-space: nowrap;" data-ls="offsetxin:-150;durationin:1500;delayin:1500;" src="images/sliders/blank.gif" data-src="images/sliders/iphone6.png" alt="image">
<img class="ls-l" style="top:77px;left:-34px;white-space: nowrap;" data-ls="parallaxlevel:2;" src="images/sliders/blank.gif" data-src="images/sliders/baloon.png" alt="image">
<img class="ls-l" style="top:432px;left:940px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:5000;rotateyin:180;" src="images/sliders/blank.gif" data-src="images/sliders/plus.png" alt="image">
</div>
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;">
<img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Banner2" class="ls-bg" alt="bg1" />
<div class="ls-l" style="top:196px;left:20px;font-weight:300; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:59px;line-height:46px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:200;durationin:2500;delayin:1500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">Create with <span style="color:#21c2f8; font-weight:900">Priority</span> </div>
<div class="ls-l" style="top:266px;left:22px;font-weight:300; z-index:3;font-family:'Lato';font-size:30px;line-height:26px;color:#101017;white-space: nowrap;" data-ls="offsetxin:-100;durationin:2000;delayin:2500;">win the race <span style="color:#21c2f8;">- a modern HTML template</span> </div>
<div class="ls-l" style="top:325px;left:20px;z-index: display:block;width:622px;height:2px;border-bottom:1px solid #101017;font-family:'Ubuntu';font-size:24px;line-height:34px;color:#020203;background:#101017;white-space: nowrap;" data-ls="offsetxin:-500;durationin:2500;delayin:4500;"><br> </div>
<img class="ls-l" style="top:23px;left:623px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;delayin:500;" src="images/sliders/blank.gif" data-src="images/sliders/running-man.png" alt="image">
<p class="ls-l" style="top:172px;left:551px;font-weight:300;font-family:Lato;font-size:123px;color:#a2abb8;white-space: nowrap;" data-ls="durationin:2000;delayin:2000;">&</p>
<div class="ls-l" style="top:360px;left:20px;font-weight:normal; z-index:5; letter-spacing: 7px;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:62px;line-height:46px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:200;durationin:2500;delayin:3500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">SMOOTH + <span style="color:#a2abb8;">CLEAN</span> </div>
</div>
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;">
<img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Banner3" class="ls-bg" alt="bg2" />
<div class="ls-l" style="top:185px;left:15px;font-weight:normal; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:60px;line-height:46px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:2500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">PRIORITY<span style="font-weight:300;padding-left:110px">TEMPLATE</span> </div>
<div class="ls-l" style="top:150px;left:20px;font-weight:700; z-index:3;font-family:'Lato';font-size:18px;line-height:26px;color:#01a8df;white-space: nowrap;" data-ls="offsetxin:-100;durationin:2000;delayin:1500;">Unlimited Combinations from</div>
<div class="ls-l" style="top:257px;left:20px;font-weight:300; z-index:3; letter-spacing:5.5px;font-family:'Lato';font-size:43px;line-height:26px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;durationin:2000;delayin:3500;">Smooth & Clean</div>
<div class="ls-l" style="top:323px;left:20px;font-weight:300;font-family:'Lato';font-size:18px;color:#101017;white-space: nowrap;" data-ls="delayin:4500;"><span style="color:#00a5df; font-weight:700;">8+ </span>Home Page Designs</div>
<p class="ls-l" style="top:470px;left:20px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:7000;"> <a href="#" class="dt-sc-button1 ico-button"> VIEW DEMO</a></p>
<div class="ls-l" style="top:178px;left:302px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:3000;"><span style="background: #00a5df; color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 20px; font-weight: 300; line-height: 24px; margin: 10px 0 0; padding: 0 7px 0 7px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; }">HTML 5 </span> </div>
<img class="ls-l" style="top:0px;left:636px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:500;durationin:1800;" src="images/sliders/blank.gif" data-src="images/sliders/woman.png" alt="image">
<div class="ls-l" style="top:353px;left:20px;font-weight:300;font-family:'Lato';font-size:18px;color:#101017;white-space: nowrap;" data-ls="delayin:5000;">Lots of <span style="color:#00a5df; font-weight:700;">Shortcode Elements</span></div>
<div class="ls-l" style="top:383px;left:20px;font-weight:300;font-family:'Lato';font-size:18px;color:#101017;white-space: nowrap;" data-ls="delayin:5500;">Coded with <span style="color:#00a5df; font-weight:700;">HTML 5 & Css3</span> </div>
<div class="ls-l" style="top:413px;left:20px;font-weight:300;font-family:'Lato';font-size:18px;color:#101017;white-space: nowrap;" data-ls="delayin:6000;"><span style="color:#00a5df; font-weight:700;">Animated</span> Elements</div>
<p class="ls-l" style="top:470px;left:210px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:7500;"> <a href="#" class="dt-sc-button2">PURCHASE NOW</a></p>
</div>
</div>
</div><!-- **banner - Ends** -->
<!-- **intro-text - starts** -->
<div class="intro-text type2">
<div class="container">
<div class="column dt-sc-two-third first">
<h4>Great Combinations of <span>elements</span> only from PRIORITY</h4>
</div>
<div class="column dt-sc-one-third">
<a class="dt-sc-button large" href="#">Purchase this theme <span class="fa fa-angle-right"></span></a>
</div>
</div>
</div><!-- **intro-text - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="dt-sc-margin65"></div>
<div class="container">
<div class="column dt-sc-one-third first">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInRight" data-delay="100">
<img src="images/admin1.png" alt="admin"/>
</div>
<h4> <a href="#"> Awesome Features </a> </h4>
<p>Donec sodales sagittis magna. Sed conse quat, leo eget bibendum sodales, augue velit cursus nunc. </p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInUp" data-delay="100">
<img src="images/tablet-icon1.png" alt="tablet"/>
</div>
<h4> <a href="#"> 100% Responsive </a> </h4>
<p>Etiam sit amet orci eget eros fauc ibus la tincidunt. Duis leo. Sed fringilla mauris sit amet nibh.</p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInLeft" data-delay="100">
<img src="images/camera1.png" alt="plane"/>
</div>
<h4> <a href="#"> Media Support </a> </h4>
<p>Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui.</p>
</div>
</div>
<div class="dt-sc-margin30"></div>
<div class="column dt-sc-one-third first">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInRight" data-delay="100">
<img src="images/power-gears1.png" alt="flag"/>
</div>
<h4> <a href="#"> Extremely Flexible </a> </h4>
<p>Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. </p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInUp" data-delay="100">
<img src="images/battery.png" alt="flag"/>
</div>
<h4> <a href="#"> Light Weight </a> </h4>
<p>Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui.</p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInLeft" data-delay="100">
<img src="images/watch.png" alt="flag"/>
</div>
<h4> <a href="#"> Latest Design Trend </a> </h4>
<p>Etiam sit amet orci eget eros fauc ibus la tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. </p>
</div>
</div>
<div class="dt-sc-margin30"></div>
<div class="column dt-sc-one-third first">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInRight" data-delay="100">
<img src="images/book-mark.png" alt="flag"/>
</div>
<h4> <a href="#"> Exclusive Documentation </a> </h4>
<p>Donec sodales sagittis magna. Sed conse quat, leo eget bibendum sodales, augue velit cursus nunc. </p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInUp" data-delay="100">
<img src="images/speaker.png" alt="flag"/>
</div>
<h4> <a href="#"> Product Page </a> </h4>
<p>Etiam sit amet orci eget eros fauc ibus la tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. </p>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-ico-content type7">
<div class="icon animate" data-animation="fadeInLeft" data-delay="100">
<img src="images/brush-bucket.png" alt="flag"/>
</div>
<h4> <a href="#"> Unlimited Colors </a> </h4>
<p>Vestibulum purus quam, scelerisque ut, mollis sed, nonummy id, metus. Nullam accumsan lorem in dui.</p>
</div>
</div>
</div>
<div class="dt-sc-margin50"></div>
</div><!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section grey">
<div class="dt-sc-margin50"></div>
<div class="container">
<h2 class="aligncenter">Our Portfolio</h2>
<div class="sorting-container">
<a data-filter=".all-sort" class="active-sort" href="#" >All</a>
<a data-filter=".photography-sort" href="#" >Photography</a>
<a href="#" data-filter=".outdoors-sort" >Outdoors</a>
<a href="#" data-filter=".fashion-sort" >Fashion</a>
<a data-filter=".graphic-sort" href="#" >Graphic Design</a>
</div>
<div class="dt-sc-hr-invisible-small"></div>
<!-- **portfolio-container - Starts** -->
<div class="portfolio-container no-space">
<div class="portfolio dt-sc-one-fourth no-space column all-sort outdoors-sort fashion-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail-v2.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail-v2.html"> Dandelion Falls </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort fashion-sort graphic-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail.html"> Fashion </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort fashion-sort photography-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail-v2.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail-v2.html"> World is ours </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort photography-sort outdoors-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail.html"> Love the Life </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort fashion-sort outdoors-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail-v2.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail-v2.html"> Snow Time </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort graphic-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail.html"> Black Jade </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort photography-sort graphic-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail-v2.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail-v2.html"> Photography </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
<div class="portfolio dt-sc-one-fourth no-space column all-sort graphic-sort">
<!-- **portfolio-thumb - Starts** -->
<div class="portfolio-thumb">
<figure>
<img src="http://placehold.it/1200x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1200x800&text=Gallery" data-gal="prettyPhoto[gallery]"><span class="fa fa-search"></span></a>
<a class="link" href="portfolio-detail.html"><span class="fa fa-link"></span></a>
<div class="portfolio-content">
<h5> <a href="portfolio-detail.html"> An Adventure </a> </h5>
<span class="fa fa-sort-up"></span>
</div>
</div>
</figure>
</div> <!-- **portfolio-thumb - Ends** -->
</div>
</div> <!-- **portfolio-container - Ends** -->
<div class="dt-sc-hr-invisible"></div>
</div>
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="parallax full-width-section fullwidth-testimonial">
<div class="container">
<div class="dt-sc-testimonial-wrapper type2">
<ul class="dt-sc-testimonial-carousel">
<li> <div class="dt-sc-testimonial">
<h5>" This template is composed of colors. A great deal if you want a colorful & vibrant website for your business or portfolio.<br/>I highly recommend it."</h5>
<span>Sarah Mitchell</span>
<div class="dt-sc-margin30"></div>
<div class="author">
<img src="http://www.placehold.it/80x80&text=Image" alt="image"/>
</div>
</div> </li>
<li> <div class="dt-sc-testimonial">
<h5>" This template is composed of colors. A great deal if you want a colorful & vibrant website for your business or portfolio.<br/>I highly recommend it. A great deal."</h5>
<span> Sean Bean </span>
<div class="dt-sc-margin30"></div>
<div class="author">
<img src="http://www.placehold.it/80x80&text=Image" alt="image"/>
</div>
</div> </li>
<li> <div class="dt-sc-testimonial">
<h5>" This template is composed of colors. A great deal if you want a colorful & vibrant website for your business or portfolio.<br/>I highly recommend it. Website for your business."</h5>
<span> Mathew Braveheart </span>
<div class="dt-sc-margin30"></div>
<div class="author">
<img src="http://www.placehold.it/80x80&text=Image" alt="image"/>
</div>
</div> </li>
</ul>
<div class="slider-controls">
<div class="pager">
<a href="#"> <span> 1 </span> </a>
<a href="#"> <span> 2 </span> </a>
<a href="#"> <span> 3 </span> </a>
</div>
</div>
</div>
</div>
</div><!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="dt-sc-margin50"></div>
<div class="container">
<h2 class="aligncenter">Recent Blog</h2>
<p class="middle-align">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical<br/> Latin literature from 45 BC, making it over 2000 years old. </p>
<div class="dt-sc-hr-invisible-small"></div>
<div class="column dt-sc-one-third first animate" data-animation="fadeInDown" data-delay="100">
<!-- **entry-post - Starts** -->
<article class="entry-post">
<div class="entry-meta">
<div class="date">
<p> <span>28</span> FEB 2014 </p>
</div>
<div class="post-comments">
<a href="#"><span class="fa fa-comment"></span> 12</a>
</div>
</div>
<div class="entry-post-content">
<div class="entry-thumb">
<a href="blog-detail-with-right-sidebar.html"><img src="http://placehold.it/1170x767&text=Blog" alt="image"/></a>
</div>
<div class="entry-detail">
<h5><a href="blog-detail-with-right-sidebar.html"> Switzerland at its best </a></h5>
<p> Occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. </p>
<a class="dt-sc-button small" href="#">Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
</article><!-- **entry-post - Ends** -->
</div>
<div class="column dt-sc-one-third animate" data-animation="fadeInUp" data-delay="100">
<!-- **entry-post - Starts** -->
<article class="entry-post">
<div class="entry-meta">
<div class="date">
<p> <span>27</span> AUG 2014 </p>
</div>
<div class="post-comments">
<a href="#"><span class="fa fa-comment"></span> 15</a>
</div>
</div>
<div class="entry-post-content">
<div class="entry-thumb">
<a href="blog-detail-with-right-sidebar.html"><img src="http://placehold.it/1170x767&text=Blog" alt="image"/></a>
</div>
<div class="entry-detail">
<h5><a href="blog-detail-with-right-sidebar.html"> Get a little closer to the graphics. </a></h5>
<p> Rokccaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum.. </p>
<a class="dt-sc-button small" href="#">Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
</article><!-- **entry-post - Ends** -->
</div>
<div class="column dt-sc-one-third animate" data-animation="fadeInDown" data-delay="100">
<!-- **entry-post - Starts** -->
<article class="entry-post">
<div class="entry-meta">
<div class="date">
<p> <span>10</span> NOV 2014 </p>
</div>
<div class="post-comments">
<a href="blog-detail-with-right-sidebar.html"><span class="fa fa-comment"></span> 18</a>
</div>
</div>
<div class="entry-post-content">
<div class="entry-thumb">
<a href="blog-detail-with-right-sidebar.html"><img src="http://placehold.it/1170x767&text=Blog" alt="image"/></a>
</div>
<div class="entry-detail">
<h5><a href="#"> Get the App now 35% Discount </a></h5>
<p> Eccaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. </p>
<a class="dt-sc-button small" href="#">Read More <span class="fa fa-long-arrow-right"></span> </a>
</div>
</div>
</article><!-- **entry-post - Ends** -->
</div>
<div class="dt-sc-margin70"></div>
</div>
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section grey">
<div class="dt-sc-hr-invisible"></div>
<div class="container">
<!-- **dt-sc-partner-carousel-wrapper - Starts** -->
<div class="dt-sc-partner-carousel-wrapper">
<ul class="dt-sc-partner-carousel">
<li><a href="#"><img src="http://placehold.it/141x142&text=Image" alt="image"/></a></li>
<li><a href="#"><img src="http://placehold.it/141x142&text=Image" alt="image"/></a></li>
<li><a href="#"><img src="http://placehold.it/141x142&text=Image" alt="image"/></a></li>
<li><a href="#"><img src="http://placehold.it/141x142&text=Image" alt="image"/></a></li>
<li><a href="#"><img src="http://placehold.it/141x142&text=Image" alt="image"/></a></li>
</ul>
</div><!-- **dt-sc-partner-carousel-wrapper - Starts** -->
</div>
<div class="dt-sc-hr-invisible-small"></div>
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div id="map"></div>
<div class="dt-sc-margin50"></div>
<div class="container">
<div class="column dt-sc-three-fourth first animate" data-animation="fadeInRight" data-delay="100">
<div class="hr-title">
<h3>Give a Message</h3>
<div class="title-sep">
</div>
</div>
<form method="post" class="dt-sc-contact-form" action="php/send.php" name="frmcontact">
<div class="column dt-sc-one-third first">
<p> <span> <input type="text" placeholder="Name*" name="txtname" value="" required /> </span> </p>
</div>
<div class="column dt-sc-one-third">
<p> <span> <input type="email" placeholder="Email*" name="txtemail" value="" required /> </span> </p>
</div>
<div class="column dt-sc-one-third">
<p> <span> <input type="text" placeholder="Phone" name="txtphone" value="" /> </span> </p>
</div>
<p> <textarea placeholder="Message*" name="txtmessage" required ></textarea> </p>
<p> <input type="submit" value="Send Message" name="submit" /> </p>
</form>
<div id="ajax_contact_msg"></div>
</div>
<div class="column dt-sc-one-fourth animate" data-animation="fadeInLeft" data-delay="100">
<div class="hr-title">
<h3>Contact Info</h3>
<div class="title-sep">
</div>
</div>
<p class="dt-sc-contact-detail"> We are located in Melbourne, serving clients worldwide. Shoot us an email, give us a call, or fill out our Project Brief if you're interested in getting started. </p>
<!-- **dt-sc-contact-info - Starts** -->
<div class="dt-sc-contact-info">
<p> <i class="fa fa-location-arrow"></i> 121 King St, Melbourne VIC 3000,<br/> Australia </p>
<p> <i class="fa fa-phone"></i> +61 3 8376 6284 </p>
<p> <i class="fa fa-globe"></i> <a href="#"> envato.com </a> </p>
<p> <i class="fa fa-envelope"></i> <a href="#"> [email protected] </a> </p>
</div> <!-- **dt-sc-contact-info - Ends** -->
</div>
</div>
<div class="dt-sc-margin80"></div>
</div> <!-- **Full-width-section - Ends** -->
</div><!-- **Main - Ends** -->
<!-- **Footer** -->
<footer id="footer">
<div class="footer-widgets-wrapper">
<div class="container">
<div class="column dt-sc-one-fourth first">
<aside class="widget widget_text">
<h3 class="widget-title">Contact <span class="wlast"> Us </span><span class="small-line"> </span></h3>
<p> <i class="fa fa-phone"></i> <span>Phone:</span> +22 004 324 1124 </p>
<p> <i class="fa fa-print"></i> <span>Fax:</span> +22 004 324 1124 </p>
<p> <i class="fa fa-envelope"></i> <span> Email:</span> <a href="#">[email protected]</a> </p>
<p> <i class="fa fa-globe"></i> <span>Web:</span> <a href="#">www.Wedesignthemes.com</a> </p>
<p> <i class="fa fa-location-arrow"></i> <span>58, Thomson Street, Edison Avenue,
Baltimore, USA</span> </p>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget widget_popular_entries">
<h3 class="widget-title">Popular <span class="wlast">Posts</span><span class="small-line"> </span></h3>
<div class="recent-property-widget">
<ul>
<li> <a class="thumb" href="#"><img src="http://www.placehold.it/70x70&text=Image" alt="image"/></a>
<h6><a href="#">Here comes the title for
the post with 2 lines</a></h6>
<div class="entry-meta">
<p><span class="fa fa-calendar"></span>03Aug2012</p>
<p><span class="fa fa-user"></span><a href="">admin</a></p>
</div>
</li>
<li> <a class="thumb" href="#"><img src="http://www.placehold.it/70x70&text=Image" alt="image"/></a>
<h6><a href="#">Here comes the title for
the post with 2 lines</a></h6>
<div class="entry-meta">
<p><span class="fa fa-calendar"></span>03Aug2012</p>
<p><span class="fa fa-user"></span><a href="">admin</a></p>
</div>
</li>
</ul>
</div>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget widget_tweetbox">
<h3 class="widget-title">Twitter <span class="wlast">Feeds</span><span class="small-line"> </span></h3>
<div class="tweet_list"> </div>
</aside>
</div>
<div class="column dt-sc-one-fourth">
<aside class="widget mailchimp">
<h3 class="widget-title">Newsletter <span class="wlast">Subscription</span><span class="small-line"> </span></h3>
<p>But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was of the great explorer.</p>
<form method="post" class="mailchimp-form" name="frmNewsletter" action="php/subscribe.php">
<p><span class="fa fa-envelope"></span>
<input type="email" placeholder="Enter Email" name="email" value="" required/>
<input type="submit" name="submit" class="dt-sc-button" value="Subscribe" /></p>
</form>
<div id="ajax_newsletter_msg"></div>
<div class="dt-sc-hr-invisible-small"></div>
<ul class="dt-sc-social-icons">
<li><a class="dt-sc-tooltip-top facebook" href='#' target="_blank" title="Facebook"> <i class="fa fa-facebook"></i> </a></li>
<li><a class="dt-sc-tooltip-top twitter" href='#' target="_blank" title="Twitter"> <i class="fa fa-twitter"></i> </a></li>
<li><a class="dt-sc-tooltip-top google-plus" href='#' target="_blank" title="Google-plus"> <i class="fa fa-google-plus"></i> </a></li>
<li><a class="dt-sc-tooltip-top pinterest" href='#' target="_blank" title="Pinterest"> <i class="fa fa-pinterest"></i> </a></li>
<li><a class="dt-sc-tooltip-top youtube" href='#' target="_blank" title="Youtube"> <i class="fa fa-youtube"></i> </a></li>
</ul>
</aside>
</div>
</div>
</div><!-- **footer-widgets-wrapper - End** -->
<div class="copyright">
<div class="container">
<p>Priority theme by iamdesigning. © 2015 <a href="#">BuddhaThemes</a></p>
<ul class="footer-links">
<li><a href="index.html">Home</a>/</li>
<li><a href="about.html">About</a>/</li>
<li><a href="tabs-accordions.html">Pages</a>/</li>
<li><a href="blog.html">Blog</a>/</li>
<li><a href="portfolio-3-column-without-space.html">Portfolio</a>/</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</footer> <!-- **Footer - End** -->
</div><!-- **inner-wrapper - End** -->
</div><!-- **Wrapper - End** -->
<!-- **jQuery** -->
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/jquery-migrate.min.js"></script>
<script src="js/preloader.js" type="text/javascript"></script>
<script src="js/pace.min.js" type="text/javascript"></script>
<script src="js/jquery.tabs.min.js"></script>
<script src="js/jquery.tipTip.minified.js"></script>
<script src="js/jquery-easing-1.3.js" type="text/javascript"></script>
<script src="js/jquery.carouFredSel-6.2.1-packed.js" type="text/javascript"></script>
<script src="js/jquery.parallax-1.1.3.js" type="text/javascript"></script>
<script src="js/jquery.inview.js" type="text/javascript"></script>
<script src="js/jquery.nav.js" type="text/javascript"></script>
<script src="js/layerslider.transitions.js"></script>
<script src="js/layerslider.kreaturamedia.jquery.js"></script>
<script src="js/greensock.js"></script>