-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1000 lines (974 loc) · 93.1 KB
/
about.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 || About</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/slick.css">
<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">About Us</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">About us</a>
</li>
</ul>
</div>
</section>
<!-- breedcrumb section end -->
<!-- about-us section start -->
<section class="section about-us">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-6 order-xl-0 order-2">
<h2 class="about-us__title text--heading-1" >Know more about Onest</h2>
<p class="text--body-3 about-us__brief">
Onest is a website where you can buy and sell almost everything. The best deals are often done with people who live in your own city or on your own street, so on Bikroy.com it's easy to buy and sell locally.
All you have to do is select your region. It takes you less than 2 minutes to post an ad on Bikroy.com. You can sign up for a free account and post ads easily every time. Onest has the widest selection of
popular second hand items all over Bangladesh, which makes it easy to find exactly what you are looking for.
</p>
</div>
<div class="col-xl-6 order-xl-0 order-1">
<div class="about-us__img-wrapper">
<img src="./src/images/bg/about.png" alt="about" class="img-fluid" />
<a href="https://youtu.be/vPhg6sc1Mk4" class="icon yplayer" data-autoplay="true" data-vbtype="video">
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M28.5185 15.1473L10.5215 4.14868C10.3699 4.05604 10.1963 4.00545 10.0187 4.00213C9.8411 3.9988 9.6658 4.04285 9.51085 4.12975C9.3559 4.21665 9.2269 4.34326 9.13711 4.49656C9.04733 4.64985 9 4.8243 9 5.00195V26.9991C9 27.1768 9.04733 27.3512 9.13711 27.5045C9.2269 27.6578 9.3559 27.7844 9.51085 27.8713C9.6658 27.9582 9.8411 28.0023 10.0187 27.9989C10.1963 27.9956 10.3699 27.945 10.5215 27.8524L28.5185 16.8538C28.6647 16.7645 28.7855 16.6391 28.8693 16.4897C28.9531 16.3403 28.9971 16.1718 28.9971 16.0005C28.9971 15.8292 28.9531 15.6608 28.8693 15.5114C28.7855 15.362 28.6647 15.2366 28.5185 15.1473Z"
fill="white"
/>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- about-us section end -->
<!-- work section start -->
<section class="section work bgcolor--gray-10">
<div class="container">
<h2 class="text--heading-1 section__title"
>How it Work</h2>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="work-card">
<span class="work-card__icon">
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.2" d="M25 31.25C31.9036 31.25 37.5 25.6536 37.5 18.75C37.5 11.8464 31.9036 6.25 25 6.25C18.0964 6.25 12.5 11.8464 12.5 18.75C12.5 25.6536 18.0964 31.25 25 31.25Z" fill="#FF4F4F"></path>
<path d="M34.375 10.9375H43.75" stroke="#FF4F4F" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M39.0625 6.25V15.625" stroke="#FF4F4F" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path
d="M6.05255 42.1857C7.97357 38.8606 10.7358 36.0996 14.0617 34.18C17.3876 32.2605 21.1601 31.25 25.0002 31.25C28.8403 31.25 32.6128 32.2606 35.9387 34.1803C39.2646 36.0999 42.0267 38.8609 43.9477 42.1861"
stroke="#FF4F4F"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M36.7287 23.0826C35.8932 25.3386 34.4241 27.3054 32.4978 28.7467C30.5716 30.188 28.2702 31.0424 25.8701 31.2075C23.47 31.3725 21.0733 30.8411 18.9679 29.677C16.8625 28.5129 15.138 26.7657 14.0015 24.6453C12.865 22.5249 12.3649 20.1215 12.5613 17.7237C12.7576 15.326 13.6421 13.0359 15.1084 11.1287C16.5747 9.22143 18.5605 7.77809 20.8272 6.97207C23.094 6.16604 25.5452 6.03161 27.8865 6.58493"
stroke="#FF4F4F"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</span>
<span class="work-card__count-number">
01
</span>
<h2 class="work-card__title text--body-1">Create Account</h2>
<p class="work-card__description text--body-3">
Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae. Donec non lorem erat. Sed vitae vene.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="work-card">
<span class="work-card__icon">
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
opacity="0.2"
d="M10.9375 7.8136H39.0625C39.4769 7.8136 39.8743 7.97822 40.1674 8.27124C40.4604 8.56427 40.625 8.9617 40.625 9.3761V39.0636C40.625 40.3068 40.1311 41.4991 39.2521 42.3782C38.373 43.2572 37.1807 43.7511 35.9375 43.7511H14.0625C12.8193 43.7511 11.627 43.2572 10.7479 42.3782C9.86886 41.4991 9.375 40.3068 9.375 39.0636V9.3761C9.375 8.9617 9.53962 8.56427 9.83265 8.27124C10.1257 7.97822 10.5231 7.8136 10.9375 7.8136Z"
fill="#FFBF00"
></path>
<path d="M18.75 25.0012H31.25" stroke="#FFBF00" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M18.75 31.2512H31.25" stroke="#FFBF00" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path
d="M10.9375 7.8136H39.0625C39.4769 7.8136 39.8743 7.97822 40.1674 8.27124C40.4604 8.56427 40.625 8.9617 40.625 9.3761V39.0636C40.625 40.3068 40.1311 41.4991 39.2521 42.3782C38.373 43.2572 37.1807 43.7511 35.9375 43.7511H14.0625C12.8193 43.7511 11.627 43.2572 10.7479 42.3782C9.86886 41.4991 9.375 40.3068 9.375 39.0636V9.3761C9.375 8.9617 9.53962 8.56427 9.83265 8.27124C10.1257 7.97822 10.5231 7.8136 10.9375 7.8136Z"
stroke="#FFBF00"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path d="M15.625 4.68872V10.9387" stroke="#FFBF00" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M25 4.68872V10.9387" stroke="#FFBF00" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M34.375 4.68872V10.9387" stroke="#FFBF00" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
<span class="work-card__count-number">
02
</span>
<h2 class="work-card__title text--body-1">Post Ads</h2>
<p class="work-card__description text--body-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris eu aliquet odio. Nulla pretium congue eros, nec rhoncus mi.
</p>
</div>
</div>
<div class="col-lg-4 col-md-12">
<div class="work-card">
<span class="work-card__icon">
<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
opacity="0.2"
d="M6.46637 14.5736C6.32466 14.814 6.24995 15.0879 6.25 15.3669V34.633C6.25 34.9103 6.32377 35.1825 6.46374 35.4219C6.6037 35.6612 6.80483 35.8589 7.04647 35.9949L24.234 45.6628C24.4678 45.7944 24.7317 45.8635 25 45.8635L25.002 45.8635L25.1854 25L6.46641 14.5736L6.46637 14.5736Z"
fill="#27C200"
></path>
<path
d="M43.75 34.633V15.3669C43.75 15.0897 43.6762 14.8174 43.5363 14.5781C43.3963 14.3388 43.1952 14.141 42.9535 14.0051L25.766 4.33714C25.5322 4.20558 25.2683 4.13647 25 4.13647C24.7317 4.13647 24.4678 4.20558 24.234 4.33714L7.04647 14.0051C6.80483 14.141 6.6037 14.3388 6.46374 14.5781C6.32377 14.8174 6.25 15.0897 6.25 15.3669V34.633C6.25 34.9103 6.32377 35.1825 6.46374 35.4219C6.6037 35.6612 6.80483 35.859 7.04647 35.9949L24.234 45.6628C24.4678 45.7944 24.7317 45.8635 25 45.8635C25.2683 45.8635 25.5322 45.7944 25.766 45.6628L42.9535 35.9949C43.1952 35.859 43.3963 35.6612 43.5363 35.4219C43.6762 35.1825 43.75 34.9103 43.75 34.633Z"
stroke="#27C200"
stroke-width="2.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path d="M34.5746 29.7873V19.6311L15.625 9.17969" stroke="#27C200" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M43.5345 14.5756L25.1853 25L6.46631 14.5736" stroke="#27C200" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M25.1853 25L25.002 45.8635" stroke="#27C200" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
<span class="work-card__count-number">
03
</span>
<h2 class="work-card__title text--body-1">Start Earning</h2>
<p class="work-card__description text--body-3">
Vestibulum quis consectetur est. Fusce hendrerit neque at facilisis facilisis. Praesent a pretium elit. Nulla aliquam puru.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- work section end -->
<!-- testimonial section start -->
<section class="testimonial section">
<div class="container">
<h2 class="text--heading-1 section__title"
>What Poeple Says</h2>
<div class="testimonial-slider row">
<div class="testimonial-slider__item">
<div class="testimonial-card">
<ul class="testimonial-card__user-rating">
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
</ul>
<p class="testimonial-card__user-brief text--body-2">
Donec rhoncus leo sed bibendum ullamcorper. Donec lacus mi, aliquet eget convallis sit amet, posuere id odio. Vestibulum sit amet odio ut nulla venenatis ultrices.
</p>
<div class="testimonial-card__user-info">
<div class="user-img">
<img src="./src/images/users/img-01.png" alt="user-img" />
</div>
<div>
<h2 class="text--body-3 user-name">Bessie Cooper</h2>
<span class="designation text--body-4">Ceo of Twitter</span>
</div>
</div>
<div class="testimonial-card__quotes-icon">
<svg width="60" height="45" viewBox="0 0 60 45" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M21.9846 4.56514C19.2869 1.53599 16.0352 0 12.3197 0C8.97465 0 6.15447 1.20634 3.93788 3.58541C1.74031 5.94394 0.625964 8.87239 0.625964 12.2895C0.625964 15.522 1.76903 18.4024 4.02321 20.8512C5.90237 22.8923 8.22141 24.2315 10.9336 24.8456C11.191 24.9039 11.3686 25.1462 11.3199 25.4056C10.6079 29.2036 7.18816 32.6487 1.12738 35.6648C0.508276 35.9728 0.262547 36.729 0.582341 37.342L4.02121 43.9347C4.32888 44.5246 5.05445 44.7562 5.64694 44.4537C19.1522 37.5583 26 27.8125 26 15.4871C25.9999 11.2319 24.6488 7.55718 21.9846 4.56514Z"
fill="currentColor"
/>
<path
d="M56.0369 4.57114C53.3701 1.53799 50.1337 0 46.4174 0C43.0775 0 40.2461 1.20423 38.0012 3.57907C35.7706 5.93875 34.6396 8.86967 34.6396 12.2906C34.6396 15.5234 35.782 18.4042 38.0352 20.853C39.9184 22.9 42.2651 24.2411 45.0277 24.8527C45.2865 24.91 45.4653 25.1533 45.4158 25.4137C44.6953 29.208 41.2491 32.6509 35.1442 35.666C34.5184 35.9751 34.2727 36.7409 34.602 37.3564L38.1296 43.9505C38.4413 44.533 39.1623 44.7582 39.7501 44.4565C53.187 37.5603 60 27.8141 60 15.4885C60 11.2362 58.6667 7.56321 56.0369 4.57114Z"
fill="currentColor"
/>
</svg>
</div>
</div>
</div>
<div class="testimonial-slider__item">
<div class="testimonial-card">
<ul class="testimonial-card__user-rating">
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
</ul>
<p class="testimonial-card__user-brief text--body-2">
Donec rhoncus leo sed bibendum ullamcorper. Donec lacus mi, aliquet eget convallis sit amet, posuere id odio. Vestibulum sit amet odio ut nulla venenatis ultrices.
</p>
<div class="testimonial-card__user-info">
<div class="user-img">
<img src="./src/images/users/img-01.png" alt="user-img" />
</div>
<div>
<h2 class="text--body-3 user-name">Bessie Cooper</h2>
<span class="designation text--body-4">Ceo of Twitter</span>
</div>
</div>
<div class="testimonial-card__quotes-icon">
<svg width="60" height="45" viewBox="0 0 60 45" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M21.9846 4.56514C19.2869 1.53599 16.0352 0 12.3197 0C8.97465 0 6.15447 1.20634 3.93788 3.58541C1.74031 5.94394 0.625964 8.87239 0.625964 12.2895C0.625964 15.522 1.76903 18.4024 4.02321 20.8512C5.90237 22.8923 8.22141 24.2315 10.9336 24.8456C11.191 24.9039 11.3686 25.1462 11.3199 25.4056C10.6079 29.2036 7.18816 32.6487 1.12738 35.6648C0.508276 35.9728 0.262547 36.729 0.582341 37.342L4.02121 43.9347C4.32888 44.5246 5.05445 44.7562 5.64694 44.4537C19.1522 37.5583 26 27.8125 26 15.4871C25.9999 11.2319 24.6488 7.55718 21.9846 4.56514Z"
fill="currentColor"
/>
<path
d="M56.0369 4.57114C53.3701 1.53799 50.1337 0 46.4174 0C43.0775 0 40.2461 1.20423 38.0012 3.57907C35.7706 5.93875 34.6396 8.86967 34.6396 12.2906C34.6396 15.5234 35.782 18.4042 38.0352 20.853C39.9184 22.9 42.2651 24.2411 45.0277 24.8527C45.2865 24.91 45.4653 25.1533 45.4158 25.4137C44.6953 29.208 41.2491 32.6509 35.1442 35.666C34.5184 35.9751 34.2727 36.7409 34.602 37.3564L38.1296 43.9505C38.4413 44.533 39.1623 44.7582 39.7501 44.4565C53.187 37.5603 60 27.8141 60 15.4885C60 11.2362 58.6667 7.56321 56.0369 4.57114Z"
fill="currentColor"
/>
</svg>
</div>
</div>
</div>
<div class="testimonial-slider__item">
<div class="testimonial-card">
<ul class="testimonial-card__user-rating">
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
<li class="testimonial-card__user-rating__icon">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M14.4825 20.8614L19.9988 24.3563C20.704 24.8031 21.5794 24.1386 21.3702 23.3155L19.7764 17.0459C19.7315 16.8713 19.7368 16.6875 19.7917 16.5158C19.8466 16.3441 19.9489 16.1913 20.0868 16.0751L25.0335 11.9578C25.6835 11.4169 25.348 10.3381 24.5129 10.2839L18.0528 9.86468C17.8788 9.85225 17.7119 9.79064 17.5716 9.68704C17.4312 9.58343 17.3232 9.44208 17.2601 9.27946L14.8507 3.2121C14.7852 3.03949 14.6688 2.89089 14.5168 2.78602C14.3649 2.68116 14.1846 2.625 14 2.625C13.8154 2.625 13.6351 2.68116 13.4832 2.78602C13.3312 2.89089 13.2148 3.03949 13.1493 3.2121L10.74 9.27946C10.6768 9.44208 10.5688 9.58343 10.4285 9.68704C10.2881 9.79064 10.1212 9.85225 9.94721 9.86468L3.4871 10.2839C2.65201 10.3381 2.31653 11.4169 2.96651 11.9578L7.91325 16.0751C8.0511 16.1913 8.15336 16.3441 8.20827 16.5158C8.26317 16.6875 8.26849 16.8713 8.22361 17.0459L6.74553 22.8603C6.49444 23.848 7.54501 24.6453 8.39117 24.1092L13.5175 20.8614C13.6617 20.7696 13.8291 20.7208 14 20.7208C14.1709 20.7208 14.3383 20.7696 14.4825 20.8614Z"
fill="#FFBF00"
/>
</svg>
</li>
</ul>
<p class="testimonial-card__user-brief text--body-2">
Donec rhoncus leo sed bibendum ullamcorper. Donec lacus mi, aliquet eget convallis sit amet, posuere id odio. Vestibulum sit amet odio ut nulla venenatis ultrices.
</p>
<div class="testimonial-card__user-info">
<div class="user-img">
<img src="./src/images/users/img-01.png" alt="user-img" />
</div>
<div>
<h2 class="text--body-3 user-name">Bessie Cooper</h2>
<span class="designation text--body-4">Ceo of Twitter</span>
</div>
</div>
<div class="testimonial-card__quotes-icon">
<svg width="60" height="45" viewBox="0 0 60 45" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M21.9846 4.56514C19.2869 1.53599 16.0352 0 12.3197 0C8.97465 0 6.15447 1.20634 3.93788 3.58541C1.74031 5.94394 0.625964 8.87239 0.625964 12.2895C0.625964 15.522 1.76903 18.4024 4.02321 20.8512C5.90237 22.8923 8.22141 24.2315 10.9336 24.8456C11.191 24.9039 11.3686 25.1462 11.3199 25.4056C10.6079 29.2036 7.18816 32.6487 1.12738 35.6648C0.508276 35.9728 0.262547 36.729 0.582341 37.342L4.02121 43.9347C4.32888 44.5246 5.05445 44.7562 5.64694 44.4537C19.1522 37.5583 26 27.8125 26 15.4871C25.9999 11.2319 24.6488 7.55718 21.9846 4.56514Z"
fill="currentColor"
/>
<path
d="M56.0369 4.57114C53.3701 1.53799 50.1337 0 46.4174 0C43.0775 0 40.2461 1.20423 38.0012 3.57907C35.7706 5.93875 34.6396 8.86967 34.6396 12.2906C34.6396 15.5234 35.782 18.4042 38.0352 20.853C39.9184 22.9 42.2651 24.2411 45.0277 24.8527C45.2865 24.91 45.4653 25.1533 45.4158 25.4137C44.6953 29.208 41.2491 32.6509 35.1442 35.666C34.5184 35.9751 34.2727 36.7409 34.602 37.3564L38.1296 43.9505C38.4413 44.533 39.1623 44.7582 39.7501 44.4565C53.187 37.5603 60 27.8141 60 15.4885C60 11.2362 58.6667 7.56321 56.0369 4.57114Z"
fill="currentColor"
/>
</svg>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- testimonial section end -->
<!-- suppor-brand section start -->
<section class="section support-brand pt-0">
<div class="container">
<h2 class=" title text--body-2-600 text-center">Supported by</h2>
<div class="support-brand__slider">
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-01.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-02.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-03.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-04.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-05.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-06.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-01.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-02.png" alt="brand-icon" class="img-fluid" />
</div>
<div class="support-brand__slider-item">
<img src="./src/images/brand/img-03.png" alt="brand-icon" class="img-fluid" />
</div>
</div>
</div>
</section>
<!-- suppor-brand 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: Onest@gmail.com
</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">
<a href="#" class="social-icon__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="currentColor"
></path>
</svg>
</a>
</li>
<!-- Twitter -->
<li class="social-icon__item">
<a href="#" class="social-icon__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.4021C11.0081 14.4021 14.2917 9.45627 14.2917 5.1674C14.2917 5.02694 14.2888 4.88712 14.2824 4.74789C14.9214 4.28823 15.4728 3.71911 15.9108 3.06719C15.3259 3.32574 14.6965 3.49976 14.0362 3.57821C14.7101 3.17641 15.2275 2.54074 15.4716 1.78303C14.8308 2.16099 14.1298 2.42742 13.3988 2.57086C12.8031 1.93998 11.955 1.54541 11.016 1.54541C9.21328 1.54541 7.75143 2.99892 7.75143 4.7906C7.75143 5.04532 7.78011 5.29301 7.83612 5.53067C5.12304 5.39493 2.71728 4.10341 1.10722 2.13958C0.817235 2.6349 0.664706 3.19784 0.665213 3.7709C0.665213 4.89696 1.24149 5.89101 2.11788 6.47258C1.59949 6.45684 1.09247 6.31762 0.639471 6.06663C0.638986 6.08026 0.638986 6.09353 0.638986 6.10809C0.638986 7.67992 1.76419 8.9923 3.25786 9.28967C2.97733 9.36564 2.68785 9.40404 2.39709 9.40387C2.18712 9.40387 1.98248 9.38334 1.78359 9.34538C2.19918 10.635 3.40426 11.5734 4.83303 11.5996C3.71575 12.4703 2.30832 12.9889 0.778658 12.9889C0.518442 12.9892 0.258439 12.9741 0 12.944C1.44471 13.8647 3.16017 14.4019 5.00394 14.4019"
fill="currentColor"
></path>
</svg>
</a>
</li>
<!-- Instagram -->
<li class="social-icon__item">
<a href="#" class="social-icon__link">
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#instagram)">
<path d="M5.33376 8.55566C5.33376 7.08296 6.52729 5.88878 8 5.88878C9.4727 5.88878 10.6669 7.08296 10.6669 8.55566C10.6669 10.0284 9.4727 11.2225 8 11.2225C6.52729 11.2225 5.33376 10.0284 5.33376 8.55566ZM3.89209 8.55566C3.89209 10.8245 5.7312 12.6636 8 12.6636C10.2688 12.6636 12.1079 10.8245 12.1079 8.55566C12.1079 6.28686 10.2688 4.44776 8 4.44776C5.7312 4.44776 3.89209 6.28686 3.89209 8.55566ZM11.3105 4.28488C11.3104 4.47475 11.3667 4.66038 11.4721 4.81829C11.5775 4.97621 11.7274 5.09931 11.9028 5.17204C12.0782 5.24477 12.2712 5.26386 12.4574 5.22689C12.6437 5.18993 12.8148 5.09856 12.9491 4.96436C13.0834 4.83015 13.1749 4.65913 13.212 4.47293C13.2491 4.28672 13.2302 4.09369 13.1576 3.91824C13.085 3.7428 12.962 3.59282 12.8042 3.48727C12.6464 3.38172 12.4608 3.32534 12.2709 3.32526H12.2705C12.016 3.32538 11.772 3.42651 11.592 3.60644C11.412 3.78636 11.3107 4.03038 11.3105 4.28488ZM4.768 15.0675C3.98803 15.032 3.56409 14.902 3.28237 14.7923C2.90886 14.6469 2.64237 14.4737 2.36218 14.1939C2.08198 13.9141 1.90854 13.6478 1.76378 13.2743C1.65395 12.9927 1.52403 12.5687 1.48858 11.7887C1.44979 10.9454 1.44205 10.6921 1.44205 8.55573C1.44205 6.41934 1.45043 6.16674 1.48858 5.32277C1.5241 4.5428 1.65498 4.11957 1.76378 3.83714C1.90918 3.46363 2.08237 3.19714 2.36218 2.91694C2.64198 2.63675 2.90822 2.46331 3.28237 2.31854C3.56397 2.20872 3.98803 2.0788 4.768 2.04334C5.61126 2.00456 5.86457 1.99682 8 1.99682C10.1354 1.99682 10.389 2.0052 11.233 2.04334C12.0129 2.07886 12.4362 2.20974 12.7186 2.31854C13.0921 2.46331 13.3586 2.63714 13.6388 2.91694C13.919 3.19675 14.0918 3.46363 14.2372 3.83714C14.347 4.11874 14.4769 4.5428 14.5124 5.32277C14.5512 6.16674 14.5589 6.41934 14.5589 8.55573C14.5589 10.6921 14.5512 10.9447 14.5124 11.7887C14.4769 12.5687 14.3463 12.9926 14.2372 13.2743C14.0918 13.6478 13.9186 13.9143 13.6388 14.1939C13.359 14.4734 13.0921 14.6469 12.7186 14.7923C12.437 14.9021 12.0129 15.032 11.233 15.0675C10.3897 15.1063 10.1364 15.114 8 15.114C5.86361 15.114 5.61101 15.1063 4.768 15.0675ZM4.70176 0.604112C3.85011 0.642896 3.26816 0.777936 2.75994 0.975696C2.2336 1.17992 1.78803 1.4539 1.34278 1.89845C0.897536 2.34299 0.624256 2.78926 0.420032 3.3156C0.222272 3.82414 0.087232 4.40578 0.048448 5.25742C0.009024 6.11042 0 6.38312 0 8.55566C0 10.7282 0.009024 11.0009 0.048448 11.8539C0.087232 12.7056 0.222272 13.2872 0.420032 13.7957C0.624256 14.3217 0.8976 14.7685 1.34278 15.2129C1.78797 15.6572 2.2336 15.9308 2.75994 16.1356C3.26912 16.3334 3.85011 16.4684 4.70176 16.5072C5.5552 16.546 5.82745 16.5557 8 16.5557C10.1725 16.5557 10.4452 16.5466 11.2982 16.5072C12.1499 16.4684 12.7315 16.3334 13.2401 16.1356C13.7661 15.9308 14.212 15.6574 14.6572 15.2129C15.1025 14.7683 15.3752 14.3217 15.58 13.7957C15.7777 13.2872 15.9134 12.7056 15.9515 11.8539C15.9903 11.0003 15.9994 10.7282 15.9994 8.55566C15.9994 6.38312 15.9903 6.11042 15.9515 5.25742C15.9128 4.40571 15.7777 3.82382 15.58 3.3156C15.3752 2.78958 15.1018 2.3437 14.6572 1.89845C14.2127 1.4532 13.7661 1.17992 13.2407 0.975696C12.7315 0.777936 12.1499 0.642256 11.2989 0.604112C10.4459 0.565328 10.1732 0.555664 8.00064 0.555664C5.82809 0.555664 5.5552 0.564688 4.70176 0.604112Z" fill="currentColor"/>
<path d="M5.33376 8.55566C5.33376 7.08296 6.52729 5.88878 8 5.88878C9.4727 5.88878 10.6669 7.08296 10.6669 8.55566C10.6669 10.0284 9.4727 11.2225 8 11.2225C6.52729 11.2225 5.33376 10.0284 5.33376 8.55566ZM3.89209 8.55566C3.89209 10.8245 5.7312 12.6636 8 12.6636C10.2688 12.6636 12.1079 10.8245 12.1079 8.55566C12.1079 6.28686 10.2688 4.44776 8 4.44776C5.7312 4.44776 3.89209 6.28686 3.89209 8.55566ZM11.3105 4.28488C11.3104 4.47475 11.3667 4.66038 11.4721 4.81829C11.5775 4.97621 11.7274 5.09931 11.9028 5.17204C12.0782 5.24477 12.2712 5.26386 12.4574 5.22689C12.6437 5.18993 12.8148 5.09856 12.9491 4.96436C13.0834 4.83015 13.1749 4.65913 13.212 4.47293C13.2491 4.28672 13.2302 4.09369 13.1576 3.91824C13.085 3.7428 12.962 3.59282 12.8042 3.48727C12.6464 3.38172 12.4608 3.32534 12.2709 3.32526H12.2705C12.016 3.32538 11.772 3.42651 11.592 3.60644C11.412 3.78636 11.3107 4.03038 11.3105 4.28488ZM4.768 15.0675C3.98803 15.032 3.56409 14.902 3.28237 14.7923C2.90886 14.6469 2.64237 14.4737 2.36218 14.1939C2.08198 13.9141 1.90854 13.6478 1.76378 13.2743C1.65395 12.9927 1.52403 12.5687 1.48858 11.7887C1.44979 10.9454 1.44205 10.6921 1.44205 8.55573C1.44205 6.41934 1.45043 6.16674 1.48858 5.32277C1.5241 4.5428 1.65498 4.11957 1.76378 3.83714C1.90918 3.46363 2.08237 3.19714 2.36218 2.91694C2.64198 2.63675 2.90822 2.46331 3.28237 2.31854C3.56397 2.20872 3.98803 2.0788 4.768 2.04334C5.61126 2.00456 5.86457 1.99682 8 1.99682C10.1354 1.99682 10.389 2.0052 11.233 2.04334C12.0129 2.07886 12.4362 2.20974 12.7186 2.31854C13.0921 2.46331 13.3586 2.63714 13.6388 2.91694C13.919 3.19675 14.0918 3.46363 14.2372 3.83714C14.347 4.11874 14.4769 4.5428 14.5124 5.32277C14.5512 6.16674 14.5589 6.41934 14.5589 8.55573C14.5589 10.6921 14.5512 10.9447 14.5124 11.7887C14.4769 12.5687 14.3463 12.9926 14.2372 13.2743C14.0918 13.6478 13.9186 13.9143 13.6388 14.1939C13.359 14.4734 13.0921 14.6469 12.7186 14.7923C12.437 14.9021 12.0129 15.032 11.233 15.0675C10.3897 15.1063 10.1364 15.114 8 15.114C5.86361 15.114 5.61101 15.1063 4.768 15.0675ZM4.70176 0.604112C3.85011 0.642896 3.26816 0.777936 2.75994 0.975696C2.2336 1.17992 1.78803 1.4539 1.34278 1.89845C0.897536 2.34299 0.624256 2.78926 0.420032 3.3156C0.222272 3.82414 0.087232 4.40578 0.048448 5.25742C0.009024 6.11042 0 6.38312 0 8.55566C0 10.7282 0.009024 11.0009 0.048448 11.8539C0.087232 12.7056 0.222272 13.2872 0.420032 13.7957C0.624256 14.3217 0.8976 14.7685 1.34278 15.2129C1.78797 15.6572 2.2336 15.9308 2.75994 16.1356C3.26912 16.3334 3.85011 16.4684 4.70176 16.5072C5.5552 16.546 5.82745 16.5557 8 16.5557C10.1725 16.5557 10.4452 16.5466 11.2982 16.5072C12.1499 16.4684 12.7315 16.3334 13.2401 16.1356C13.7661 15.9308 14.212 15.6574 14.6572 15.2129C15.1025 14.7683 15.3752 14.3217 15.58 13.7957C15.7777 13.2872 15.9134 12.7056 15.9515 11.8539C15.9903 11.0003 15.9994 10.7282 15.9994 8.55566C15.9994 6.38312 15.9903 6.11042 15.9515 5.25742C15.9128 4.40571 15.7777 3.82382 15.58 3.3156C15.3752 2.78958 15.1018 2.3437 14.6572 1.89845C14.2127 1.4532 13.7661 1.17992 13.2407 0.975696C12.7315 0.777936 12.1499 0.642256 11.2989 0.604112C10.4459 0.565328 10.1732 0.555664 8.00064 0.555664C5.82809 0.555664 5.5552 0.564688 4.70176 0.604112Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="instagram">
<rect width="16" height="16" fill="currentColor" transform="translate(0 0.555664)"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<!-- Youtube -->
<li class="social-icon__item">
<a href="#" class="social-icon__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.35464 13.6327L5.07201 13.5714C4.00914 13.5501 2.94366 13.5927 1.90168 13.3715C0.316517 13.0411 0.204224 11.4209 0.0867073 10.0618C-0.0752042 8.15113 -0.0125288 6.20581 0.293014 4.31112C0.465371 3.24786 1.14435 2.61363 2.19417 2.54434C5.73794 2.29385 9.30522 2.32316 12.8412 2.44041C13.2146 2.45107 13.5906 2.5097 13.9589 2.57632C15.7765 2.90143 15.8208 4.73749 15.9384 6.28309C16.0559 7.84468 16.0063 9.41426 15.7817 10.9652C15.6015 12.2496 15.2568 13.3262 13.8022 13.4301C11.9794 13.5661 10.1983 13.6753 8.37031 13.6407C8.37031 13.6327 8.35986 13.6327 8.35464 13.6327ZM6.42476 10.3816C7.79839 9.57681 9.14592 8.78536 10.5117 7.98591C9.13547 7.18114 7.79056 6.38968 6.42476 5.59024V10.3816Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
<!-- Linked in -->
<li class="social-icon__item">
<a href="#" class="social-icon__link">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#linkedin)">
<path
d="M15.9961 16V15.9993H16.0001V10.1313C16.0001 7.26065 15.3821 5.04932 12.0261 5.04932C10.4128 5.04932 9.33009 5.93465 8.88809 6.77399H8.84142V5.31732H5.65942V15.9993H8.97276V10.71C8.97276 9.31732 9.23676 7.97065 10.9614 7.97065C12.6608 7.97065 12.6861 9.55999 12.6861 10.7993V16H15.9961Z"
fill="currentColor"
></path>
<path d="M0.263794 5.31787H3.58113V15.9999H0.263794V5.31787Z" fill="currentColor"></path>
<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="currentColor"
></path>
</g>
<defs>
<clipPath id="linkedin">
<rect width="16" height="16" fill="white"></rect>
</clipPath>
</defs>
</svg>
</a>
</li>
<!-- whats app -->
<li class="social-icon__item">
<a href="#" class="social-icon__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.3057 2.67206C11.9024 1.26709 10.0361 0.493011 8.04782 0.492188C3.95084 0.492188 0.616486 3.82645 0.614838 7.92453C0.614288 9.23456 0.956512 10.5134 1.60699 11.6406L0.55249 15.4922L4.49283 14.4586C5.57855 15.0508 6.80087 15.3629 8.0448 15.3633H8.04791C12.1444 15.3633 15.4792 12.0287 15.4807 7.93048C15.4815 5.94433 14.7091 4.07693 13.3057 2.67206ZM8.04782 14.108H8.04526C6.93674 14.1075 5.84955 13.8096 4.90088 13.2469L4.67538 13.1129L2.33713 13.7263L2.96124 11.4466L2.8143 11.2128C2.19586 10.2292 1.86929 9.09228 1.86984 7.92499C1.87112 4.51877 4.64261 1.74756 8.05029 1.74756C9.70044 1.74811 11.2516 2.39154 12.418 3.5593C13.5844 4.72705 14.2263 6.27923 14.2258 7.93002C14.2243 11.3365 11.453 14.108 8.04782 14.108ZM11.4366 9.48102C11.2509 9.388 10.3377 8.93884 10.1674 8.87677C9.99734 8.81479 9.87338 8.78393 9.74969 8.96979C9.62582 9.15564 9.26996 9.57403 9.16156 9.6979C9.05316 9.82187 8.94495 9.83743 8.75918 9.74441C8.57342 9.65149 7.97504 9.45529 7.26559 8.82257C6.71353 8.33011 6.34082 7.72192 6.23242 7.53607C6.12421 7.35004 6.23151 7.25922 6.3139 7.15704C6.51495 6.90738 6.71628 6.64563 6.77817 6.52176C6.84015 6.3978 6.80911 6.28931 6.7626 6.19638C6.71628 6.10345 6.34485 5.1893 6.19012 4.81732C6.03925 4.45532 5.88626 4.50421 5.77219 4.49853C5.66397 4.49313 5.5401 4.49203 5.41623 4.49203C5.29245 4.49203 5.09122 4.53845 4.92093 4.72449C4.75073 4.91043 4.271 5.35968 4.271 6.27383C4.271 7.18799 4.93649 8.0711 5.02933 8.19507C5.12216 8.31903 6.33899 10.1949 8.202 10.9993C8.64511 11.1909 8.991 11.305 9.2608 11.3906C9.70575 11.532 10.1105 11.512 10.4306 11.4642C10.7874 11.4109 11.5293 11.0149 11.6842 10.5811C11.8389 10.1472 11.8389 9.77545 11.7924 9.6979C11.7461 9.62045 11.6222 9.57403 11.4366 9.48102Z"
fill="currentColor"
></path>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="container">
<div class="row footer__copyright">
<div class="col-md-6">
<p class="text--body-3">Onest - Classified Listing © 2021. Design by <a href="#">Templatecookie</a></p>
</div>
<div class="col-md-6">
<div class="footer__policy-condition">
<a href="#" class="text--body-3">Privacy Policy</a> |
<a href="#" class="text--body-3">Terms & Conditions</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- footer section end -->
<!-- Back To Top Btn -->
<button class="scrollTop" >
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 20.25V3.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5.25 10.5L12 3.75L18.75 10.5" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<script src="./src/plugins/jquery.min.js"></script>
<script src="./src/plugins/bootstrap.bundle.min.js"></script>
<script src="./src/plugins/lan.js"></script>
<script src="./src/plugins/slick.min.js"></script>
<script src="./src/plugins/venobox.min.js"></script>
<script src="./src/plugins/select2/js/select2.min.js" defer></script>
<script src="./src/js/app.js"></script>
</body>
</html>