-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1328 lines (1325 loc) · 99.2 KB
/
Copy pathindex.html
File metadata and controls
1328 lines (1325 loc) · 99.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Stories</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="assets/imgs/theme/favicon.png">
<!-- NewsBoard CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/widgets.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<div class="scroll-progress primary-bg"></div>
<!-- Start Preloader -->
<div class="preloader text-center">
<div class="circle"></div>
</div>
<!--Offcanvas sidebar-->
<aside id="sidebar-wrapper" class="custom-scrollbar offcanvas-sidebar">
<button class="off-canvas-close"><i class="elegant-icon icon_close"></i></button>
<div class="sidebar-inner">
<!--Categories-->
<div class="sidebar-widget widget_categories mb-50 mt-30">
<div class="widget-header-2 position-relative">
<h5 class="mt-5 mb-15">Hot topics</h5>
</div>
<div class="widget_nav_menu">
<ul>
<li class="cat-item cat-item-2"><a href="category.html">Travel tips</a> <span class="post-count">30</span></li>
<li class="cat-item cat-item-3"><a href="category-grid.html">Book review</a> <span class="post-count">25</span></li>
<li class="cat-item cat-item-4"><a href="category-list.html">Hotel review</a> <span class="post-count">16</span></li>
<li class="cat-item cat-item-5"><a href="category-masonry.html">Destinations </a> <span class="post-count">22</span></li>
<li class="cat-item cat-item-6"><a href="category-big.html">Lifestyle</a> <span class="post-count">25</span></li>
</ul>
</div>
</div>
<!--Latest-->
<div class="sidebar-widget widget-latest-posts mb-50">
<div class="widget-header-2 position-relative mb-30">
<h5 class="mt-5 mb-30">Don't miss</h5>
</div>
<div class="post-block-list post-module-1 post-module-5">
<ul class="list-post">
<li class="mb-30">
<div class="d-flex hover-up-2 transition-normal">
<div class="post-thumb post-thumb-80 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-1.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">The Life of a Travel Writer with David Farley</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">05 August</span>
<span class="post-by has-dot">300 views</span>
</div>
</div>
</div>
</li>
<li class="mb-30">
<div class="d-flex hover-up-2 transition-normal">
<div class="post-thumb post-thumb-80 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-2.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">Why Don’t More Black American Women Travel Solo?</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">12 August</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</li>
<li class="mb-30">
<div class="d-flex hover-up-2 transition-normal">
<div class="post-thumb post-thumb-80 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-3.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">The 22 Best Things to See and Do in Bangkok</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 August</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<!--Ads-->
<div class="sidebar-widget widget-ads">
<div class="widget-header-2 position-relative mb-30">
<h5 class="mt-5 mb-30">Advertise banner</h5>
</div>
<a href="#" target="_blank">
<img class="advertise-img border-radius-5" src="assets/imgs/ads/ads-1.jpg" alt="">
</a>
</div>
</div>
</aside>
<!-- Start Header -->
<header class="main-header header-style-1 font-heading">
<div class="header-top">
<div class="container">
<div class="row pt-20 pb-20">
<div class="col-md-3 col-xs-6">
<a href="index.html"><img class="logo" src="assets/imgs/theme/logo.png" alt=""></a>
</div>
<div class="col-md-9 col-xs-6 text-right header-top-right ">
<ul class="list-inline nav-topbar d-none d-md-inline">
<li class="list-inline-item menu-item-has-children"><a href="#">Layouts</a>
<ul class="sub-menu font-small">
<li class="menu-item-has-children"><a href="#">Pages</a>
<ul class="sub-menu font-small">
<li><a href="page-about.html">About</a></li>
<li><a href="page-contact.html">Contact</a></li>
<li><a href="page-typography.html">Typography</a></li>
<li><a href="page-register.html">Register</a></li>
<li><a href="page-login.html">Login</a></li>
<li><a href="page-search.html">Search</a></li>
<li><a href="page-author.html">Author</a></li>
<li><a href="page-404.html">404 page</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Category</a>
<ul class="sub-menu font-small">
<li><a href="category-list.html">List layout</a></li>
<li><a href="category-grid.html">Grid layout</a></li>
<li><a href="category-masonry.html">Masonry layout</a></li>
<li><a href="category-big.html">Big layout</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Single post</a>
<ul class="sub-menu font-small">
<li><a href="single.html">Default</a></li>
<li><a href="single-2.html">Big image</a></li>
<li><a href="single-3.html">Left image</a></li>
<li><a href="single-4.html">With sidebar</a></li>
</ul>
</li>
</ul>
</li>
<li class="list-inline-item"><a href="#"><i class="elegant-icon icon_document_alt mr-5"></i>Document</a></li>
</ul>
<span class="vertical-divider mr-20 ml-20 d-none d-md-inline"></span>
<button class="search-icon d-none d-md-inline"><span class="mr-15 text-muted font-small"><i class="elegant-icon icon_search mr-5"></i>Search</span></button>
<button class="btn btn-radius bg-primary text-white ml-15 font-small box-shadow">Buy Now</button>
</div>
</div>
</div>
</div>
<div class="header-sticky">
<div class="container align-self-center">
<div class="mobile_menu d-lg-none d-block"></div>
<div class="main-nav d-none d-lg-block float-left">
<nav>
<!--Desktop menu-->
<ul class="main-menu d-none d-lg-inline font-small">
<li class="menu-item-has-children">
<a href="index.html"> <i class="elegant-icon icon_house_alt mr-5"></i> Home</a>
<ul class="sub-menu text-muted font-small">
<li><a href="index.html">Home default</a></li>
<li><a href="home-2.html">Homepage 2</a></li>
<li><a href="home-3.html">Homepage 3</a></li>
</ul>
</li>
<li> <a href="category-list.html">Travel</a> </li>
<li class="current-item"> <a href="category-list.html">Destinations</a> </li>
<li> <a href="category-grid.html">Guides</a> </li>
<li> <a href="category-masonry.html">Food</a> </li>
<li> <a href="category-big.html">Hotels</a> </li>
<li> <a href="category.html">Review</a> </li>
<li> <a href="category.html">Healthy </a> </li>
<li> <a href="category.html">Lifestyle</a> </li>
<li> <a href="category.html">Blog</a> </li>
</ul>
<!--Mobile menu-->
<ul id="mobile-menu" class="d-block d-lg-none text-muted">
<li class="menu-item-has-children">
<a href="index.html">Home</a>
<ul class="sub-menu text-muted font-small">
<li><a href="index.html">Home default</a></li>
<li><a href="home-2.html">Homepage 2</a></li>
<li><a href="home-3.html">Homepage 3</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Pages</a>
<ul class="sub-menu font-small">
<li><a href="page-about.html">About</a></li>
<li><a href="page-contact.html">Contact</a></li>
<li><a href="page-typography.html">Typography</a></li>
<li><a href="page-register.html">Register</a></li>
<li><a href="page-login.html">Login</a></li>
<li><a href="page-search.html">Search</a></li>
<li><a href="page-author.html">Author</a></li>
<li><a href="page-404.html">404 page</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Category</a>
<ul class="sub-menu font-small">
<li><a href="category-list.html">List layout</a></li>
<li><a href="category-grid.html">Grid layout</a></li>
<li><a href="category-masonry.html">Masonry layout</a></li>
<li><a href="category-big.html">Big layout</a></li>
</ul>
</li>
<li class="menu-item-has-children"><a href="#">Single post</a>
<ul class="sub-menu font-small">
<li><a href="single.html">Default</a></li>
<li><a href="single-2.html">Big image</a></li>
<li><a href="single-3.html">Left image</a></li>
<li><a href="single-4.html">With sidebar</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="float-right header-tools text-muted font-small">
<ul class="header-social-network d-inline-block list-inline mr-15">
<li class="list-inline-item"><a class="social-icon fb text-xs-center" target="_blank" href="#"><i class="elegant-icon social_facebook"></i></a></li>
<li class="list-inline-item"><a class="social-icon tw text-xs-center" target="_blank" href="#"><i class="elegant-icon social_twitter "></i></a></li>
<li class="list-inline-item"><a class="social-icon pt text-xs-center" target="_blank" href="#"><i class="elegant-icon social_pinterest "></i></a></li>
</ul>
<div class="off-canvas-toggle-cover d-inline-block">
<div class="off-canvas-toggle hidden d-inline-block" id="off-canvas-toggle">
<span></span>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</header>
<!--Start search form-->
<div class="main-search-form">
<div class="container">
<div class=" pt-50 pb-50 ">
<div class="row mb-20">
<div class="col-12 align-self-center main-search-form-cover m-auto">
<p class="text-center"><span class="search-text-bg">Search</span></p>
<form action="#" class="search-header">
<div class="input-group w-100">
<input type="text" class="form-control" placeholder="Search stories, places and people">
<div class="input-group-append">
<button class="btn btn-search bg-white" type="submit">
<i class="elegant-icon icon_search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<div class="row mt-80 text-center">
<div class="col-12 font-small suggested-area">
<h5 class="suggested font-heading mb-20 text-muted"> <strong>Suggested keywords:</strong></h5>
<ul class="list-inline d-inline-block">
<li class="list-inline-item"><a href="category.html">World</a></li>
<li class="list-inline-item"><a href="category.html">American</a></li>
<li class="list-inline-item"><a href="category.html">Opinion</a></li>
<li class="list-inline-item"><a href="category.html">Tech</a></li>
<li class="list-inline-item"><a href="category.html">Science</a></li>
<li class="list-inline-item"><a href="category.html">Books</a></li>
<li class="list-inline-item"><a href="category.html">Travel</a></li>
<li class="list-inline-item"><a href="category.html">Business</a></li>
</ul>
</div>
</div>
<div class="row mt-80">
<div class="col-lg-4">
<div class="d-flex bg-grey has-border p-25 hover-up-2 transition-normal border-radius-5 mb-30">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-2.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6> <a href="category.html">Travel Tips</a> </h6>
<p class="text-muted font-small">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="d-flex bg-grey has-border p-25 hover-up-2 transition-normal border-radius-5 mb-30">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-4.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6> <a href="category.html">Lifestyle</a> </h6>
<p class="text-muted font-small">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="d-flex bg-grey has-border p-25 hover-up-2 transition-normal border-radius-5 mb-30">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-3.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<h6> <a href="category.html">Hotel Review</a> </h6>
<p class="text-muted font-small">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Start Main content -->
<main>
<div class="featured-1">
<div class="container">
<div class="row">
<div class="col-lg-6 align-self-center">
<p class="text-muted"><span class="typewrite d-inline" data-period="2000" data-type='[ " Travel Blogger. ", "Content Writter. ", "Food Guides " ]'></span></p>
<h2>Hello, I’m <span>Steven</span></h2>
<h3 class="mb-20"> Welcome to my blog</h3>
<h5 class="text-muted">Don't miss out on the latest news about Travel tips, Hotels review, Food guide...</h5>
<form class="input-group form-subcriber mt-30 d-flex">
<input type="email" class="form-control bg-white font-small" placeholder="Enter your email">
<button class="btn bg-primary text-white" type="submit">Subscribe</button>
</form>
</div>
<div class="col-lg-6 text-right d-none d-lg-block">
<img src="assets/imgs/authors/featured.png" alt="">
</div>
</div>
</div>
</div>
<div class="container">
<div class="hot-tags pt-30 pb-30 font-small align-self-center">
<div class="widget-header-3">
<div class="row align-self-center">
<div class="col-md-4 align-self-center">
<h5 class="widget-title">Featured posts</h5>
</div>
<div class="col-md-8 text-md-right font-small align-self-center">
<p class="d-inline-block mr-5 mb-0"><i class="elegant-icon icon_tag_alt mr-5 text-muted"></i>Hot tags:</p>
<ul class="list-inline d-inline-block tags">
<li class="list-inline-item"><a href="#"># Covid-19</a></li>
<li class="list-inline-item"><a href="#"># Inspiration</a></li>
<li class="list-inline-item"><a href="#"># Work online</a></li>
<li class="list-inline-item"><a href="#"># Stay home</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="loop-grid mb-30">
<div class="row">
<div class="col-lg-8 mb-30">
<div class="carausel-post-1 hover-up border-radius-10 overflow-hidden transition-normal position-relative wow fadeInUp animated">
<div class="arrow-cover"></div>
<div class="slide-fade">
<div class="position-relative post-thumb">
<div class="thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-4.jpg)">
<a class="img-link" href="single.html"></a>
<span class="top-left-icon bg-warning"><i class="elegant-icon icon_star_alt"></i></span>
<div class="post-content-overlay text-white ml-30 mr-30 pb-30">
<div class="entry-meta meta-0 font-small mb-20">
<a href="category.html"><span class="post-cat text-info text-uppercase">Travel</span></a>
<a href="category.html"><span class="post-cat text-success text-uppercase">Animal</span></a>
</div>
<h3 class="post-title font-weight-900 mb-20">
<a class="text-white" href="single.html">Beachmaster Elephant Seal Fights off Rival Male, The match is uncompromising</a>
</h3>
<div class="entry-meta meta-1 font-small text-white mt-10 pr-5 pl-5">
<span class="post-on">20 minutes ago</span>
<span class="hit-count has-dot">23k Views</span>
</div>
</div>
</div>
</div>
<div class="position-relative post-thumb">
<div class="thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-6.jpg)">
<a class="img-link" href="single.html"></a>
<span class="top-left-icon bg-danger"><i class="elegant-icon icon_image"></i></span>
<div class="post-content-overlay text-white ml-30 mr-30 pb-30">
<div class="entry-meta meta-0 font-small mb-20">
<a href="category.html"><span class="post-cat text-info text-uppercase">Lifestyle</span></a>
</div>
<h3 class="post-title font-weight-900 mb-20">
<a class="text-white" href="single.html">This genius photo experiment shows we are all just sheeple in the consumer matrix</a>
</h3>
<div class="entry-meta meta-1 font-small text-white mt-10 pr-5 pl-5">
<span class="post-on">26 August 2020</span>
<span class="hit-count has-dot">18k Views</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<article class="col-lg-4 col-md-6 mb-30 wow fadeInUp animated" data-wow-delay="0.2s">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-1.jpg)">
<a class="img-link" href="single.html"></a>
<span class="top-right-icon bg-success"><i class="elegant-icon icon_camera_alt"></i></span>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-info">Travel</span></a>
<a href="category.html"><span class="post-cat text-success">Food</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Want fluffy Japanese pancakes but can’t fly to Tokyo?</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 August</span>
<span class="time-reading has-dot">12 mins read</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-lg-4 col-md-6 mb-30 wow fadeInUp animated">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-7.jpg)">
<a class="img-link" href="single.html"></a>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-warning">Fashion</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Put Yourself in Your Customers Shoes</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">17 July</span>
<span class="time-reading has-dot">8 mins read</span>
<span class="post-by has-dot">12k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-lg-4 col-md-6 mb-30 wow fadeInUp animated" data-wow-delay="0.2s">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-9.jpg)">
<a class="img-link" href="single.html"></a>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-danger">Travel</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Life and Death in the Empire of the Tiger</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">7 August</span>
<span class="time-reading has-dot">15 mins read</span>
<span class="post-by has-dot">500 views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-lg-4 col-md-6 mb-30 wow fadeInUp animated" data-wow-delay="0.4s">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-11.jpg)">
<a class="img-link" href="single.html"></a>
<span class="top-right-icon bg-info"><i class="elegant-icon icon_headphones"></i></span>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-success">Lifestyle</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">When Two Wheels Are Better Than Four</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">15 Jun</span>
<span class="time-reading has-dot">9 mins read</span>
<span class="post-by has-dot">1.2k views</span>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="bg-grey pt-50 pb-50">
<div class="container">
<div class="row">
<div class="col-lg-8">
<div class="post-module-2">
<div class="widget-header-1 position-relative mb-30 wow fadeInUp animated">
<h5 class="mt-5 mb-30">Travel tips</h5>
</div>
<div class="loop-list loop-list-style-1">
<div class="row">
<article class="col-md-6 mb-40 wow fadeInUp animated">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-6.jpg)">
<a class="img-link" href="single.html"></a>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-info">Artists</span></a>
<a href="category.html"><span class="post-cat text-success">Film</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Easy Ways to Use Alternatives to Plastic</a>
</h5>
<div class="post-excerpt mb-25 font-small text-muted">
<p>Graduating from a top accelerator or incubator can be as career-defining for a startup founder as an elite university diploma. The intensive programmes, which…</p>
</div>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 August</span>
<span class="time-reading has-dot">12 mins read</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-md-6 mb-40 wow fadeInUp animated">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-8.jpg)">
<a class="img-link" href="single.html"></a>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat">Fashion</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Tips for Growing Healthy, Longer Hair</a>
</h5>
<div class="post-excerpt mb-25 font-small text-muted">
<p>Proin vitae placerat quam. Ut sodales eleifend urna, in condimentum tortor ultricies eu. Nunc auctor iaculis dolorProin vitae placerat quam. Proin vitae placerat quam.</p>
</div>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">12 August</span>
<span class="time-reading has-dot">6 mins read</span>
<span class="post-by has-dot">3k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-md-6 mb-40 wow fadeInUp animated">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-10.jpg)">
<a class="img-link" href="single.html"></a>
<span class="top-right-icon bg-secondary"><i class="elegant-icon icon_heart_alt"></i></span>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-success">Lifestyle</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">Project Ideas Around the House</a>
</h5>
<div class="post-excerpt mb-25 font-small text-muted">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor condimentum metus non tempor. Maecenas non augue aliquam, facilisis lectus quis, lacinia risus.</p>
</div>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 August</span>
<span class="time-reading has-dot">12 mins read</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="col-md-6 mb-40 wow fadeInUp animated">
<div class="post-card-1 border-radius-10 hover-up">
<div class="post-thumb thumb-overlay img-hover-slide position-relative" style="background-image: url(assets/imgs/news/news-12.jpg)">
<a class="img-link" href="single.html"></a>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="post-content p-30">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-danger">Hotels</span></a>
</div>
<div class="d-flex post-card-content">
<h5 class="post-title mb-20 font-weight-900">
<a href="single.html">How to Give Yourself a Spa Day from Home</a>
</h5>
<div class="post-excerpt mb-25 font-small text-muted">
<p>Graduating from a top accelerator or incubator can be as career-defining for a startup founder as an elite university diploma. The intensive programmes, which…</p>
</div>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">18 August</span>
<span class="time-reading has-dot">14 mins read</span>
<span class="post-by has-dot">25k views</span>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="post-module-3">
<div class="widget-header-1 position-relative mb-30">
<h5 class="mt-5 mb-30">Latest posts</h5>
</div>
<div class="loop-list loop-list-style-1">
<article class="hover-up-2 transition-normal wow fadeInUp animated">
<div class="row mb-40 list-style-2">
<div class="col-md-4">
<div class="post-thumb position-relative border-radius-5">
<div class="img-hover-slide border-radius-5 position-relative" style="background-image: url(assets/imgs/news/news-13.jpg)">
<a class="img-link" href="single.html"></a>
</div>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 align-self-center">
<div class="post-content">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-primary">Food</span></a>
</div>
<h5 class="post-title font-weight-900 mb-20">
<a href="single.html">Helpful Tips for Working from Home as a Freelancer</a>
<span class="post-format-icon"><i class="elegant-icon icon_star_alt"></i></span>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">7 August</span>
<span class="time-reading has-dot">11 mins read</span>
<span class="post-by has-dot">3k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="hover-up-2 transition-normal wow fadeInUp animated">
<div class="row mb-40 list-style-2">
<div class="col-md-4">
<div class="post-thumb position-relative border-radius-5">
<div class="img-hover-slide border-radius-5 position-relative" style="background-image: url(assets/imgs/news/news-4.jpg)">
<a class="img-link" href="single.html"></a>
</div>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 align-self-center">
<div class="post-content">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-success">Cooking</span></a>
</div>
<h5 class="post-title font-weight-900 mb-20">
<a href="single.html">10 Easy Ways to Be Environmentally Conscious At Home</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 Sep</span>
<span class="time-reading has-dot">10 mins read</span>
<span class="post-by has-dot">22k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="hover-up-2 transition-normal wow fadeInUp animated">
<div class="row mb-40 list-style-2">
<div class="col-md-4">
<div class="post-thumb position-relative border-radius-5">
<div class="img-hover-slide border-radius-5 position-relative" style="background-image: url(assets/imgs/news/news-2.jpg)">
<a class="img-link" href="single.html"></a>
</div>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 align-self-center">
<div class="post-content">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-warning">Cooking</span></a>
</div>
<h5 class="post-title font-weight-900 mb-20">
<a href="single.html">My Favorite Comfies to Lounge in At Home</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">7 August</span>
<span class="time-reading has-dot">9 mins read</span>
<span class="post-by has-dot">12k views</span>
</div>
</div>
</div>
</div>
</article>
<article class="hover-up-2 transition-normal wow fadeInUp animated">
<div class="row mb-40 list-style-2">
<div class="col-md-4">
<div class="post-thumb position-relative border-radius-5">
<div class="img-hover-slide border-radius-5 position-relative" style="background-image: url(assets/imgs/news/news-3.jpg)">
<a class="img-link" href="single.html"></a>
</div>
<ul class="social-share">
<li><a href="#"><i class="elegant-icon social_share"></i></a></li>
<li><a class="fb" href="#" title="Share on Facebook" target="_blank"><i class="elegant-icon social_facebook"></i></a></li>
<li><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-8 align-self-center">
<div class="post-content">
<div class="entry-meta meta-0 font-small mb-10">
<a href="category.html"><span class="post-cat text-danger">Travel</span></a>
</div>
<h5 class="post-title font-weight-900 mb-20">
<a href="single.html">How to Give Your Space a Parisian-Inspired Makeover</a>
</h5>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">27 August</span>
<span class="time-reading has-dot">12 mins read</span>
<span class="post-by has-dot">23k views</span>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
<div class="pagination-area mb-30 wow fadeInUp animated">
<nav aria-label="Page navigation example">
<ul class="pagination justify-content-start">
<li class="page-item"><a class="page-link" href="#"><i class="elegant-icon arrow_left"></i></a></li>
<li class="page-item active"><a class="page-link" href="#">01</a></li>
<li class="page-item"><a class="page-link" href="#">02</a></li>
<li class="page-item"><a class="page-link" href="#">03</a></li>
<li class="page-item"><a class="page-link" href="#">04</a></li>
<li class="page-item"><a class="page-link" href="#"><i class="elegant-icon arrow_right"></i></a></li>
</ul>
</nav>
</div>
</div>
<div class="col-lg-4">
<div class="widget-area">
<div class="sidebar-widget widget-about mb-50 pt-30 pr-30 pb-30 pl-30 bg-white border-radius-5 has-border wow fadeInUp animated">
<img class="about-author-img mb-25" src="assets/imgs/authors/author.jpg" alt="">
<h5 class="mb-20">Hello, I'm Steven</h5>
<p class="font-medium text-muted">Hi, I’m Stenven, a Florida native, who left my career in corporate wealth management six years ago to embark on a summer of soul searching that would change the course of my life forever.</p>
<strong>Follow me: </strong>
<ul class="header-social-network d-inline-block list-inline color-white mb-20">
<li class="list-inline-item"><a class="fb" href="#" target="_blank" title="Facebook"><i class="elegant-icon social_facebook"></i></a></li>
<li class="list-inline-item"><a class="tw" href="#" target="_blank" title="Tweet now"><i class="elegant-icon social_twitter"></i></a></li>
<li class="list-inline-item"><a class="pt" href="#" target="_blank" title="Pin it"><i class="elegant-icon social_pinterest"></i></a></li>
</ul>
</div>
<div class="sidebar-widget widget-latest-posts mb-50 wow fadeInUp animated">
<div class="widget-header-1 position-relative mb-30">
<h5 class="mt-5 mb-30">Most popular</h5>
</div>
<div class="post-block-list post-module-1">
<ul class="list-post">
<li class="mb-30 wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">Spending Some Quality Time with Kids? It’s Possible</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">05 August</span>
<span class="post-by has-dot">150 views</span>
</div>
</div>
<div class="post-thumb post-thumb-80 d-flex ml-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-6.jpg" alt="">
</a>
</div>
</div>
</li>
<li class="mb-30 wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">Relationship Podcasts are Having “That” Talk</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">12 August</span>
<span class="post-by has-dot">6k views</span>
</div>
</div>
<div class="post-thumb post-thumb-80 d-flex ml-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-7.jpg" alt="">
</a>
</div>
</div>
</li>
<li class="mb-30 wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">Here’s How to Get the Best Sleep at Night</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">15 August</span>
<span class="post-by has-dot">16k views</span>
</div>
</div>
<div class="post-thumb post-thumb-80 d-flex ml-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-2.jpg" alt="">
</a>
</div>
</div>
</li>
<li class=" wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-content media-body">
<h6 class="post-title mb-15 text-limit-2-row font-medium"><a href="single.html">America’s Governors Get Tested for a Virus That Is Testing Them</a></h6>
<div class="entry-meta meta-1 float-left font-x-small text-uppercase">
<span class="post-on">12 August</span>
<span class="post-by has-dot">3k views</span>
</div>
</div>
<div class="post-thumb post-thumb-80 d-flex ml-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-3.jpg" alt="">
</a>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="sidebar-widget widget-latest-posts mb-50 wow fadeInUp animated">
<div class="widget-header-1 position-relative mb-30">
<h5 class="mt-5 mb-30">Last comments</h5>
</div>
<div class="post-block-list post-module-2">
<ul class="list-post">
<li class="mb-30 wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/authors/author-2.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<p class="mb-10"><a href="author.html"><strong>David</strong></a>
<span class="ml-15 font-small text-muted has-dot">16 Jan 2020</span>
</p>
<p class="text-muted font-small">A writer is someone for whom writing is more difficult than...</p>
</div>
</div>
</li>
<li class="mb-30 wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/authors/author-3.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<p class="mb-10"><a href="author.html"><strong>Kokawa</strong></a>
<span class="ml-15 font-small text-muted has-dot">12 Feb 2020</span>
</p>
<p class="text-muted font-small">Striking pewter studded epaulettes silver zips</p>
</div>
</div>
</li>
<li class="wow fadeInUp animated">
<div class="d-flex bg-white has-border p-25 hover-up transition-normal border-radius-5">
<div class="post-thumb post-thumb-64 d-flex mr-15 border-radius-5 img-hover-scale overflow-hidden">
<a class="color-white" href="single.html">
<img src="assets/imgs/news/thumb-1.jpg" alt="">
</a>
</div>
<div class="post-content media-body">
<p class="mb-10"><a href="author.html"><strong>Tsukasi</strong></a>
<span class="ml-15 font-small text-muted has-dot">18 May 2020</span>
</p>
<p class="text-muted font-small">Workwear bow detailing a slingback buckle strap</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="sidebar-widget widget_instagram wow fadeInUp animated">
<div class="widget-header-1 position-relative mb-30">
<h5 class="mt-5 mb-30">Instagram</h5>
</div>
<div class="instagram-gellay">
<ul class="insta-feed">
<li>
<a href="assets/imgs/thumbnail-3.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-1.jpg" alt=""></a>
</li>
<li>
<a href="assets/imgs/thumbnail-4.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-2.jpg" alt=""></a>
</li>
<li>
<a href="assets/imgs/thumbnail-5.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-3.jpg" alt=""></a>
</li>
<li>
<a href="assets/imgs/thumbnail-3.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-4.jpg" alt=""></a>
</li>
<li>
<a href="assets/imgs/thumbnail-4.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-5.jpg" alt=""></a>
</li>
<li>
<a href="assets/imgs/thumbnail-5.jpg" class="play-video" data-animate="zoomIn" data-duration="1.5s" data-delay="0.1s"><img class="border-radius-5" src="assets/imgs/news/thumb-6.jpg" alt=""></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- End Main content -->
<!--site-bottom-->
<div class="site-bottom pt-50 pb-50">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="sidebar-widget widget-latest-posts mb-30 wow fadeInUp animated">
<div class="widget-header-2 position-relative mb-30">
<h5 class="mt-5 mb-30">Destinations</h5>
</div>
<div class="post-block-list post-module-1">
<ul class="list-post">
<li class="mb-30">
<div class="d-flex hover-up-2 transition-normal">