-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-details.html
1129 lines (1104 loc) · 93.3 KB
/
blog-details.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Onest || Single Blog</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="512x512" href="./src/images/favicon_io/android-chrome-512x512.png" />
<link rel="apple-touch-icon" sizes="192x192" href="./src/images/favicon_io/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon_io/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon_io/favicon-16x16.png" />
<link rel="manifest" href="./src/images/favicon_io/site.webmanifest" />
<link rel="stylesheet" href="./src/plugins/css/venobox.min.css" />
<link rel="stylesheet" href="./src/plugins/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/css/main.css">
<link rel="stylesheet" href="./src/css/extra.css">
</head>
<body>
<div class="loader">
<div class="loader-icon">
<img src="./src/images/loader.gif" alt="loader" />
</div>
</div>
<!-- header section start -->
<header class="header header--home-three header--four">
<div class="container navigation-bar">
<div class="d-flex align-items-center ">
<button class="toggle-icon ">
<span class="toggle-icon__bar"></span>
<span class="toggle-icon__bar"></span>
<span class="toggle-icon__bar"></span>
</button>
<!-- Brand Logo -->
<a href="index.html" class="navigation-bar__logo">
<img src="./src/images/svg/logo-dark.svg" alt="brand-logo" class="logo-dark">
</a>
</div>
<!-- Menu -->
<ul class="menu">
<li class="menu__item">
<a href="#" class="menu__link">
Home
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu-dropdown">
<li class="menu-dropdown__item">
<a href="index.html" class="menu-dropdown__link">Homepage 01</a>
</li>
<li class="menu-dropdown__item">
<a href="home-02.html" class="menu-dropdown__link">Homepage 02</a>
</li>
<li class="menu-dropdown__item">
<a href="home-03.html" class="menu-dropdown__link">Homepage 03</a>
</li>
</ul>
</li>
<li class="menu__item">
<a href="ad-list.html" class="menu__link">Listing</a>
</li>
<li class="menu__item">
<a href="#" class="menu__link">
Pages
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu-dropdown">
<li class="menu-dropdown__item">
<a href="blog-list.html" class="menu-dropdown__link">Blog List</a>
</li>
<li class="menu-dropdown__item">
<a href="blog-details.html" class="menu-dropdown__link">Single Blogs</a>
</li>
<li class="menu-dropdown__item">
<a href="about.html" class="menu-dropdown__link">About</a>
</li>
<li class="menu-dropdown__item">
<a href="price-plan.html" class="menu-dropdown__link">Pricing Plans</a>
</li>
<li class="menu-dropdown__item">
<a href="signin.html" class="menu-dropdown__link">Sign In</a>
</li>
<li class="menu-dropdown__item">
<a href="signup.html" class="menu-dropdown__link">Sign Up</a>
</li>
<li class="menu-dropdown__item">
<a href="dashboard.html" class="menu-dropdown__link">user Dashboard</a>
</li>
<li class="menu-dropdown__item">
<a href="faq.html" class="menu-dropdown__link">Faqs</a>
</li>
<li class="menu-dropdown__item">
<a href="404-error.html" class="menu-dropdown__link">404 Error Pages</a>
</li>
</ul>
</li>
<li class="menu__item">
<a href="get-membership.html" class="menu__link active">Get Membership</a>
</li>
<li class="menu__item">
<a href="contact.h tml" class="menu__link">Contact</a>
</li>
</ul>
<!-- Action Buttons -->
<div class="navigation-bar__buttons">
<a href="signup.html" class="btn">
<span class="icon--left">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.6">
<path d="M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z" stroke="currentColor" stroke-width="1.6" stroke-miterlimit="10"></path>
<path d="M16 20C18.7614 20 21 17.7614 21 15C21 12.2386 18.7614 10 16 10C13.2386 10 11 12.2386 11 15C11 17.7614 13.2386 20 16 20Z" stroke="currentColor" stroke-width="1.6" stroke-miterlimit="10"></path>
<path
d="M7.9751 24.9218C8.72836 23.4408 9.87675 22.1971 11.2931 21.3284C12.7095 20.4598 14.3387 20 16.0002 20C17.6617 20 19.2909 20.4598 20.7073 21.3284C22.1237 22.1971 23.272 23.4407 24.0253 24.9217"
stroke="currentColor"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</g>
</svg>
</span>
Login / Register
</a>
<a href="#" class="btn">
<span class="icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="currentColor" stroke-width="1.6" stroke-miterlimit="10"></path>
<path d="M8.25 12H15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M12 8.25V15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
post ads
</a>
<div class="language-picker js-language-picker desktop-show">
<form action="" class="language-picker__form">
<label for="language-picker-select"></label>
<select name="language-picker-select" id="language-picker-select">
<option lang="en" value="english" selected>En</option>
<option lang="de" value="deutsch">De</option>
<option lang="fr" value="francais">Fr</option>
</select>
</form>
</div>
</div>
<!-- Responsive Navigation Menu -->
<div class="menu--sm mobile-menu">
<!-- head -->
<div class="mobile-menu__header">
<!-- brand -->
<div class="mobile-menu__brand">
<a href="index.html">
<img src="./src/images/svg/logo-dark.svg" alt="logo">
</a>
<div class="close">
<span>
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 5.08325L15.6066 15.6899" stroke="#191F33" stroke-width="1.9375" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.99999 15.9167L15.6066 5.31015" stroke="#191F33" stroke-width="1.9375" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
</div>
<div class="mobile-menu__search">
<form action="#">
<div class="input-field">
<input type="text" placeholder="Ads, Title, keyword..." class="">
<button class="icon icon-search">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M21.0004 21.0004L16.6504 16.6504" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</button>
</div>
</form>
</div>
<div class="mobile-menu__body">
<ul >
<li class="menu--sm__item">
<a href="#" class="menu--sm__link active">
Home
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="index.html" class="menu--sm-dropdown__link active">Homepage 01</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="home-02.html" class="menu--sm-dropdown__link">Homepage 02</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="home-03.html" class="menu--sm-dropdown__link">Homepage 03</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="#" class="menu--sm__link">
All Category
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Mobile</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Electronics</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Vehicles</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Property</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Essentials</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Home & Living</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Business Industry</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Education</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="ad-list.html" class="menu--sm__link">Ads Listing</a>
</li>
<li class="menu--sm__item">
<a href="#" class="menu--sm__link">
Pages
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="blog-list.html" class="menu--sm-dropdown__link">Blog List</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="blog-details.html" class="menu--sm-dropdown__link">Single Blogs</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="about.html" class="menu--sm-dropdown__link">About</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="price-plan.html" class="menu--sm-dropdown__link">Pricing Plans</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="signin.html" class="menu--sm-dropdown__link">Sign In</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="signup.html" class="menu--sm-dropdown__link">Sign Up</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="dashboard.html" class="menu--sm-dropdown__link">user Dashboard</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="faq.html" class="menu--sm-dropdown__link">Faqs</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="404-error.html" class="menu--sm-dropdown__link">404 Error Pages</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="get-membership.html" class="menu--sm__link">Get Membership</a>
</li>
<li class="menu--sm__item">
<a href="contact.html" class="menu--sm__link">Contact</a>
</li>
</ul>
</div>
<div class="mobile-menu__language">
<h2>Languages</h2>
<div class="language-picker js-language-picker mobile-show">
<form action="" class="language-picker__form">
<label for="language-picker-select"></label>
<select name="language-picker-select" id="language-picker-select">
<option lang="en" value="english" selected>En</option>
<option lang="de" value="deutsch">De</option>
<option lang="fr" value="francais">Fr</option>
</select>
</form>
</div>
</div>
</div>
<!-- footer -->
<div class="mobile-menu__footer ">
<div class="d-flex align-items-center">
<a href="post-ads.html" class="btn mr-3">
<span class="icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="currentColor" stroke-width="1.6" stroke-miterlimit="10"></path>
<path d="M8.25 12H15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M12 8.25V15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
Post Your Ads
</a>
<a href="signin.html" class="btn btn--bg">Sign in</a>
</div>
</div>
</div>
</div>
</header>
<!-- header section end -->
<!-- breedcrumb section start -->
<section class="breedcrumb" style="background: url('src/images/bg/bg-04.jpg') center center/cover no-repeat;">
<div class="container">
<h2 class="breedcrumb__title text--heading-2">Single Blog</h2>
<ul class="breedcrumb__page">
<li class="breedcrumb__page-item">
<a href="index.html" class="breedcrumb__page-link text--body-3">Home</a>
</li>
<li class="breedcrumb__page-item">
<a href="#" class="breedcrumb__page-link text--body-3">/</a>
</li>
<li class="breedcrumb__page-item">
<a href="blog-list.html " class="breedcrumb__page-link text--body-3">Blog List</a>
</li>
<li class="breedcrumb__page-item">
<a href="#" class="breedcrumb__page-link text--body-3">/</a>
</li>
<li class="breedcrumb__page-item">
<a href="#" class="breedcrumb__page-link text--body-3">Single Blog</a>
</li>
</ul>
</div>
</section>
<!-- breedcrumb section end -->
<!-- single Blog Section start -->
<section class="section single-blog">
<div class="container">
<div class="single-blog__lg-img-wrapper">
<img src="./src/images/bg/bg-02.png" alt="blog-img" class="img-fluid" />
</div>
<div class="row single-blog__content">
<div class="col-lg-8">
<div class="single-blog__blog-content">
<ul class="single-blog__info">
<li class="single-blog__info-item">
<span class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 16.5L12 21.75L21 16.5" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3 12L12 17.25L21 12" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3 7.5L12 12.75L21 7.5L12 2.25L3 7.5Z" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<p class="text--body-3">Technology</p>
</li>
<li class="single-blog__info-item">
<span class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 15C15.3137 15 18 12.3137 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9C6 12.3137 8.68629 15 12 15Z" stroke="#00AAFF" stroke-width="1.6" stroke-miterlimit="10" />
<path
d="M2.9043 20.2491C3.82638 18.6531 5.15225 17.3278 6.74869 16.4064C8.34513 15.485 10.1559 15 11.9992 15C13.8424 15 15.6532 15.4851 17.2497 16.4065C18.8461 17.3279 20.1719 18.6533 21.094 20.2493"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
<p class="text--body-3">Kevin Gilbert</p>
</li>
<li class="single-blog__info-item">
<span class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.25895 16.5939C3.14076 14.7089 2.74916 12.4805 3.15768 10.3272C3.56621 8.1739 4.74675 6.2438 6.47764 4.89933C8.20853 3.55486 10.3707 2.8885 12.5581 3.02539C14.7455 3.16227 16.8078 4.09298 18.3575 5.64274C19.9073 7.19251 20.838 9.25472 20.9749 11.4421C21.1118 13.6296 20.4455 15.7917 19.101 17.5226C17.7565 19.2535 15.8264 20.4341 13.6732 20.8426C11.5199 21.2511 9.29149 20.8596 7.40649 19.7414L7.40651 19.7413L4.29808 20.6294C4.16947 20.6662 4.03338 20.6678 3.90391 20.6343C3.77443 20.6007 3.65628 20.5332 3.5617 20.4386C3.46713 20.344 3.39956 20.2259 3.36601 20.0964C3.33246 19.9669 3.33415 19.8308 3.37089 19.7022L4.25901 16.5938L4.25895 16.5939Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M12.325 12C12.325 12.1795 12.1795 12.325 12 12.325C11.8205 12.325 11.675 12.1795 11.675 12C11.675 11.8205 11.8205 11.675 12 11.675C12.1795 11.675 12.325 11.8205 12.325 12Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.6"
/>
<path d="M7.5 13.125C8.12132 13.125 8.625 12.6213 8.625 12C8.625 11.3787 8.12132 10.875 7.5 10.875C6.87868 10.875 6.375 11.3787 6.375 12C6.375 12.6213 6.87868 13.125 7.5 13.125Z" fill="#00AAFF" />
<path
d="M16.5 13.125C17.1213 13.125 17.625 12.6213 17.625 12C17.625 11.3787 17.1213 10.875 16.5 10.875C15.8787 10.875 15.375 11.3787 15.375 12C15.375 12.6213 15.8787 13.125 16.5 13.125Z"
fill="#00AAFF"
/>
</svg>
</span>
<p class="text--body-3">36 Commends</p>
</li>
</ul>
<h2 class="text--heading-2 single-blog__title">
How artist collective Meow Wolf’s website complements their immersive venues
</h2>
<div class="single-blog__author-info">
<div class="author-img">
<div class="img">
<img src="./src/images/users/img-01.png" alt="author-img" />
</div>
<h2 class="name text--body-3-600">Cameron Williamson</h2>
</div>
<ul class="author-social">
<li class="author-social__item">
<a href="#" class="social-link social-link--wa author-social__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M13.3059 2.67206C11.9026 1.26709 10.0363 0.493011 8.04806 0.492188C3.95108 0.492188 0.61673 3.82645 0.615082 7.92453C0.614532 9.23456 0.956757 10.5134 1.60724 11.6406L0.552734 15.4922L4.49307 14.4586C5.5788 15.0508 6.80112 15.3629 8.04504 15.3633H8.04816C12.1447 15.3633 15.4794 12.0287 15.481 7.93048C15.4818 5.94433 14.7093 4.07693 13.3059 2.67206ZM8.04806 14.108H8.0455C6.93698 14.1075 5.84979 13.8096 4.90112 13.2469L4.67563 13.1129L2.33737 13.7263L2.96149 11.4466L2.81454 11.2128C2.19611 10.2292 1.86954 9.09228 1.87009 7.92499C1.87137 4.51877 4.64285 1.74756 8.05054 1.74756C9.70068 1.74811 11.2519 2.39154 12.4182 3.5593C13.5846 4.72705 14.2266 6.27923 14.226 7.93002C14.2246 11.3365 11.4533 14.108 8.04806 14.108ZM11.4368 9.48102C11.2511 9.388 10.338 8.93884 10.1677 8.87677C9.99759 8.81479 9.87363 8.78393 9.74994 8.96979C9.62607 9.15564 9.2702 9.57403 9.1618 9.6979C9.0534 9.82187 8.94519 9.83743 8.75943 9.74441C8.57367 9.65149 7.97528 9.45529 7.26584 8.82257C6.71378 8.33011 6.34106 7.72192 6.23267 7.53607C6.12445 7.35004 6.23175 7.25922 6.31415 7.15704C6.5152 6.90738 6.71652 6.64563 6.77841 6.52176C6.84039 6.3978 6.80936 6.28931 6.76285 6.19638C6.71652 6.10345 6.34509 5.1893 6.19037 4.81732C6.03949 4.45532 5.8865 4.50421 5.77243 4.49853C5.66421 4.49313 5.54034 4.49203 5.41647 4.49203C5.29269 4.49203 5.09146 4.53845 4.92117 4.72449C4.75098 4.91043 4.27124 5.35968 4.27124 6.27383C4.27124 7.18799 4.93674 8.0711 5.02957 8.19507C5.12241 8.31903 6.33923 10.1949 8.20224 10.9993C8.64535 11.1909 8.99124 11.305 9.26105 11.3906C9.70599 11.532 10.1107 11.512 10.4308 11.4642C10.7877 11.4109 11.5295 11.0149 11.6844 10.5811C11.8392 10.1472 11.8392 9.77545 11.7927 9.6979C11.7463 9.62045 11.6225 9.57403 11.4368 9.48102Z"
fill="white"
/>
</svg>
</a>
</li>
<li class="author-social__item">
<a href="#" class="social-link social-link--fb author-social__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9.33328 16H6.16101V8.1131H4V5.54528H6.16092V3.7181C6.16092 1.55288 7.1167 0 10.2804 0C10.9495 0 12 0.134507 12 0.134507V2.51887H10.8966C9.7724 2.51887 9.33345 2.85992 9.33345 3.80281V5.54528H11.9579L11.7242 8.1131H9.33336L9.33328 16Z"
fill="white"
/>
</svg>
</a>
</li>
<li class="author-social__item">
<a href="#" class="social-link social-link--tw author-social__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.00378 14.4016C11.0081 14.4016 14.2917 9.45578 14.2917 5.16691C14.2917 5.02645 14.2888 4.88663 14.2824 4.7474C14.9214 4.28774 15.4728 3.71862 15.9108 3.0667C15.3259 3.32525 14.6965 3.49927 14.0362 3.57773C14.7101 3.17592 15.2275 2.54026 15.4716 1.78255C14.8308 2.1605 14.1298 2.42694 13.3988 2.57037C12.8031 1.93949 11.955 1.54492 11.016 1.54492C9.21328 1.54492 7.75143 2.99844 7.75143 4.79011C7.75143 5.04484 7.78011 5.29252 7.83612 5.53018C5.12304 5.39444 2.71728 4.10292 1.10722 2.13909C0.817235 2.63441 0.664706 3.19735 0.665213 3.77042C0.665213 4.89647 1.24149 5.89052 2.11788 6.47209C1.59949 6.45635 1.09247 6.31713 0.639471 6.06614C0.638986 6.07977 0.638986 6.09304 0.638986 6.1076C0.638986 7.67943 1.76419 8.99181 3.25786 9.28919C2.97733 9.36515 2.68785 9.40355 2.39709 9.40339C2.18712 9.40339 1.98248 9.38285 1.78359 9.34489C2.19918 10.6345 3.40426 11.5729 4.83303 11.5991C3.71575 12.4698 2.30832 12.9884 0.778658 12.9884C0.518442 12.9887 0.258439 12.9736 0 12.9435C1.44471 13.8642 3.16017 14.4014 5.00394 14.4014"
fill="white"
/>
</svg>
</a>
</li>
<li class="author-social__item">
<a href="#" class="social-link social-link--in author-social__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path
d="M15.9968 15.9995V15.9988H16.0008V10.1308C16.0008 7.26016 15.3828 5.04883 12.0268 5.04883C10.4135 5.04883 9.33082 5.93416 8.88882 6.7735H8.84216V5.31683H5.66016V15.9988H8.97349V10.7095C8.97349 9.31683 9.23749 7.97017 10.9622 7.97017C12.6615 7.97017 12.6868 9.5595 12.6868 10.7988V15.9995H15.9968Z"
fill="white"
/>
<path d="M0.263672 5.31836H3.58101V16.0004H0.263672V5.31836Z" fill="white" />
<path
d="M1.92133 0C0.860667 0 0 0.860667 0 1.92133C0 2.982 0.860667 3.86067 1.92133 3.86067C2.982 3.86067 3.84267 2.982 3.84267 1.92133C3.842 0.860667 2.98133 0 1.92133 0V0Z"
fill="white"
/>
</g>
<defs>
<clipPath id="clip0">
<rect width="16" height="16" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="author-social__item">
<a href="#" class="social-link social-link--p author-social__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#pinterest)">
<path
d="M8.21733 0C3.83133 0.000666667 1.5 2.81067 1.5 5.87467C1.5 7.29533 2.294 9.068 3.56533 9.63C3.928 9.79333 3.88 9.594 4.192 8.40067C4.21667 8.30133 4.204 8.21533 4.124 8.12267C2.30667 6.02067 3.76933 1.69933 7.958 1.69933C14.02 1.69933 12.8873 10.0873 9.01267 10.0873C8.014 10.0873 7.27 9.30333 7.50533 8.33333C7.79067 7.178 8.34933 5.936 8.34933 5.10333C8.34933 3.00467 5.22267 3.316 5.22267 6.09667C5.22267 6.956 5.52667 7.536 5.52667 7.536C5.52667 7.536 4.52067 11.6 4.334 12.3593C4.018 13.6447 4.37667 15.7253 4.408 15.9047C4.42733 16.0033 4.538 16.0347 4.6 15.9533C4.69933 15.8233 5.91533 14.0887 6.256 12.8347C6.38 12.378 6.88867 10.5247 6.88867 10.5247C7.224 11.13 8.19067 11.6367 9.22067 11.6367C12.2847 11.6367 14.4993 8.94333 14.4993 5.60133C14.4887 2.39733 11.7467 0 8.21733 0V0Z"
fill="white"
/>
</g>
<defs>
<clipPath id="pinterest">
<rect width="16" height="16" fill="white" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li class="author-social__item">
<a href="#" class="social-link social-link--lk author-social__link">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9.55744 5.58014L11.1042 4.03334C11.4234 3.7139 11.8023 3.46046 12.2195 3.28751C12.6366 3.11457 13.0837 3.0255 13.5353 3.02539C13.9868 3.02529 14.434 3.11415 14.8512 3.2869C15.2684 3.45966 15.6474 3.71291 15.9667 4.03221C16.286 4.35151 16.5393 4.73059 16.712 5.14779C16.8848 5.56499 16.9737 6.01214 16.9736 6.46369C16.9734 6.91524 16.8844 7.36235 16.7114 7.77947C16.5385 8.19659 16.285 8.57555 15.9656 8.8947L13.7559 11.1044C13.4367 11.4236 13.0577 11.6768 12.6407 11.8496C12.2236 12.0223 11.7766 12.1112 11.3252 12.1112C10.8738 12.1112 10.4268 12.0223 10.0097 11.8496C9.59268 11.6768 9.21373 11.4236 8.89453 11.1044"
stroke="white"
stroke-width="1.2"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M10.4415 14.4198L8.8947 15.9666C8.57555 16.286 8.19659 16.5394 7.77947 16.7124C7.36235 16.8853 6.91524 16.9744 6.46369 16.9745C6.01214 16.9746 5.56499 16.8858 5.14779 16.713C4.73059 16.5402 4.35151 16.287 4.03221 15.9677C3.71291 15.6484 3.45966 15.2693 3.2869 14.8521C3.11415 14.4349 3.02529 13.9878 3.02539 13.5362C3.0255 13.0847 3.11457 12.6376 3.28751 12.2204C3.46046 11.8033 3.7139 11.4243 4.03334 11.1052L6.24305 8.89549C6.56225 8.57629 6.9412 8.32309 7.35826 8.15034C7.77531 7.97759 8.22231 7.88867 8.67373 7.88867C9.12515 7.88867 9.57215 7.97759 9.98921 8.15034C10.4063 8.32309 10.7852 8.57629 11.1044 8.89549"
stroke="white"
stroke-width="1.2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</a>
</li>
</ul>
</div>
<p class="single-blog__content-text text--body-3">
Sed a laoreet erat, in vehicula erat. Vivamus a viverra ipsum, ut interdum tellus. Donec quis ex quis metus sodales facilisis ut nec ex. Ut commodo lacus vel odio venenatis, sit amet lacinia lacus cursus. Ut
sodales laoreet dapibus. Sed aliquam nisl odio, sed blandit erat placerat sed. Mauris eleifend, magna in convallis congue, orci est fermentum leo, at tincidunt massa ligula semper dolor. Nunc tristique enim
in risus tristique rutrum eget ac eros.
</p>
<div class="single-blog__quotes">
<span class="icon">
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M3.33334 30L6.66667 13.3333C5.34813 13.3333 4.0592 12.9423 2.96287 12.2098C1.86654 11.4773 1.01206 10.4361 0.507473 9.21789C0.00288854 7.99972 -0.129134 6.65927 0.128101 5.36607C0.385336 4.07286 1.02027 2.88497 1.95262 1.95262C2.88497 1.02027 4.07286 0.385336 5.36607 0.128101C6.65927 -0.129134 7.99972 0.00288854 9.21789 0.507473C10.4361 1.01206 11.4773 1.86654 12.2098 2.96287C12.9423 4.0592 13.3333 5.34813 13.3333 6.66667C13.3333 10.35 6.66667 30 6.66667 30H3.33334ZM20 30L23.3333 13.3333C22.0148 13.3333 20.7259 12.9423 19.6295 12.2098C18.5332 11.4773 17.6787 10.4361 17.1741 9.21789C16.6696 7.99972 16.5375 6.65927 16.7948 5.36607C17.052 4.07286 17.6869 2.88497 18.6193 1.95262C19.5516 1.02027 20.7395 0.385336 22.0327 0.128101C23.3259 -0.129134 24.6664 0.00288854 25.8846 0.507473C27.1027 1.01206 28.1439 1.86654 28.8765 2.96287C29.609 4.0592 30 5.34813 30 6.66667C30 10.35 23.3333 30 23.3333 30H20Z"
fill="#00AAFF"
/>
</svg>
</span>
<p class="text--body-2">
Vintage meets vogue is the only way to describe this serif typeface. Neue World encompasses the mode high-fashion aesthetic of the 1960s with a commercial take.
</p>
</div>
<p class="single-blog__content-text text--body-3">
Mauris fermentum faucibus risus a efficitur. Morbi sit amet arcu turpis. Ut nisl velit, mattis at augue vel, molestie egestas justo. Aliquam elementum nibh neque, eu ornare nunc feugiat sed. Aliquam erat
volutpat. Praesent vitae orci blandit, semper felis ac, interdum lacus.
<br />
<br />
Proin pulvinar quam at aliquet sagittis. Quisque laoreet luctus bibendum. Aenean in dignissim orci. Suspendisse at augue eget neque dictum vestibulum eu ac orci. Integer imperdiet lectus nec urna mollis
euismod. Proin et risus nulla. Cras at diam in risus feugiat accumsan. Nulla sit amet blandit mi, a convallis mauris. Quisque lacus dolor, cursus ac quam ac, tempus ultrices sem. Ut porttitor.
</p>
<div class="single-blog__sm-img-wrapper">
<img src="./src/images/bg/bg-03.png" alt="blog-img" class="img-fluid" />
</div>
<p class="single-blog__content-text text--body-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed iaculis nunc urna, id lobortis elit dapibus et. Etiam ultricies leo justo, nec vehicula augue auctor et. Sed finibus volutpat dui. Nunc vitae urna
dictum tellus luctus tincidunt quis feugiat dolor. Aliquam malesuada tristique urna, quis ornare diam venenatis quis. Nunc ligula lectus, posuere sit amet ultrices ut, porttitor efficitur mauris. Aliquam
bibendum vitae turpis sed molestie. Donec massa lorem, semper vel pellentesque ut, ultrices in enim. Sed fringilla, mi porttitor sodales vehicula, felis enim gravida nisi, at mollis ante leo et ligula.
Quisque non aliquam eros, in aliquet tellus. Mauris ullamcorper quam erat, vehicula r honcus velit interdum eget.
</p>
</div>
<!-- Promo Banner -->
<section class="promo-link mt-0">
<div class="container">
<a href="#">
<img src="./src/images/promo-img-02.png" alt="" class="w-100">
</a>
</div>
</section>
<!-- Comment Box -->
<div class="single-blog__comment-box">
<h2 class="text--body-1-600 title">Leave a Comments</h2>
<form action="#">
<div class="input-field__group">
<div class="input-field">
<label for="name">Full Name</label>
<input type="text" placeholder="Full Name" id="name" />
</div>
<div class="input-field">
<label for="email">Email</label>
<input type="email" placeholder="Email Address" id="email" />
</div>
</div>
<div class="input-field--textarea">
<label for="comments">Comments</label>
<textarea placeholder="What’s your thought..." id="comments"></textarea>
</div>
<button class="btn">post Commends</button>
</form>
</div>
<!-- User comments -->
<div class="single-blog__user-comments">
<h2 class="text--body-1 title">comments</h2>
<div class="user-comments">
<div class="user-comments__item">
<div class="user-img">
<img src="./src/images/users/img-01.png" alt="user-img" />
</div>
<div class="user-info">
<h2 class="user-name text--body-4-600">Annette Black <span class="date">26 Apr, 2021</span></h2>
<p class="user-comments__text text--body-3">
In a nisi commodo, porttitor ligula consequat, tincidunt dui. Nulla volutpat, metus eu aliquam malesuada, elit libero venenatis urna, consequat maximus arcu diam non diam.
</p>
</div>
</div>
<div class="user-comments__item">
<div class="user-img">
<img src="./src/images/users/img-02.png" alt="user-img" />
</div>
<div class="user-info">
<h2 class="user-name text--body-4-600">Devon Lane<span class="date">26 Apr, 2021</span></h2>
<p class="user-comments__text text--body-3">
Quisque eget tortor lobortis, facilisis metus eu, elementum est. Nunc sit amet erat quis ex convallis suscipit. Nam hendrerit, velit ut aliquam euismod, nibh tortor rutrum nisi, ac sodales nunc
eros porta nisi. Sed scelerisque, est eget aliquam venenatis, est sem tempor eros.
</p>
</div>
</div>
<div class="user-comments__item">
<div class="user-img">
<img src="./src/images/users/img-03.png" alt="user-img" />
</div>
<div class="user-info">
<h2 class="user-name text--body-4-600">Jacob Jones <span class="date">20 Apr, 2021</span></h2>
<p class="user-comments__text text--body-3">
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae.
</p>
</div>
</div>
<div class="user-comments__item">
<div class="user-img">
<img src="./src/images/users/img-04.png" alt="user-img" />
</div>
<div class="user-info">
<h2 class="user-name text--body-4-600">Jane Cooper <span class="date">18 Apr, 2021</span></h2>
<p class="user-comments__text text--body-3">
Pellentesque feugiat, nibh vel vehicula pretium, nibh nibh bibendum elit, a volutpat arcu dui nec orci. Aenean dui odio, ullamcorper quis turpis ac, volutpat imperdiet ex.
</p>
</div>
</div>
<div class="user-comments__item">
<div class="user-img">
<img src="./src/images/users/img-05.png" alt="user-img" />
</div>
<div class="user-info">
<h2 class="user-name text--body-4-600">Darrell Steward<span class="date">7 Apr, 2021</span></h2>
<p class="user-comments__text text--body-3">
Nulla molestie interdum ultricies.
</p>
</div>
</div>
</div>
<a href="#" class="btn btn--bg">
Load more
<span class="icon--right">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.5156 9.34766H21.0156V4.84766" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M6.16602 6.16637C6.9321 5.40029 7.84157 4.7926 8.84251 4.37799C9.84344 3.96339 10.9162 3.75 11.9996 3.75C13.0831 3.75 14.1558 3.96339 15.1568 4.37799C16.1577 4.7926 17.0672 5.40029 17.8333 6.16637L21.0153 9.34835"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M7.48438 14.6523H2.98438V19.1523" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M17.8336 17.8343C17.0675 18.6004 16.1581 19.2081 15.1571 19.6227C14.1562 20.0373 13.0834 20.2507 12 20.2507C10.9166 20.2507 9.84378 20.0373 8.84285 19.6227C7.84191 19.2081 6.93244 18.6004 6.16635 17.8343L2.98438 14.6523"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
</a>
</div>
</div>
<div class="col-lg-4">
<div class="blog__sidebar">
<span class="toggle-icon">
<svg width="28" height="28" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M19.5 13.5H4.5C4.08579 13.5 3.75 13.8358 3.75 14.25V18C3.75 18.4142 4.08579 18.75 4.5 18.75H19.5C19.9142 18.75 20.25 18.4142 20.25 18V14.25C20.25 13.8358 19.9142 13.5 19.5 13.5Z"
stroke="currentColor"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M19.5 5.25H4.5C4.08579 5.25 3.75 5.58579 3.75 6V9.75C3.75 10.1642 4.08579 10.5 4.5 10.5H19.5C19.9142 10.5 20.25 10.1642 20.25 9.75V6C20.25 5.58579 19.9142 5.25 19.5 5.25Z"
stroke="currentColor"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<div class="blog__sidebar-wrapper">
<!-- Search-->
<div class="blog__sidebar-search blog__sidebar-item">
<h2 class="text--body-2-600 item-title">Search</h2>
<div class="input-field">
<input type="text" placeholder="Search" />
<span class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M21.0004 21.0004L16.6504 16.6504" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</div>
<!-- Category -->
<div class="blog__sidebar-category blog__sidebar-item">
<h2 class="text--body-2-600 item-title">Top Category</h2>
<div class="category">
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-01.jpg" alt="category-img">
<h2 class="text--body-3">Food</h2>
</a>
</div>
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-02.jpg" alt="category-img">
<h2 class="text--body-3">Travel</h2>
</a>
</div>
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-03.jpg" alt="category-img">
<h2 class="text--body-3">Productivity</h2>
</a>
</div>
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-04.jpg" alt="category-img">
<h2 class="text--body-3">Technology</h2>
</a>
</div>
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-05.jpg" alt="category-img">
<h2 class="text--body-3">Art & Culture</h2>
</a>
</div>
<div class="category-item">
<a href="#">
<img src="./src/images/category/img-06.jpg" alt="category-img">
<h2 class="text--body-3">Business</h2>
</a>
</div>
</div>
</div>
<!-- Popular Tag -->
<div class="blog__sidebar-tag blog__sidebar-item">
<h2 class="text--body-2-600 item-title">Popular Tag</h2>
<div class="tags">
<span class="tags-item text--body-3">Travel</span>
<span class="tags-item text--body-3">Ad Posting</span>
<span class="tags-item active text--body-3">Technology</span>
<span class="tags-item text--body-3">Money</span>
<span class="tags-item text--body-3">Productivity</span>
<span class="tags-item text--body-3">Business</span>
<span class="tags-item text--body-3">Art</span>
<span class="tags-item text--body-3">learning</span>
</div>
</div>
<!-- Galler -->
<div class="blog__sidebar-gallery blog__sidebar-item">
<h2 class="text--body-2-600 item-title">Gallery</h2>
<div class="gallery">
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-01.jpg">
<img src="./src/images/gallery/img-01.png" alt="gallery-img" />
</a>
</div>
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-02.jpg">
<img src="./src/images/gallery/img-02.png" alt="gallery-img" />
</a>
</div>
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-03.jpg">
<img src="./src/images/gallery/img-03.png" alt="gallery-img" />
</a>
</div>
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-04.jpg">
<img src="./src/images/gallery/img-04.png" alt="gallery-img" />
</a>
</div>
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-05.jpg">
<img src="./src/images/gallery/img-05.png" alt="gallery-img" />
</a>
</div>
<div class="gallery-item">
<a class="galleryView" data-gall="gallery01" href="./src/images/gallery/img-lg-01.jpg">
<img src="./src/images/gallery/img-01.png" alt="gallery-img" />
</a>
</div>
</div>
</div>
<!-- Recent Post -->
<div class="blog__sidebar-post blog__sidebar-item">
<h2 class="text--body-2-600 item-title">Recent Post</h2>
<div class="post">
<div class="post-item">
<a href="#" class="post-img">
<img src="./src/images/gallery/img-01.png" alt="post-img" />
</a>
<div class="post-info">
<a href="#" class="text--body-3">Vivamus a viverra ipsum, ut interdum tellus. Donec quis...</a>
<div class="post-review">
<span class="date">Dec 15, 2021</span>
<span class="dot"></span>
<span class="comments">47 Comments</span>
</div>
</div>
</div>
<div class="post-item">
<a href="#" class="post-img">
<img src="./src/images/gallery/img-02.png" alt="post-img" />
</a>
<div class="post-info">
<a href="#" class="text--body-3">Vivamus a viverra ipsum, ut interdum tellus. Donec quis...</a>
<div class="post-review">
<span class="date">Dec 15, 2021</span>
<span class="dot"></span>
<span class="comments">47 Comments</span>
</div>
</div>
</div>
<div class="post-item">
<a href="#" class="post-img">
<img src="./src/images/gallery/img-03.png" alt="post-img" />
</a>
<div class="post-info">
<a href="#" class="text--body-3">Vivamus a viverra ipsum, ut interdum tellus. Donec quis...</a>
<div class="post-review">
<span class="date">Dec 15, 2021</span>
<span class="dot"></span>
<span class="comments">47 Comments</span>
</div>
</div>
</div>
</div>
</div>
<!-- Banner Promo -->
<div class="blog__sidebar-item blog-promo__img">
<a href="#">
<img src="./src/images/promo-img-01.png" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- single Blog Section end -->
<!-- footer section start -->
<footer class="footer footer--dark">
<div class="footer__top">
<div class="container">
<div class="row">
<div class="col-xl-3">
<div class="footer__brand-logo">
<img src="./src/images/logo.png" alt="logo-brand" />
</div>
<div class="footer__loc-info">
<p class="text--body-3">
4517 Washington Ave. Manchester, Kentucky 39495
</p>
<p class="text--body-3 phone">
Phone: (405) 555-0128
</p>
<p class="text--body-3 email">
Mail: [email protected]
</p>
</div>
</div>
<div class="col-xl-2 col-lg-2 col-sm-4 col-6">
<h2 class="footer__title text--body-2-600">Supports</h2>
<ul class="footer-menu">
<li class="footer-menu__item">
<a href="contact.html" class="footer-menu__link text--body-3">Contact</a>
</li>
<li class="footer-menu__item">
<a href="faq.html" class="footer-menu__link text--body-3">Faqs</a>
</li>
<li class="footer-menu__item">
<a href="price-plan.html" class="footer-menu__link text--body-3">Pricing Plans</a>
</li>
<li class="footer-menu__item">
<a href="sitemap.html" class="footer-menu__link text--body-3">Sitemap</a>
</li>
</ul>
</div>
<div class="col-xl-2 col-lg-2 col-sm-4 col-6">
<h2 class="footer__title text--body-2-600">Quick Links</h2>
<ul class="footer-menu">
<li class="footer-menu__item">
<a href="about.html" class="footer-menu__link text--body-3">About</a>
</li>
<li class="footer-menu__item">
<a href="get-membership.html" class="footer-menu__link text--body-3">Get Membership</a>
</li>
<li class="footer-menu__item">
<a href="post-ads.html" class="footer-menu__link text--body-3">Pricing Plans</a>
</li>
<li class="footer-menu__item">
<a href="blog-list.html" class="footer-menu__link text--body-3">Blog</a>
</li>
</ul>
</div>
<div class="col-xl-2 col-lg-2 col-sm-4 col-6">
<h2 class="footer__title text--body-2-600">Category</h2>
<ul class="footer-menu">
<li class="footer-menu__item">
<a href="#" class="footer-menu__link text--body-3">Mobile</a>
</li>
<li class="footer-menu__item">
<a href="#" class="footer-menu__link text--body-3">Electronics</a>
</li>
<li class="footer-menu__item">
<a href="#" class="footer-menu__link text--body-3">Vehicles</a>
</li>
<li class="footer-menu__item">
<a href="#" class="footer-menu__link text--body-3">Property</a>
</li>
</ul>
</div>
<div class="col-xl-4 col-lg-6">
<h2 class="footer__title text--body-2-600">Download our app</h2>
<div class="footer__mobile-app">
<a href="#" class="app">
<div class="app-logo">
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#googleplay)">
<path
d="M20.087 15.4109L6.29177 1.48889L23.8438 11.6301L20.087 15.4109ZM2.69017 0.670898C1.87737 1.09922 1.33337 1.87857 1.33337 2.89301V30.6533C1.33337 31.6677 1.87737 32.4471 2.69017 32.8754L18.7334 16.7699L2.69017 0.670898ZM29.271 14.8634L25.5894 12.7186L21.4822 16.7764L25.5894 20.8341L29.3462 18.6893C30.471 17.7892 30.471 15.7635 29.271 14.8634ZM6.29177 32.0638L23.8438 21.9226L20.087 18.1418L6.29177 32.0638Z"
fill="currentColor"
></path>
</g>
<defs>
<clipPath id="googleplay">
<rect width="32" height="32.2045" fill="white"></rect>
</clipPath>
</defs>
</svg>
</div>
<div class="app-info">
<h5 class="text--body-5">Get it now</h5>
<h2 class="text--body-3-600">Google Play</h2>
</div>
</a>
<a href="#" class="app">
<div class="app-logo">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#appstore)">
<path
d="M29.056 24.938C28.5893 26.0249 28.013 27.0614 27.336 28.0313C26.4306 29.3213 25.69 30.214 25.1193 30.71C24.2346 31.5233 23.286 31.9407 22.2706 31.964C21.542 31.964 20.6633 31.7567 19.64 31.336C18.6133 30.9173 17.67 30.7093 16.8073 30.7093C15.9026 30.7093 14.9326 30.9173 13.8946 31.336C12.8553 31.7567 12.018 31.976 11.378 31.9973C10.4046 32.0393 9.43396 31.6107 8.46463 30.71C7.84663 30.17 7.07396 29.246 6.14729 27.9367C5.15329 26.538 4.33596 24.9167 3.69596 23.0673C3.01063 21.0707 2.66663 19.1367 2.66663 17.2647C2.66663 15.12 3.12996 13.2707 4.05796 11.7207C4.78796 10.4753 5.75796 9.494 6.97263 8.77267C8.16428 8.05956 9.52398 7.67581 10.9126 7.66067C11.686 7.66067 12.7 7.9 13.9606 8.37C15.2173 8.84133 16.024 9.08067 16.378 9.08067C16.642 9.08067 17.5386 8.80067 19.058 8.24333C20.4953 7.726 21.708 7.512 22.7013 7.59667C25.394 7.814 27.4166 8.87533 28.7613 10.7873C26.354 12.246 25.1626 14.2893 25.1866 16.9107C25.208 18.9527 25.9486 20.652 27.4046 22.0007C28.0646 22.6273 28.8013 23.1113 29.6206 23.4547C29.4488 23.9552 29.2605 24.4499 29.056 24.938ZM22.8813 0.640667C22.8813 2.24067 22.2966 3.73533 21.1313 5.118C19.7246 6.76267 18.024 7.71267 16.1793 7.56267C16.1545 7.36139 16.142 7.15879 16.142 6.956C16.142 5.42 16.8106 3.776 17.9986 2.43133C18.592 1.75067 19.3453 1.18467 20.26 0.733333C21.1733 0.288667 22.036 0.0426667 22.848 0C22.8713 0.214 22.8813 0.428 22.8813 0.64V0.640667Z"
fill="currentColor"
></path>
</g>
<defs>
<clipPath id="appstore">
<rect width="32" height="32" fill="white"></rect>
</clipPath>
</defs>
</svg>
</div>
<div class="app-info">
<h5 class="text--body-5">Get it now</h5>
<h2 class="text--body-3-600">App Store</h2>
</div>
</a>
</div>
<ul class="social-icon">
<!-- facebook -->
<li class="social-icon__item">