-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
978 lines (863 loc) · 50.9 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--important meta tags-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Title-->
<title>
AXA Insurance
</title>
<!--Basic SEO-->
<meta name="description" content="Axa Insurance Home Auto Car Moto Van Travel Business Insurance for Personals and Professionals. ">
<meta name="keywords" content="Axa, Insurance, Morocco, Auto Insurance, Car Insurance, Van Insurance, Moto Insurance, Travel Insurance ,Home Insurance, Business Insurance, Axa Insurnce, Personal Insurance, Professional Insurance, Family Insurance, Self Insurance, Property Insurance, Safety, Guaranty">
<!--Fav icon-->
<link rel="shortcut icon" href="img/AXA-Logo-klein_400x400.jpg">
<!--google fonts-->
<link href="https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<!--font-awesome-->
<link rel="stylesheet" href="css/Font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<!--bootstrap-->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<!--Owl carousel-->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl-carousel/owl.theme.default.min.css">
<!--responsive tabs-->
<link rel="stylesheet" href="css/responsive-tabs/responsive-tabs.min.css">
<!--Animate-->
<link rel="stylesheet" href="css/Animate/animate.min.css">
<!--Css-->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="65">
<div id="preloader">
<div id="status"> </div>
</div>
<!-- Header -->
<header>
<nav class="navbar navbar-fixed-top ">
<div class="container-fluid">
<div class="site-nav-wrapper">
<div class="navbar-header">
<!--MOBILE BAR-->
<span id="mobile-nav-open-btn">☰ </span>
<a class="navbar-brand smooth-scroll" href="#home"><img src="img/AXA-Logo-klein_400x400.jpg" alt="logo"></a></div>
<div class="container">
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav pull-right">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about">About</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#services">Services</a></li>
<li><a class="smooth-scroll" href="#submit">Claim</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
</ul>
</div>
</div>
<!--Mobile Menu-->
<div id="mobile-nav">
<span id="mobile-nav-close-btn">×</span>
<div id="mobile-nav-content">
<ul class="nav">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about">About</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#services">Services</a></li>
<li><a href="#submit">Claim</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</header>
<!-- Home -->
<section id="home">
<video id="home-bg-video" poster="img/solo.jpg" autoplay loop muted>
<source src="img/solo.mp4" type="video/mp4">
<source src="img/solo.ogv" type="video/ogg">
<source src="img/solo.webm" type="video/webm"> </video>
<!-- Overlay -->
<div id="home-overlay"></div>
<!--Home Content-->
<div id="home-content">
<div id="home-content-inner" class="text-center">
<div id="home-heading">
<h1 id="home-heading-1"> AXA </h1><br>
<h1 id="home-heading-2"> Inssurance<span> Morocco</span> </h1>
</div>
<div id="home-text">
<p>CARE FOR WHAT MATTERS</p>
</div>
<div id="home-btn">
<a class="btn btn-general btn-home smooth-scroll" href="#about" title="Start Now" role="button">Start Now</a>
</div>
</div>
</div>
<a href="#about" id="arrow-down" class="smooth-scroll">
<i class="fa fa-angle-down"></i>
</a>
</section>
<!-- About -->
<section id="about">
<div id="about-01">
<div class="content-box-lg">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 wow slideInLeft" data-wow-duration="1s">
<div class="about-left">
<div class="vertical-heading">
<h5><strong>Who We Are</strong></h5>
<h2>About <strong>Axa<br></strong>Insurance<br></h2>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 wow slideInRight" data-wow-duration="1s">
<div id="about-right">
<p>We’re one of the biggest insurance companies in the world, and we’ve been helping people for almost 300 years.<br>We help people to protect their possessions, themselves and their families, and look after their money.
</p>
<p>AXA are one of the top three insurance groups in the world. Headquartered in Paris, we employ 175,000 staff all around the world and we offer financial protection to more than 67 million people.</p>
</div>
</div>
</div>
<!---About Section-->
<div class="row">
<div class="col-md-12">
<div id="about-bottom">
<img src="img/About/Axa-Assurance-Maroc.jpg" alt="About us" class="img-responsive">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About -->
<div id="about-02">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 wow slideInLeft" data-wow-duration="1s">
<div class="about-item text-center">
<img src="img/About/couple-taking-selfie-in-new-home-feature.jpg" alt="Axa1">
<h3>We Protect Properties</h3>
<hr>
<p>The property-casualty business includes the insurance of personal property (cars, homes) and liability (personal or professional). It covers a broad range of products and services designed for our individual and business clients.</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow slideInUp" data-wow-duration="2s">
<div class="about-item text-center">
<img src="img/About/f4919806d39b292958bc09f80c72645f67e8d413_asset-management-business.jpg" alt="Axa2">
<h3>We Protect Persons</h3>
<hr>
<p>Our individual and group life insurance policies encompass both savings and retirement products, on the one hand, and other health and personal protection products.</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow slideInRight" data-wow-duration="1s">
<div class="about-item text-center">
<img src="img/About/d842358589b67725faedc96c84a0eca542772e72_parite-2.jpg" alt="Axa3">
<h3>We Protect Assets</h3>
<hr>
<p>The asset management business involves investing and managing assets for the Group's insurance companies and their clients, as well as for third parties, both retail and institutional clients.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team -->
<section id="team">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 wow slideInLeft" data-wow-duration="1s">
<div id="team-left">
<div class="vertical-heading">
<h5>Who we are</h5>
<h2>Meet <br><strong>Axa </strong>Team</h2>
</div>
<p>A mix of comunication professionals, developers, designers and publishers, the Paris based AXA team is in charge of bringing you the best content and user experience when you are looking for information about the AXA Group.</p>
</div>
</div>
<div class="col-md-6 col-sm-6 wow slideInRight" data-wow-duration="2s">
<div id="team-members" class="owl-carousel owl-theme">
<div class="team-member">
<img src="img/team/team-1.jpg" class="img-responsive" alt="team1">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>James Ford</h6>
<p>Boss</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="team-member">
<img src="img/team/team-2.jpg" alt="team-member" class="img-responsive">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>Desmond Hume</h6>
<p>Guard</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="team-member">
<img src="img/team/team-3.jpg" alt="team-member" class="img-responsive">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>Benjamen Linus</h6>
<p>Responsable</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="team-member">
<img src="img/team/team-4.jpg" alt="team-member" class="img-responsive">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>Hugo Reyes</h6>
<p>Relations</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="team-member">
<img src="img/team/team-5.jpg" alt="team-member" class="img-responsive">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>Julliet Burk</h6>
<p>Secretirat</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="team-member">
<img src="img/team/team-6.jpg" alt="team-member" class="img-responsive">
<div class="team-member-overlay">
<div class="team-member-info text-center">
<h6>Claire Littleton </h6>
<p>Cleaning</p>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="progress-elements">
<div class="row wow slideInUp" data-wow-duration="1s">
<div class="col-md-6 col-sm-6">
<div class="skill">
<h4><strong>EMPLOYEES</strong>
</h4>
<h6>We have all types of specialists in our team, allowing us to answer any type of request.</h6>
<div class="progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="80" style="width: 0%;">
<span>160K Employees</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="skill">
<h4><strong>OFFICES WORLDWIDE</strong></h4>
<h6>we can intervene no matter where your clients are around the world. </h6>
<div class="progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span>62 Countries</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="skill">
<h4><strong>CASES HANDELED</strong>
</h4>
<h6>Our expertise grows everyday through the diverse cases we assist. </h6>
<div class="progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span>9.40M Cases</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="skill">
<h4><strong>CUSTOMERS</strong>
</h4>
<h6>We treat customer with humanity and solidarity to provide the most appropriate support. </h6>
<div class="progress">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
<span>105M Clients</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Statement -->
<section id="statement">
<div class="content-box-cover">
<div class="container">
<div class="row">
<div class="col-md-12 wow fadeIn" data-wow-duration="2s">
<div id="tech-statement" class="text-center">
<h3><i class="fa fa-quote-left"> </i> For 30 years, innovation has been at the heart of everything we do <i class="fa fa-quote-right"> </i> </h3>
<p>-James Sawyer-</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services -->
<section id="services">
<div id="services-01">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 text-center wow slideInDown" data-wow-duration="3s">
<div class="horizontal-heading">
<h5>What We Do</h5>
<h2>Our Services</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-7 col-sm-7 wow slideInLeft" data-wow-duration="2s">
<img src="img/Covers/AXA-vakantie-in-eigen-tuin-vacances-dans-votre-jardin.jpg" alt="celebrate" class="img-responsive">
</div>
<div class="col-md-5 col-sm-5 wow slideInRight" data-wow-duration="1s">
<div class="service">
<div class="row">
<div class="col-md-2 col-sm-2">
<div class="icon text-right">
<i class="fa fa-car"></i>
</div>
</div>
<div class="col-md-10 col-sm-10">
<h4>Auto Insurance</h4>
<p>With AXA you'll get car or van insurance you can count on - we pay out on 99% of claims1. As well as being ready to help 24 hours a day, every day, you can rely on car insurance awarded Defaqto’s 5 Star Rating – the highest standard.</p>
</div>
</div>
</div>
<div class="service">
<div class="row">
<div class="col-md-2 col-sm-2">
<div class="icon text-right">
<i class="fa fa-home"></i>
</div>
</div>
<div class="col-md-10 col-sm-10">
<h4>Home Insurance</h4>
<p>Cover your home against accidental damage, Home insurance covers your house and belongings against life's unexpected events.</p>
</div>
</div>
</div>
<div class="service">
<div class="row">
<div class="col-md-2 col-sm-2">
<div class="icon text-right">
<i class="fa fa-medkit"></i>
</div>
</div>
<div class="col-md-10 col-sm-10">
<h4>Health Insurance</h4>
<p>Our healthcare plans are designed to suit a range of different needs. Whether you want to look after your own health, the health of your family or even the health of your employees</p>
</div>
</div>
</div>
<div class="service">
<div class="row">
<div class="col-md-2 col-sm-2">
<div class="icon text-right">
<i class="fa fa-plane"></i>
</div>
</div>
<div class="col-md-10 col-sm-10">
<h4>Travel Insurance</h4>
<p>When you’re on holiday, you don’t want to worry about what you’ll do if something goes wrong. Our Travel Insurance policies connect you with excellent service no matter where you are in the world.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="services-02">
<div class="content-box-md">
<div id="services-tabs">
<ul class="text-center">
<li><a href="#service-tab-1">Auto</a></li>
<li><a href="#service-tab-2">Home</a></li>
<li><a href="#service-tab-3">Health</a></li>
<li><a href="#service-tab-4">Travel</a></li>
<li><a href="#service-tab-5">Business</a></li>
</ul>
<div id="service-tab-1" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6"> <img src="img/Services/AXA-uitstap-vakantie-met-de-auto-tips-om-hoofd-koel-houden-excursions-vacances-en-voiture-lorsqu-il-fait-tres-chaud.jpg" alt="Auto Insurance"> </div>
<div class="col-md-6 col-sm-6">
<div class="tab-bg">
<h2>Auto Insurance</h2>
<p>If you’re new behind the wheel, you want the best cover. From taking the test to buying your first car, we know learning to drive is an exciting and challenging time. When you're covered with our Young Drivers insurance, you'll get peace of mind and a great price on our excellent policies.</p>
<div id="services-02-btn-01">
<a class="btn btn-general btn-yellow" href="#services" title="Get In Touch" role="button">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="service-tab-2" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6"> <img src="img/Services/712f5dcc3117fa7c377be97f9151c104c2eb01ef_prevoyance---domia---carre.jpg" alt="Home Insurance"> </div>
<div class="col-md-6 col-sm-6">
<div class="tab-bg">
<h2>Home Insurance</h2>
<p>Whether you’re a homeowner or a renter, our Home Insurance policies protect your home, contents, or both. Our standard Home Insurance comes with cover against fire, storm or flood, water or oil escaping, theft and attempted theft, malicious acts and subsidence.</p>
<div id="services-02-btn-02">
<a class="btn btn-general btn-yellow" href="#services" title="Get In Touch" role="button">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="service-tab-3" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6"> <img src="img/Services/56c28b2ef390b1a45ee7301a5f2aaa3e7cfe394e_santefi.jpg" alt="Health Insurance"> </div>
<div class="col-md-6 col-sm-6">
<div class="tab-bg">
<h2>Health Insurance</h2>
<p>Health insurance is for the swift diagnosis and treatment of new medical conditions. It’s a way of getting quick access to the health treatment you need if you fall ill or get injured. From seeing specialists for diagnosis, to choosing where you stay while in hospital.</p>
<div id="services-02-btn-03">
<a class="btn btn-general btn-yellow" href="#services" title="Get In Touch" role="button">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="service-tab-4" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6"> <img src="img/Services/AXA-Lange-autotrip-met-kinderen-leuke-tips-long-voyage-avec-enfants-conseils-pour-un-trajet-amusant.jpg" alt="Travel Insurance"> </div>
<div class="col-md-6 col-sm-6">
<div class="tab-bg">
<h2>Travel Insurance</h2>
<p>When it comes to travel insurance, it’s easy to think “it won’t happen to me”, but taking out a travel insurance policy is all about planning for the unexpected. You never know what might happen when you head off on holiday. Besides an accident, getting sick or losing your luggage can also put a real downer on your trip.Travel insurance is a way to prepare just in case something goes wrong, so you can enjoy every minute of your break without worry.</p>
<div id="services-02-btn-04">
<a class="btn btn-general btn-yellow" href="#services" title="Get In Touch" role="button">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="service-tab-5" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6"> <img src="img/Services/321908fa13e66b0c581872d043819d9c15fd2eeb_expat-2.jpg" alt="Starting a business"> </div>
<div class="col-md-6 col-sm-6">
<div class="tab-bg ">
<h2>Starting a business</h2>
<p>If you’re the owner of a shop, office or surgery, you want a comprehensive insurance plan. Our Public Liability Insurance gives you the protection you need, like high public liability cover and protection against unforeseen events that could put you out of business.</p>
<div id="services-02-btn">
<a class="btn btn-general btn-yellow" href="#services" title="Get In Touch" role="button">Get In Touch</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Reviews -->
<section id="reviews">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 wow slideInLeft" data-wow-duration="3s">
<div class="vertical-heading">
<h5>Who We Are</h5>
<h2>What Our <br> <strong> Customers</strong> Say</h2>
</div>
</div>
<div class="col-md-8 col-sm-8 wow fadeIn" data-wow-duration="3s">
<div id="reviews-slider" class="owl-carousel owl-theme">
<div class="review">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<h3>Quality Support</h3>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<div class="stars text-right">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
</div>
<p>
Your website was easy to use and your staff were very friendly and helpful when we had queries. Plus, your insurance was half the cost of my renewal notice from my current provider. I have never needed to claim on my car insurance (in my 20 years of driving!).
</p>
<div class="author">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-6">
<img src="img/team/MV5BNjYyNzIyNDYyN15BMl5BanBnXkFtZTgwOTAxMTUyOTE@._V1_.jpg" alt="client" class="img-responsive img-circle">
</div>
<div class="col-md-10 col-sm-3 col-xs-6">
<div class="author-name">
<p>Rita Morgan</p>
<p>Reception</p>
</div>
</div>
</div>
</div>
</div>
<div class="review">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<h3>Quality Support</h3>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<div class="stars text-right">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
</div>
<p>
Simple to set up, good website, cost same as other providers but feeling of quality service more apparent.
</p>
<div class="author">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-6">
<img src="img/team/walter_7.jpg" class="img-responsive img-circle" alt="walter">
</div>
<div class="col-md-10 col-sm-3 col-xs-6">
<div class="author-name">
<p>Walter White</p>
<p>Reception</p>
</div>
</div>
</div>
</div>
</div>
<div class="review">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<h3>Quality Support</h3>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<div class="stars text-right">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
</div>
</div>
</div>
<p>
Very helpful and friendly..... All my requests were made without challenge.. It's lovely to have a good experience
</p>
<div class="author">
<div class="row">
<div class="col-md-2 col-sm-3 col-xs-6">
<img src="img/team/debra-morgan-248x248.jpg" alt="client" class="img-responsive img-circle">
</div>
<div class="col-md-10 col-sm-3 col-xs-6">
<div class="author-name">
<p>Debra Morgan</p>
<p>Reception</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Claim -->
<section id="submit">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 text-center wow slideInDown" data-wow-duration="2s">
<div class="horizontal-heading">
<h5> Lovely Customers</h5>
<h2>Submit a <strong>Claim</strong></h2>
<p>If you have to make an insurance claim, it can be a very stressful time, especially when your life’s already busy. And we get that, that’s why we’re committed to making the claims experience clearer and easier for you.</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 wow fadeInLeft" data-wow-duration="3s">
<div class="claim">
<div class="type text-center">
<h5>Auto Claim</h5>
</div>
<div class="claim-info text-center">
<img src="img/Claim/auto.jpg" alt="auto" class="img-responsive ">
<div id="claim-btn-01">
<p><br></p>
<a class="btn btn-general btn-yellow" href="https://luxembourg-axa.cdn.axa-contento-118412.eu/luxembourg-axa%2Fd4aadf2e-e839-4474-a8cf-037fc393860d_axa+luxembourg+-+auto-declaration-sinistreen.pdf" title="Download" role="button">Download</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 wow fadeInUp" data-wow-duration="3s">
<div class="claim">
<div class="type text-center">
<h5>Home Claim</h5>
</div>
<div class="claim-info text-center">
<img src="img/Claim/homegal.jpg" alt="auto" class="img-responsive">
<div id="claim-btn-02">
<p><br></p>
<a class="btn btn-general btn-yellow" href="https://luxembourg-axa.cdn.axa-contento-118412.eu/luxembourg-axa%2Fe51063e4-fc80-4a3b-a0f7-da0305abaa53_axa+luxembourg+-+habitation-declaration-sinistre-en.pdf" title="Download" role="button">Download</a>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 wow fadeInRight" data-wow-duration="3s">
<div class="claim">
<div class="type text-center">
<h5>Health Claim</h5>
</div>
<div class="claim-info text-center">
<img src="img/Claim/sante-gal.jpg" alt="auto" class="img-responsive">
<div id="claim-btn-03">
<p><br></p>
<a class="btn btn-general btn-yellow" href="https://luxembourg-axa.cdn.axa-contento-118412.eu/luxembourg-axa%2F84d31832-8c94-4fd2-9c88-d9a560610e98_axa+luxembourg+-+optisoins+-+demande+entente+prealable+actes+en+serie.pdf" title="Download" role="button">Download</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats -->
<section id="stats">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 wow slideInLeft" data-wow-duration="2s">
<div class="vertical-heading">
<h5>Quality Facts</h5>
<h2>We Deliver<br><strong>Excelent</strong> Services</h2>
</div>
</div>
</div>
<div class="row wow slideInLeft" data-wow-duration="2s">
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="stats-item text-center">
<i class="fa fa-briefcase"></i>
<h3 class="counter">160.000</h3>
<h5>Employees</h5>
<p>Insurance Agence</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="stats-item text-center">
<i class="fa fa-trophy"></i>
<h3 class="counter">80</h3>
<h5>International</h5>
<p>Trophies Gained</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="stats-item text-center">
<i class="fa fa-user-friends"></i>
<h3 class="counter">105</h3>
<h5>Million Clients</h5>
<p>Recommande us to their approch </p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<div class="stats-item text-center">
<i class="fa fa-chart-line"></i>
<h3 class="counter">300</h3>
<h5>Years</h5>
<p>Experience</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- contact -->
<section id="contact">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="contact-left">
<div class="vertical-heading">
<h5>Contact us</h5>
<h2>Get<br>In <strong>Touch</strong></h2>
</div>
<p>We're always interested in our customers' comments and thoughts about our products and services. Our agents are available 24 hours a day, every day of the week.</p>
<div id="office">
<div class="row">
<div class="col-md-12">
<h4>Morocco</h4>
<ul class="office-details">
<li><i class="fas fa-phone"></i> <span>+212630841376</span></li>
<li><i class="fas fa-envelope
"></i> <span>[email protected]</span></li>
<li><i class="fas fa-map-marker"></i><span>axaa adresse essaouira morocco 44000</span></li>
</ul>
</div>
</div>
</div>
<ul class="social-list">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-google-plus-g"></i></a></li>
</ul>
</div>
</div>
<div class="col-md-6">
<div id="contact-right">
<form id="contact-form" method="post" role="form" action="">
<h4>Send Message</h4>
<p>Whether you have a general enquiry or need to make a claim we will ensure that you are directed the right department that can help.</p>
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input type="text" id="firstname" name="firstname"
class="form-control" placeholder="Your First Name" value="">
<p class="comments"></p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input type="text" id="name" name="name" class="form-control" placeholder="Your Name" value="">
<p class="comments"></p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<input type="email" id="email" name="email" class="form-control" placeholder="Email" value="">
<p class="comments"></p>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group">
<input type="tel" id="phone" name="phone" class="form-control" placeholder="Phone Number" value=""> <p class="comments"></p>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea id="message" class="form-control" name="message" placeholder="Message"></textarea>
<p class="comments"> </p></div>
</div>
<p class="blue"><strong>*You have to enter the informations below</strong></p>
<div class="col-md-12">
<input class="btn btn-general btn-yellow" title="Submit" type="submit" title="Submit" name="submit">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Google Map -->
<section id="google-map">
<div class="container-fluid">
<div class="row">
<div id="map"> <iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=Axa%20Crédit%20,ESSAOUIRA,Maroc,&hl=fr&t=m&z=15&output=embed"></iframe></div>
</div>
</div>
</section>
<!-- Back To Top -->
<a href="#home" id="back-to-top" class="btn btn-sm btn-yellow btn-back-to-top smooth-scroll" title="home" role="button"><i class="fa fa-angle-up"></i></a>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-6">
<p>
Copyright © 2018 All Rights Reserved<span> By AXA Inc.</span>
</p>
</div>
</div>
</div>
</footer>
<!--Jquery-->
<script src="js/jquery.min.js"></script>
<!--bootstrap-->
<script src="js/bootstrap/bootstrap.min.js"></script>
<!--owl carousel-->
<script src="js/owl-carousel/owl.carousel.min.js"></script>
<!--Waypoint-->
<script src="js/waypoint/jquery.waypoints.min.js"></script>
<!--responsive tabs-->
<script src="js/responsive-tabs/jquery.responsiveTabs.min.js"></script>
<!--counter-->
<script src="js/counter/jquery.counterup.min.js"></script>
<!--google map-->
<script src="https://maps.google.com/maps?q=Axa%20Crédit%20,ESSAOUIRA,Maroc,&hl=fr&t=m&z=15&output=embed">
</script>
<!--Easing-->
<script src="js/easing/jquery.easing.1.3.min.js"></script>
<!--wow js-->
<script src="js/wow/wow.min.js"></script>
<!--js-->
<script src="js/script.js"></script>
</body>
</html>