-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtravel.html
1376 lines (1279 loc) · 104 KB
/
travel.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 | TRAVEL </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="additional-css" rel="stylesheet" href="additional-css/travel/style.css" type="text/css" media="all"/>
<link id="skin-css" rel="stylesheet" href="skins/blueturquoise/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" />
<link rel="stylesheet" type="text/css" href="css/jquery-ui.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 type6">
<!-- **container - Starts** -->
<div class="container">
<ul class="top-contact-details alignleft">
<li> <span>Have any questions?</span></li>
<li> <i class="fa fa-phone"></i><span>(747) 280-3101</span></li>
<li> <i class="fa fa-envelope"></i><a href="#">[email protected]</a></li>
</ul>
<ul class="top-social-icons alignright">
<li> <a title="facebook" href="#"> <i class="fa fa-facebook"></i> </a> </li>
<li> <a title="twitter" href="#"> <i class="fa fa-twitter"></i> </a> </li>
<li> <a title="pinterest" href="#"> <i class="fa fa-pinterest"></i> </a> </li>
<li> <a title="linkedin" href="#"> <i class="fa fa-linkedin"></i> </a> </li>
<li> <a title="dribbble" href="#"> <i class="fa fa-dribbble"></i> </a> </li>
</ul>
</div> <!-- **container - End** -->
</div><!-- **Top Bar - End** -->
<div id="header-wrapper">
<!-- **Header** -->
<header class="header">
<div class="container">
<!-- **Logo - End** -->
<div id="logo">
<a href="travel.html" title="Travel"> <img src="images/travel/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><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_11" 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=Slider" class="ls-bg" alt="travel-bg" />
<div class="ls-l" style="top:121px;left:449px;font-weight:300; z-index:5; letter-spacing:8px;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:500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">Travel with </div>
<div class="ls-l" style="top:250px;left:214px;font-weight:normal; z-index:3; text-align: center;font-family:'Lato';font-size:13px;line-height:26px;color:#101017;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;durationin:2000;delayin:2000;">We present you the <strong>modern multi-purpose HTML5 Template.</strong> With the addition we have added multiple demos that will make <br><strong>PRIORITY</strong> a versatile template for you business of any kind.</div>
<div class="ls-l" style="top:180px;left:453px;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:1000;">PRIORITY</div><div class="ls-l" style="top:83px;left:450px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:1000;">
<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; ">Peacefully</span> </div>
<img class="ls-l" style="top:85px;left:390px;white-space: nowrap;" data-ls="durationin:1600;delayin:1500;rotateyin:90;" src="images/sliders/blank.gif" data-src="images/sliders/quote2.png" alt="">
<img class="ls-l" style="top:5px;left:731px;white-space: nowrap;" data-ls="delayin:3500;parallaxlevel:2;" src="images/sliders/blank.gif" data-src="images/sliders/baloon.png" alt="">
</div>
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;">
<img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Slider" class="ls-bg" alt="hosting-bg" />
<div class="ls-l" style="top:170px;left:820px;font-weight:300; z-index:5; text-transform: uppercase; letter-spacing:3px;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:40px;line-height:46px;color:#ffffff;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;">Hosting with</div>
<div class="ls-l" style="top:308px;left:830px;font-weight:normal; z-index:3; text-align: center;font-family:'Lato';font-size:13px;line-height:26px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:-100;durationin:2000;delayin:4000;">With multiple demo types <strong>PRIORITY</strong> can be used as a <br>template for a multipurpose website with lots of<br>awesome features.</div>
<div class="ls-l" style="top:230px;left:820px;font-weight:700; z-index:3;font-family:'Lato';font-size:70px;line-height:26px;color:#21c2f8;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:50;durationin:2000;delayin:3000;">PRIORITY</div>
<div class="ls-l" style="top:135px;left:820px;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; ">Better</span> </div>
<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="">
<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="">
<img class="ls-l" style="top:0px;left:-10px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-300;durationin:700;delayin:2500;" src="images/sliders/blank.gif" data-src="images/sliders/hosting-left-image.png" alt="">
<img class="ls-l" style="top:162px;left:424px;white-space: nowrap;" data-ls="offsetxin:0;delayin:500;rotatein:180;parallaxlevel:2;" src="images/sliders/blank.gif" data-src="images/sliders/circle.png" alt="">
<img class="ls-l" style="top:432px;left:940px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:5000;rotatein:180;rotateyin:180;" src="images/sliders/blank.gif" data-src="images/sliders/plus2.png" alt="">
<img class="ls-l" style="top:228px;left:473px;white-space: nowrap;" data-ls="delayin:1500;rotatexin:180;" src="images/sliders/blank.gif" data-src="images/sliders/hosting-image.png" alt="">
</div>
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;">
<img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Slider" class="ls-bg" alt="fitness-bg" />
<div class="ls-l" style="top:335px;left:215px;z-index:3;width:740px;height:1px;border-bottom:1px solid #fff;background:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;delayin:2500;scalexin:0;"><br> </div>
<div class="ls-l" style="top:260px;left:194px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:60px;line-height:46px;color:#ff9839;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">
<span style="font-weight:300; color:#fff;"> Fitness Theme with </span> PRIORITY</div>
<div class="ls-l" style="top:200px;left:389px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:30px;line-height:46px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-30;durationin:2000;delayin:1500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">
<span style="font-weight:300"> Create </span>Variety <span style="font-weight:300">of Templates </span> </div>
<div class="ls-l" style="top:375px;left:463px;z-index:3;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;durationin:2500;delayin:3000;"> <a href="#" class="dt-sc-button3">PURCHASE NOW</a></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=Slider" class="ls-bg" alt="real-estate-bg" />
<div class="ls-l" style="top:265px;left:40px;z-index:3;width:380px;height:2px;border-bottom:1px solid #000;background:#000000;white-space: nowrap;" data-ls="offsetxin:0;delayin:2500;scalexin:0;"><br> </div>
<div class="ls-l" style="top:200px;left:60px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:60px;line-height:46px;color:#000000;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">PRIORITY<span style="font-weight:300;"> as</span> </div>
<div class="ls-l" style="top:270px;left:65px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:37px;line-height:46px;color:#000000;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-30;durationin:2000;delayin:1500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">Real Estate<span style="font-weight:300"> Template </span> </div>
<div class="ls-l" style="top:380px;left:115px;z-index:3;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;durationin:2500;delayin:3000;"> <a href="#" class="dt-sc-button2">PURCHASE NOW</a> </div>
<img class="ls-l" style="top:0px;left:0px;z-index:1;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-700;durationin:2000;" src="images/sliders/blank.gif" data-src="images/sliders/transparent-bg.png" alt="">
</div>
<div class="ls-slide" data-ls="slidedelay:10000;transition2d:4;"><img src="images/sliders/blank.gif" data-src="http://placehold.it/1920x645&text=Slider" class="ls-bg" alt="church-bg" />
<div class="ls-l" style="top:272px;left:623px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:45px;line-height:46px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:1500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">
<span style="font-weight:300">as </span>CHURCH<span style="font-weight:300;"> template</span> </div>
<p class="ls-l" style="top:367px;left:626px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:2500;">
<a href="#" class="dt-sc-button3">VIEW DEMO</a></p>
<div class="ls-l" style="top:179px;left:825px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:1000;">
<span style="background: #bca250; 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>
<div class="ls-l" style="top:367px;left:823px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:3000;"> <a href="#" class="dt-sc-button3">PURCHASE NOW</a></div>
<div class="ls-l" style="top:182px;left:479px;font-weight:700; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:45px;line-height:46px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:500;transformoriginin:left 50% 0;offsetxout:0;rotateyout:-90;transformoriginout:left 50% 0;">
<span style="font-weight:300;">"With </span>PRIORITY<span style="font-weight:300;padding-left:110px"> its complete"</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=Slider" class="ls-bg" alt="attorney-bg" />
<div class="ls-l" style="top:130px;left:492px;font-weight:normal; z-index:5;padding-left:0px;font-family:'Lato', 'Open Sans', sans-serif;font-size:60px;line-height:46px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:-100;durationin:2000;delayin:500;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:323px;left:700px;font-weight:700; z-index:3; text-align:right;font-family:'Lato';font-size:18px;line-height:26px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:-100;durationin:2000;delayin:3000;">Available <br><span style="font-size:50px;">DEMOS</span> </div>
<div class="ls-l" style="top:193px;left:909px;font-weight:300; z-index:3; letter-spacing:5.5px;font-family:'Lato';font-size:43px;line-height:26px;color:#ffffff;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;durationin:2000;delayin:1500;">as attorney</div><div class="ls-l" style="top:270px;left:1013px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:4500;">
<span style="color:#bca250; font-weight:700;">Attorney </span>Demo</div>
<p class="ls-l" style="top:476px;left:754px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:7500;"> <a href="#" class="dt-sc-button3">VIEW DEMO</a> </p>
<div class="ls-l" style="top:124px;left:778px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:100;delayin:1000;">
<span style="background: #bca250; 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:306px;left:891px;white-space: nowrap;" data-ls="offsetxin:500;durationin:1800;delayin:3500;" src="images/sliders/blank.gif" data-src="images/sliders/attorney-arrow.png" alt="arrow">
<div class="ls-l" style="top:475px;left:950px;white-space: nowrap;" data-ls="offsetxin:-150;delayin:8000;"> <a href="#" class="dt-sc-button3">PURCHASE NOW</a> </div>
<div class="ls-l" style="top:300px;left:1030px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:5000;">
<span style="color:#bca250; font-weight:700;">Church </span>Demo</div>
<div class="ls-l" style="top:330px;left:1035px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:5500;">
<span style="color:#bca250; font-weight:700;">Fitness </span>Demo</div>
<div class="ls-l" style="top:360px;left:1025px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:6000;">
<span style="color:#bca250; font-weight:700;">Hosting </span>Demo</div>
<div class="ls-l" style="top:390px;left:995px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:6500;">
<span style="color:#bca250; font-weight:700;">Real Estate </span>Demo</div>
<div class="ls-l" style="top:420px;left:1040px;font-weight:300; text-transform: uppercase; text-align: right;font-family:'Lato';font-size:18px;color:#ffffff;white-space: nowrap;" data-ls="delayin:7000;">
<span style="color:#bca250; font-weight:700;">Travel </span>Demo</div>
</div>
</div>
</div><!-- **banner - Ends** -->
<div class="full-width-section location-bg">
<div class="dt-sc-margin30"></div>
<div class="container">
<h3>Where Do You Want To Travel?</h3>
<div class="column dt-sc-one-half first">
<div class="dt-sc-location-wrapper">
<div class="column dt-sc-one-third first">
<div class="dt-sc-location">
<input type="radio" checked="checked" id="africa" value="africa" name="place" />
<label for="africa"><span></span> AFRICA </label>
</div>
<div class="dt-sc-location">
<input type="radio" id="europe" value="europe" name="place" />
<label for="europe"><span></span>EUROPE</label>
</div>
<div class="dt-sc-location">
<input type="radio" id="america_c" value="america_c" name="place" />
<label for="america_c"><span></span>CENTRAL AMERICA</label>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-location">
<input type="radio" id="australia" value="australia" name="place" />
<label for="australia"><span></span>AUSTRALIA</label>
</div>
<div class="dt-sc-location">
<input type="radio" id="dubai" value="dubai" name="place" />
<label for="dubai"><span></span>DUBAI</label>
</div>
<div class="dt-sc-location">
<input type="radio" id="asia" value="asia" name="place" />
<label for="asia"><span></span>ASIA</label>
</div>
</div>
<div class="column dt-sc-one-third">
<div class="dt-sc-location">
<input type="radio" id="carribean" value="carribean" name="place" />
<label for="carribean"><span></span>CARRIBEAN</label>
</div>
<div class="dt-sc-location">
<input type="radio" id="america_s" value="america_s" name="place" />
<label for="america_s"><span></span>SOUTH AMERICA</label>
</div>
<div class="dt-sc-location">
<input type="radio" id="mid_east" value="mid_east" name="place" />
<label for="mid_east"><span></span>MIDDLE EAST</label>
</div>
</div>
</div>
</div>
<div class="column dt-sc-one-half">
<form class="dt-sc-search-form" method="post">
<div class="column dt-sc-one-half first">
<input class="date-picker" id="datepicker" type="text" name="startdate" placeholder="Check-in date" />
<span class="date-icon fa fa-calendar"></span>
</div>
<div class="column dt-sc-one-half">
<input class="date-picker" id="datepicker-enddate" type="text" name="enddate" placeholder="Check-out date" />
<span class="date-icon fa fa-calendar"></span>
</div>
<div class="column dt-sc-one-half first">
<input type="text" placeholder="Departure City" class="texr" name="city_from" />
</div>
<div class="column dt-sc-one-half">
<div class="dt-sc-margin10"></div>
<button class="button" value="Check available time" type="submit">search now</button>
</div>
</form>
</div>
</div>
<div class="dt-sc-margin20"></div>
</div>
<!-- **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 with-left-icon">
<div class="icon animate" data-animation="fadeInRight" data-delay="100">
<span class="fa fa-shield"></span>
</div>
<h4> <a href="#"> Special Activities </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 with-left-icon">
<div class="icon animate" data-animation="fadeInUp" data-delay="100">
<span class="fa fa-plane"></span>
</div>
<h4> <a href="#"> Travel Arrangements </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 with-left-icon">
<div class="icon animate" data-animation="fadeInLeft" data-delay="100">
<span class="fa fa-user"></span>
</div>
<h4> <a href="#"> Private Guide </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 with-left-icon">
<div class="icon animate" data-animation="fadeInRight" data-delay="100">
<span class="fa fa-arrows"></span>
</div>
<h4> <a href="#"> Location Manager </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 with-left-icon">
<div class="icon animate" data-animation="fadeInUp" data-delay="100">
<span class="fa fa-ticket"></span>
</div>
<h4> <a href="#"> Travel Packages </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 with-left-icon">
<div class="icon animate" data-animation="fadeInLeft" data-delay="100">
<span class="fa fa-sitemap"></span>
</div>
<h4> <a href="#"> Discounts for Memberships. </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>
</div><!-- **Full-width-section - Ends** -->
<div class="dt-sc-hr-invisible"></div>
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="container">
<div class="hr-title dt-sc-hr-invisible-small">
<h3>Welcome to Trendy Travel!</h3>
<div class="title-sep"> </div>
</div>
<!-- **column - Starts** -->
<div class="column dt-sc-one-third first">
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<div class="dt-sc-margin25"></div>
<blockquote class="type1" > <q>Contrary to popular belief, Lorem Ipsum is not simply random text, making it over 2000 years old this is the larger one and this is really a larger one.</q> </blockquote>
<div class="dt-sc-margin25"></div>
<p>It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages versions of Lorem Ipsum.</p>
<a class="dt-sc-button medium" target="_blank" href="#"><span class="fa fa-headphones"> </span>Talk to Us: 001 243</a>
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-two-third">
<img src="http://placehold.it/750x450&text=Image" alt="image"/>
</div> <!-- **column - Ends** -->
</div> <!-- **container - Ends** -->
<div class="dt-sc-margin50"></div>
</div><!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="full-width-section">
<div class="container">
<!-- **hr-title - Starts** -->
<div class="hr-title dt-sc-hr-invisible-small">
<h2>Packages</h2>
<!-- **title-sep - Starts** -->
<div class="title-sep">
</div> <!-- **title-sep - Ends** -->
</div> <!-- **hr-title - Ends** -->
<div class="events-carousel-wrapper type2">
<div class="events-carousel">
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth">
<!-- **events - Starts** -->
<div class="events">
<!-- **event-thumb - Starts** -->
<div class="event-thumb">
<a href="#"> <img src="http://placehold.it/450x450&text=Packages" alt="image"/> </a>
</div> <!-- **event-thumb - Ends** -->
<!-- **event-detail - Starts** -->
<div class="event-detail">
<h5> <a href="#">Peek Mountain View</a> </h5>
<p>LAS VEGAS, NEVADA</p>
<div class="dt-sc-margin10"></div>
<!-- **event-meta - Starts** -->
<div class="event-meta">
<p><span class="fa fa-calendar"> </span> No of Days: 4 </p>
<p><a href="#"><span class="fa fa-user"> </span> People: 3 </a></p>
</div> <!-- **event-meta - Ends** -->
<div class="event-content">
<span class="package-price">$200</span>
<a href="#" class="dt-sc-button type2 small">View details</a>
</div>
</div> <!-- **event-detail - Ends** -->
</div> <!-- **events - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth">
<!-- **events - Starts** -->
<div class="events">
<!-- **event-thumb - Starts** -->
<div class="event-thumb">
<a href="#"> <img src="http://placehold.it/450x450&text=Packages" alt="image"/> </a>
</div> <!-- **event-thumb - Ends** -->
<!-- **event-detail - Starts** -->
<div class="event-detail">
<h5> <a href="#">Living Spring Zone</a> </h5>
<p>LAS VEGAS, NEVADA</p>
<div class="dt-sc-margin10"></div>
<!-- **event-meta - Starts** -->
<div class="event-meta">
<p><span class="fa fa-calendar"> </span> No of Days: 4 </p>
<p><a href="#"><span class="fa fa-user"> </span> People: 3 </a></p>
</div> <!-- **event-meta - Ends** -->
<div class="event-content">
<span class="package-price">$154</span>
<a href="#" class="dt-sc-button type2 small">View details </a>
</div>
</div> <!-- **event-detail - Ends** -->
</div> <!-- **events - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth">
<!-- **events - Starts** -->
<div class="events">
<!-- **event-thumb - Starts** -->
<div class="event-thumb">
<a href="#"> <img src="http://placehold.it/450x450&text=Packages" alt="image"/> </a>
</div> <!-- **event-thumb - Ends** -->
<!-- **event-detail - Starts** -->
<div class="event-detail">
<h5> <a href="#">Weekdays in Thailand</a> </h5>
<p>LAS VEGAS, NEVADA</p>
<div class="dt-sc-margin10"></div>
<!-- **event-meta - Starts** -->
<div class="event-meta">
<p><span class="fa fa-calendar"> </span> No of Days: 4 </p>
<p><a href="#"><span class="fa fa-user"> </span> People: 4 </a></p>
</div> <!-- **event-meta - Ends** -->
<div class="event-content">
<span class="package-price">$353</span>
<a href="#" class="dt-sc-button type2 small">View details</a>
</div>
</div> <!-- **event-detail - Ends** -->
</div> <!-- **events - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth">
<!-- **events - Starts** -->
<div class="events">
<!-- **event-thumb - Starts** -->
<div class="event-thumb">
<a href="#"> <img src="http://placehold.it/450x450&text=Packages" alt="image"/> </a>
</div> <!-- **event-thumb - Ends** -->
<!-- **event-detail - Starts** -->
<div class="event-detail">
<h5> <a href="#">The Grand Canyons</a> </h5>
<p>LAS VEGAS, NEVADA</p>
<div class="dt-sc-margin10"></div>
<!-- **event-meta - Starts** -->
<div class="event-meta">
<p><span class="fa fa-calendar"> </span> No of Days: 2 </p>
<p><a href="#"><span class="fa fa-user"> </span> People: 5 </a></p>
</div> <!-- **event-meta - Ends** -->
<div class="event-content">
<span class="package-price">$427</span>
<a href="#" class="dt-sc-button type2 small">View details</a>
</div>
</div> <!-- **event-detail - Ends** -->
</div> <!-- **events - Ends** -->
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-one-fourth">
<!-- **events - Starts** -->
<div class="events">
<!-- **event-thumb - Starts** -->
<div class="event-thumb">
<a href="#"> <img src="http://placehold.it/450x450&text=Packages" alt="image"/> </a>
</div> <!-- **event-thumb - Ends** -->
<!-- **event-detail - Starts** -->
<div class="event-detail">
<h5> <a href="#">Sal Panio Estate</a> </h5>
<p>LAS VEGAS, NEVADA</p>
<div class="dt-sc-margin10"></div>
<!-- **event-meta - Starts** -->
<div class="event-meta">
<p><span class="fa fa-calendar"> </span> No of Days: 2 </p>
<p><a href="#"><span class="fa fa-user"> </span> People: 1 </a></p>
</div> <!-- **event-meta - Ends** -->
<div class="event-content">
<span class="package-price">$103</span>
<a href="#" class="dt-sc-button type2 small">View details</a>
</div>
</div> <!-- **event-detail - Ends** -->
</div> <!-- **events - Ends** -->
</div> <!-- **column - Ends** -->
</div>
<!-- **product-carousel - Starts** -->
<div class="product-carousel">
<a class="event-prev" href="#"><span class="fa fa-angle-left"></span> </a>
<a class="event-next" href="#"><span class="fa fa-angle-right"></span> </a>
</div> <!-- **product-carousel - Ends** -->
</div>
</div> <!-- **container - Ends** -->
<div class="dt-sc-hr-invisible-small"></div>
</div> <!-- **Full-width-section - Ends** -->
<!-- **Full-width-section - Starts** -->
<div class="parallax full-width-section product-presentation-bg">
<!-- **container - Starts** -->
<div class="container">
<!-- **column - Starts** -->
<div class="column dt-sc-three-fifth first animate" data-animation="zoomIn" data-delay="100">
<img class="aligncenter" src="http://placehold.it/541x391&text=Image" alt="image"/>
</div> <!-- **column - Ends** -->
<!-- **column - Starts** -->
<div class="column dt-sc-two-fifth animate" data-animation="fadeInDown" data-delay="100">
<div class="dt-sc-margin10"></div>
<h3> Why we Suggest Travel? </h3>
<div class="dt-sc-margin10"></div>
<p> Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales. There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.. </p>
<!-- **dt-sc-fancy-list - Starts** -->
<ul class="dt-sc-fancy-list tick" >
<li>Maecenas semper odio facilisis lectus tempor sagittis.</li>
<li>Praesent consectetur massa facilisis vehicula hendrerit.</li>
<li>Ut mollis enim sed porta auctor.</li>
<li>Duis rhoncus nisi vel sem faucibus, consectetur gravida massa tempor.</li>
<li>Ut mollis enim sed porta auctor.</li>
<li>Duis rhoncus nisi vel sem faucibus, consectetur gravida massa tempor.</li>
</ul> <!-- **dt-sc-fancy-list - Ends** -->
<a href="#" class="dt-sc-button large">Purchase this theme <span class="fa fa-angle-right"></span></a>
</div> <!-- **column - Ends** -->
</div> <!-- **container - Ends** -->
</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">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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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/1170x800&text=Gallery" alt="image"/>
<div class="image-overlay">
<a class="zoom" href="http://placehold.it/1170x800&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>
</div> <!-- **Full-width-section - Ends** -->
<div class="dt-sc-margin70"></div>
<!-- **Full-width-section - Starts** -->
<div class="full-width-section parallax parallax-bg bg-overlay">
<div class="container">
<div class="parallax-content aligncenter">
<h2>Welcome to Trendy Travel</h2>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>
<a class="dt-sc-button medium" href="#"> Browse Collections <span class="fa fa-angle-right"></span></a>
</div>
</div>
</div><!-- **Full-width-section - Ends** -->
<div class="dt-sc-margin50"></div>
<div class="full-width-section">
<div class="container">
<div class="dt-sc-testimonial-wrapper type4">
<h2 class="aligncenter">Testimonials</h2>
<p class="middle-align">Aliquam enim enim, pharetra in sodales at, interdum sit amet dui.Nullam vulputate euis od <br/>urna non pharetra. Phasellus bland matt is ipsum.</p>
<div class="dt-sc-margin50"></div>
<!-- **dt-sc-testimonial-carousel - Starts** -->
<div class="dt-sc-testimonial-carousel" data-column="2">
<div class="column dt-sc-one-half first">
<!-- **dt-sc-testimonial - Starts** -->
<div class="dt-sc-testimonial">
<div class="column dt-sc-one-fourth first">
<div class="author">
<span class="border-circle"><img src="http://placehold.it/80x80&text=Image" alt="image"/></span>
<h5>John Doe</h5>
<cite>wedesignthemes.com</cite>
<span class="quote">" "</span>
</div>
</div>
<div class="column dt-sc-three-fourth">
<div class="testimonial-content with-chat-effect">
<i class="fa fa-quote-left"></i>
<p>The feedback was extremely positive from all involved, it was a great event and came together well.</p>
<p>I accepted a fantastic position with a great company on the west coast. Thank you once again for your help and especially your positive attitude in helping me through the unnerving experience of after thirty years being without a job.</p>
</div>
</div>
</div> <!-- **dt-sc-testimonial - Ends** -->
</div>
<div class="column dt-sc-one-half">