-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
1846 lines (1670 loc) · 116 KB
/
map.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/map.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Jun 2024 15:37:28 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 -->
<!-- ============================================================== -->
<!-- ============================ Hero Banner Start================================== -->
<div class="home-map-banner full-wrapious">
<div class="hm-map-container fw-map">
<div id="map"></div>
</div>
<!-- Advance Search -->
<div class="advance-search-container">
<div class="container">
<div class="row">
<div class="col-md-12">
<button data-bs-toggle="collapse" data-bs-target="#ad-search" class="btn btn-primary">Advance Search</button>
<div id="ad-search" class="collapse">
<div class="map-search-box">
<div class="full-search-2 eclip-search italian-search hero-search-radius rounded-4 border">
<div class="hero-search-content">
<div class="row">
<div class="col-xl-3 col-lg-3 col-md-4 col-sm-12 b-r">
<div class="form-group">
<div class="choose-propert-type">
<ul>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" id="typbuy" name="typeprt">
<label class="form-check-label" for="typbuy">
For Buy
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" id="typrent" name="typeprt" checked>
<label class="form-check-label" for="typrent">
For Rent
</label>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-7 col-lg-7 col-md-5 col-sm-12 p-md-0 elio">
<div class="form-group border-start borders">
<div class="position-relative">
<input type="text" class="form-control border-0 ps-5" placeholder="Search for a location">
<div class="position-absolute top-50 start-0 translate-middle-y ms-2">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="25" height="25" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
</div>
</div>
</div>
</div>
<div class="col-xl-2 col-lg-2 col-md-3 col-sm-12">
<div class="form-group">
<button type="button" class="btn btn-dark full-width">Search</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ============================ Hero Banner End ================================== -->
<!-- ============================ Step How To Use Start ================================== -->
<section>
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-6 col-lg-7 col-md-10 text-center">
<div class="sec-heading center">
<h2>How It Works?</h2>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>
</div>
</div>
</div>
<div class="row justify-content-center g-4">
<div class="col-lg-4 col-md-4">
<div class="middle-icon-features-item">
<div class="icon-features-wrap">
<div class="middle-icon-large-features-box f-light-success">
<span class="svg-icon text-success svg-icon-2hx"><svg width="45" height="45" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.0021 10.9128V3.01281C13.0021 2.41281 13.5021 1.91281 14.1021 2.01281C16.1021 2.21281 17.9021 3.11284 19.3021 4.61284C20.7021 6.01284 21.6021 7.91285 21.9021 9.81285C22.0021 10.4129 21.5021 10.9128 20.9021 10.9128H13.0021Z" fill="currentColor"/>
<path opacity="0.3" d="M11.0021 13.7128V4.91283C11.0021 4.31283 10.5021 3.81283 9.90208 3.91283C5.40208 4.51283 1.90209 8.41284 2.00209 13.1128C2.10209 18.0128 6.40208 22.0128 11.3021 21.9128C13.1021 21.8128 14.7021 21.3128 16.0021 20.4128C16.5021 20.1128 16.6021 19.3128 16.1021 18.9128L11.0021 13.7128Z" fill="currentColor"/>
<path opacity="0.3" d="M21.9021 14.0128C21.7021 15.6128 21.1021 17.1128 20.1021 18.4128C19.7021 18.9128 19.0021 18.9128 18.6021 18.5128L13.0021 12.9128H20.9021C21.5021 12.9128 22.0021 13.4128 21.9021 14.0128Z" fill="currentColor"/>
</svg>
</span>
</div>
</div>
<div class="middle-icon-features-content">
<h4>Evaluate Property</h4>
<p>Cicero famously orated against his political opponent Lucius Sergius Catilina. Occasionally the first Oration against Catiline is taken specimens.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="middle-icon-features-item">
<div class="icon-features-wrap">
<div class="middle-icon-large-features-box f-light-warning">
<span class="svg-icon text-warning svg-icon-2hx">
<svg width="45" height="45" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.0173 9H15.3945C14.2833 9 13.263 9.61425 12.7431 10.5963L12.154 11.7091C12.0645 11.8781 12.1072 12.0868 12.2559 12.2071L12.6402 12.5183C13.2631 13.0225 13.7556 13.6691 14.0764 14.4035L14.2321 14.7601C14.2957 14.9058 14.4396 15 14.5987 15H18.6747C19.7297 15 20.4057 13.8774 19.912 12.945L18.6686 10.5963C18.1487 9.61425 17.1285 9 16.0173 9Z" fill="currentColor"/>
<rect opacity="0.3" x="14" y="4" width="4" height="4" rx="2" fill="currentColor"/>
<path d="M4.65486 14.8559C5.40389 13.1224 7.11161 12 9 12C10.8884 12 12.5961 13.1224 13.3451 14.8559L14.793 18.2067C15.3636 19.5271 14.3955 21 12.9571 21H5.04292C3.60453 21 2.63644 19.5271 3.20698 18.2067L4.65486 14.8559Z" fill="currentColor"/>
<rect opacity="0.3" x="6" y="5" width="6" height="6" rx="3" fill="currentColor"/>
</svg>
</span>
</div>
</div>
<div class="middle-icon-features-content">
<h4>Meet Your Agent</h4>
<p>Cicero famously orated against his political opponent Lucius Sergius Catilina. Occasionally the first Oration against Catiline is taken specimens.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4">
<div class="middle-icon-features-item remove">
<div class="icon-features-wrap">
<div class="middle-icon-large-features-box f-light-purple">
<span class="svg-icon text-purple svg-icon-2hx">
<svg xmlns="http://www.w3.org/2000/svg" width="45px" height="45px" 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>
</div>
</div>
<div class="middle-icon-features-content">
<h4>Close The Deal</h4>
<p>Cicero famously orated against his political opponent Lucius Sergius Catilina. Occasionally the first Oration against Catiline is taken specimens.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="clearfix"></div>
<!-- ============================ Step How To Use End ====================== -->
<!-- ========================= Explore Property ========================== -->
<section class="bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-6 col-lg-7 col-md-10 text-center">
<div class="sec-heading center">
<h2>Explore Recent properties</h2>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores</p>
</div>
</div>
</div>
<div class="row justify-content-center g-4">
<!-- Single Property -->
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="property-listing card border-0 rounded-3">
<div class="listing-img-wrapper p-3">
<div class="list-img-slide position-relative">
<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="click rounded-3 overflow-hidden mb-0">
<div><a href="single-property-1.html"><img src="assets/img/p-1.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-9.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-10.jpg" class="img-fluid" alt="" /></a></div>
</div>
</div>
</div>
<div class="listing-caption-wrapper px-3">
<div class="listing-detail-wrapper">
<div class="listing-short-detail-wrap">
<div class="listing-short-detail">
<div class="d-flex align-items-center">
<span class="label bg-light-success text-success prt-type me-2">For Rent</span><span class="label bg-light-purple text-purple property-cats">Apartment</span>
</div>
<h4 class="listing-name fw-semibold fs-5 mb-1"><a href="single-property-1.html">The Green Canton Chrysler</a></h4>
<div class="prt-location text-muted-2">
<span class="svg-icon svg-icon-2hx">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
210 Zirak Road, Canada
</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--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-building-shield fs-xs"></i></div><span class="text-muted-2 fs-sm">3BHK</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-bed fs-xs"></i></div><span class="text-muted-2 fs-sm">3 Beds</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-clone fs-xs"></i></div><span class="text-muted-2 fs-sm">1800 SQFT</span>
</div>
</div>
</div>
<div class="listing-detail-footer d-flex align-items-center justify-content-between py-4">
<div class="listing-short-detail-flex">
<h6 class="listing-card-info-price m-0">$80,000</h6>
</div>
<div class="footer-flex">
<a href="property-detail.html" class="prt-view">
<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">
<path d="M15.43 8.56949L10.744 15.1395C10.6422 15.282 10.5804 15.4492 10.5651 15.6236C10.5498 15.7981 10.5815 15.9734 10.657 16.1315L13.194 21.4425C13.2737 21.6097 13.3991 21.751 13.5557 21.8499C13.7123 21.9488 13.8938 22.0014 14.079 22.0015H14.117C14.3087 21.9941 14.4941 21.9307 14.6502 21.8191C14.8062 21.7075 14.9261 21.5526 14.995 21.3735L21.933 3.33649C22.0011 3.15918 22.0164 2.96594 21.977 2.78013C21.9376 2.59432 21.8452 2.4239 21.711 2.28949L15.43 8.56949Z" fill="currentColor"/>
<path opacity="0.3" d="M20.664 2.06648L2.62602 9.00148C2.44768 9.07085 2.29348 9.19082 2.1824 9.34663C2.07131 9.50244 2.00818 9.68731 2.00074 9.87853C1.99331 10.0697 2.04189 10.259 2.14054 10.4229C2.23919 10.5869 2.38359 10.7185 2.55601 10.8015L7.86601 13.3365C8.02383 13.4126 8.19925 13.4448 8.37382 13.4297C8.54839 13.4145 8.71565 13.3526 8.85801 13.2505L15.43 8.56548L21.711 2.28448C21.5762 2.15096 21.4055 2.05932 21.2198 2.02064C21.034 1.98196 20.8409 1.99788 20.664 2.06648Z" fill="currentColor"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Property -->
<!-- Single Property -->
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="property-listing card border-0 rounded-3">
<div class="listing-img-wrapper p-3">
<div class="list-img-slide position-relative">
<div class="position-absolute top-0 left-0 ms-3 mt-3 z-1">
<div class="label bg-purple 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 d="M12.0006 11.1542C13.1434 11.1542 14.0777 10.22 14.0777 9.0771C14.0777 7.93424 13.1434 7 12.0006 7C10.8577 7 9.92348 7.93424 9.92348 9.0771C9.92348 10.22 10.8577 11.1542 12.0006 11.1542Z" fill="currentColor"/>
<path d="M15.5652 13.814C15.5108 13.6779 15.4382 13.551 15.3566 13.4331C14.9393 12.8163 14.2954 12.4081 13.5697 12.3083C13.479 12.2993 13.3793 12.3174 13.3067 12.3718C12.9257 12.653 12.4722 12.7981 12.0006 12.7981C11.5289 12.7981 11.0754 12.653 10.6944 12.3718C10.6219 12.3174 10.5221 12.2902 10.4314 12.3083C9.70578 12.4081 9.05272 12.8163 8.64456 13.4331C8.56293 13.551 8.49036 13.687 8.43595 13.814C8.40875 13.8684 8.41781 13.9319 8.44502 13.9864C8.51759 14.1133 8.60828 14.2403 8.68991 14.3492C8.81689 14.5215 8.95295 14.6757 9.10715 14.8208C9.23413 14.9478 9.37925 15.0657 9.52439 15.1836C10.2409 15.7188 11.1026 15.9999 11.9915 15.9999C12.8804 15.9999 13.7421 15.7188 14.4586 15.1836C14.6038 15.0748 14.7489 14.9478 14.8759 14.8208C15.021 14.6757 15.1661 14.5215 15.2931 14.3492C15.3838 14.2312 15.4655 14.1133 15.538 13.9864C15.5833 13.9319 15.5924 13.8684 15.5652 13.814Z" fill="currentColor"/>
</svg>
</span>SuperAgent
</div>
</div>
<div class="click rounded-3 overflow-hidden mb-0">
<div><a href="single-property-1.html"><img src="assets/img/p-2.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-6.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-8.jpg" class="img-fluid" alt="" /></a></div>
</div>
</div>
</div>
<div class="listing-caption-wrapper px-3">
<div class="listing-detail-wrapper">
<div class="listing-short-detail-wrap">
<div class="listing-short-detail">
<div class="d-flex align-items-center">
<span class="label bg-light-danger text-danger prt-type me-2">For Sell</span><span class="label bg-light-purple text-purple property-cats">House</span>
</div>
<h4 class="listing-name fw-semibold fs-5 mb-1"><a href="single-property-1.html">Purple Flatiron House</a></h4>
<div class="prt-location text-muted-2">
<span class="svg-icon svg-icon-2hx">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
210 Zirak Road, Canada
</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--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-building-shield fs-xs"></i></div><span class="text-muted-2 fs-sm">3BHK</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-bed fs-xs"></i></div><span class="text-muted-2 fs-sm">3 Beds</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-clone fs-xs"></i></div><span class="text-muted-2 fs-sm">1800 SQFT</span>
</div>
</div>
</div>
<div class="listing-detail-footer d-flex align-items-center justify-content-between py-4">
<div class="listing-short-detail-flex">
<h6 class="listing-card-info-price m-0">$67,000</h6>
</div>
<div class="footer-flex">
<a href="property-detail.html" class="prt-view">
<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">
<path d="M15.43 8.56949L10.744 15.1395C10.6422 15.282 10.5804 15.4492 10.5651 15.6236C10.5498 15.7981 10.5815 15.9734 10.657 16.1315L13.194 21.4425C13.2737 21.6097 13.3991 21.751 13.5557 21.8499C13.7123 21.9488 13.8938 22.0014 14.079 22.0015H14.117C14.3087 21.9941 14.4941 21.9307 14.6502 21.8191C14.8062 21.7075 14.9261 21.5526 14.995 21.3735L21.933 3.33649C22.0011 3.15918 22.0164 2.96594 21.977 2.78013C21.9376 2.59432 21.8452 2.4239 21.711 2.28949L15.43 8.56949Z" fill="currentColor"/>
<path opacity="0.3" d="M20.664 2.06648L2.62602 9.00148C2.44768 9.07085 2.29348 9.19082 2.1824 9.34663C2.07131 9.50244 2.00818 9.68731 2.00074 9.87853C1.99331 10.0697 2.04189 10.259 2.14054 10.4229C2.23919 10.5869 2.38359 10.7185 2.55601 10.8015L7.86601 13.3365C8.02383 13.4126 8.19925 13.4448 8.37382 13.4297C8.54839 13.4145 8.71565 13.3526 8.85801 13.2505L15.43 8.56548L21.711 2.28448C21.5762 2.15096 21.4055 2.05932 21.2198 2.02064C21.034 1.98196 20.8409 1.99788 20.664 2.06648Z" fill="currentColor"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Property -->
<!-- Single Property -->
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="property-listing card border-0 rounded-3">
<div class="listing-img-wrapper p-3">
<div class="list-img-slide position-relative">
<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 class="label bg-danger text-light d-inline-flex align-items-center justify-content-center ms-1">
<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 d="M19.0647 5.43757C19.3421 5.43757 19.567 5.21271 19.567 4.93534C19.567 4.65796 19.3421 4.43311 19.0647 4.43311C18.7874 4.43311 18.5625 4.65796 18.5625 4.93534C18.5625 5.21271 18.7874 5.43757 19.0647 5.43757Z" fill="currentColor"/>
<path d="M20.0692 9.48884C20.3466 9.48884 20.5714 9.26398 20.5714 8.98661C20.5714 8.70923 20.3466 8.48438 20.0692 8.48438C19.7918 8.48438 19.567 8.70923 19.567 8.98661C19.567 9.26398 19.7918 9.48884 20.0692 9.48884Z" fill="currentColor"/>
<path d="M12.0335 20.5714C15.6943 20.5714 18.9426 18.2053 20.1168 14.7338C20.1884 14.5225 20.1114 14.289 19.9284 14.161C19.746 14.034 19.5003 14.0418 19.3257 14.1821C18.2432 15.0546 16.9371 15.5156 15.5491 15.5156C12.2257 15.5156 9.48884 12.8122 9.48884 9.48886C9.48884 7.41079 10.5773 5.47137 12.3449 4.35752C12.5342 4.23832 12.6 4.00733 12.5377 3.79251C12.4759 3.57768 12.2571 3.42859 12.0335 3.42859C7.32556 3.42859 3.42857 7.29209 3.42857 12C3.42857 16.7079 7.32556 20.5714 12.0335 20.5714Z" fill="currentColor"/>
<path d="M13.0379 7.47998C13.8688 7.47998 14.5446 8.15585 14.5446 8.98668C14.5446 9.26428 14.7693 9.48891 15.0469 9.48891C15.3245 9.48891 15.5491 9.26428 15.5491 8.98668C15.5491 8.15585 16.225 7.47998 17.0558 7.47998C17.3334 7.47998 17.558 7.25535 17.558 6.97775C17.558 6.70015 17.3334 6.47552 17.0558 6.47552C16.225 6.47552 15.5491 5.76616 15.5491 4.93534C15.5491 4.65774 15.3245 4.43311 15.0469 4.43311C14.7693 4.43311 14.5446 4.65774 14.5446 4.93534C14.5446 5.76616 13.8688 6.47552 13.0379 6.47552C12.7603 6.47552 12.5357 6.70015 12.5357 6.97775C12.5357 7.25535 12.7603 7.47998 13.0379 7.47998Z" fill="currentColor"/>
</svg>
</span>New
</div>
</div>
<div class="click rounded-3 overflow-hidden mb-0">
<div><a href="single-property-1.html"><img src="assets/img/p-3.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-5.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-7.jpg" class="img-fluid" alt="" /></a></div>
</div>
</div>
</div>
<div class="listing-caption-wrapper px-3">
<div class="listing-detail-wrapper">
<div class="listing-short-detail-wrap">
<div class="listing-short-detail">
<div class="d-flex align-items-center">
<span class="label bg-light-success text-success prt-type me-2">For Rent</span><span class="label bg-light-purple text-purple property-cats">Building</span>
</div>
<h4 class="listing-name fw-semibold fs-5 mb-1"><a href="single-property-1.html">Rustic Reunion Tower</a></h4>
<div class="prt-location text-muted-2">
<span class="svg-icon svg-icon-2hx">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
210 Zirak Road, Canada
</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--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-building-shield fs-xs"></i></div><span class="text-muted-2 fs-sm">3BHK</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-bed fs-xs"></i></div><span class="text-muted-2 fs-sm">3 Beds</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-clone fs-xs"></i></div><span class="text-muted-2 fs-sm">1800 SQFT</span>
</div>
</div>
</div>
<div class="listing-detail-footer d-flex align-items-center justify-content-between py-4">
<div class="listing-short-detail-flex">
<h6 class="listing-card-info-price m-0">$92,500</h6>
</div>
<div class="footer-flex">
<a href="property-detail.html" class="prt-view">
<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">
<path d="M15.43 8.56949L10.744 15.1395C10.6422 15.282 10.5804 15.4492 10.5651 15.6236C10.5498 15.7981 10.5815 15.9734 10.657 16.1315L13.194 21.4425C13.2737 21.6097 13.3991 21.751 13.5557 21.8499C13.7123 21.9488 13.8938 22.0014 14.079 22.0015H14.117C14.3087 21.9941 14.4941 21.9307 14.6502 21.8191C14.8062 21.7075 14.9261 21.5526 14.995 21.3735L21.933 3.33649C22.0011 3.15918 22.0164 2.96594 21.977 2.78013C21.9376 2.59432 21.8452 2.4239 21.711 2.28949L15.43 8.56949Z" fill="currentColor"/>
<path opacity="0.3" d="M20.664 2.06648L2.62602 9.00148C2.44768 9.07085 2.29348 9.19082 2.1824 9.34663C2.07131 9.50244 2.00818 9.68731 2.00074 9.87853C1.99331 10.0697 2.04189 10.259 2.14054 10.4229C2.23919 10.5869 2.38359 10.7185 2.55601 10.8015L7.86601 13.3365C8.02383 13.4126 8.19925 13.4448 8.37382 13.4297C8.54839 13.4145 8.71565 13.3526 8.85801 13.2505L15.43 8.56548L21.711 2.28448C21.5762 2.15096 21.4055 2.05932 21.2198 2.02064C21.034 1.98196 20.8409 1.99788 20.664 2.06648Z" fill="currentColor"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Property -->
<!-- Single Property -->
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="property-listing card border-0 rounded-3">
<div class="listing-img-wrapper p-3">
<div class="list-img-slide position-relative">
<div class="position-absolute top-0 left-0 ms-3 mt-3 z-1">
<div class="label bg-purple 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 d="M12.0006 11.1542C13.1434 11.1542 14.0777 10.22 14.0777 9.0771C14.0777 7.93424 13.1434 7 12.0006 7C10.8577 7 9.92348 7.93424 9.92348 9.0771C9.92348 10.22 10.8577 11.1542 12.0006 11.1542Z" fill="currentColor"/>
<path d="M15.5652 13.814C15.5108 13.6779 15.4382 13.551 15.3566 13.4331C14.9393 12.8163 14.2954 12.4081 13.5697 12.3083C13.479 12.2993 13.3793 12.3174 13.3067 12.3718C12.9257 12.653 12.4722 12.7981 12.0006 12.7981C11.5289 12.7981 11.0754 12.653 10.6944 12.3718C10.6219 12.3174 10.5221 12.2902 10.4314 12.3083C9.70578 12.4081 9.05272 12.8163 8.64456 13.4331C8.56293 13.551 8.49036 13.687 8.43595 13.814C8.40875 13.8684 8.41781 13.9319 8.44502 13.9864C8.51759 14.1133 8.60828 14.2403 8.68991 14.3492C8.81689 14.5215 8.95295 14.6757 9.10715 14.8208C9.23413 14.9478 9.37925 15.0657 9.52439 15.1836C10.2409 15.7188 11.1026 15.9999 11.9915 15.9999C12.8804 15.9999 13.7421 15.7188 14.4586 15.1836C14.6038 15.0748 14.7489 14.9478 14.8759 14.8208C15.021 14.6757 15.1661 14.5215 15.2931 14.3492C15.3838 14.2312 15.4655 14.1133 15.538 13.9864C15.5833 13.9319 15.5924 13.8684 15.5652 13.814Z" fill="currentColor"/>
</svg>
</span>SuperAgent
</div>
</div>
<div class="click rounded-3 overflow-hidden mb-0">
<div><a href="single-property-1.html"><img src="assets/img/p-4.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-6.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-9.jpg" class="img-fluid" alt="" /></a></div>
</div>
</div>
</div>
<div class="listing-caption-wrapper px-3">
<div class="listing-detail-wrapper">
<div class="listing-short-detail-wrap">
<div class="listing-short-detail">
<div class="d-flex align-items-center">
<span class="label bg-light-danger text-danger prt-type me-2">For Sell</span><span class="label bg-light-purple text-purple property-cats">Condos</span>
</div>
<h4 class="listing-name fw-semibold fs-5 mb-1"><a href="single-property-1.html">The Red Freedom Tower</a></h4>
<div class="prt-location text-muted-2">
<span class="svg-icon svg-icon-2hx">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
210 Zirak Road, Canada
</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--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-building-shield fs-xs"></i></div><span class="text-muted-2 fs-sm">3BHK</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-bed fs-xs"></i></div><span class="text-muted-2 fs-sm">3 Beds</span>
</div>
<div class="listing-card d-flex align-items-center">
<div class="square--25 text-muted-2 fs-sm circle gray-simple me-1"><i class="fa-solid fa-clone fs-xs"></i></div><span class="text-muted-2 fs-sm">1800 SQFT</span>
</div>
</div>
</div>
<div class="listing-detail-footer d-flex align-items-center justify-content-between py-4">
<div class="listing-short-detail-flex">
<h6 class="listing-card-info-price m-0">$89,000</h6>
</div>
<div class="footer-flex">
<a href="property-detail.html" class="prt-view">
<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">
<path d="M15.43 8.56949L10.744 15.1395C10.6422 15.282 10.5804 15.4492 10.5651 15.6236C10.5498 15.7981 10.5815 15.9734 10.657 16.1315L13.194 21.4425C13.2737 21.6097 13.3991 21.751 13.5557 21.8499C13.7123 21.9488 13.8938 22.0014 14.079 22.0015H14.117C14.3087 21.9941 14.4941 21.9307 14.6502 21.8191C14.8062 21.7075 14.9261 21.5526 14.995 21.3735L21.933 3.33649C22.0011 3.15918 22.0164 2.96594 21.977 2.78013C21.9376 2.59432 21.8452 2.4239 21.711 2.28949L15.43 8.56949Z" fill="currentColor"/>
<path opacity="0.3" d="M20.664 2.06648L2.62602 9.00148C2.44768 9.07085 2.29348 9.19082 2.1824 9.34663C2.07131 9.50244 2.00818 9.68731 2.00074 9.87853C1.99331 10.0697 2.04189 10.259 2.14054 10.4229C2.23919 10.5869 2.38359 10.7185 2.55601 10.8015L7.86601 13.3365C8.02383 13.4126 8.19925 13.4448 8.37382 13.4297C8.54839 13.4145 8.71565 13.3526 8.85801 13.2505L15.43 8.56548L21.711 2.28448C21.5762 2.15096 21.4055 2.05932 21.2198 2.02064C21.034 1.98196 20.8409 1.99788 20.664 2.06648Z" fill="currentColor"/>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Property -->
<!-- Single Property -->
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="property-listing card border-0 rounded-3">
<div class="listing-img-wrapper p-3">
<div class="list-img-slide position-relative">
<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 class="label bg-danger text-light d-inline-flex align-items-center justify-content-center ms-1">
<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 d="M19.0647 5.43757C19.3421 5.43757 19.567 5.21271 19.567 4.93534C19.567 4.65796 19.3421 4.43311 19.0647 4.43311C18.7874 4.43311 18.5625 4.65796 18.5625 4.93534C18.5625 5.21271 18.7874 5.43757 19.0647 5.43757Z" fill="currentColor"/>
<path d="M20.0692 9.48884C20.3466 9.48884 20.5714 9.26398 20.5714 8.98661C20.5714 8.70923 20.3466 8.48438 20.0692 8.48438C19.7918 8.48438 19.567 8.70923 19.567 8.98661C19.567 9.26398 19.7918 9.48884 20.0692 9.48884Z" fill="currentColor"/>
<path d="M12.0335 20.5714C15.6943 20.5714 18.9426 18.2053 20.1168 14.7338C20.1884 14.5225 20.1114 14.289 19.9284 14.161C19.746 14.034 19.5003 14.0418 19.3257 14.1821C18.2432 15.0546 16.9371 15.5156 15.5491 15.5156C12.2257 15.5156 9.48884 12.8122 9.48884 9.48886C9.48884 7.41079 10.5773 5.47137 12.3449 4.35752C12.5342 4.23832 12.6 4.00733 12.5377 3.79251C12.4759 3.57768 12.2571 3.42859 12.0335 3.42859C7.32556 3.42859 3.42857 7.29209 3.42857 12C3.42857 16.7079 7.32556 20.5714 12.0335 20.5714Z" fill="currentColor"/>
<path d="M13.0379 7.47998C13.8688 7.47998 14.5446 8.15585 14.5446 8.98668C14.5446 9.26428 14.7693 9.48891 15.0469 9.48891C15.3245 9.48891 15.5491 9.26428 15.5491 8.98668C15.5491 8.15585 16.225 7.47998 17.0558 7.47998C17.3334 7.47998 17.558 7.25535 17.558 6.97775C17.558 6.70015 17.3334 6.47552 17.0558 6.47552C16.225 6.47552 15.5491 5.76616 15.5491 4.93534C15.5491 4.65774 15.3245 4.43311 15.0469 4.43311C14.7693 4.43311 14.5446 4.65774 14.5446 4.93534C14.5446 5.76616 13.8688 6.47552 13.0379 6.47552C12.7603 6.47552 12.5357 6.70015 12.5357 6.97775C12.5357 7.25535 12.7603 7.47998 13.0379 7.47998Z" fill="currentColor"/>
</svg>
</span>New
</div>
</div>
<div class="click rounded-3 overflow-hidden mb-0">
<div><a href="single-property-1.html"><img src="assets/img/p-5.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-12.jpg" class="img-fluid" alt="" /></a></div>
<div><a href="single-property-1.html"><img src="assets/img/p-13.jpg" class="img-fluid" alt="" /></a></div>
</div>
</div>
</div>
<div class="listing-caption-wrapper px-3">
<div class="listing-detail-wrapper">
<div class="listing-short-detail-wrap">
<div class="listing-short-detail">
<div class="d-flex align-items-center">
<span class="label bg-light-success text-success prt-type me-2">For Rent</span><span class="label bg-light-purple text-purple property-cats">Villa</span>
</div>
<h4 class="listing-name fw-semibold fs-5 mb-1"><a href="single-property-1.html">The Donald Dwelling</a></h4>
<div class="prt-location text-muted-2">
<span class="svg-icon svg-icon-2hx">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.3" d="M18.0624 15.3453L13.1624 20.7453C12.5624 21.4453 11.5624 21.4453 10.9624 20.7453L6.06242 15.3453C4.56242 13.6453 3.76242 11.4453 4.06242 8.94534C4.56242 5.34534 7.46242 2.44534 11.0624 2.04534C15.8624 1.54534 19.9624 5.24534 19.9624 9.94534C20.0624 12.0453 19.2624 13.9453 18.0624 15.3453Z" fill="currentColor"/>
<path d="M12.0624 13.0453C13.7193 13.0453 15.0624 11.7022 15.0624 10.0453C15.0624 8.38849 13.7193 7.04535 12.0624 7.04535C10.4056 7.04535 9.06241 8.38849 9.06241 10.0453C9.06241 11.7022 10.4056 13.0453 12.0624 13.0453Z" fill="currentColor"/>
</svg>
</span>
210 Zirak Road, Canada
</div>
</div>
</div>
</div>
<div class="price-features-wrapper">
<div class="list-fx-features d-flex align-items-center justify-content-between">