-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1136 lines (1126 loc) · 65.3 KB
/
index.html
File metadata and controls
1136 lines (1126 loc) · 65.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Brazil&Properties - Live Better</title>
<!--Bulma CSS-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css"/>
<!-- Bulma Timeline-->
<link rel="stylesheet" href="css/timeline-bulma.css"/>
<!-- Slick -->
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<!-- Fonts Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
<!-- Main CSS-->
<link rel="stylesheet" href="css/style.css"/>
<!-- Flaticon -->
<link rel="icon" type="image/x-icon" href="src/images/favicon.jpg">
</head>
<body>
<!-- Header Starts -->
<header>
<div class="container">
<!-- NavBar Starts-->
<nav class="navbar py-5">
<!-- NavBar Brand Starts-->
<div class="navbar-brand">
<a href="" class="navbar-item has-text-white">
<i class="fa-solid fa-house"></i><strong>Brazil&Properties</strong>
</a>
<a role="button" data-target="navbar-menu" class="navbar-burger">
<i class="fa-solid fa-bars has-text-white"></i>
</a>
</div>
<!-- NavBar Brand Ends-->
<!-- Navbar Menu Starts-->
<div class="navbar-menu" id="navbar-menu">
<!-- Navbar Starts -->
<div class="navbar-start">
<a href="index.html" class="navbar-item has-text-white" id="um">Home</a>
<a href="#about" class="navbar-item has-text-white" id="dois">About</a>
<a href="#properties" class="navbar-item has-text-white" id="tres">Properties</a>
<a href="#blog" class="navbar-item has-text-white" id="quatro">Blog</a>
<a href="#testimonial" class="navbar-item has-text-white" id="cinco">Testimonials</a>
</div>
<!-- Navbar Starts End-->
<!-- NavBar Ends-->
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a href="#" class="button is-primary" id="sign-up">Join Us</a>
<a href="#" class="button is-light" id="login"> Log in</a>
</div>
</div>
</div>
<!-- Navbar Ends Ends-->
</div>
<!-- Navbar Menu Ends-->
</nav>
<!-- NavBar ends-->
<!-- Hero Starts-->
<div class="hero is-medium">
<!-- Column Container -->
<div class="columns">
<div class="column is-full-tablet is-three-fifths-desktop">
<div class="hero-body">
<h1 class="title is-1 is-spaced has-text-white">Real Estate Property You Can Trust</h1>
<p class="is-hidden-mobile subtitle is-5 has-text-grey-lighter">
Explore trusted properties across major cities in Brazil, including São Paulo, Rio de Janeiro, and Brasília.
</p>
<div class="buttons">
<a href="#" class="button is-primary" id="book-a">
<strong>Book a Consultation</strong>
</a>
<a href="#" class="button is-transparent">
<i class="fa-solid fa-circle-play mr-3"></i>Virtual Tour
</a>
</div>
</div>
</div>
</div>
<!-- Column container ends-->
</div>
<!-- Hero ends-->
</div>
</header>
<!-- Header Ends-->
<!-- Main Starts -->
<main class="container" id="about">
<!-- Timeline Section Starts -->
<section class="section columns is-multiline is-vcentered">
<!-- First Column Starts -->
<div class="column is-full-tablet is-half-desktop">
<figure class="card-image">
<img src="src/images/time-line.jpg" alt="">
</figure>
</div>
<!-- First Column Ends-->
<!-- Second Column Starts -->
<div class="column is-full-tablet is-half-desktop">
<h2 class="title is-2 is-spaced-has-text-primary">Start Owning A Property</h2>
<!-- Timeline Container Starts -->
<div class="timeline">
<!-- Timeline Item Starts -->
<div class="timeline-item">
<div class="timeline-marker is-primary"></div>
<div class="timeline-content">
<h3 class="title is-5">
<strong>Investment for the future</strong>
</h3>
<p class="subtitle is-6 has-text-gray">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Excepturi aspernatur facere expedita iure, voluptate ea.
</p>
</div>
</div>
<!-- Timeline Item End-->
<!-- Timeline Item Starts -->
<div class="timeline-item">
<div class="timeline-marker is-primary"></div>
<div class="timeline-content">
<h3 class="title is-5">
<strong>Control the money you will spend</strong>
</h3>
<p class="subtitle is-6 has-text-gray">
At Brazil&Properties, we empower you to manage your investment wisely. Our expert guidance ensures clarity and confidence in every financial decision you make. Whether you're buying, selling, or investing, trust us to optimize your financial strategy and maximize your returns.
</p>
</div>
</div>
<!-- Timeline Item End-->
</div>
<!-- Timeline Container Ends-->
<!-- Learn more Button Start -->
<a href="#" class="button is-primary mt-5">
<strong>Learn More</strong>
</a>
<!-- Learn more Button Start -->
</div>
<!-- Second Column Ends-->
</section>
<!-- Timeline Section Ends-->
<!-- Why Choose Us Section -->
<section class="section columns is-multiline is-vcentered">
<!-- First Column Start -->
<div class="column is-full-tablet is-half-desktop">
<h2 class="title is-2 is-spaced has-text-primary">Why Choose Us?</h2>
<p class="subtitled is-6 has-text-gray">Discover why Brazil&Properties is your top choice for real estate investments. Our commitment to quality and customer satisfaction sets us apart.</p><br>
<p class="subtitled is-6 has-text-gray">At Brazil&Properties, we pride ourselves on our commitment to delivering exceptional service and ensuring your satisfaction. Our team is dedicated to guiding you through every step of your real estate journey, from initial consultation to successful investment.</p><br>
<p class="subtitled is-6 has-text-gray">With a focus on transparency and integrity, Brazil&Properties is committed to providing you with accurate information and expert advice. We prioritize your needs and goals to help you make informed decisions that align with your investment objectives.</p>
</div>
<!-- First Column End -->
<!-- Second Column Start -->
<div class="column is-full-tablet is-half-desktop">
<!-- Nested Column Container Start -->
<div class="columns is-multiline">
<!-- First Figure Start -->
<figure class="column is-half">
<!-- Card Starts -->
<div class="card p-4">
<i class="fa-solid fa-house-lock title is-4 has-text-primary"></i>
<h3 class="title is-5 is-spaced">
<strong>01. Real State Insrance</strong>
</h3>
<p class="subtitle is-6 has-text-grey">Ensuring your peace of mind is our priority at Brazil&Properties. We provide comprehensive real estate insurance solutions tailored to protect your investments.<br><br> Rest assured knowing that our policies cover all contingencies, allowing you to focus on your property with confidence.</p>
<a href="#" class="button is-rounded is-primary is-light">
Read More
<i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Card Ends-->
</figure>
<!-- First Figure End -->
<!-- Second Figure Start -->
<figure class="column is-half">
<!-- Card Starts -->
<div class="card p-4">
<i class="fa-solid fa-bell-concierge title is-4 has-text-primary"></i>
<h3 class="title is-5 is-spaced">
<strong>02. Best Reliable Service</strong>
</h3>
<p class="subtitle is-6 has-text-grey">At Brazil&Properties, we are committed to delivering the best reliable service in the real estate industry. Our dedicated team ensures that every client receives personalized attention.<br><br> And expert guidance throughout their property journey. Whether buying, selling, or investing, count on us!</p>
<a href="#" class="button is-rounded is-primary is-light">
Read More
<i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Card Ends-->
</figure>
<!-- Second Figure End -->
<!-- Third Figure Start -->
<figure class="column is-half">
<!-- Card Starts -->
<div class="card p-4">
<i class="fa-solid fa-money-bill-wave title is-4 has-text-primary"></i>
<h3 class="title is-5 is-spaced">
<strong>03. Advancement of Tax</strong>
</h3>
<p class="subtitle is-6 has-text-grey">Navigating the complexities of real estate taxes is made easy with Brazil&Properties. Our team is equipped to advance your understanding of tax implications, ensuring you are well-informed and prepared.<br><br> Whether it's optimizing deductions or managing obligations, trust us!.</p>
<a href="#" class="button is-rounded is-primary is-light">
Read More
<i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Card Ends-->
</figure>
<!-- Third Figure End -->
<!-- Fourth Figure Start -->
<figure class="column is-half">
<!-- Card Starts -->
<div class="card p-4">
<i class="fa-solid fa-tag title is-4 has-text-primary"></i>
<h3 class="title is-5 is-spaced">
<strong>04. Greatest Discount</strong>
</h3>
<p class="subtitle is-6 has-text-grey">At Brazil&Properties, we offer the best discounts on real estate investments. Our exclusive partnerships and negotiation skills ensure that you secure the greatest savings possible.<br><br>Whether you're buying your dream home or expanding your investment portfolio, count on us!</p>
<a href="#" class="button is-rounded is-primary is-light">
Read More
<i class="fa-solid fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Card Ends-->
</figure>
<!-- Fourth Figure End -->
</div>
<!-- Nested Column Container End-->
</div>
<!-- Second Column End -->
</section>
<!-- Why Choose Us Section Ends -->
<!-- Isotope Section Starts -->
<section class="section" id="properties">
<!-- Isotope Header Starts -->
<div class="has-text-left-mobile has-text-centered">
<h2 class="title is-2 is-spaced has-text-primary">We Help You To Make Better Decisions</h2>
<p class="subtitle is-6 has-text-grey">We at Brazil&Properties are dedicated to helping you make informed decisions that align with your real estate goals!</p>
</div>
<!-- Isotope Header Ends -->
<!-- Isotope Nav Starts -->
<nav class="level mt-6 button-group" id="isotope-filters">
<div class="level-item is-capitalized is-clickable isotope-button is-selected" data-filter="*">
recent properties
</div>
<div class="level-item is-capitalized is-clickable isotope-button is-selected" data-filter=".property">
properties
</div>
<div class="level-item is-capitalized is-clickable isotope-button is-selected" data-filter=".apartment">
apartments
</div>
<div class="level-item is-capitalized is-clickable isotope-button is-selected" data-filter=".condominium">
condominium
</div>
</nav>
<!-- Isotope Nav Ends -->
<!-- Column Container Starts -->
<div class="columns is-multiline isotope-container">
<!-- First Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element apartment">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/apartment 01.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Apartment in São Paulo-SP</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$380,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Located in the heart of São Paulo, this modern apartment offers comfort and style. Priced at $380,000, it features:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>5 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>2 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>3 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- First Column Ends -->
<!-- Second Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element condominium">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/condominium 01.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Condominium in São Paulo-SP</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$430,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Discover luxury living in this elegant condominium located in the heart of São Paulo. Priced at $300,000, this property offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>3 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>1 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>2 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Second Column Ends -->
<!-- Third Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element property">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/property 01.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Property in Rio de Janeiro-RJ</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$260,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Explore this stunning condominium nestled in the vibrant city of Rio de Janeiro. Priced at $260,000, this property boasts:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>4 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>1 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>1 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Third Column Ends -->
<!-- Fourth Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element apartment">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/apartment 02.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Apartment in São Paulo-SP</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$350,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Located in a prime neighborhood of São Paulo, this stylish apartment is listed at $350,000. It features:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>2 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>1 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>2 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Fourth Column Ends -->
<!-- Fifth Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element condominium">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/condominium 02.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Condominium in Brasilia-DF</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$410,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Explore this spacious condominium located in a prime area of Brasília. Priced at $410,000, this property offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>3 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>1 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>2 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Fifth Column Ends -->
<!-- Sixth Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element property">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/property 02.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Property in São Paulo</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$233,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Explore this attractive property located in São Paulo, Brazil. Priced at $233,000, this home offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>3 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>1 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>3 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Sixth Column Ends -->
<!-- Seventh Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element apartment">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/apartment 03.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Apartment in Rio de Janeiro</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$300,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Explore this spacious apartment located in Rio de Janeiro, Brazil. Priced at $300,000, this home offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>4 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>3 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>1 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Seventh Column Ends -->
<!-- Eight Column Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element condominium">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/condominium 03.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Condominium in Brasília</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Brazil
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$460,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Discover this luxurious condominium nestled in the heart of Brasília, Brazil. Priced at $460,000, this property offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>5 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>3 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>1 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Eight Column Ends -->
<!-- Nineth Starts -->
<div class="column is-half-tablet is-one-third-destktop isotope-element property">
<!-- Card Starts -->
<div class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/property 03.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Flex Container - Property Name & Price Starts -->
<div class="media is-flex is-justify-content-space-between">
<!--Flex Item 01 Starts -->
<div>
<h4 class="is-5">
<strong>Property in Rio de Janeiro</strong>
</h4>
<small class="has-text-grey">
<i class="fa-solid fa-location-dot has-text-primary mr2"></i>
Atlanta
</small>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="dinheiro">
<strong class="has-text-primary">$280,000</strong>
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Name & Price Ends -->
<div class="content">
<p class="is-6 has-text-gray">Explore this inviting property located in Rio de Janeiro, Brazil. Priced at $280,000, this home offers:</p>
<!-- Flex Container - Property Addition Info Starts -->
<div class="is-flex is-justify-content-space-between is-align-items-end">
<!-- Flex Item 01 Starts -->
<ul class="property-info">
<li>
<i class="fa-solid fa-bed has-text-primary mr3"></i>
<span>3 Bedrooms</span>
</li>
<li>
<i class="fa-solid fa-fire-burner has-text-primary mr3"></i>
<span>2 Kitchens</span>
</li>
<li>
<i class="fa-solid fa-restroom has-text-primary mr3"></i>
<span>1 Bathrooms</span>
</li>
</ul>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<button class="button is-primary is-small is-light is-rounded">
View Property
</button>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container - Property Addition Info Ends -->
</div>
</div>
</div>
<!-- Card Ends -->
</div>
<!-- Nineth Column Ends -->
</div>
<!-- Column Container Ends -->
</section>
<!-- Isotope Section Ends -->
<!-- Blog Section Starts -->
<section class="section" id="blog">
<!-- Blog Header -->
<div class="has-text-left-mobile has-text-centered">
<h2 class="title is-2 is-spaced has-text-primary">
Our Latest News & Blog
</h2>
<p class="subtitle is-6 has-text-grey">Stay Updated with Brazil&Properties News</p>
</div>
<!-- Blog Header -->
<!-- Column Container Starts -->
<div class="columns is-multiline mt-4">
<!-- First Column Starts -->
<!-- Card Starts -->
<div class="column is-full-tablet is-half-desktop">
<article class="card">
<div class="card-image">
<figure class="image is-4by3">
<img src="src/images/apartment 01.jpeg" alt="">
</figure>
</div>
<div class="card-content">
<!-- Media Starts -->
<div class="media">
<div class="media-left">
<figure class="image is-48x48">
<img src="https://i.pravatar.cc?img=1" alt="" class="is-rounded">
</figure>
</div>
<div class="media-content">
<p class="title is-4">Luana Pinheiro</p>
<p class="subtitle is-6">@luanapinheiro</p>
</div>
</div>
<!-- Media Ends -->
<div class="content">
<h4 class="title is-4">Apartment in São Paulo-SP</h4>
<p>Located in the heart of São Paulo, this modern apartment offers comfort and style. Priced at $380,000</p>
<a href="#" class="button is-primary">Read More</a>
</div>
</div>
</article>
<!-- Card Ends -->
</div>
<!-- First Column Ends -->
<!-- Second Column Starts -->
<div class="column is-full-tablet is-half-desktop">
<!-- Nested Column Container Starts -->
<div class="columns is-multiline">
<!-- First Nested Column Starts -->
<aside class="column is-full">
<!-- Card Starts -->
<div class="card p-4 is-flex flex-aside is-align-items-center">
<div class="card-image mr4">
<figure class="image is-4by3">
<img src="src/images/apartment 02.jpeg" alt="">
</figure>
</div>
<div class="content">
<h4 class="title is-4">
Apartment in São Paulo-SP
</h4>
<p>
Located in a prime neighborhood of São Paulo, this stylish apartment is listed at $350,000.
</p>
</div>
</div>
<!-- Card Ends -->
</aside>
<!-- First Nested Column Ends -->
<!-- Second Nested Column Starts -->
<aside class="column is-full">
<!-- Card Starts -->
<div class="card p-4 is-flex flex-aside is-align-items-center">
<div class="card-image mr4">
<figure class="image is-4by3">
<img src="src/images/condominium 01.jpeg" alt="">
</figure>
</div>
<div class="content">
<h4 class="title is-4">
Condominium in São Paulo-SP
</h4>
<p>
Discover luxury living in this elegant condominium located in the heart of São Paulo. Priced at $300,000.
</p>
</div>
</div>
<!-- Card Ends -->
</aside>
<!-- Second Nested Column Ends -->
<!-- Third Nested Column Starts -->
<aside class="column is-full">
<!-- Card Starts -->
<div class="card p-4 is-flex flex-aside is-align-items-center">
<div class="card-image mr4">
<figure class="image is-4by3">
<img src="src/images/condominium 02.jpeg" alt="">
</figure>
</div>
<div class="content">
<h4 class="title is-4">
Condominium in Brasilia-DF
</h4>
<p>
Explore this spacious condominium located in a prime area of Brasília. Priced at $410,000.
</p>
</div>
</div>
<!-- Card Ends -->
</aside>
<!-- Third Nested Column Ends -->
</div>
<!-- Nested Column Container Ends -->
</div>
<!-- Second Column Ends -->
</div>
<!-- Column Container Ends -->
</section>
<!-- Blog Section Ends-->
<!-- Testimonials Section Starts -->
<section class="section" id="testimonial">
<!-- Testimonial Header Starts-->
<div class="has-text-left-mobile has-text-centered">
<h2 class="title is-2 is-spaced has-text-primary">
Hear What Our Clients Say
</h2>
<p class="subtitle is-6 has-text-grey">At Brazil&Properties, client satisfaction is our top priority. Here’s what some of our clients have to say about their experience:</p>
</div>
<!-- Testimonial Header Ends-->
<!-- Testimonial Slider Starts -->
<div class="testimonial-slider mt-6">
<!-- Testimonial Card Starts -->
<div class="testimonial-card">
<figure class="image is-128x128 testimonial-image">
<img src="https://i.pravatar.cc?img=8" alt="" class="is-rounded">
</figure>
<div class="card-content">
<!-- Flex Container Starts -->
<div class="media is-flex is-justify-content-space-between">
<!-- Flex Item 01 Starts -->
<div>
<h4 class="title is-4">Pedro Costa</h4>
<p class="subtitle is-6">Engineer</p>
</div>
<!-- Flex Item 01 Ends -->
<!-- Flex Item 02 Starts -->
<div class="title is-6 estrelinha">
<i class="fa-solid fa-star has-text-warning"></i>
4.5
</div>
<!-- Flex Item 02 Ends -->
</div>
<!-- Flex Container Ends -->
<div class="content mt-4">"I couldn't be happier with my decision to work with Brazil&Properties. They were knowledgeable, patient, and guided me through the entire process of buying a house in Rio de Janeiro. Thank you for making my dream a reality!"</div>
</div>
</div>
<!-- Testimonial Card Ends -->
<!-- Testimonial Card Starts -->
<div class="testimonial-card">
<figure class="image is-128x128 testimonial-image">
<img src="https://i.pravatar.cc?img=3" alt="" class="is-rounded">
</figure>
<div class="card-content">
<!-- Flex Container Starts -->