-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-list.html
1640 lines (1610 loc) · 140 KB
/
blog-list.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 || Blog list</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.html" 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">Blog List</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="#" class="breedcrumb__page-link text--body-3">Blog List</a>
</li>
</ul>
</div>
</section>
<!-- breedcrumb section end -->
<!-- Blog-list Promo Section Start -->
<section class="promo-link">
<div class="container">
<a href="#">
<img src="./src/images/promo-img-02.png" alt="" class="img-fluid">
</a>
</div>
</section>
<!-- Blog-list Promo Section End -->
<!-- Blog-list section start -->
<section class="blog-list section pt-0">
<div class="container">
<div class="row">
<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>
<!-- Gallery -->
<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 class="col-lg-8">
<div class="blog-list__wrapper">
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<div class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-01.png" alt="blog-img" />
<!-- Play-icon -->
<a href="https://youtu.be/vPhg6sc1Mk4" class="icon yplayer" data-autoplay="true" data-vbtype="video">
<svg width="13" height="16" viewBox="0 0 13 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.125 0.423828V15.2876L12.3125 7.85569L0.125 0.423828Z" fill="#00AAFF"></path>
</svg>
</a>
</div>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"
></path>
<path
d="M12.375 9.84375C12.841 9.84375 13.2188 9.46599 13.2188 9C13.2188 8.53401 12.841 8.15625 12.375 8.15625C11.909 8.15625 11.5312 8.53401 11.5312 9C11.5312 9.46599 11.909 9.84375 12.375 9.84375Z"
fill="#00AAFF"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__coment-num">36 Comments</h5>
</li>
</ul>
<a href="blog-details.html" class="blog-card__blog-caption text--body-2">
Dictum pretium magna ac mattis. Maecenas lobortis
</a>
<p class="blog-card__description text--body-4">
Quisque gravida justo ut neque ornare, nec malesuada sapien sagittis. Cras condimentum feugiat lectus, in facilisis arcu ultrices ut. Nullam hendrerit fringilla justo ut auctor. Praesent
condimentum.
</p>
<a href="blog-details.html" class="blog-card__readmore">
Read more
<span class="icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.125 10H16.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.25 4.375L16.875 10L11.25 15.625" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<a href="blog-details.html" class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-02.png" alt="blog-img" />
</a>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"
></path>
<path
d="M12.375 9.84375C12.841 9.84375 13.2188 9.46599 13.2188 9C13.2188 8.53401 12.841 8.15625 12.375 8.15625C11.909 8.15625 11.5312 8.53401 11.5312 9C11.5312 9.46599 11.909 9.84375 12.375 9.84375Z"
fill="#00AAFF"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__coment-num">36 Comments</h5>
</li>
</ul>
<a href="blog-details.html" class="blog-card__blog-caption text--body-2">
Dictum pretium magna ac mattis. Maecenas lobortis
</a>
<p class="blog-card__description text--body-4">
Quisque gravida justo ut neque ornare, nec malesuada sapien sagittis. Cras condimentum feugiat lectus, in facilisis arcu ultrices ut. Nullam hendrerit fringilla justo ut auctor. Praesent
condimentum.
</p>
<a href="blog-details.html" class="blog-card__readmore">
Read more
<span class="icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.125 10H16.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.25 4.375L16.875 10L11.25 15.625" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<a href="blog-details.html" class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-03.png" alt="blog-img" />
</a>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"
></path>
<path
d="M12.375 9.84375C12.841 9.84375 13.2188 9.46599 13.2188 9C13.2188 8.53401 12.841 8.15625 12.375 8.15625C11.909 8.15625 11.5312 8.53401 11.5312 9C11.5312 9.46599 11.909 9.84375 12.375 9.84375Z"
fill="#00AAFF"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__coment-num">36 Comments</h5>
</li>
</ul>
<a href="blog-details.html" class="blog-card__blog-caption text--body-2">
Dictum pretium magna ac mattis. Maecenas lobortis
</a>
<p class="blog-card__description text--body-4">
Quisque gravida justo ut neque ornare, nec malesuada sapien sagittis. Cras condimentum feugiat lectus, in facilisis arcu ultrices ut. Nullam hendrerit fringilla justo ut auctor. Praesent
condimentum.
</p>
<a href="blog-details.html" class="blog-card__readmore">
Read more
<span class="icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.125 10H16.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.25 4.375L16.875 10L11.25 15.625" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<a href="blog-details.html" class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-04.png" alt="blog-img" />
</a>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"
></path>
<path
d="M12.375 9.84375C12.841 9.84375 13.2188 9.46599 13.2188 9C13.2188 8.53401 12.841 8.15625 12.375 8.15625C11.909 8.15625 11.5312 8.53401 11.5312 9C11.5312 9.46599 11.909 9.84375 12.375 9.84375Z"
fill="#00AAFF"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__coment-num">36 Comments</h5>
</li>
</ul>
<a href="blog-details.html" class="blog-card__blog-caption text--body-2">
Dictum pretium magna ac mattis. Maecenas lobortis
</a>
<p class="blog-card__description text--body-4">
Quisque gravida justo ut neque ornare, nec malesuada sapien sagittis. Cras condimentum feugiat lectus, in facilisis arcu ultrices ut. Nullam hendrerit fringilla justo ut auctor. Praesent
condimentum.
</p>
<a href="blog-details.html" class="blog-card__readmore">
Read more
<span class="icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.125 10H16.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.25 4.375L16.875 10L11.25 15.625" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<a href="blog-details.html" class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-05.png" alt="blog-img" />
</a>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"
></path>
<path
d="M12.375 9.84375C12.841 9.84375 13.2188 9.46599 13.2188 9C13.2188 8.53401 12.841 8.15625 12.375 8.15625C11.909 8.15625 11.5312 8.53401 11.5312 9C11.5312 9.46599 11.909 9.84375 12.375 9.84375Z"
fill="#00AAFF"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__coment-num">36 Comments</h5>
</li>
</ul>
<a href="blog-details.html" class="blog-card__blog-caption text--body-2">
Dictum pretium magna ac mattis. Maecenas lobortis
</a>
<p class="blog-card__description text--body-4">
Quisque gravida justo ut neque ornare, nec malesuada sapien sagittis. Cras condimentum feugiat lectus, in facilisis arcu ultrices ut. Nullam hendrerit fringilla justo ut auctor. Praesent
condimentum.
</p>
<a href="blog-details.html" class="blog-card__readmore">
Read more
<span class="icon">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.125 10H16.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11.25 4.375L16.875 10L11.25 15.625" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="blog-list__wrapper-item">
<div class="blog-card">
<div class="blog-card__left">
<a href="blog-details.html" class="blog-card__img-wrapper">
<img src="./src/images/blogs/img-06.png" alt="blog-img" />
</a>
</div>
<div class="blog-card__right">
<ul class="blog-card__blog-info">
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9 11.25C11.4853 11.25 13.5 9.23528 13.5 6.75C13.5 4.26472 11.4853 2.25 9 2.25C6.51472 2.25 4.5 4.26472 4.5 6.75C4.5 9.23528 6.51472 11.25 9 11.25Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-miterlimit="10"
></path>
<path
d="M2.17871 15.1868C2.87028 13.9898 3.86467 12.9959 5.062 12.3048C6.25934 11.6138 7.61744 11.25 8.99988 11.25C10.3823 11.25 11.7404 11.6138 12.9377 12.3049C14.135 12.996 15.1294 13.9899 15.821 15.187"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<h5 class="text--body-4 blog-card__username">Jane Cooper</h5>
</li>
<li class="blog-card__blog-info-item">
<span class="icon">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.19421 12.4454C2.35557 11.0316 2.06187 9.36037 2.36826 7.74539C2.67466 6.13042 3.56006 4.68285 4.85823 3.6745C6.15639 2.66615 7.77801 2.16638 9.41858 2.26904C11.0592 2.3717 12.6058 3.06973 13.7681 4.23206C14.9305 5.39438 15.6285 6.94104 15.7312 8.58161C15.8339 10.2222 15.3341 11.8438 14.3257 13.142C13.3174 14.4401 11.8698 15.3256 10.2549 15.632C8.63989 15.9384 6.96862 15.6447 5.55486 14.806L5.55488 14.806L3.22356 15.4721C3.12711 15.4996 3.02504 15.5009 2.92793 15.4757C2.83082 15.4506 2.74221 15.3999 2.67128 15.3289C2.60034 15.258 2.54967 15.1694 2.52451 15.0723C2.49935 14.9752 2.50061 14.8731 2.52817 14.7767L3.19426 12.4453L3.19421 12.4454Z"
stroke="#00AAFF"
stroke-width="1.3"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M9.19375 9C9.19375 9.10701 9.10701 9.19375 9 9.19375C8.89299 9.19375 8.80625 9.10701 8.80625 9C8.80625 8.89299 8.89299 8.80625 9 8.80625C9.10701 8.80625 9.19375 8.89299 9.19375 9Z"
fill="#00AAFF"
stroke="#00AAFF"
stroke-width="1.3"
></path>
<path
d="M5.625 9.84375C6.09099 9.84375 6.46875 9.46599 6.46875 9C6.46875 8.53401 6.09099 8.15625 5.625 8.15625C5.15901 8.15625 4.78125 8.53401 4.78125 9C4.78125 9.46599 5.15901 9.84375 5.625 9.84375Z"
fill="#00AAFF"