-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1000 lines (958 loc) · 40.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mwas Movers LTD</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<header class="header" data-header>
<div class="container">
<div class="logo-container">
<a href="#" class="logo">
<img
src="assets/images/logo-2.png"
alt="logo"
class="logo"
width="80" />
</a>
<p class="company-name">Mwas Movers & Logistics LTD</p>
</div>
<nav class="navbar" data-navbar>
<div class="wrapper">
<a href="#" class="logo">
<img
src="assets/images/logo-2.png"
alt="logo"
class="logo"
width="80" />
</a>
<button
class="nav-close-btn"
aria-label="close menu"
data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="#home" class="navbar-link" data-nav-link>Home</a>
</li>
<li>
<a href="#about" class="navbar-link" data-nav-link>About</a>
</li>
<li>
<a href="#services" class="navbar-link" data-nav-link>Services</a>
</li>
<li>
<a href="#booking" class="navbar-link" data-nav-link>Booking</a>
</li>
<li>
<a href="#footer" class="navbar-link" data-nav-link>Contact</a>
</li>
</ul>
</nav>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon>
</button>
<div class="header-buttons">
<a href="#" class="" id="login-btn" style="border: none"
>(+254) 705 127 144</a
>
<a href="#" class="btn-outline" id="quote-btn">Get Quote</a>
</div>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<section class="section hero" id="home" aria-label="hero">
<div class="container">
<div class="hero-content">
<p class="hero-subtitle has-before">#1 Moving Company</p>
<h1 class="h1 hero-title">
You want to move it <span>we like to move it</span>
</h1>
<p class="hero-text">
Experience a seamless and stress-free move with our trusted
movers.
</p>
<div class="btn-group">
<a href="#booking" class="btn btn-primary">Book Now</a>
</div>
</div>
</div>
</section>
<!-- The process -->
<section class="steps-section" id="process">
<div class="container">
<div class="card-group d-grid">
<div class="card">
<header class="card-header">
<img
src="assets/images/check-circle-svgrepo-com-1.svg"
alt="" />
</header>
<div class="card-body">
<h3 class="title card-title">Reach out</h3>
<p>
Reach us via phone, email, or our website form and provide
your details. We'll get back to you and collect more info
from you.
</p>
</div>
</div>
<div class="card">
<header class="card-header">
<img
src="assets/images/check-circle-svgrepo-com-1.svg"
alt="" />
</header>
<div class="card-body">
<h3 class="title card-title">Receive Quote</h3>
<p>
We'll provide you with the moving plan and a detailed quote
which includes an overview of the services and estimated
cost.
</p>
</div>
</div>
<div class="card">
<header class="card-header">
<img
src="assets/images/check-circle-svgrepo-com-1.svg"
alt="" />
</header>
<div class="card-body">
<h3 class="title card-title">Finalize</h3>
<p>
Once you confirm that you're satisfied with our plan and
cost, we'll guide you through the preparations for a smooth
experience.
</p>
</div>
</div>
</div>
</div>
</section>
<!--
- #ABOUT
-->
<section class="section about" id="about" aria-label="about">
<div class="container">
<figure class="about-banner">
<img
src="./assets/images/indira-tjokorda-OYtFO_heZ1Y-unsplash-min.jpg"
width="802"
height="654"
loading="lazy"
alt="about banner"
class="w-100" />
</figure>
<div class="about-content">
<h2 class="h2-sm section-title">Who we are</h2>
<p class="section-text">
At Mwas Movers & Logistics, we're more than just a moving
company; we're your trusted partner in making your relocation
experience smooth and stress-free. With over 20 years of
expertise in the moving industry, we have established ourselves
as a reliable choice for individuals and businesses looking to
move locally or across long distances. We Offer:
</p>
<ul class="about-list">
<li class="has-before">Budget Friendly</li>
<li class="has-before">Reliable</li>
<li class="has-before">Insurance</li>
<li class="has-before">On-Time Delivery</li>
</ul>
</div>
</div>
</section>
<!--
- #SERVICE
-->
<section class="section service" id="services" aria-label="service">
<div class="container">
<h2 class="h2 section-title-2">Services We Provide</h2>
<p class="section-text-2">
These are the quality services we offer at Mwas Movers. Please
feel free to get more info about each service by clicking on it.
</p>
<ul class="grid-list">
<li>
<a href="local-moving.html">
<div class="service-card">
<div class="card-icon" style="background-color: #13c4a1">
<img
src="assets/images/svg/moving-svgrepo-com (1).svg"
alt="" />
<!-- <ion-icon name="chatbox"></ion-icon> -->
</div>
<h3 class="h3">
<a href="local-moving.html" class="card-title"
>Local Moving</a
>
</h3>
<p class="card-text">
<a
href="local-moving.html"
style="text-decoration: none; color: #676767"
>Whether you're relocating within the city or just down
the block, our local moving service ensures a
hassle-free experience. Our team handles every detail,
ensuring your belongings reach their destination safely
and securely.</a
>
</p>
</div>
</a>
</li>
<li>
<a href="long-distance.html">
<div class="service-card">
<div class="card-icon" style="background-color: #6610f2">
<img
src="assets/images/svg/international-search-symbol-svgrepo-com.svg"
alt="" />
<!-- <ion-icon name="desktop"></ion-icon> -->
</div>
<h3 class="h3">
<a href="long-distance.html" class="card-title"
>Long Distance Moving</a
>
</h3>
<p class="card-text">
<a
href="long-distance.html"
style="text-decoration: none; color: #676767"
>Moving to a new city or state? Trust our expert team
for efficient long-distance moving services. We
prioritize the safety of your items and provide a
reliable solution for a stress-free relocation
journey.</a
>
</p>
</div>
</a>
</li>
<li>
<a href="packing.html">
<div class="service-card">
<div class="card-icon" style="background-color: #ffb700">
<img
src="assets/images/svg/moving-house-male-svgrepo-com.svg"
alt="" />
<!-- <ion-icon name="cube-outline"></ion-icon> -->
</div>
<h3 class="h3">
<a href="packing.html" class="card-title"
>Packing & Unpacking</a
>
</h3>
<p class="card-text">
<a
href="packing.html"
style="text-decoration: none; color: #676767"
>Take the stress out of moving with our professional
packing and unpacking services. Our experienced team
ensures that your belongings are packed securely for
transit and unpacked with care.</a
>
</p>
</div>
</a>
</li>
<li>
<a href="office.html">
<div class="service-card">
<div class="card-icon" style="background-color: #fc3549">
<img
src="assets/images/svg/office-building-svgrepo-com.svg"
alt="" />
<!-- <ion-icon name="phone-portrait"></ion-icon> -->
</div>
<h3 class="h3">
<a href="office.html" class="card-title"
>Office Relocation</a
>
</h3>
<p class="card-text">
<a
href="office.html"
style="text-decoration: none; color: #676767"
>Minimize downtime and ensure a smooth transition with
our office relocation services. We understand the
importance of a seamless move for your business and
handle every aspect with precision, from equipment to
documents.</a
>
</p>
</div>
</a>
</li>
<li>
<a href="car-hire.html">
<div class="service-card">
<div class="card-icon" style="background-color: #00d280">
<img
src="assets/images/svg/car-angled-front-right-svgrepo-com.svg"
alt="" />
<!-- <ion-icon name="archive"></ion-icon> -->
</div>
<h3 class="h3">
<a href="#" class="card-title">Car Hire</a>
</h3>
<p class="card-text">
<a
href="car-hire.html"
style="text-decoration: none; color: #676767"
>Choose from our diverse fleet for your car hire needs.
From comfortable Prado SUVs to reliable water truck and
truck rentals, we provide well-maintained vehicles to
suit your specific requirements. Enjoy a worry-free
journey with our car hire services.</a
>
</p>
</div>
</a>
</li>
<li>
<a href="construction.html">
<div class="service-card">
<div class="card-icon" style="background-color: #ff612f">
<img
src="assets/images/svg/construction-svgrepo-com.svg"
alt="" />
<!-- <ion-icon name="build"></ion-icon> -->
</div>
<h3 class="h3">
<a href="construction.html" class="card-title"
>Construction Moving</a
>
</h3>
<p class="card-text">
<a
href="construction.html"
style="text-decoration: none; color: #676767"
>Our specialized service caters to the transportation of
construction equipment and materials. From ballast and
darugo stone to hardcore stones, quarry dust, and more,
we ensure timely and secure delivery to your
construction site.</a
>
</p>
</div>
</a>
</li>
</ul>
</div>
</section>
<section class="section contact" id="booking" aria-label="contact">
<div class="container">
<h2 class="h2 section-title-2">Reach Out</h2>
<p class="section-text-2">
Please Provide the following details and We will reach out at an
appropriate time to offer a quote of our services
</p>
<form class="contact-form" id="contact" method="post">
<div class="input-wrapper">
<input
type="text"
name="name"
aria-label="name"
placeholder="Your name*"
required
class="input-field" />
<input
type="email"
name="email"
aria-label="email"
placeholder="Email address*"
required
class="input-field" />
</div>
<div class="input-wrapper">
<input
type="text"
name="region"
aria-label="region"
placeholder="Region*"
class="input-field" />
<input
type="number"
name="phone"
aria-label="phone"
placeholder="Phone number*"
class="input-field" />
</div>
<select id="service" class="input-field" name="service" required>
<option value="home moving">Home Moving</option>
<option value="office relocation">Office Relocation</option>
<option value="car hire">Car Hire</option>
<option value="construction">
Transporting Construction Items
</option>
</select>
<div class="checkbox-wrapper">
<input
type="checkbox"
name="terms_and_policy"
id="terms"
required
class="checkbox" />
<label for="terms" class="label">
Accept
<a href="#" class="label-link">Terms of Services</a> and
<a href="#" class="label-link">Privacy Policy</a>
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</section>
<!-- TESTIMONIALS SECTION -->
<section class="testimonial">
<div class="container">
<div class="row">
<div class="col-lg-6 d-none d-lg-block">
<ol class="carousel-indicators tabs">
<li
data-target="#carouselExampleIndicators"
data-slide-to="0"
class="active">
<figure>
<img
src="assets/images/testimonial-1-min.jpg"
class="img-fluid"
width="150px"
height="150px"
alt="" />
</figure>
</li>
<li
data-target="#carouselExampleIndicators"
data-slide-to="1">
<figure>
<img
src="assets/images/testimonial-2-min.jpg"
class="img-fluid"
width="306px"
height="306px"
alt="" />
</figure>
</li>
<li
data-target="#carouselExampleIndicators"
data-slide-to="2">
<figure>
<img
src="assets/images/testimonial-3-min.jpg"
width="179"
height="179"
class="img-fluid"
alt="" />
</figure>
</li>
</ol>
</div>
<div
class="col-lg-6 d-flex justify-content-center align-items-center">
<div
id="carouselExampleIndicators"
data-interval="false"
class="carousel slide"
data-ride="carousel">
<h3>WHAT OUR CLIENTS SAY</h3>
<h1>TESTIMONIALS</h1>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="quote-wrapper">
<p>
"Moving across the country seemed like an overwhelming
task, but thanks to Mwas Movers LTD, the experience
was seamless! The team was efficient, professional,
and took great care of our belongings. Highly
recommend their long-distance moving services!"
</p>
<h3>Jenniffer Mutheu</h3>
</div>
</div>
<div class="carousel-item">
<div class="quote-wrapper">
<p>
"Choosing Mwas Movers LTD for our office relocation
was the best decision. They not only ensured a smooth
transition but also demonstrated a high level of
professionalism. The entire process was organized, and
our team could focus on work while they took care of
the logistics."
</p>
<h3>Peter Oloo</h3>
</div>
</div>
<div class="carousel-item">
<div class="quote-wrapper">
<p>
"Renting a car from Mwas Movers Logistics LTD was a
breeze! The selection was fantastic, and the rental
process was quick and straightforward. The vehicle was
clean and well-maintained, making our trip enjoyable
and hassle-free. Will definitely use their car hire
services again!"
</p>
<h3>Daniel Kimani</h3>
</div>
</div>
</div>
<ol class="carousel-indicators indicators">
<li
data-target="#carouselExampleIndicators"
data-slide-to="0"
class="active"></li>
<li
data-target="#carouselExampleIndicators"
data-slide-to="1"></li>
<li
data-target="#carouselExampleIndicators"
data-slide-to="2"></li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ -->
<section class="faq-section">
<div class="container">
<div class="row">
<!-- ***** FAQ Start ***** -->
<div class="col-lg-8 offset-lg-2">
<div class="faq-title text-center pb-3">
<h2>FREQUENTLY ASKED QUESTIONS</h2>
</div>
</div>
<div class="col-lg-8 offset-lg-2">
<div class="faq mb-5" id="accordion">
<div class="card">
<div class="card-header" id="faqHeading-1">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-1"
data-aria-expanded="true"
data-aria-controls="faqCollapse-1">
<span class="badge">Q</span>What types of moving
services does your company offer?
</h5>
</div>
</div>
<div
id="faqCollapse-1"
class="collapse"
aria-labelledby="faqHeading-1"
data-parent="#accordion">
<div class="card-body">
<p>
We provide a range of services to meet your relocation
needs, including local moving for those staying within
the same city, long-distance moving for those moving
to a new city, office relocation, and construction
moving for transporting building materials.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-2">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-2"
data-aria-expanded="false"
data-aria-controls="faqCollapse-2">
<span class="badge">Q</span>How does your packing and
unpacking service work, and is it available for both
local and long-distance moves?
</h5>
</div>
</div>
<div
id="faqCollapse-2"
class="collapse"
aria-labelledby="faqHeading-2"
data-parent="#accordion">
<div class="card-body">
<p>
Our packing and unpacking service is designed to make
your move stress-free. Whether you're moving locally
or long distance, our expert team will efficiently and
securely pack your belongings, ensuring they reach
their destination in the best condition. Unpacking
services are also available to make settling into your
new space easier.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-3">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-3"
data-aria-expanded="false"
data-aria-controls="faqCollapse-3">
<span class="badge">Q</span>Can I customize the
packing and unpacking services based on my specific
requirements?
</h5>
</div>
</div>
<div
id="faqCollapse-3"
class="collapse"
aria-labelledby="faqHeading-3"
data-parent="#accordion">
<div class="card-body">
<p>
Absolutely! We understand that each move is unique,
and our packing and unpacking services can be
customized to suit your specific needs. Whether you
have fragile items that require special attention or
prefer a full-service packing experience, we work
closely with you to create a personalized plan that
ensures your belongings are handled with care
throughout the entire moving process.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-4">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-4"
data-aria-expanded="false"
data-aria-controls="faqCollapse-4">
<span class="badge">Q</span> What types of vehicles
are available for rental, and how can I reserve one?
</h5>
</div>
</div>
<div
id="faqCollapse-4"
class="collapse"
aria-labelledby="faqHeading-4"
data-parent="#accordion">
<div class="card-body">
<p>
We offer a diverse fleet for your rental needs,
including a Toyota Prado, Toyota Vitz, a water truck,
a Tata truck, and a double-cabin Nissan. Visit our
<a
href="car-hire.html"
style="display: inline-block; color: #fc3549"
>car rental page</a
>
for more info. To reserve a vehicle, simply share your
details on our form or call on our number (+254) 705
127 144, and we'll guide you through the process,
ensuring you have the right vehicle for your specific
requirements.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-8">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-8"
data-aria-expanded="false"
data-aria-controls="faqCollapse-8">
<span class="badge">Q</span>How do you handle the
rental of your vehicles, and what are the terms and
conditions?
</h5>
</div>
</div>
<div
id="faqCollapse-8"
class="collapse"
aria-labelledby="faqHeading-8"
data-parent="#accordion">
<div class="card-body">
<p>
Renting our vehicles is a straightforward process.
Contact us on (+254) 705 127 144 or book the service
on our form to check availability, and receive a
quote. Our terms and conditions are designed to be
clear and fair, covering aspects like rental duration,
mileage limits, and insurance options. We strive to
make the vehicle rental process convenient and
transparent for our customers.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-5">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-5"
data-aria-expanded="false"
data-aria-controls="faqCollapse-5">
<span class="badge">Q</span>Can you provide details
about your office relocation services?
</h5>
</div>
</div>
<div
id="faqCollapse-5"
class="collapse"
aria-labelledby="faqHeading-5"
data-parent="#accordion">
<div class="card-body">
<p>
Certainly! Our office relocation service is tailored
to meet the unique requirements of moving business
spaces. We handle the logistics of your office move,
ensuring a smooth transition. From packing and
transporting office equipment to setting up at the new
location, we're dedicated to minimizing downtime and
maximizing efficiency.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-6">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-6"
data-aria-expanded="false"
data-aria-controls="faqCollapse-6">
<span class="badge">Q</span>How does your construction
moving service assist contractors and construction
workers?
</h5>
</div>
</div>
<div
id="faqCollapse-6"
class="collapse"
aria-labelledby="faqHeading-6"
data-parent="#accordion">
<div class="card-body">
<p>
Our construction moving service is designed to support
construction projects by transporting essential
materials such as Darugo stone, sand, machine-cut
stones, rock sand, and
<a
href="construction.html"
style="display: inline-block; color: #fc3549"
>more</a
>
. We understand the importance of timely and secure
deliveries, and our team is equipped to handle the
transportation of construction materials to and from
the worksite.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="faqHeading-7">
<div class="mb-0">
<h5
class="faq-title"
data-toggle="collapse"
data-target="#faqCollapse-7"
data-aria-expanded="false"
data-aria-controls="faqCollapse-7">
<span class="badge">Q</span>What sets your
long-distance moving service apart from others?
</h5>
</div>
</div>
<div
id="faqCollapse-7"
class="collapse"
aria-labelledby="faqHeading-7"
data-parent="#accordion">
<div class="card-body">
<p>
Our long-distance moving service is characterized by
meticulous planning, experienced staff, and
state-of-the-art vehicles. We prioritize the safety of
your belongings during the entire journey, providing
real-time tracking options and transparent
communication. Whether you're moving across states or
to a different region, we ensure a seamless and
reliable moving experience.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- !FOOTER -->
<footer id="footer" id="footer">
<div class="container">
<div class="footer-top-data d-grid">
<div class="company-data">
<a href="#" class="logo">
<img
src="assets/images/logo-2.png"
alt="logo"
class="logo"
width="80" />
</a>
<p class="company-description">
Our mission is to provide the highest level of customer
satisfaction by delivering efficient, dependable, and
cost-effective moving services. We're dedicated to making your
move a positive and memorable experience
</p>
</div>
<div class="footer-group">
<h6 class="title footer-title">Company</h6>
<ul class="list">
<li class="list-item">
<a href="#home" class="list-link">Home</a>
</li>
<li class="list-item">
<a href="#about" class="list-link">About Us</a>
</li>
<li class="list-item">
<a href="#services" class="list-link">Services</a>
</li>
<li class="list-item">
<a href="#booking" class="list-link">Booking</a>
</li>
<li class="list-item">
<a href="#footer" class="list-link">Contact</a>
</li>
</ul>
</div>
<div class="footer-group">
<h6 class="title footer-title">Services</h6>
<ul class="list">
<li class="list-item">
<a href="local-moving.html" class="list-link"
>Local Moving</a
>
</li>
<li class="list-item">
<a href="long-distance.html" class="list-link"
>Long Distance Moving</a
>
</li>
<li class="list-item">
<a href="office.html" class="list-link"
>Office relocation</a
>
</li>
<li class="list-item">
<a href="packing.html" class="list-link"
>Packing & Unpacking</a
>
</li>
<li class="list-item">
<a href="car-hire.html" class="list-link">Car Hire</a>
</li>
<li class="list-item">
<a href="construction.html" class="list-link"
>Construction Moving</a
>
</li>
</ul>
</div>
<div class="footer-group">
<h6 class="title footer-title">Get in Touch</h6>
<ul class="list">
<li class="list-item">
<a href="#" class="list-link">Kiambu, Githunguri</a>
</li>
<li class="list-item">
<a href="#" class="list-link">mwasmoversltd@gmail.com</a>
</li>
<li class="list-item">
<a href="#" class="list-link">(+254) 705 127 144</a>
</li>
</ul>
</div>
</div>
<hr class="horizontal-line" />
<div class="footer-bottom-data">
<span class="copyright-information"
>©Mwas Movers Ltd 2023. All Rights reserved</span
>
<div class="legal-information">
<a href="#">Terms & conditions</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</div>
</footer>
</article>
</main>
<!--
- #BACK TO TOP
-->
<a
href="#top"
aria-label="back to top"
data-back-top-btn
class="back-top-btn">
<ion-icon name="chevron-up" aria-hidden="true"></ion-icon>
</a>
<!--
- custom js link
-->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"></script>
<script src="/assets/scripts/app.js"></script>
<!-- testimonials -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="/assets/scripts/testimonial.js"></script>
<!--
- ionicon link
-->
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.5.1/axios.min.js"
integrity="sha512-emSwuKiMyYedRwflbZB2ghzX8Cw8fmNVgZ6yQNNXXagFzFOaQmbvQ1vmDkddHjm5AITcBIZfC7k4ShQSjgPAmQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"></script>
<script src="./assets/scripts/submit.js"></script>
</body>
</html>