-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-layout-new-2.html
2208 lines (2041 loc) · 145 KB
/
list-layout-new-2.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="zxx">
<!-- Mirrored from shreethemes.net/resido-live/resido/list-layout-new-2.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Jun 2024 15:37:34 GMT -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Resido - Residence & Real Estate HTML Template</title>
<!-- Custom CSS -->
<link href="assets/css/styles.css" rel="stylesheet">
<!-- Custom Color Option -->
<link href="assets/css/colors.css" rel="stylesheet">
</head>
<body class="blue-skin">
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<div id="preloader"><div class="preloader"><span></span><span></span></div></div>
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<div id="main-wrapper">
<!-- ============================================================== -->
<!-- Top header -->
<!-- ============================================================== -->
<!-- Start Navigation -->
<div class="header header-light head-shadow">
<div class="container">
<nav id="navigation" class="navigation navigation-landscape">
<div class="nav-header">
<a class="nav-brand text-logo" href="#">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="50" height="50" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8797 15.375C15.9797 15.075 15.9797 14.775 15.9797 14.475C15.9797 13.775 15.7797 13.075 15.4797 12.475C14.7797 11.275 13.4797 10.475 11.9797 10.475C11.7797 10.475 11.5797 10.475 11.3797 10.575C7.37971 11.075 4.67971 14.575 2.57971 18.075L10.8797 3.675C11.3797 2.775 12.5797 2.775 13.0797 3.675C13.1797 3.875 13.2797 3.975 13.3797 4.175C15.2797 7.575 16.9797 11.675 15.8797 15.375Z" fill="currentColor"/>
<path opacity="0.3" d="M20.6797 20.6749C16.7797 20.6749 12.3797 20.275 9.57972 17.575C10.2797 18.075 11.0797 18.375 11.9797 18.375C13.4797 18.375 14.7797 17.5749 15.4797 16.2749C15.6797 15.9749 15.7797 15.675 15.7797 15.375V15.2749C16.8797 11.5749 15.2797 7.47495 13.2797 4.07495L21.6797 18.6749C22.2797 19.5749 21.6797 20.6749 20.6797 20.6749ZM8.67972 18.6749C8.17972 17.8749 7.97972 16.975 7.77972 15.975C7.37972 13.575 8.67972 10.775 11.3797 10.375C7.37972 10.875 4.67972 14.375 2.57972 17.875C2.47972 18.075 2.27972 18.375 2.17972 18.575C1.67972 19.475 2.27972 20.475 3.27972 20.475H10.3797C9.67972 20.175 9.07972 19.3749 8.67972 18.6749Z" fill="currentColor"/>
</svg>
</span><h5 class="fs-3 fw-bold ms-1 my-0">Resido</h5>
</a>
<div class="nav-toggle"></div>
<div class="mobile_nav">
<ul>
<li>
<a href="JavaScript:Void(0);" data-bs-toggle="modal" data-bs-target="#login" class="text-dark opacity-75">
<span class="svg-icon svg-icon-2hx">
<svg width="35" height="35" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M16.5 9C16.5 13.125 13.125 16.5 9 16.5C4.875 16.5 1.5 13.125 1.5 9C1.5 4.875 4.875 1.5 9 1.5C13.125 1.5 16.5 4.875 16.5 9Z" fill="currentColor"/>
<path d="M9 16.5C10.95 16.5 12.75 15.75 14.025 14.55C13.425 12.675 11.4 11.25 9 11.25C6.6 11.25 4.57499 12.675 3.97499 14.55C5.24999 15.75 7.05 16.5 9 16.5Z" fill="currentColor"/>
<rect x="7" y="6" width="4" height="4" rx="2" fill="currentColor"/>
</svg>
</span>
</a>
</li>
<li>
<a href="submit-property.html" class="text-primary">
<span class="svg-icon svg-icon-2hx">
<svg width="35" height="35" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.3" x="2" y="2" width="20" height="20" rx="10" fill="currentColor"/>
<rect x="10.8891" y="17.8033" width="12" height="2" rx="1" transform="rotate(-90 10.8891 17.8033)" fill="currentColor"/>
<rect x="6.01041" y="10.9247" width="12" height="2" rx="1" fill="currentColor"/>
</svg>
</span>
</a>
</li>
<li>
<a href="#" class="text-primary" data-bs-toggle="offcanvas" data-bs-target="#offcanvasScrolling" aria-controls="offcanvasScrolling">
<span class="svg-icon svg-icon-2hx">
<svg width="22" height="22" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="6" width="16" height="3" rx="1.5" fill="currentColor"/>
<rect opacity="0.3" y="12" width="8" height="3" rx="1.5" fill="currentColor"/>
<rect opacity="0.3" width="12" height="3" rx="1.5" fill="currentColor"/>
</svg>
</span>
</a>
</li>
</ul>
</div>
</div>
<div class="nav-menus-wrapper" style="transition-property: none;">
<ul class="nav-menu">
<li class="active"><a href="#">Home<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a class="active" href="index-2.html">Home Layout 1</a></li>
<li><a href="home-2.html">Home Layout 2</a></li>
<li><a href="home-3.html">Home Layout 3</a></li>
<li><a href="home-4.html">Home Layout 4</a></li>
<li><a href="home-5.html">Home Layout 5</a></li>
<li><a href="home-6.html">Home Layout 6</a></li>
<li><a href="home-7.html">Home Layout 7</a></li>
<li><a href="home-8.html">Home Layout 8</a></li>
<li><a href="home-9.html">Home Layout 9</a></li>
<li><a href="home-10.html">Home Layout 10<span class="ms-2 label-new">New</span></a></li>
<li><a href="home-11.html">Home Layout 11<span class="ms-2 label-new">New</span></a></li>
<li><a href="video.html">Video Home</a></li>
<li><a href="map.html">Map Home Layout</a></li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">Listings<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="JavaScript:Void(0);">List Layout<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="list-layout-new.html">List Layout Simple<span class="ms-2 label-new">New</span></a></li>
<li><a href="list-layout-new-3.html">List Layout Modern<span class="ms-2 label-new">New</span></a></li>
<li><a href="list-layout-new-2.html">List Layout Advance<span class="ms-2 label-new">New</span></a></li>
<li><a href="list-layout-with-map.html">With Map</a></li>
<li><a href="list-layout-full.html">Full Width</a></li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">Grid Layout<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="grid-layout-with-sidebar.html">With Sidebar</a></li>
<li><a href="classical-layout-with-sidebar.html">Classical With Sidebar</a></li>
<li><a href="grid-layout-with-map.html">With Map</a></li>
<li><a href="grid.html">Full Width</a></li>
<li><a href="classical-property.html">Classical Full Width</a></li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">With Map Property<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="list-layout-with-map.html">List With Map</a></li>
<li><a href="grid-layout-with-map.html">Grid With Map</a></li>
<li><a href="classical-layout-with-map.html">Classical With Map</a></li>
<li><a href="half-map.html">Half Map Search</a></li>
<li><a href="half-map-2.html">Half Map Search 02<span class="ms-2 label-new">New</span></a></li>
</ul>
</li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">Features<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="JavaScript:Void(0);">Single Property<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="single-property-1.html">Single Property 1</a></li>
<li><a href="single-property-2.html">Single Property 2</a></li>
<li><a href="single-property-3.html">Single Property 3</a></li>
<li><a href="single-property-4.html">Single Property 4<span class="ms-2 label-new">New</span></a></li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">Agencies & Agents<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="agents.html">Agents List</a></li>
<li><a href="agent-page.html">Agent Page</a></li>
<li><a href="agencies.html">Agencies List</a></li>
<li><a href="agency-page.html">Agency Page</a></li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">My Account<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="dashboard.html">User Dashboard</a></li><li><a href="payment.html">Payment Confirmation</a></li>
<li><a href="my-profile.html">My Profile</a></li>
<li><a href="my-property.html">Property List</a></li>
<li><a href="bookmark-list.html">Bookmarked Listings</a></li>
<li><a href="change-password.html">Change Password</a></li>
</ul>
</li>
<li>
<a href="compare-property.html">Compare Property</a>
</li>
<li>
<a href="submit-property.html">Submit Property</a>
</li>
</ul>
</li>
<li><a href="JavaScript:Void(0);">Pages<span class="submenu-indicator"></span></a>
<ul class="nav-dropdown nav-submenu">
<li><a href="blog.html">Blogs Page</a></li>
<li><a href="blog-detail.html">Blog Detail</a></li>
<li><a href="component.html">Shortcodes</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="404.html">Error Page</a></li>
<li><a href="contact.html">Contacts</a></li>
</ul>
</li>
</ul>
<ul class="nav-menu nav-menu-social align-to-right">
<li>
<a href="JavaScript:Void(0);" data-bs-toggle="modal" data-bs-target="#login" class="fw-medium text-muted-2">
<span class="svg-icon svg-icon-2hx me-1">
<svg width="22" height="22" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M16.5 9C16.5 13.125 13.125 16.5 9 16.5C4.875 16.5 1.5 13.125 1.5 9C1.5 4.875 4.875 1.5 9 1.5C13.125 1.5 16.5 4.875 16.5 9Z" fill="currentColor"/>
<path d="M9 16.5C10.95 16.5 12.75 15.75 14.025 14.55C13.425 12.675 11.4 11.25 9 11.25C6.6 11.25 4.57499 12.675 3.97499 14.55C5.24999 15.75 7.05 16.5 9 16.5Z" fill="currentColor"/>
<rect x="7" y="6" width="4" height="4" rx="2" fill="currentColor"/>
</svg>
</span>
SignUp or SignIn
</a>
</li>
<li class="add-listing">
<a href="submit-property.html" class="bg-primary">
<span class="svg-icon svg-icon-muted svg-icon-2hx me-1">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.3" width="12" height="2" rx="1" transform="matrix(-1 0 0 1 15.5 11)" fill="currentColor"/>
<path d="M13.6313 11.6927L11.8756 10.2297C11.4054 9.83785 11.3732 9.12683 11.806 8.69401C12.1957 8.3043 12.8216 8.28591 13.2336 8.65206L16.1592 11.2526C16.6067 11.6504 16.6067 12.3496 16.1592 12.7474L13.2336 15.3479C12.8216 15.7141 12.1957 15.6957 11.806 15.306C11.3732 14.8732 11.4054 14.1621 11.8756 13.7703L13.6313 12.3073C13.8232 12.1474 13.8232 11.8526 13.6313 11.6927Z" fill="currentColor"/>
<path d="M8 5V6C8 6.55228 8.44772 7 9 7C9.55228 7 10 6.55228 10 6C10 5.44772 10.4477 5 11 5H18C18.5523 5 19 5.44772 19 6V18C19 18.5523 18.5523 19 18 19H11C10.4477 19 10 18.5523 10 18C10 17.4477 9.55228 17 9 17C8.44772 17 8 17.4477 8 18V19C8 20.1046 8.89543 21 10 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H10C8.89543 3 8 3.89543 8 5Z" fill="currentColor"/>
</svg>
</span>Post Property
</a>
</li>
<li>
<a href="#" class="text-primary" data-bs-toggle="offcanvas" data-bs-target="#offcanvasScrolling" aria-controls="offcanvasScrolling">
<span class="svg-icon svg-icon-2hx">
<svg width="24" height="24" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="6" width="16" height="3" rx="1.5" fill="currentColor"/>
<rect opacity="0.3" y="12" width="8" height="3" rx="1.5" fill="currentColor"/>
<rect opacity="0.3" width="12" height="3" rx="1.5" fill="currentColor"/>
</svg>
</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- End Navigation -->
<div class="clearfix"></div>
<div class="offcanvas offcanvas-end" data-bs-scroll="true" data-bs-backdrop="false" tabindex="-1" id="offcanvasScrolling" aria-labelledby="offcanvasScrollingLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasScrollingLabel">Compare & Selected Property</h5>
<a href="#" data-bs-dismiss="offcanvas" aria-label="Close">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.3" x="2" y="2" width="20" height="20" rx="10" fill="currentColor"/>
<rect x="7" y="15.3137" width="12" height="2" rx="1" transform="rotate(-45 7 15.3137)" fill="currentColor"/>
<rect x="8.41422" y="7" width="12" height="2" rx="1" transform="rotate(45 8.41422 7)" fill="currentColor"/>
</svg>
</span>
</a>
</div>
<div class="offcanvas-body">
<ul class="nav nav-pills sider_tab mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-compare-tab" data-bs-toggle="pill" data-bs-target="#pills-compare" type="button" role="tab" aria-controls="pills-compare" aria-selected="true">Compare Property</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-saved-tab" data-bs-toggle="pill" data-bs-target="#pills-saved" type="button" role="tab" aria-controls="pills-saved" aria-selected="false">Saved Property</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-compare" role="tabpanel" aria-labelledby="pills-compare-tab" tabindex="0">
<div class="sidebar_featured_property">
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-1.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Loss vengel New Apartment</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Sans Fransico</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix sale">For Sale</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$4,240</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-4.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Montreal Quriqe Apartment</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Liverpool, London</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix">For Rent</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$7,380</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-7.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Curmic Studio For Office</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Montreal, Canada</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix buy">For Buy</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$8,730</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-5.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Montreal Quebec City</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Sreek View, New York</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix">For Rent</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$6,240</h4>
</div>
</div>
</div>
</div>
<div class="input-group">
<a href="compare-property.html" class="btn btn-light-primary fw-medium full-width">View & Compare</a>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-saved" role="tabpanel" aria-labelledby="pills-saved-tab" tabindex="0">
<div class="sidebar_featured_property">
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-2.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Loss vengel New Apartment</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Sans Fransico</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix sale">For Sale</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$4,240</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-3.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Montreal Quriqe Apartment</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Liverpool, London</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix">For Rent</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$7,380</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-4.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Curmic Studio For Office</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Montreal, Canada</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix buy">For Buy</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$8,730</h4>
</div>
</div>
</div>
</div>
<!-- List Sibar Property -->
<div class="sides_list_property p-2">
<div class="sides_list_property_thumb">
<img src="assets/img/p-27.jpg" class="img-fluid" alt="">
</div>
<div class="sides_list_property_detail">
<h4><a href="single-property-1.html">Montreal Quebec City</a></h4>
<span class="text-muted-2"><i class="fa-solid fa-location-dot"></i>Sreek View, New York</span>
<div class="lists_property_price">
<div class="lists_property_types">
<div class="property_types_vlix">For Rent</div>
</div>
<div class="lists_property_price_value">
<h4 class="text-primary">$6,240</h4>
</div>
</div>
</div>
</div>
<div class="input-group">
<a href="#" class="btn btn-light-primary fw-medium full-width">View & Compare</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- Top header -->
<!-- ============================================================== -->
<!-- ============================ All Property ================================== -->
<section class="gray-simple">
<div class="container">
<div class="row m-0">
<div class="short_wraping">
<div class="row align-items-center">
<div class="col-lg-2 col-md-6 col-sm-12 col-sm-6">
<ul class="shorting_grid">
<li>
<a href="grid-layout-with-sidebar.html">
<span class="svg-icon text-muted-2 svg-icon-2hx">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="2" width="9" height="9" rx="2" fill="currentColor"/>
<rect opacity="0.3" x="13" y="2" width="9" height="9" rx="2" fill="currentColor"/>
<rect opacity="0.3" x="13" y="13" width="9" height="9" rx="2" fill="currentColor"/>
<rect opacity="0.3" x="2" y="13" width="9" height="9" rx="2" fill="currentColor"/>
</svg>
</span>
</a>
</li>
<li>
<a href="list-layout-with-sidebar.html">
<span class="svg-icon text-seegreen svg-icon-2hx">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M14 10V20C14 20.6 13.6 21 13 21H10C9.4 21 9 20.6 9 20V10C9 9.4 9.4 9 10 9H13C13.6 9 14 9.4 14 10ZM20 9H17C16.4 9 16 9.4 16 10V20C16 20.6 16.4 21 17 21H20C20.6 21 21 20.6 21 20V10C21 9.4 20.6 9 20 9Z" fill="currentColor"/>
<path d="M7 10V20C7 20.6 6.6 21 6 21H3C2.4 21 2 20.6 2 20V10C2 9.4 2.4 9 3 9H6C6.6 9 7 9.4 7 10ZM21 6V3C21 2.4 20.6 2 20 2H3C2.4 2 2 2.4 2 3V6C2 6.6 2.4 7 3 7H20C20.6 7 21 6.6 21 6Z" fill="currentColor"/>
</svg>
</span>
</a>
</li>
</ul>
</div>
<div class="col-lg-7 col-md-12 col-sm-12 order-lg-2 order-md-3 elco_bor col-sm-12">
<div class="shorting_pagination">
<div class="shorting_pagination_laft">
<h5>Showing 1-25 of 72 results</h5>
</div>
<div class="shorting_pagination_right">
<ul>
<li><a href="javascript:void(0);" class="active">1</a></li>
<li><a href="javascript:void(0);">2</a></li>
<li><a href="javascript:void(0);">3</a></li>
<li><a href="javascript:void(0);">4</a></li>
<li><a href="javascript:void(0);">5</a></li>
<li><a href="javascript:void(0);">6</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 order-lg-3 order-md-2 col-sm-6 pe-0">
<div class="shorting-right">
<label class="me-2">Short By:</label>
<div class="shorting-by border rounded">
<select id="shorty" class="form-control rounded">
<option value=""> </option>
<option value="1">Low Price</option>
<option value="2">High Price</option>
<option value="3">Most Popular</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="filter_search_opt">
<a href="javascript:void(0);" class="btn btn-dark full-width mb-4" onclick="openFilterSearch()">
<span class="svg-icon text-light svg-icon-2hx me-2">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.0759 3H4.72777C3.95892 3 3.47768 3.83148 3.86067 4.49814L8.56967 12.6949C9.17923 13.7559 9.5 14.9582 9.5 16.1819V19.5072C9.5 20.2189 10.2223 20.7028 10.8805 20.432L13.8805 19.1977C14.2553 19.0435 14.5 18.6783 14.5 18.273V13.8372C14.5 12.8089 14.8171 11.8056 15.408 10.964L19.8943 4.57465C20.3596 3.912 19.8856 3 19.0759 3Z" fill="currentColor"/>
</svg>
</span>Open Filter Option
</a>
</div>
</div>
</div>
<div class="row">
<!-- property Sidebar -->
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="simple-sidebar sm-sidebar" id="filter_search" style="left:0;">
<div class="search-sidebar_header">
<h4 class="ssh_heading">Close Filter</h4>
<button onclick="closeFilterSearch()" class="w3-bar-item w3-button w3-large"><i class="fa-regular fa-circle-xmark fs-5 text-muted-2"></i></button>
</div>
<!-- Find New Property -->
<div class="sidebar-widgets">
<div class="search-inner p-0">
<div class="filter-search-box">
<div class="form-group">
<div class="position-relative">
<input type="text" class="form-control rounded-3 ps-5" placeholder="Search by space name…">
<div class="position-absolute top-50 start-0 translate-middle-y ms-2">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.5" x="17.0365" y="15.1223" width="8.15546" height="2" rx="1" transform="rotate(45 17.0365 15.1223)" fill="currentColor"/>
<path d="M11 19C6.55556 19 3 15.4444 3 11C3 6.55556 6.55556 3 11 3C15.4444 3 19 6.55556 19 11C19 15.4444 15.4444 19 11 19ZM11 5C7.53333 5 5 7.53333 5 11C5 14.4667 7.53333 17 11 17C14.4667 17 17 14.4667 17 11C17 7.53333 14.4667 5 11 5Z" fill="currentColor"/>
</svg>
</span>
</div>
</div>
</div>
</div>
<div class="position-relative d-flex flex-xl-row flex-column align-items-center">
<div class="verifyd-prt-block flex-fill full-width my-1 me-1">
<div class="d-flex align-items-center justify-content-center justify-content-between border rounded-3 px-2 py-3">
<div class="eliok-cliops d-flex align-items-center">
<span class="svg-icon text-success svg-icon-2hx">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M20.5543 4.37824L12.1798 2.02473C12.0626 1.99176 11.9376 1.99176 11.8203 2.02473L3.44572 4.37824C3.18118 4.45258 3 4.6807 3 4.93945V13.569C3 14.6914 3.48509 15.8404 4.4417 16.984C5.17231 17.8575 6.18314 18.7345 7.446 19.5909C9.56752 21.0295 11.6566 21.912 11.7445 21.9488C11.8258 21.9829 11.9129 22 12.0001 22C12.0872 22 12.1744 21.983 12.2557 21.9488C12.3435 21.912 14.4326 21.0295 16.5541 19.5909C17.8169 18.7345 18.8277 17.8575 19.5584 16.984C20.515 15.8404 21 14.6914 21 13.569V4.93945C21 4.6807 20.8189 4.45258 20.5543 4.37824Z" fill="currentColor"/>
<path d="M10.5606 11.3042L9.57283 10.3018C9.28174 10.0065 8.80522 10.0065 8.51412 10.3018C8.22897 10.5912 8.22897 11.0559 8.51412 11.3452L10.4182 13.2773C10.8099 13.6747 11.451 13.6747 11.8427 13.2773L15.4859 9.58051C15.771 9.29117 15.771 8.82648 15.4859 8.53714C15.1948 8.24176 14.7183 8.24176 14.4272 8.53714L11.7002 11.3042C11.3869 11.6221 10.874 11.6221 10.5606 11.3042Z" fill="currentColor"/>
</svg>
</span><span class="text-muted-2 fw-medium ms-1">Verified</span>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked" checked>
<label class="form-check-label" for="flexSwitchCheckChecked"></label>
</div>
</div>
</div>
<div class="super-agt-block flex-fill full-width my-1 ms-1">
<div class="d-flex align-items-center justify-content-center justify-content-between border rounded-3 px-2 py-3">
<div class="eliok-cliops d-flex align-items-center">
<span class="svg-icon text-warning svg-icon-2hx">
<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24">
<path d="M10.0813 3.7242C10.8849 2.16438 13.1151 2.16438 13.9187 3.7242V3.7242C14.4016 4.66147 15.4909 5.1127 16.4951 4.79139V4.79139C18.1663 4.25668 19.7433 5.83365 19.2086 7.50485V7.50485C18.8873 8.50905 19.3385 9.59842 20.2758 10.0813V10.0813C21.8356 10.8849 21.8356 13.1151 20.2758 13.9187V13.9187C19.3385 14.4016 18.8873 15.491 19.2086 16.4951V16.4951C19.7433 18.1663 18.1663 19.7433 16.4951 19.2086V19.2086C15.491 18.8873 14.4016 19.3385 13.9187 20.2758V20.2758C13.1151 21.8356 10.8849 21.8356 10.0813 20.2758V20.2758C9.59842 19.3385 8.50905 18.8873 7.50485 19.2086V19.2086C5.83365 19.7433 4.25668 18.1663 4.79139 16.4951V16.4951C5.1127 15.491 4.66147 14.4016 3.7242 13.9187V13.9187C2.16438 13.1151 2.16438 10.8849 3.7242 10.0813V10.0813C4.66147 9.59842 5.1127 8.50905 4.79139 7.50485V7.50485C4.25668 5.83365 5.83365 4.25668 7.50485 4.79139V4.79139C8.50905 5.1127 9.59842 4.66147 10.0813 3.7242V3.7242Z" fill="currentColor"/>
<path d="M14.8563 9.1903C15.0606 8.94984 15.3771 8.9385 15.6175 9.14289C15.858 9.34728 15.8229 9.66433 15.6185 9.9048L11.863 14.6558C11.6554 14.9001 11.2876 14.9258 11.048 14.7128L8.47656 12.4271C8.24068 12.2174 8.21944 11.8563 8.42911 11.6204C8.63877 11.3845 8.99996 11.3633 9.23583 11.5729L11.3706 13.4705L14.8563 9.1903Z" fill="white"/>
</svg>
</span><span class="text-muted-2 fw-medium ms-1">SuperAgent</span>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckChecked" checked>
<label class="form-check-label" for="flexSwitchCheckChecked"></label>
</div>
</div>
</div>
</div>
<div class="filter_wraps">
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#where" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Where<span class="selected">Chicago</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="where" data-parent="#where">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="b1" class="form-check-input" name="where" type="radio">
<label for="b1" class="form-check-label">Atlanta</label>
</li>
<li class="form-check">
<input id="b2" class="form-check-input" name="where" type="radio">
<label for="b2" class="form-check-label">Austin</label>
</li>
<li class="form-check">
<input id="b3" class="form-check-input" name="where" type="radio">
<label for="b3" class="form-check-label">Boston</label>
</li>
<li class="form-check">
<input id="b4" class="form-check-input" name="where" type="radio" checked>
<label for="b4" class="form-check-label">Chicago</label>
</li>
<li class="form-check">
<input id="b5" class="form-check-input" name="where" type="radio">
<label for="b5" class="form-check-label">Dallas</label>
</li>
<li class="form-check">
<input id="b6" class="form-check-input" name="where" type="radio">
<label for="b6" class="form-check-label">Denver</label>
</li>
<li class="form-check">
<input id="b7" class="form-check-input" name="where" type="radio">
<label for="b7" class="form-check-label">Houston</label>
</li>
<li class="form-check">
<input id="b8" class="form-check-input" name="where" type="radio">
<label for="b8" class="form-check-label">Jacksonville</label>
</li>
<li class="form-check">
<input id="b9" class="form-check-input" name="where" type="radio">
<label for="b9" class="form-check-label">Los Angeles</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#fptype" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Property Types<span class="selected">Apartment</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="fptype" data-parent="#fptype">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="c1" class="form-check-input" name="ptype" type="radio">
<label for="c1" class="form-check-label">House</label>
</li>
<li class="form-check">
<input id="c2" class="form-check-input" name="ptype" type="radio">
<label for="c2" class="form-check-label">Office Desk</label>
</li>
<li class="form-check">
<input id="c3" class="form-check-input" name="ptype" type="radio">
<label for="c3" class="form-check-label">Villa</label>
</li>
<li class="form-check">
<input id="c4" class="form-check-input" name="ptype" type="radio" checked>
<label for="c4" class="form-check-label">Apartment</label>
</li>
<li class="form-check">
<input id="c5" class="form-check-input" name="ptype" type="radio">
<label for="c5" class="form-check-label">Condo</label>
</li>
<li class="form-check">
<input id="c6" class="form-check-input" name="ptype" type="radio">
<label for="c6" class="form-check-label">Denver</label>
</li>
<li class="form-check">
<input id="c7" class="form-check-input" name="ptype" type="radio">
<label for="c7" class="form-check-label">Studio</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#fbedrooms" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Bedrooms<span class="selected">2 Beds</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="fbedrooms" data-parent="#fbedrooms">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="a1" class="form-check-input" name="bed" type="radio">
<label for="a1" class="form-check-label">01 Bedrooms</label>
</li>
<li class="form-check">
<input id="a2" class="form-check-input" name="bed" type="radio">
<label for="a2" class="form-check-label">02 Bedrooms</label>
</li>
<li class="form-check">
<input id="a3" class="form-check-input" name="bed" type="radio">
<label for="a3" class="form-check-label">03 Bedrooms</label>
</li>
<li class="form-check">
<input id="a4" class="form-check-input" name="bed" type="radio" checked>
<label for="a4" class="form-check-label">04 Bedrooms</label>
</li>
<li class="form-check">
<input id="a5" class="form-check-input" name="bed" type="radio">
<label for="a5" class="form-check-label">05 Bedrooms</label>
</li>
<li class="form-check">
<input id="a6" class="form-check-input" name="bed" type="radio">
<label for="a6" class="form-check-label">06+ Bedrooms</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#fprice" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Price Range<span class="selected">$10,000 - $15,000</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="fprice" data-parent="#fprice">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="e1" class="form-check-input" name="prices" type="radio">
<label for="e1" class="form-check-label">Less Then $10,000</label>
</li>
<li class="form-check">
<input id="e2" class="form-check-input" name="prices" type="radio">
<label for="e2" class="form-check-label">$10,000 - $15,000</label>
</li>
<li class="form-check">
<input id="e3" class="form-check-input" name="prices" type="radio">
<label for="e3" class="form-check-label">$12,000 - $25,000</label>
</li>
<li class="form-check">
<input id="e4" class="form-check-input" name="prices" type="radio" checked>
<label for="e4" class="form-check-label">$30,000 - $35,000</label>
</li>
<li class="form-check">
<input id="e5" class="form-check-input" name="prices" type="radio">
<label for="e5" class="form-check-label">$40,000 - $45,000</label>
</li>
<li class="form-check">
<input id="e6" class="form-check-input" name="prices" type="radio">
<label for="e6" class="form-check-label">$50,000 - $55,000</label>
</li>
<li class="form-check">
<input id="e7" class="form-check-input" name="prices" type="radio">
<label for="e7" class="form-check-label">$60,000 - $65,000</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#mood" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Mood<span class="selected">Any Mood</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="mood" data-parent="#mood">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="f1" class="form-check-input" name="moods" type="radio">
<label for="f1" class="form-check-label">Any Mood</label>
</li>
<li class="form-check">
<input id="f2" class="form-check-input" name="moods" type="radio">
<label for="f2" class="form-check-label">Professional</label>
</li>
<li class="form-check">
<input id="f3" class="form-check-input" name="moods" type="radio">
<label for="f3" class="form-check-label">Essentials</label>
</li>
<li class="form-check">
<input id="f4" class="form-check-input" name="moods" type="radio" checked>
<label for="f4" class="form-check-label">Unique</label>
</li>
<li class="form-check">
<input id="f5" class="form-check-input" name="moods" type="radio">
<label for="f5" class="form-check-label">Lively</label>
</li>
<li class="form-check">
<input id="f6" class="form-check-input" name="moods" type="radio">
<label for="f6" class="form-check-label">Luxe</label>
</li>
<li class="form-check">
<input id="f7" class="form-check-input" name="moods" type="radio">
<label for="f7" class="form-check-label">Luxe</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Single Search -->
<div class="single_search_boxed">
<div class="widget-boxed-header">
<h4>
<a href="#ameneties" data-bs-toggle="collapse" aria-expanded="false" role="button" class="collapsed">Ameneties<span class="selected">ADA Compliant</span></a>
</h4>
</div>
<div class="widget-boxed-body collapse" id="ameneties" data-parent="#ameneties">
<div class="side-list no-border">
<!-- Single Filter Card -->
<div class="single_filter_card">
<div class="card-body pt-0">
<div class="inner_widget_link">
<ul class="no-ul-list filter-list">
<li class="form-check">
<input id="g1" class="form-check-input" name="ADA" type="checkbox" checked>
<label for="g1" class="form-check-label">ADA Compliant</label>
</li>
<li class="form-check">
<input id="g2" class="form-check-input" name="Parking" type="checkbox">
<label for="g2" class="form-check-label">Parking Options</label>
</li>
<li class="form-check">
<input id="g3" class="form-check-input" name="Coffee" type="checkbox">
<label for="g3" class="form-check-label">Coffee Provided</label>
</li>
<li class="form-check">
<input id="g4" class="form-check-input" name="Mother" type="checkbox">
<label for="g4" class="form-check-label">Mother's Room</label>
</li>
<li class="form-check">
<input id="g5" class="form-check-input" name="Outdoor" type="checkbox">
<label for="g5" class="form-check-label">Outdoor Space</label>
</li>
<li class="form-check">
<input id="g6" class="form-check-input" name="Pet" type="checkbox">
<label for="g6" class="form-check-label">Pet Friendly</label>
</li>
<li class="form-check">
<input id="g7" class="form-check-input" name="Beauty" type="checkbox">
<label for="g7" class="form-check-label">Beauty & Message</label>
</li>
<li class="form-check">
<input id="g8" class="form-check-input" name="Bike" type="checkbox">
<label for="g8" class="form-check-label">Bike Parking</label>
</li>
<li class="form-check">
<input id="g9" class="form-check-input" name="Phone" type="checkbox">
<label for="g9" class="form-check-label">Phone Line</label>
</li>
<li class="form-check">
<input id="g11" class="form-check-input" name="Private" type="checkbox">
<label for="g11" class="form-check-label">Private Areas</label>
</li>
<li class="form-check">
<input id="g12" class="form-check-input" name="Free" type="checkbox">
<label for="g12" class="form-check-label">Free WiFi</label>
</li>
<li class="form-check">
<input id="g13" class="form-check-input" name="Swiming" type="checkbox">
<label for="g13" class="form-check-label">Swiming Pool</label>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="form-group filter_button">
<button type="submit" class="btn btn btn-primary rounded full-width">22 Results Show</button>
</div>
</div>
</div>
</div>
<!-- Sidebar End -->
</div>
<div class="col-lg-8 col-md-12 list-layout">
<div class="row justify-content-center g-4">
<!-- Single Property -->
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12">
<div class="property-listing list_view style_new">
<div class="listing-img-wrapper position-relative">
<div class="like_unlike_prt">
<label class="toggler toggler-danger"><input type="checkbox"><i class="fa fa-heart"></i></label>
</div>
<div class="position-absolute top-0 left-0 ms-3 mt-3 z-1">
<div class="label bg-success text-light d-inline-flex align-items-center justify-content-center">
<span class="svg-icon text-light svg-icon-2hx me-1">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M20.5543 4.37824L12.1798 2.02473C12.0626 1.99176 11.9376 1.99176 11.8203 2.02473L3.44572 4.37824C3.18118 4.45258 3 4.6807 3 4.93945V13.569C3 14.6914 3.48509 15.8404 4.4417 16.984C5.17231 17.8575 6.18314 18.7345 7.446 19.5909C9.56752 21.0295 11.6566 21.912 11.7445 21.9488C11.8258 21.9829 11.9129 22 12.0001 22C12.0872 22 12.1744 21.983 12.2557 21.9488C12.3435 21.912 14.4326 21.0295 16.5541 19.5909C17.8169 18.7345 18.8277 17.8575 19.5584 16.984C20.515 15.8404 21 14.6914 21 13.569V4.93945C21 4.6807 20.8189 4.45258 20.5543 4.37824Z" fill="currentColor"></path>
<path d="M14.854 11.321C14.7568 11.2282 14.6388 11.1818 14.4998 11.1818H14.3333V10.2272C14.3333 9.61741 14.1041 9.09378 13.6458 8.65628C13.1875 8.21876 12.639 8 12 8C11.361 8 10.8124 8.21876 10.3541 8.65626C9.89574 9.09378 9.66663 9.61739 9.66663 10.2272V11.1818H9.49999C9.36115 11.1818 9.24306 11.2282 9.14583 11.321C9.0486 11.4138 9 11.5265 9 11.6591V14.5227C9 14.6553 9.04862 14.768 9.14583 14.8609C9.24306 14.9536 9.36115 15 9.49999 15H14.5C14.6389 15 14.7569 14.9536 14.8542 14.8609C14.9513 14.768 15 14.6553 15 14.5227V11.6591C15.0001 11.5265 14.9513 11.4138 14.854 11.321ZM13.3333 11.1818H10.6666V10.2272C10.6666 9.87594 10.7969 9.57597 11.0573 9.32743C11.3177 9.07886 11.6319 8.9546 12 8.9546C12.3681 8.9546 12.6823 9.07884 12.9427 9.32743C13.2031 9.57595 13.3333 9.87594 13.3333 10.2272V11.1818Z" fill="currentColor"></path>
</svg>
</span>Verified
</div>
</div>
<div class="list-img-slide">
<div class="clior">
<div><a href="single-property-1.html"><img src="assets/img/p-1.jpg" class="img-fluid mx-auto" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-10.jpg" class="img-fluid mx-auto" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-15.jpg" class="img-fluid mx-auto" alt="" /></a></div>
</div>
</div>
</div>
<div class="list_view_flex">
<div class="listing-detail-wrapper mt-1">
<div class="listing-short-detail-wrap">
<div class="_card_list_flex mb-2">
<div class="_card_flex_01 d-flex align-items-center">
<span class="label bg-light-danger text-danger me-2">For Sell</span>
<span class="label bg-light-purple text-purple">Building</span>
</div>
<div class="_card_flex_last">
<h6 class="listing-info-price text-primary fs-4 mb-0">$167M</h6>
</div>
</div>
<div class="_card_list_flex">
<div class="_card_flex_01">
<h4 class="listing-name"><a href="single-property-1.html" class="prt-link-detail">4789 Resot Relly Market, Montreal Canada, HAQC445</a></h4>
</div>
</div>
</div>
</div>
<div class="price-features-wrapper">
<div class="list-fx-features d-flex align-items-center justify-content-between">
<div class="listing-card d-flex align-items-center">
<div class="square--30 text-muted-2 fs-sm circle gray-simple me-2"><i class="fa-solid fa-building-shield fs-sm"></i></div><span class="text-muted-2">3BHK</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--30 text-muted-2 fs-sm circle gray-simple me-2"><i class="fa-solid fa-bed fs-sm"></i></div><span class="text-muted-2">3 Beds</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--30 text-muted-2 fs-sm circle gray-simple me-2"><i class="fa-solid fa-clone fs-sm"></i></div><span class="text-muted-2">1800 SQFT</span>
</div>
</div>
</div>
<div class="listing-detail-footer pl-0">
<div class="footer-first">
<a href="#" data-bs-toggle="modal" data-bs-target="#availability" class="btn btn-md btn-primary fw-medium" data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="Check Availability">
<span class="svg-icon text-light svg-icon-2hx me-1">
<svg width="19" height="19" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">